aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Target
AgeCommit message (Expand)Author
2009-07-20remove TargetAsmInfo::ExpandInlineAsmChris Lattner
2009-07-20Copy ExpandInlineAsm to TargetLowering from TargetAsmInfo.Chris Lattner
2009-07-20add some fixme's and cleanups. TargetAsmInfo shouldn't depend on VMCore even...Chris Lattner
2009-07-20remove dead forward declChris Lattner
2009-07-20rename TargetAsmInfo::getASDirective -> getDataASDirectiveChris Lattner
2009-07-20For PC relative relocations where symbols are defined in the same section theyBruno Cardoso Lopes
2009-07-18Use R_X86_64_32S to handle Jump Table Index relocation entries. Hide TAI usag...Bruno Cardoso Lopes
2009-07-18Add some missing includes.Daniel Dunbar
2009-07-18Use a better name for the label relocations while emitting them for Jump TablesBruno Cardoso Lopes
2009-07-18Add support to properly reference private symbols on relocation entries.Bruno Cardoso Lopes
2009-07-18Enable cross register class coalescing.Evan Cheng
2009-07-18Revert 76177 for now. It's messing up ARM asm printing. Also this significant...Evan Cheng
2009-07-17Add llvm::InitializeAllTargetInfos and llvm::InitializeAllAsmParsers.Daniel Dunbar
2009-07-17Untangle a snarl that I discovered when updating the mangler,Chris Lattner
2009-07-17Sketch support for target specific assembly parser.Daniel Dunbar
2009-07-17Add logic to align instruction operands to columns for pretty-printing.David Greene
2009-07-16Let callers decide the sub-register index on the def operand of rematerialize...Evan Cheng
2009-07-16Kill off last uses of TargetMachineRegistry class.Daniel Dunbar
2009-07-16Fix gcc 4.0 build failure, can't rely on access inside nested friended class.Daniel Dunbar
2009-07-16Add registered target list to --version output.Daniel Dunbar
2009-07-16Add explicit comment that clients can call target initialization functionsDaniel Dunbar
2009-07-15Lift addAssemblyEmitter into LLVMTargetMachine.Daniel Dunbar
2009-07-15Lift DumpAsm / -print-emitted-asm functionality into LLVMTargetMachine.Daniel Dunbar
2009-07-15Reapply TargetRegistry refactoring commits.Daniel Dunbar
2009-07-15Revert 75762, 75763, 75766..75769, 75772..75775, 75778, 75780, 75782 to repai...Stuart Hastings
2009-07-15Remove StringConstantPrefix now that the only userDuncan Sands
2009-07-15Kill off old (TargetMachine level, not Target level) match quality functions.Daniel Dunbar
2009-07-15Provide TargetMachine implementations with reference to Target they were createdDaniel Dunbar
2009-07-15Kill off unused TargetMachineRegistry methods and ivars.Daniel Dunbar
2009-07-15Migrate llc and the JIT to using the TargetRegistry for lookups.Daniel Dunbar
2009-07-15Include the Target& in the TargetMachineRegisterEntry.Daniel Dunbar
2009-07-15Allow multiple registrations of the same target.Daniel Dunbar
2009-07-15Initialize the target info via the InitializeNativeTarget() hook.Daniel Dunbar
2009-07-15Reimplement TargetMachineRegistry in terms of TargetRegistry.Daniel Dunbar
2009-07-15Mark Target's creation routines as const.Daniel Dunbar
2009-07-15Register Target's TargetMachine and AsmPrinter in the new registry.Daniel Dunbar
2009-07-15Fix thinkoDaniel Dunbar
2009-07-15Include Target specific Info initialization routine when initializing allDaniel Dunbar
2009-07-15Address some review comments on TargetRegistry.Daniel Dunbar
2009-07-15Add new TargetRegistry.Daniel Dunbar
2009-07-14Have asm printers use formatted_raw_ostream directly to avoid aDavid Greene
2009-07-14llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin
2009-07-13Delete a spurious const.Dan Gohman
2009-07-13Add infrastructure to allow post instruction printing action triggers.David Greene
2009-07-12Add CCIfSRet calling convention predicate.Jakob Stoklund Olesen
2009-07-11assert(0) -> LLVM_UNREACHABLE.Torok Edwin
2009-07-10Remove TargetInstrInfo::CommuteChangesDestination and added findCommutedOpInd...Evan Cheng
2009-07-1080 col violation.Evan Cheng
2009-07-09Targets sometimes assign fixed stack object to spill certain callee-savedEvan Cheng
2009-07-06Add the Object Code Emitter class. Original patch by Aaron Gray, I did someBruno Cardoso Lopes