- 39e9002 Target option DisableJumpTables is a gross hack. Move it to TargetLowering instead. by Evan Cheng · 13 years ago
- bbd38dd Add all codegen passes to the PassManager via TargetPassConfig. by Bob Wilson · 13 years ago
- eb50c2d Enable tail merging on PPC. by Hal Finkel · 13 years ago
- c6b5deb Enable PPC CTR loop formation by default. by Hal Finkel · 13 years ago
- 821e001 Disable the PPC CTR-Loops pass by default. by Hal Finkel · 13 years ago
- 96c2d4d Add the PPCCTRLoops pass: a PPC machine-code-level optimization pass to form CTR-based loop branching code. by Hal Finkel · 13 years ago
- b12f16e Change the PassManager from a reference to a pointer. by Bill Wendling · 14 years ago
- 7591afa The binutils for the IBM BG/P are too old to support CFI. by Hal Finkel · 14 years ago
- b25fda9 Reorder includes in Target backends to following coding standards. Remove some superfluous forward declarations. by Craig Topper · 14 years ago
- 58648e4 Move pass configuration out of pass constructors: BranchFolderPass by Andrew Trick · 14 years ago
- f8ea108 TargetPassConfig: confine the MC configuration to TargetMachine. by Andrew Trick · 14 years ago
- ccb6736 Added TargetPassConfig. The first little step toward configuring codegen passes. by Andrew Trick · 14 years ago
- 808a7a6 whitespace by Andrew Trick · 14 years ago
- a379b181 Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_anch by David Blaikie · 14 years ago
- 50f02cb Move global variables in TargetMachine into new TargetOptions class. As an API by Nick Lewycky · 14 years ago
- ecb2908 Sink codegen optimization level into MCCodeGenInfo along side relocation model by Evan Cheng · 14 years ago
- 2bb4035 Move TargetRegistry and TargetSelect from Target to Support where they belong. by Evan Cheng · 14 years ago
- 61d4a20 Refactor PPC target to separate MC routines from Target routines. by Evan Cheng · 14 years ago
- efd9b42 - Move CodeModel from a TargetMachine global option to MCCodeGenInfo. by Evan Cheng · 14 years ago
- 2129f59 Introduce MCCodeGenInfo, which keeps information that can affect codegen by Evan Cheng · 14 years ago
- 1705ab0 Rename createAsmInfo to createMCAsmInfo and move registration code to MCTargetDesc to prepare for next round of changes. by Evan Cheng · 14 years ago
- 4d1ca96 Eliminate asm parser's dependency on TargetMachine: by Evan Cheng · 14 years ago
- fe6e405 Fix the ridiculous SubtargetFeatures API where it implicitly expects CPU name to by Evan Cheng · 14 years ago
- 2b9b0e3 ADT/Triple: Move a variety of clients to using isOSDarwin() and isOSWindows() by Daniel Dunbar · 15 years ago
- b3eca9b Add support for the --noexecstack option. by Rafael Espindola · 15 years ago
- 2f93128 Rename TargetFrameInfo into TargetFrameLowering. Also, put couple of FIXMEs and fixes here and there. by Anton Korobeynikov · 15 years ago
- aac9fa7 Wire up primitive support in the assembler backend for writing .o files by Chris Lattner · 15 years ago
- 9ec375c Implement a basic MCCodeEmitter for PPC. This doesn't handle by Chris Lattner · 15 years ago
- f7183ed First step of huge frame-related refactoring: move emit{Prologue,Epilogue} out of TargetRegisterInfo to TargetFrameInfo, which is definitely much better suitable place by Anton Korobeynikov · 15 years ago
- bb919df Implement a bunch more TargetSelectionDAGInfo infrastructure. by Dan Gohman · 15 years ago
- fed917e TargetRegistry: Fix create{AsmInfo,MCDisassembler} to return non-const objects. by Daniel Dunbar · 16 years ago
- ae4ccc1 Preliminary patch to improve dwarf EH generation - Hooks to return Personality / FDE / LSDA / TType encoding depending on target / options (e.g. code model / relocation model) - MCIzation of Dwarf EH printer to use encoding information - Stub generation for ELF target (needed for indirect references) - Some other small changes here and there by Anton Korobeynikov · 16 years ago
- a3fa439 remove dead code. by Chris Lattner · 16 years ago
- 0cd6c2a eliminate all the dead addSimpleCodeEmitter implementations. by Chris Lattner · 16 years ago
- d1e821f remove PPCMachOWriterInfo. by Chris Lattner · 16 years ago
- 220c294 Even more explanation. by Bill Wendling · 16 years ago
- c592725 - Add getLSDAEncoding to the PowerPC backend. by Bill Wendling · 16 years ago
- ad36e8a Pass StringRef by value. by Daniel Dunbar · 16 years ago
- 0545746 rename COFFMCAsmInfo -> MCAsmInfoCOFF, likewise for darwin. by Chris Lattner · 16 years ago
- 7b26fce Rename TargetAsmInfo (and its subclasses) to MCAsmInfo. by Chris Lattner · 16 years ago
- 86c065d Revert 78892 and 78895, these break generating working executables on by Daniel Dunbar · 16 years ago
- eb68198 fix a minor fixme. When building with SL and later tools, the ".eh" symbols by Chris Lattner · 16 years ago
- 9a6cf91 Change TargetAsmInfo to be constructed via TargetRegistry from a Target+Triple by Chris Lattner · 16 years ago
- 97868fe second half of commit. by Chris Lattner · 16 years ago
- 2c30970 pass the TargetTriple down from each target ctor to the by Chris Lattner · 16 years ago
- c3719c3 Move most targets TargetMachine constructor to only taking a target triple. by Daniel Dunbar · 16 years ago
- 31b44e8 Normalize Subtarget constructors to take a target triple string instead of by Daniel Dunbar · 16 years ago
- 5680b4f Add new helpers for registering targets. - Less boilerplate == good. by Daniel Dunbar · 16 years ago
- 67038c1 Put Target definitions inside Target specific header, and llvm namespace. by Daniel Dunbar · 16 years ago
- c151c51 Kill off <TARGET>MachineModule variables, and <TARGETASMPRINTER>ForceLink by Daniel Dunbar · 16 years ago
- d97db68 Lift addAssemblyEmitter into LLVMTargetMachine. - No functionality change. by Daniel Dunbar · 16 years ago
- c901392 Lift DumpAsm / -print-emitted-asm functionality into LLVMTargetMachine. by Daniel Dunbar · 16 years ago
- 5302288 Remove old style hacks to register AsmPrinter into TargetMachine. by Daniel Dunbar · 16 years ago
- e833810 Reapply TargetRegistry refactoring commits. by Daniel Dunbar · 16 years ago
- 338191c Revert 75762, 75763, 75766..75769, 75772..75775, 75778, 75780, 75782 to repair broken LLVM-GCC build. by Stuart Hastings · 16 years ago
- eb8c83b Replace large swaths of copy-n-paste code with obvious helper function... by Daniel Dunbar · 16 years ago
- 863e587 Kill off old (TargetMachine level, not Target level) match quality functions. by Daniel Dunbar · 16 years ago
- 6db8134 Provide TargetMachine implementations with reference to Target they were created by Daniel Dunbar · 16 years ago
- b22f50e Register Target's TargetMachine and AsmPrinter in the new registry. by Daniel Dunbar · 16 years ago
- a31f96c by David Greene · 16 years ago
- 5661ea6 Add the Object Code Emitter class. Original patch by Aaron Gray, I did some by Bruno Cardoso Lopes · 16 years ago
- 75c12e1 Remove unused AsmPrinter OptLevel argument, and propogate. by Daniel Dunbar · 16 years ago
- 5a495fe Provide InitializeAllTargets and InitializeNativeTarget functions in the by Bob Wilson · 16 years ago
- 1b731d5 Introduce new headers whose inclusion forces linking and by Douglas Gregor · 16 years ago
- 9fd794b Fix new CodeEmitter stuff to follow LLVM codying style. Patch by Aaron Gray by Bruno Cardoso Lopes · 16 years ago
- a194c3a First patch in the direction of splitting MachineCodeEmitter in two subclasses: by Bruno Cardoso Lopes · 16 years ago
- 026e5d7 Instead of passing in an unsigned value for the optimization level, use an enum, by Bill Wendling · 17 years ago
- 084669a Second attempt: by Bill Wendling · 17 years ago
- 56f2987 r70270 isn't ready yet. Back this out. Sorry for the noise. by Bill Wendling · 17 years ago
- d0ae159 Massive check in. This changes the "-fast" flag to "-O#" in llc. If you want to by Bill Wendling · 17 years ago
- 5e5a63c CodeGen still defaults to non-verbose asm, but llc now overrides it and default to verbose. by Evan Cheng · 17 years ago
- c5437ea Overhaul my earlier submission due to feedback. It's a large patch, but most of by Bill Wendling · 17 years ago
- ba4eb2a Adds extern "C" ints to the .cpp files that use RegisterTarget, as by Oscar Fuentes · 17 years ago
- 9c4b7d5 Fix command-line option printing to print two spaces where needed, by Dan Gohman · 17 years ago
- 9371964 Use raw_ostream throughout the AsmPrinter. by Owen Anderson · 17 years ago
- 28dc9d0 Factor out asmprinter out of ppc by Anton Korobeynikov · 17 years ago
- c31eb20 Add a flag to disable jump table generation (all by Dale Johannesen · 17 years ago
- bc780e3 Unbreak build: 'DarwinTargetAsmInfo' was already taken as PPC TAI flavour. by Anton Korobeynikov · 17 years ago
- d78c400 Clean up the use of static and anonymous namespaces. This turned up by Dan Gohman · 17 years ago
- 2457083 Use PassManagerBase instead of FunctionPassManager for functions by Dan Gohman · 18 years ago
- 40d67c5 Remove bunch of gcc 4.3-related warnings from Target by Anton Korobeynikov · 18 years ago
- f3ebc3f Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
- aad83c8 Remove meaningless qualifiers from return types, avoiding compiler warnings. by Dan Gohman · 18 years ago
- 9d5df0a Added -print-emitted-asm to print out JIT generated asm to cerr. by Evan Cheng · 18 years ago
- 517290a The various "getModuleMatchQuality" implementations should return by Chris Lattner · 18 years ago
- f9cbdc6 name change requested by review of previous patch by Dale Johannesen · 18 years ago
- 82810c8 Make tail merging the default, except on powerPC. There was no prior art by Dale Johannesen · 18 years ago
- 249edb8 Improve JIT support for linux/ppc: Patch by Nicolas Geoffray! by Chris Lattner · 19 years ago
- 2aa9a42 Moved the MachOWriter and ELFWriter out of the Target/* files. Placed the by Bill Wendling · 19 years ago
- 40cb811 Add a field for and construction of the PPCMachOWriterInfo object. by Bill Wendling · 19 years ago
- 38ee651 Revert patch. by Bill Wendling · 19 years ago
- 05e5a5e Create the specified TargetObjInfo and use it. by Bill Wendling · 19 years ago
- 72a56fc Disable the macho writer until it is 100% functional. Enabling it when by Chris Lattner · 19 years ago
- 28663c7 Changes from Nick Lewycky with a simplified PPCTargetAsmInfo. by Jim Laskey · 19 years ago
- f4646a7 Another step forward in PPC64 JIT support: we now no-longer need stubs by Chris Lattner · 19 years ago
- 09fecf9 this is an initial patch to switch the ppc64 jit over to working in PIC mode, by Chris Lattner · 19 years ago
- 572e238 make sure to safe LR8 in the right stack slot for PPC64 by Chris Lattner · 19 years ago
- a81a75c The DarwinAsmPrinter need not check for isDarwin. createPPCAsmPrinterPass by Chris Lattner · 19 years ago
- c9db833 We actually do support object file writing, so don't return true (error) by Nate Begeman · 19 years ago
- ae92ce8 1. Remove condition on delete. by Jim Laskey · 19 years ago