aboutsummaryrefslogtreecommitdiffstats
path: root/lib/MC
Commit message (Expand)AuthorAgeFilesLines
* Handle missing newline at EOF more gracefully in MC AsmLexer.Jim Grosbach2011-09-151-1/+8
* Move state var to private class member.Jim Grosbach2011-09-141-1/+1
* First step in supporting #line directives in assembler. This step parses theKevin Enderby2011-09-132-5/+69
* Formatting and typo.Eric Christopher2011-09-081-2/+3
* Fix a Darwin x86_64 special case of a jmp to a temporary symbol from an atomKevin Enderby2011-09-081-0/+10
* Refactor instprinter and mcdisassembler to take a SubtargetInfo. Add -mattr= ...James Molloy2011-09-073-4/+15
* As a first step, emit both the compact unwind and CIE/FDEs for a function.Bill Wendling2011-09-061-13/+7
* Darwin wants ctors/dtors to be ordered the other way round to linux.Duncan Sands2011-09-022-0/+2
* Don't drop alignment info on local common symbols.Benjamin Kramer2011-09-0110-18/+33
* Fix apparent build error caused by r138948 on certain versions of GCC with -W...James Molloy2011-09-012-21/+36
* Fix the build for us -Werror users.Nick Lewycky2011-09-012-37/+24
* Fix up r137380 based on post-commit review by Jim Grosbach.James Molloy2011-09-012-19/+32
* Fix C++0x narrowing errors when char is unsigned.Jeffrey Yasskin2011-08-303-3/+3
* Fix grammar, noticed by Duncan.Bill Wendling2011-08-291-1/+1
* Initialize CompactUnwindSection so that other targets won't use an uninitiali...Bill Wendling2011-08-291-1/+2
* Initialize member variable.Benjamin Kramer2011-08-251-1/+2
* Some autoconf tests use module level inline asm to test compiler's handling ofEvan Cheng2011-08-242-3/+3
* Move TargetRegistry and TargetSelect from Target to Support where they belong.Evan Cheng2011-08-244-6/+6
* Fix AsmParser binary precedence for shift operators.Jim Grosbach2011-08-201-16/+21
* Fixed a memory bug in the MCDisassembler whereSean Callanan2011-08-191-1/+5
* Remove unused Target argument from AsmParser construction methods.Jim Grosbach2011-08-162-5/+5
* MachOWriter: Don't crash on fixups with arithmetic, emit a relocation instead...Benjamin Kramer2011-08-121-2/+6
* Don't truncate MachO addresses.Jim Grosbach2011-08-091-1/+1
* Pacify virtual dtor warnings and cmake buildbots.Benjamin Kramer2011-08-081-0/+1
* Add MCInstrAnalysis class. This allows the targets to specify own versions of...Benjamin Kramer2011-08-081-0/+20
* allow \r's in .s files.Chris Lattner2011-08-041-1/+1
* Introduce adjustFixupOffset that adjusts the fixup offset of a relocation.Roman Divacky2011-08-042-12/+16
* Add an assert to check that the Addend fits the file format.Rafael Espindola2011-08-041-0/+6
* Fix http://llvm.org/bugs/show_bug.cgi?id=10568Jason W Kim2011-08-041-1/+0
* Assume .cfi_startproc is the first thing in a function. If the function isRafael Espindola2011-08-021-7/+14
* Comment out the PPC relocation offset adjustment. It must be done differently.Roman Divacky2011-08-021-0/+4
* Sketch out PowerPC ELF writer. This is enough to get clang -integrated-asRoman Divacky2011-08-022-0/+85
* I mis-interpreted the MCDisassembler's intended dependencies. Now to fixChandler Carruth2011-07-311-2/+9
* On mac, it seems the MC disassembler is actually using the targetinfoChandler Carruth2011-07-291-0/+2
* Fix the MCDisassembler dependencies. These were just absurdly wrong.Chandler Carruth2011-07-291-34/+7
* Rewrite the CMake build to use explicit dependencies between libraries,Chandler Carruth2011-07-293-1/+51
* Support .code32 and .code64 in X86 assembler.Evan Cheng2011-07-275-7/+13
* Remove one last reference to Target in MC library.Evan Cheng2011-07-261-1/+1
* Rename TargetAsmParser to MCTargetAsmParser and TargetAsmLexer to MCTargetAsm...Evan Cheng2011-07-269-23/+25
* TargetAsmBackend has been renamed to MCAsmBackend.Evan Cheng2011-07-251-1/+1
* Rename TargetAsmBackend to MCAsmBackend; rename createAsmBackend to createMCA...Evan Cheng2011-07-2513-38/+36
* Add a missing enumerator to this switch. Currently its in theChandler Carruth2011-07-251-0/+1
* Separate MCInstPrinter registration from AsmPrinter registration.Evan Cheng2011-07-252-2/+0
* Fix last bits of MC layer issues. llvm-mc doesn't need to initialize TargetMa...Evan Cheng2011-07-252-26/+8
* Refactor X86 target to separate MC code from Target code.Evan Cheng2011-07-252-2/+2
* Move some ELF directives into ELF asm parser.Jim Grosbach2011-07-254-12/+78
* Tidy up. 80 columns.Jim Grosbach2011-07-251-5/+10
* Move TargetAsmParser.h TargetAsmBackend.h and TargetAsmLexer.h to MC where th...Evan Cheng2011-07-2318-19/+34
* Sink ARM mc routines into MCTargetDesc.Evan Cheng2011-07-231-1/+1
* Combine all MC initialization routines into one. e.g. InitializeX86MCAsmInfo,Evan Cheng2011-07-222-7/+3