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
/
tools
/
llvm-mc
Commit message (
Expand
)
Author
Age
Files
Lines
*
Update CMakeLists
Daniel Dunbar
2009-07-28
1
-1
/
+0
*
Move X86 instruction parsing into X86/AsmParser.
Daniel Dunbar
2009-07-28
4
-278
/
+2
*
Make expression parsing and error/warning reporting available through the
Daniel Dunbar
2009-07-28
1
-24
/
+15
*
Provide generic MCAsmParser when constructing target specific parsers.
Daniel Dunbar
2009-07-28
2
-21
/
+27
*
Switch X86 assembly parser to using the generic lexer interface.
Daniel Dunbar
2009-07-28
1
-28
/
+28
*
Expose Tokens to target specific assembly parsers.
Daniel Dunbar
2009-07-28
2
-81
/
+6
*
Switch AsmLexer::Lex to returning a reference to the current token.
Daniel Dunbar
2009-07-28
3
-9
/
+6
*
Drop some AsmLexer methods in favor of their AsmToken equivalents.
Daniel Dunbar
2009-07-28
4
-37
/
+34
*
llvm-mc: Sink token enum into AsmToken.
Daniel Dunbar
2009-07-28
5
-210
/
+213
*
llvm-mc: Factor AsmToken class out of AsmLexer.
Daniel Dunbar
2009-07-28
2
-83
/
+108
*
llvm-mc: Stop uniqueing string tokens, nothing actually uses this.
Daniel Dunbar
2009-07-28
2
-20
/
+4
*
llvm-mc: Implement .abort fully in the front end
Daniel Dunbar
2009-07-27
3
-7
/
+16
*
llvm-mc: Move AsmLexer::getCurStrVal to StringRef based API.
Daniel Dunbar
2009-07-27
4
-96
/
+103
*
Factor commonality in triple match routines into helper template for registering
Daniel Dunbar
2009-07-26
1
-3
/
+3
*
Add TargetRegistry::lookupTarget.
Daniel Dunbar
2009-07-26
1
-1
/
+4
*
Convert StringMap to using StringRef for its APIs.
Daniel Dunbar
2009-07-23
1
-6
/
+9
*
Removed the DumpSymbolsandMacros and LoadSymbolsandMacros MCStreamer API as
Kevin Enderby
2009-07-20
2
-7
/
+9
*
Add MCAsmLexer interface.
Daniel Dunbar
2009-07-20
2
-1
/
+5
*
Add MCAsmParser interface.
Daniel Dunbar
2009-07-20
3
-6
/
+15
*
llvm-mc: Default -triple to LLVM_HOSTTRIPLE.
Daniel Dunbar
2009-07-17
1
-1
/
+1
*
llvm-mc: Add -triple, and start fetching the target asm printer.
Daniel Dunbar
2009-07-17
3
-3
/
+38
*
Removed the SubsectionsViaSymbols MCStreamer API and replaced it with a generic
Kevin Enderby
2009-07-16
1
-1
/
+1
*
Clean up the definition of Str in AsmParser::ParseDirectiveDarwinDumpOrLoad
Kevin Enderby
2009-07-16
1
-3
/
+1
*
implement .include in the lexer/parser instead of passing it into the streamer.
Chris Lattner
2009-07-16
3
-7
/
+35
*
Added llvm-mc support for parsing the .dump and .load directives.
Kevin Enderby
2009-07-15
2
-0
/
+31
*
Added llvm-mc support for parsing the .include directive.
Kevin Enderby
2009-07-14
2
-0
/
+25
*
Added llvm-mc support for parsing the .lsym directive.
Kevin Enderby
2009-07-14
2
-0
/
+33
*
Added llvm-mc support for parsing the .desc directive.
Kevin Enderby
2009-07-14
2
-0
/
+34
*
Added llvm-mc support for parsing the .abort directive.
Kevin Enderby
2009-07-13
2
-0
/
+27
*
add llvm-mc support for parsing the .subsections_via_symbols directive.
Kevin Enderby
2009-07-13
2
-0
/
+19
*
silence vc++ warning.
Chris Lattner
2009-07-11
1
-1
/
+1
*
add support for .zerofill, patch by Kevin Enderby!
Chris Lattner
2009-07-10
2
-1
/
+95
*
add llvm-mc support for parsing the .lcomm directive, patch by Kevin Enderby!
Chris Lattner
2009-07-09
2
-12
/
+15
*
Implement parsing support for the .comm directive. Patch by
Chris Lattner
2009-07-07
2
-0
/
+61
*
implement error recovery in the llvm-mc parser. Feel the power!
Chris Lattner
2009-07-02
1
-4
/
+11
*
llvm-mc/x86: Fix various nit-picky bugs in displacement parsing.
Daniel Dunbar
2009-07-02
1
-13
/
+36
*
llvm-mc/x86: Fix bug in disambiguation of displacement operand, introduced by me
Daniel Dunbar
2009-07-02
3
-1
/
+24
*
llvm-mc/x86: Factor out ParseX86Register.
Daniel Dunbar
2009-07-02
2
-13
/
+33
*
llvm-mc/x86: Rename X86Operand::ScaleReg to IndexReg and make order consistent
Daniel Dunbar
2009-07-02
1
-6
/
+6
*
llvm-mc: Add some more doxyments.
Daniel Dunbar
2009-07-01
1
-27
/
+41
*
llvm-mc: Fill in the rest of tokens for 'as-lex' mode.
Daniel Dunbar
2009-07-01
1
-11
/
+23
*
Rename MCValue::isConstant to isAbsolute.
Daniel Dunbar
2009-07-01
1
-4
/
+4
*
add some of the new tokens, others are still missing.
Chris Lattner
2009-07-01
1
-10
/
+17
*
llvm-mc: Emit parsed instructions to the MCStreamer.
Daniel Dunbar
2009-07-01
1
-2
/
+1
*
llvm-mc: Introduce method to match a parsed x86 instruction into an MCInst.
Daniel Dunbar
2009-06-30
3
-26
/
+31
*
llvm-mc: Accept relocatable expressions when parsing displacements and
Daniel Dunbar
2009-06-30
1
-13
/
+13
*
llvm-mc: Symbols in a relocatable expression of the (a - b + cst) form are
Daniel Dunbar
2009-06-30
1
-5
/
+4
*
Suppress may-be-used-uninitialized warning.
Daniel Dunbar
2009-06-30
1
-1
/
+2
*
Fix CMake build
Douglas Gregor
2009-06-30
1
-0
/
+1
*
llvm-mc: Accept relocatable expressions for .org, assignments, .byte, etc.
Daniel Dunbar
2009-06-30
1
-12
/
+16
[next]