index
:
external_llvm.git
replicant-6.0
Unnamed repository; edit this file 'description' to name the repository.
git repository hosting
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
lib
/
MC
/
MCParser
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
[ms-inline asm] Add support for ImmDisp [ Symbol ] memory operands.
Chad Rosier
2013-04-08
1
-11
/
+9
*
Dead code.
Chad Rosier
2013-03-19
1
-2
/
+0
*
[ms-inline asm] Move the immediate asm rewrite into the target specific
Chad Rosier
2013-03-19
1
-5
/
+1
*
[ms-inline asm] Remove the brackets from X86Operand in the IR. These will be
Chad Rosier
2013-03-19
1
-8
/
+19
*
[ms-inline asm] Move the size directive asm rewrite into the target specific
Chad Rosier
2013-03-19
1
-12
/
+4
*
Debug Info: use SmallVector instead of std::vector in MCDwarfDirsCUMap and MC...
Manman Ren
2013-03-12
1
-2
/
+2
*
AsmParser: More generic support for integer type suffices.
Jim Grosbach
2013-02-26
1
-6
/
+9
*
'Hexadecimal' has two 'a's and only one 'i'.
Matt Beaumont-Gay
2013-02-25
1
-1
/
+1
*
MCParser: Update method names per coding guidelines.
Jim Grosbach
2013-02-20
5
-270
/
+270
*
MCParser: Reject .balign with non-pow2 alignments.
Benjamin Kramer
2013-02-16
1
-0
/
+4
*
Derive ELF section type from the name in some cases where GNU as does
Joerg Sonnenberger
2013-02-16
1
-1
/
+10
*
c[ms-inline asm] It's possible to have a SizeDirective rewrite and an
Chad Rosier
2013-02-15
1
-1
/
+16
*
AsmParser: Reformat the MS asm parser to reduce nesting.
Benjamin Kramer
2013-02-15
1
-85
/
+86
*
Revert r15266. This fixes llvm.org/pr15266.
Rafael Espindola
2013-02-14
1
-40
/
+19
*
[ms-inline asm] Add a comment about the determinism of the rewrite sort.
Chad Rosier
2013-02-13
1
-0
/
+2
*
[ms-inline-asm] Use an array_pod_sort, rather than a std:sort.
Chad Rosier
2013-02-13
1
-3
/
+10
*
[ms-inline-asm] Make sure the AsmRewrite list is sorted in lexical order.
Chad Rosier
2013-02-13
1
-0
/
+5
*
[ms-inline-asm] Implement align directive (which is roughly equivalent to .al...
Chad Rosier
2013-02-12
1
-9
/
+43
*
Add static cast to unsigned char whenever a character classification function...
Guy Benyei
2013-02-12
1
-3
/
+6
*
[ms-inline asm] Pass the length of the IDVal, so we can do a proper AsmRewrite.
Chad Rosier
2013-02-12
1
-4
/
+5
*
[ms-inline asm] Accept the emit directive as either _emit or __emit.
Chad Rosier
2013-02-12
1
-2
/
+2
*
[ms-inline asm] Add support for lexing binary integers with a [bB] suffix.
Chad Rosier
2013-02-12
1
-19
/
+40
*
Update error message due to previous commit, r174926.
Chad Rosier
2013-02-12
1
-1
/
+3
*
[ms-inline asm] Add support for lexing hexidecimal integers with a [hH] suffix.
Chad Rosier
2013-02-12
1
-14
/
+47
*
Add a warning when there is a macro defintion that has named parameters but
Kevin Enderby
2013-01-22
1
-0
/
+104
*
Have the integrated assembler give an error if $1 is used as an identifier in
Kevin Enderby
2013-01-22
1
-2
/
+7
*
[MC/Mach-O] Add AsmParser support for .linker_option directive.
Daniel Dunbar
2013-01-18
1
-0
/
+30
*
[MC] Expose ParseEscapedString to target AsmParser implementations.
Daniel Dunbar
2013-01-18
1
-4
/
+1
*
[MC] Fix 80-col violas.
Daniel Dunbar
2013-01-18
1
-41
/
+89
*
[ms-inline asm] Add support for the 'SIZE' and 'LENGTH' operators.
Chad Rosier
2013-01-17
1
-2
/
+2
*
Some small (and mostly cosmetic) fixes.
Eli Bendersky
2013-01-16
1
-22
/
+17
*
Now that GenericAsmParser was folded into AsmParser, some methods and types can
Eli Bendersky
2013-01-16
1
-17
/
+57
*
Use the ExtensionDirectiveHandler type in other places where it makes sense.
Eli Bendersky
2013-01-16
4
-15
/
+16
*
[ms-inline asm] Address the FIXME in AsmParser.cpp.
Chad Rosier
2013-01-15
1
-4
/
+2
*
Refactor generic Asm directive parsing.
Eli Bendersky
2013-01-15
1
-790
/
+802
*
Now GenericAsmParser and AsmParser are no longer friends, GenericAsmParser can
Eli Bendersky
2013-01-14
1
-4
/
+0
*
Properly encapsulate additional methods and data from AsmParser.
Eli Bendersky
2013-01-14
1
-67
/
+72
*
Move CheckForValidSection to the MCAsmParser interface.
Eli Bendersky
2013-01-14
1
-1
/
+1
*
Expose an InitToTextSection through MCStreamer.
Eli Bendersky
2013-01-14
1
-4
/
+1
*
Move ParseMacroArgument to the MCAsmParser interfance.
Eli Bendersky
2013-01-14
1
-12
/
+8
*
Encapsulate the MacroEnabled flag in AsmParser behind accessor methods.
Eli Bendersky
2013-01-14
1
-4
/
+7
*
Stop hiding the interface-exposed EatToEndOfStatement (see r172276).
Eli Bendersky
2013-01-12
1
-2
/
+1
*
Make ParseIdentifier a public method instead of private.
Eli Bendersky
2013-01-12
1
-4
/
+4
*
Proof of concept moving of generic directive parsing from AsmParser to the
Eli Bendersky
2013-01-11
1
-41
/
+38
*
Revert r172153, "llvm/lib/MC/MCParser/AsmParser.cpp: [ms-inline-asm] Fix a co...
NAKAMURA Takumi
2013-01-11
1
-4
/
+2
*
llvm/lib/MC/MCParser/AsmParser.cpp: [ms-inline-asm] Fix a couple of undefined...
NAKAMURA Takumi
2013-01-11
1
-2
/
+4
*
Rename enumerations s/VK/DK/ to conform to naming convention
Eli Bendersky
2013-01-10
1
-153
/
+153
*
fix comments a bit
Eli Bendersky
2013-01-10
1
-2
/
+2
*
Remove a couple of if-else chains in parsing directives, replacing them by a
Eli Bendersky
2013-01-10
1
-149
/
+240
*
[ms-inline asm] Add support for calling functions from inline assembly.
Chad Rosier
2013-01-10
1
-12
/
+13
[prev]
[next]