summaryrefslogtreecommitdiffstats
path: root/lib/MC
Commit message (Expand)AuthorAgeFilesLines
* 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
* Emit the __compact_unwind section first. If there are any frames which weren'tBill Wendling2011-07-221-14/+27
* X86 is the only target that uses coff format. This should fixes test failures...Evan Cheng2011-07-201-2/+3
* Goodbye TargetAsmInfo. This eliminate last bit of CodeGen and Target in llvm-mc.Evan Cheng2011-07-208-44/+61
* Initialize the EHFrameSection pointer to zero.Benjamin Kramer2011-07-201-0/+1
* - Move CodeModel from a TargetMachine global option to MCCodeGenInfo.Evan Cheng2011-07-201-1/+2
* Include MCRegisterInfo to eliminate a compilation warning.Evan Cheng2011-07-201-1/+2
* Fix the CMake build.Francois Pichet2011-07-201-0/+1
* Add MCObjectFileInfo and sink the MCSections initialization code fromEvan Cheng2011-07-208-24/+568
* Introduce MCCodeGenInfo, which keeps information that can affect codegenEvan Cheng2011-07-194-0/+23
* Micro-opt: Only emit compact unwind if there is a compact unwind encoding to ...Bill Wendling2011-07-191-1/+1
* Use the CompactUnwindEncoding from the Frame, if it's defined.Bill Wendling2011-07-191-7/+2
* Add a method to set compact unwind encoding information in a frame.Bill Wendling2011-07-191-0/+6
* Fixed a bug where the MC subtarget informationSean Callanan2011-07-191-0/+1
* Move getInitialFrameState from TargetFrameInfo to MCAsmInfo (suggestions forEvan Cheng2011-07-181-1/+2
* Sink getDwarfRegNum, getLLVMRegNum, getSEHRegNum from TargetRegisterInfo downEvan Cheng2011-07-189-20/+48
* Move some parts of TargetAsmInfo down to MCAsmInfo. This is not the greatestEvan Cheng2011-07-156-40/+42
* Remove setting the bit for personality function. It should be set by the linker.Bill Wendling2011-07-151-3/+0
* Encode that we have a personality function.Bill Wendling2011-07-151-0/+3
* Rename createAsmInfo to createMCAsmInfo and move registration code to MCTarge...Evan Cheng2011-07-142-2/+4
* * If we have an LSDA, we need to mark it in the encoding.Bill Wendling2011-07-141-1/+5
* Unfortunately several files in MC are badly violating layering rule by usingEvan Cheng2011-07-147-14/+19
* Update MCParsedAsmOperand debug methods.Jim Grosbach2011-07-132-2/+6
* Don't emit the FDE end label if the last thing emitted was a compact unwind andBill Wendling2011-07-131-1/+3
* Resynchronize EDInfo.h and EDEmitter.cpp.Shantonu Sen2011-07-112-11/+29
* - Eliminate MCCodeEmitter's dependency on TargetMachine. It now uses MCInstrInfoEvan Cheng2011-07-111-8/+11
* Change createAsmParser to take a MCSubtargetInfo instead of triple,Evan Cheng2011-07-093-1/+52
* Fix comment.Evan Cheng2011-07-081-1/+1
* TargetAsmParser doesn't need reference to Target.Evan Cheng2011-07-081-2/+2
* Eliminate asm parser's dependency on TargetMachine:Evan Cheng2011-07-082-4/+7