aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/MC
AgeCommit message (Expand)Author
2012-03-11Shrink and reorder some fields in MCOperandInfo to fit it in 8 bytes to reduc...Craig Topper
2012-03-08Use uint16_t to store instruction implicit uses and defs. Reduces static data.Craig Topper
2012-03-08Re-commit r152202 hopefully fixing the MSVC linker error.Craig Topper
2012-03-07Revert r152202 as it's causing internal buildbot failures.Chad Rosier
2012-03-07Use uint16_t to store InstrNameIndices in MCInstrInfo. Add asserts to protect...Craig Topper
2012-03-06Increase number of allowed registers in register classes to 64k instead of 25...Craig Topper
2012-03-06Revert r152016 and allow overlap, sub, super register tables to be more than ...Craig Topper
2012-03-05ARM refactor away a bunch of VLD/VST pseudo instructions.Jim Grosbach
2012-03-05MCRegisterInfo-ize getMatchingSuperReg.Jim Grosbach
2012-03-05Make MCRegisterInfo available to the the MCInstPrinter.Jim Grosbach
2012-03-05Shrink and reorder fields in MCRegisterClass to reduce size of static data.Craig Topper
2012-03-05Convert more GenRegisterInfo tables from unsigned to uint16_t to reduce stati...Craig Topper
2012-03-04Use uint16_t to store register overlaps to reduce static data.Craig Topper
2012-03-04Use uint16_t instead of unsigned to store registers in reg classes. Reduces s...Craig Topper
2012-03-02Tidy up. Trailing whitespace.Jim Grosbach
2012-03-02Grammar-o in function name.Eric Christopher
2012-03-01Move getSubRegIndex out of generated code into MCRegisterInfo, devirtualize it.Benjamin Kramer
2012-03-01Move TargetRegisterInfo::getSubReg() to MCRegisterInfo.Jim Grosbach
2012-02-29Make MemoryObject accessor members const againDerek Schuff
2012-02-28On ELF, create relocations to the abbreviation and line sections when producingRafael Espindola
2012-02-27ARM BL/BLX instruction fixups should use relocations.Jim Grosbach
2012-02-23Remove 'if' from getSuperRegisters, getSubRegisters, and getOverlaps that wer...Craig Topper
2012-02-21Reorder some members in MCRegisterClass to remove padding on 64-bit builds.Craig Topper
2012-02-21In generated RegisterInfo files, replace a pointer to the end of an array wit...Craig Topper
2012-02-21Merge some tables in generated RegisterInfo file. Store indices into larger t...Craig Topper
2012-02-17Generate the correct EH frame section types on Solaris, this time without bre...David Chisnall
2012-02-17Revert r150814. It turns out that there is a good reason for this after all...David Chisnall
2012-02-17Fix typo in comment.Richard Osborne
2012-02-17Don't lazily allocate eh_frame. We're not lazily allocating things like the ...David Chisnall
2012-02-11Add support for implicit TLS model used with MS VC runtime.Anton Korobeynikov
2012-02-11Make the EDis tables const.Benjamin Kramer
2012-02-10Put instruction names into an indexed string table on the side, removing a po...Benjamin Kramer
2012-02-09Move the Name field in MCInstrDesc to the end, saving 8 bytes of padding per ...Benjamin Kramer
2012-02-08Value initialize MCRegisterClasses. Not sure how could miss this during the M...Benjamin Kramer
2012-02-06Enable streaming of bitcodeDerek Schuff
2012-02-05Convert assert(0) to llvm_unreachableCraig Topper
2012-02-03Add a new MachineJumpTableInfo entry type, EK_GPRel64BlockAddress, which isAkira Hatanaka
2012-01-31Add assembler dialect attribute in asm parser which lets target specific asm ...Devang Patel
2012-01-27Better diagnostic for malformed .org assembly directive.Jim Grosbach
2012-01-26Add simple support for keeping MCFixup source information.Jim Grosbach
2012-01-26Add SourceMgr to MCContext for backend diagnostics.Jim Grosbach
2012-01-26Add support for the R_ARM_TARGET1 relocation, which should be given to reloca...James Molloy
2012-01-25Properly emit ctors / dtors with priorities into desired sectionsAnton Korobeynikov
2012-01-24Revert r148686 (and r148694, a fix to it) due to a serious layeringChandler Carruth
2012-01-23Add support for .cfi_signal_frame. Fixes pr11762.Rafael Espindola
2012-01-23An option to selectively enable parts of ARM EHABI support.Evgeniy Stepanov
2012-01-19Add a new form of MCOperand, for representing sub-instructions. This is inte...Owen Anderson
2012-01-18Tidy up. MCAsmBackend naming conventions.Jim Grosbach
2012-01-18Move some ARM specific MCAssmebler bits into the ARMAsmBackend.Jim Grosbach
2012-01-10Let asm parser query asm syntax dialect.Devang Patel