- Oct 09, 2010
-
-
Michael J. Spencer authored
llvm-svn: 116150
-
Michael J. Spencer authored
llvm-svn: 116149
-
Michael J. Spencer authored
llvm-svn: 116142
-
- Oct 05, 2010
-
-
Rafael Espindola authored
llvm-svn: 115655
-
- Oct 04, 2010
-
-
Kevin Enderby authored
1) Changed ValidateDwarfFileNumber() to isValidDwarfFileNumber() to be better named. Since it is just a predicate and isn't actually changing any state. 2) Added a missing return in the comments for setCurrentDwarfLoc() in include/llvm/MC/MCContext.h for fix formatting. 3) Changed clearDwarfLocSeen() to ClearDwarfLocSeen() since it does change state. 4) Simplified the last test in isValidDwarfFileNumber() to just a one line boolean test of MCDwarfFiles[FileNumber] != 0 for the final return statement. llvm-svn: 115551
-
Jan Wen Voung authored
section kind. Previously, optimized nops were only used for MachO. Also added tests for ELF and COFF. llvm-svn: 115523
-
- Sep 30, 2010
-
-
Kevin Enderby authored
and output the dwarf line number tables. This contains the code to emit and encode the dwarf line tables from the previously gathered information in the MCLineSection objects. This contains all the details to encode the line and address deltas into the dwarf line table. To do this an MCDwarfLineAddrFragment has been added. Also this moves the interface code out of Mach-O streamer into MCDwarf so it should be useable by other object file formats. There is now one call to be made from an MCObjectStreamer EmitInstruction() method: MCLineEntry::Make(this, getCurrentSection()); to create a line entry after each instruction is assembled. And one call call to be made from an MCObjectStreamer Finish() method: MCDwarfFileTable::Emit(this, DwarfLineSection); when getContext().hasDwarfFiles() is true and is passed a object file specific MCSection where to emit the dwarf file and the line tables. This appears to now be correct for 32-bit targets, at least x86. But the relocation entries for 64-bit Darwin needs some further work which is next up to work on. So for now the 64-bit Mach-O target does not output the dwarf file and line tables. llvm-svn: 115157
-
Jan Wen Voung authored
constructing a section. Test for a few cases also included. llvm-svn: 115132
-
Jan Wen Voung authored
llvm-svn: 115122
-
- Sep 29, 2010
-
-
Chris Lattner authored
MCStreamer to emit into instead of an MCInst to fill in. This allows the matcher extra flexibility and is more convenient. llvm-svn: 115014
-
- Sep 27, 2010
-
-
Rafael Espindola authored
llvm-svn: 114895
-
Daniel Dunbar authored
llvm-svn: 114861
-
Benjamin Kramer authored
llvm-svn: 114847
-
- Sep 24, 2010
-
-
Daniel Dunbar authored
llvm-svn: 114733
-
Daniel Dunbar authored
- I believe more modern 'gas' supports a more enhanced set of arithmetic on them, but for now the only thing we can do is emit them as data. llvm-svn: 114719
-
Daniel Dunbar authored
llvm-svn: 114718
-
- Sep 22, 2010
-
-
- Sep 21, 2010
-
-
Rafael Espindola authored
llvm-svn: 114382
-
- Sep 17, 2010
-
-
Daniel Dunbar authored
llvm-svn: 114184
-
Daniel Dunbar authored
expression to include the modifier. - Gross, but this a corner case we don't expect to see often in practice, but it is worth accepting. - Also improves diagnostics on invalid modifiers. llvm-svn: 114154
-
- Sep 16, 2010
-
-
Rafael Espindola authored
llvm-svn: 114091
-
Rafael Espindola authored
llvm-svn: 114077
-
- Sep 15, 2010
-
-
Rafael Espindola authored
The ELF implementation now creates text, data and bss to match the gnu as behavior. The text streamer still has the old MachO specific behavior since the testsuite checks that it will error when a directive is given before a setting the current section for example. A nice benefit is that -n is not required anymore when producing ELF files. llvm-svn: 114027
-
- Sep 11, 2010
-
-
Rafael Espindola authored
llvm-svn: 113691
-
Chris Lattner authored
the end of the line on a parser error, allowing skipping to happen for syntactic errors but not for semantic errors. Before we would miss emitting a diagnostic about the second line, because we skipped it due to the semantic error on the first line: foo %eax bar %al This fixes rdar://8414033 - llvm-mc ignores lines after an invalid instruction mnemonic errors llvm-svn: 113688
-
- Sep 10, 2010
-
-
Daniel Dunbar authored
- This is annoying, because we have to scatter this check everywhere that could emit real data, but I see no better solution. llvm-svn: 113552
-
Daniel Dunbar authored
llvm-svn: 113551
-
- Sep 08, 2010
-
-
Chris Lattner authored
implementation's job to check for and lex the EndOfStatement marker. llvm-svn: 113347
-
- Sep 02, 2010
-
-
Benjamin Kramer authored
llvm-svn: 112849
-
- Aug 24, 2010
-
-
Kevin Enderby authored
it is with other assemblers. llvm-svn: 111967
-
Kevin Enderby authored
needed parsing for the .loc directive and saves the current info from that into the context. The next patch will take the current loc info after an instruction is assembled and save that info into a vector for each section for use to build the line number tables. The patch after that will encode the info from those vectors into the output file as the dwarf line tables. llvm-svn: 111956
-
Daniel Dunbar authored
dollars in identifiers. llvm-svn: 111946
-
Daniel Dunbar authored
- Implemented by manually splicing the tokens. If this turns out to be problematically platform specific, a more elegant solution would be to implement some context dependent lexing support. llvm-svn: 111934
-
rdar://7997827Chris Lattner authored
Also fix 0b010 syntax to actually work while we're at it :-) llvm-svn: 111876
-
- Aug 12, 2010
-
-
Daniel Dunbar authored
instructions onto the target specific parser, which can do a better job. llvm-svn: 110889
-
- Aug 11, 2010
-
-
Daniel Dunbar authored
llvm-mc: Add -show-inst-operands, for dumping the parsed instruction representation before matching. llvm-svn: 110791
-
Daniel Dunbar authored
llvm-svn: 110790
-
- Aug 10, 2010
-
-
Daniel Dunbar authored
parentheses from argument lists. llvm-svn: 110692
-
- Jul 29, 2010
-
-
Daniel Dunbar authored
llvm-svn: 109720
-
- Jul 28, 2010
-
-
Kevin Enderby authored
the info from the .file directive and makes file and directory tables that will eventually be put out as part of the dwarf info in the output file. llvm-svn: 109651
-