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
*
Change raw_fd_ostream to take flags as an optional bitmask
Chris Lattner
2009-08-23
1
-6
/
+8
*
Rename TargetAsmInfo (and its subclasses) to MCAsmInfo.
Chris Lattner
2009-08-22
1
-1
/
+1
*
llvm-mc: Clean up some handling of symbol/section association to be more correct
Daniel Dunbar
2009-08-22
1
-21
/
+5
*
llvm-mc: Improve handling of implicit alignment for magic section directives
Daniel Dunbar
2009-08-21
1
-1
/
+12
*
llvm-mc: In a .fill directive, still honor .align even if invalid maximum bytes
Daniel Dunbar
2009-08-21
1
-3
/
+4
*
llvm-mc: Accept .fill size of 8.
Daniel Dunbar
2009-08-21
1
-2
/
+2
*
llvm-mc: Start MCAssembler and MCMachOStreamer.
Daniel Dunbar
2009-08-21
1
-4
/
+26
*
llvm-mc: Various section parsing fixes.
Daniel Dunbar
2009-08-21
2
-44
/
+84
*
Don't install llvm-mc by default.
Daniel Dunbar
2009-08-21
1
-0
/
+1
*
Fix a commento.
Daniel Dunbar
2009-08-19
1
-1
/
+1
*
give MCAsmStreamer a TargetAsmInfo.
Chris Lattner
2009-08-17
1
-9
/
+9
*
llvm-mc: Support escaped characters in string literals (for .ascii and .asciz)
Daniel Dunbar
2009-08-14
2
-5
/
+67
*
Update llvm-mc / MCAsmStreamer to print the instruction using the actual target
Daniel Dunbar
2009-08-14
1
-21
/
+42
*
llvm-mc: Move MCAsmToken::getLoc() into MC library where it belongs.
Daniel Dunbar
2009-08-14
1
-4
/
+0
*
llvm-mc: Fix a crash on invalid due to a typo in relocatable expression
Daniel Dunbar
2009-08-11
1
-1
/
+1
*
llvm-mc: Accept .word as a synonym for .short
Daniel Dunbar
2009-08-11
1
-1
/
+1
*
llvm-mc: Honor -o option (and add -f).
Daniel Dunbar
2009-08-11
1
-2
/
+35
*
llvm-mc: Sketch parsing for .file, .line, and .loc. No streamer hooks for these
Daniel Dunbar
2009-08-11
2
-0
/
+100
*
llvm-mc: Fix darwin .section parsing. It was skipping the section name and a ','
Daniel Dunbar
2009-08-11
1
-4
/
+14
*
split MachO section handling stuff out to its out .h/.cpp file.
Chris Lattner
2009-08-10
2
-2
/
+2
*
add a fixme
Chris Lattner
2009-08-10
1
-0
/
+4
*
Make the big switch: Change MCSectionMachO to represent a section *semantically*
Chris Lattner
2009-08-10
5
-99
/
+116
*
sink the 'name' and 'isdirective' state out of MCSection into its derived cla...
Chris Lattner
2009-08-08
2
-5
/
+5
*
switch this to create coff sections for now, it doesn't really matter for
Chris Lattner
2009-08-08
2
-5
/
+5
*
Always initialize AsmConds.
Benjamin Kramer
2009-08-08
1
-0
/
+2
*
Added Mac OS X assembler style conditional assembly. I may come back and see if
Kevin Enderby
2009-08-07
3
-2
/
+211
*
Remove now unused arguments from TargetRegistry::lookupTarget.
Daniel Dunbar
2009-08-03
1
-5
/
+1
*
Make SectionKind::get() private.
Chris Lattner
2009-08-02
1
-1
/
+1
*
update for API change.
Chris Lattner
2009-08-01
2
-4
/
+5
*
All MCSections are now required to have a SectionKind.
Chris Lattner
2009-08-01
2
-5
/
+7
*
llvm-mc: More quoted identifier support.
Daniel Dunbar
2009-08-01
2
-43
/
+63
*
llvm-mc: Support quoted identifiers.
Daniel Dunbar
2009-07-31
1
-5
/
+7
*
fix some more issues where we expected GetSection to do "get or create"
Chris Lattner
2009-07-31
1
-2
/
+12
*
fix a bunch of failing tests now that MCContext::GetSection doesn't create se...
Chris Lattner
2009-07-31
2
-4
/
+16
*
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
[next]