index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
tools
/
llvm-mc
/
AsmLexer.cpp
Age
Commit message (
Expand
)
Author
2010-01-22
move some files out of the llvm-mc tool into the MCParser library so
Chris Lattner
2010-01-22
remove some confused code that used strtoull
Chris Lattner
2010-01-21
Moved handling of inclusion from the AsmLexer to
Sean Callanan
2010-01-20
Changed the AsmParser to handle error messages itself
Sean Callanan
2010-01-20
Modified MCAsmLexer to return error information upward
Sean Callanan
2010-01-14
Split the TargetAsmParser "ParseInstruction" interface in half:
Chris Lattner
2009-09-27
avoid copying MCAsmInfo by value, add an (extremely low prio) fixme.
Chris Lattner
2009-09-16
Fixed some problems with the logic of parsing line comments by adding
Kevin Enderby
2009-09-04
Added AsmToken enum constants to MCAsmLexer.h for '[', ']', '{', and '}' in
Kevin Enderby
2009-09-04
Added the AsmToken::Hash enum constant to MCAsmLexer.h in preparation of
Kevin Enderby
2009-09-03
Removed the non-target independent AsmToken::Register enum constant
Kevin Enderby
2009-08-14
llvm-mc: Move MCAsmToken::getLoc() into MC library where it belongs.
Daniel Dunbar
2009-08-10
Make the big switch: Change MCSectionMachO to represent a section *semantically*
Chris Lattner
2009-07-28
Expose Tokens to target specific assembly parsers.
Daniel Dunbar
2009-07-28
Drop some AsmLexer methods in favor of their AsmToken equivalents.
Daniel Dunbar
2009-07-28
llvm-mc: Sink token enum into AsmToken.
Daniel Dunbar
2009-07-28
llvm-mc: Factor AsmToken class out of AsmLexer.
Daniel Dunbar
2009-07-28
llvm-mc: Stop uniqueing string tokens, nothing actually uses this.
Daniel Dunbar
2009-07-23
Convert StringMap to using StringRef for its APIs.
Daniel Dunbar
2009-07-16
implement .include in the lexer/parser instead of passing it into the streamer.
Chris Lattner
2009-06-30
Normalize SourceMgr messages.
Daniel Dunbar
2009-06-29
llvm-mc: Recognize C++ style comments.
Daniel Dunbar
2009-06-29
MC: Improve expression parsing and implement evaluation of absolute expressions.
Daniel Dunbar
2009-06-25
MC: Parse .set and assignments.
Daniel Dunbar
2009-06-24
make the lexer unique strings it lexes instead of passing them back as
Chris Lattner
2009-06-23
implement a trivial binary expression parser, we can now parse all of 176.gcc...
Chris Lattner
2009-06-23
get a definition of strull on windows, thanks to Howard Su.
Chris Lattner
2009-06-22
Include cstdio to get EOF, needed with gcc-4.4.
Duncan Sands
2009-06-22
Implement full support for parsing primary expressions. We can now parse
Chris Lattner
2009-06-21
rename SourceMgr::PrintError to PrintMessage.
Chris Lattner
2009-06-21
stub out parser for asm files. Change invariant on lexer to always
Chris Lattner
2009-06-21
add string literals.
Chris Lattner
2009-06-21
hopefully fix the build on linux.
Chris Lattner
2009-06-21
implement enough of a lexer to get through Olden/health/Output/health.llc.s
Chris Lattner
2009-06-21
some baby steps.
Chris Lattner