- Oct 25, 2010
-
-
Daniel Dunbar authored
llvm-svn: 117298
-
- Sep 27, 2010
-
-
Daniel Dunbar authored
llvm-svn: 114861
-
- Sep 24, 2010
-
-
Daniel Dunbar authored
llvm-svn: 114733
-
Daniel Dunbar authored
llvm-svn: 114718
-
- Aug 24, 2010
-
-
rdar://7997827Chris Lattner authored
Also fix 0b010 syntax to actually work while we're at it :-) llvm-svn: 111876
-
- Jul 12, 2010
-
-
Daniel Dunbar authored
llvm-svn: 108154
-
Duncan Sands authored
llvm-svn: 108130
-
- May 21, 2010
-
-
Matt Fleming authored
llvm-svn: 104316
-
- May 18, 2010
-
-
Kevin Enderby authored
CurPtr[0] == '\n' when testing the character after a "0b" when looking to see if it part of a something like "jmp 0b". llvm-svn: 104039
-
Kevin Enderby authored
correctly. The Lexer was incorrectly eating the newline casusing it to branch to address 0. Updated the test case to use a "0:" label and a branch to "0b". llvm-svn: 104038
-
Kevin Enderby authored
llvm-svn: 103989
-
- May 06, 2010
-
-
Daniel Dunbar authored
at the token level. Consider the following horrible test case: a = 1 .globl $a movl ($a), %eax movl $a, %eax movl $$a, %eax llvm-svn: 103178
-
-
- Apr 14, 2010
-
-
Chris Lattner authored
current PC. rdar://7834775 We now produce an identical .o file compared to the cctools assembler for something like this: _f0: L0: jmp L1 .long . - L0 L1: jmp A .long . - L1 .zerofill __DATA,_bss,A,0 llvm-svn: 101227
-
- Mar 13, 2010
-
-
- Jan 22, 2010
-
-
Chris Lattner authored
llvm-svn: 94167
-
Chris Lattner authored
other tools can link it. llvm-svn: 94131
-
Chris Lattner authored
llvm-svn: 94128
-
- Jan 21, 2010
-
-
Sean Callanan authored
the AsmParser, breaking AsmLexer's dependence on SourceMgr. llvm-svn: 94054
-
Sean Callanan authored
rather than passing them off to the AsmLexer to handle. This means the AsmLexer no longer requires a SourceMgr to do error handling. llvm-svn: 94047
-
- Jan 20, 2010
-
-
Sean Callanan authored
rather than printing it locally, reducing its dependence on SourceMgr. llvm-svn: 94041
-
- Jan 14, 2010
-
-
Chris Lattner authored
the new ParseInstruction method just parses and returns a list of target operands. A new MatchInstruction interface is used to turn the operand list into an MCInst. This requires new/deleting all the operands, but it also gives targets the ability to use polymorphic operands if they want to. llvm-svn: 93469
-
- Sep 27, 2009
-
-
Chris Lattner authored
llvm-svn: 82911
-
- Sep 16, 2009
-
-
Kevin Enderby authored
isAtStartOfComment and using that instead in two places where a loop to check if the char was in MAI.getCommentString(). llvm-svn: 82059
-
- Sep 05, 2009
-
-
Kevin Enderby authored
preparation of supporting other targets. Then changed the lexer to parse these as tokens. llvm-svn: 81050
-
- Sep 04, 2009
-
-
Kevin Enderby authored
supporting other targets. Changed the code to pass MCAsmInfo to the parser and the lexer. Then changed the lexer to use CommentString from MCAsmInfo instead of a literal '#' character. llvm-svn: 81046
-
- Sep 03, 2009
-
-
Kevin Enderby authored
from MCAsmLexer.h in preparation of supporting other targets. Changed the X86AsmParser code to reflect this by removing AsmLexer::LexPercent and looking for AsmToken::Percent when parsing in places that used AsmToken::Register. Then changed X86ATTAsmParser::ParseRegister to parse out registers as an AsmToken::Percent followed by an AsmToken::Identifier. llvm-svn: 80929
-
- Aug 14, 2009
-
-
Daniel Dunbar authored
llvm-svn: 78980
-
- Aug 10, 2009
-
-
Chris Lattner authored
instead of syntactically as a string. This means that it keeps track of the segment, section, flags, etc directly and asmprints them in the right format. This also includes parsing and validation support for llvm-mc and "attribute(section)", so we should now start getting errors about invalid section attributes from the compiler instead of the assembler on darwin. Still todo: 1) Uniquing of darwin mcsections 2) Move all the Darwin stuff out to MCSectionMachO.[cpp|h] 3) there are a few FIXMEs, for example what is the syntax to get the S_GB_ZEROFILL segment type? llvm-svn: 78547
-
- Jul 28, 2009
-
-
Daniel Dunbar authored
llvm-svn: 77337
-
Daniel Dunbar authored
llvm-svn: 77323
-
Daniel Dunbar authored
llvm-svn: 77322
-
Daniel Dunbar authored
llvm-svn: 77292
-
Daniel Dunbar authored
llvm-svn: 77287
-
- Jul 23, 2009
-
-
Daniel Dunbar authored
- Yay for '-'s and simplifications! - I kept StringMap::GetOrCreateValue for compatibility purposes, this can eventually go away. Likewise the StringMapEntry Create functions still follow the old style. - NIFC. llvm-svn: 76888
-
- Jul 16, 2009
-
-
Chris Lattner authored
llvm-svn: 75896
-
- Jun 30, 2009
-
-
Daniel Dunbar authored
- Don't print "Parsing" in front of every message. - Take additional "type" argument which is prepended to the message (with ": ") if given. - Update clients to print errors (warnings) as: <filename>:<line number>: error(warning): ... llvm-svn: 74489
-
- Jun 29, 2009
-
-
Daniel Dunbar authored
llvm-svn: 74462
-
Daniel Dunbar authored
llvm-svn: 74448
-
- Jun 25, 2009
-
-
Daniel Dunbar authored
llvm-svn: 74208
-