aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/CBackend/CBackend.cpp
AgeCommit message (Expand)Author
2010-02-28Add a flag to addPassesToEmit* to disable the Verifier pass runDan Gohman
2010-02-21Remove a bunch of duplicated code, where there was one version taking a std::...Duncan Sands
2010-02-16Introduce isOpaqueTy and use it rather than isa<OpaqueType>. Also, move someDuncan Sands
2010-02-16There are two ways of checking for a given type, for example isa<PointerType>(T)Duncan Sands
2010-02-15Uniformize the names of type predicates: rather than having isFloatTy andDuncan Sands
2010-02-10Fix "the the" and similar typos.Dan Gohman
2010-02-02eliminate FileModel::Model, just use CodeGenFileType. The clientChris Lattner
2010-01-22use both the Mangler and the CBE's mangler for identifiers,Chris Lattner
2010-01-20revert 93934, removing the MCAsmInfo endianness bit. I can'tChris Lattner
2010-01-19give MCAsmInfo a 'has little endian' bit. This is unfortunate, butChris Lattner
2010-01-17stop the CBE from using Mangler::appendMangledName, which is a private functi...Chris Lattner
2010-01-17Get MCSymbol out of the mangling business, and move all the logicChris Lattner
2010-01-17now that mangler is in libtarget, it can use MCAsmInfo instead of clientsChris Lattner
2010-01-16move the mangler into libtarget from vmcore.Chris Lattner
2010-01-13reduce duplicate mangling logic by using MCSymbol::printMangledName.Chris Lattner
2010-01-13stop the CBE from using deprecated Mangler stuff.Chris Lattner
2010-01-13change Mangler::makeNameProper to return its result in a SmallVectorChris Lattner
2010-01-05Remove dead debug info intrinsics.Devang Patel
2009-12-28Remove dead variable.Bill Wendling
2009-12-03improve portability to avoid conflicting with std::next in c++'0x.Chris Lattner
2009-10-28rename indbr -> indirectbr to appease the residents of #llvm.Chris Lattner
2009-10-27CBE support for indbr.Chris Lattner
2009-10-26Remove FreeInst.Victor Hernandez
2009-10-25Remove ICmpInst::isSignedPredicate which was a reimplementationNick Lewycky
2009-10-17Remove MallocInst from LLVM Instructions.Victor Hernandez
2009-09-02Retype from unsigned to CallingConv::ID accordingly. Approved by Bob Wilson.Sandeep Patel
2009-08-26Unbreak FP128 stuff in cbeAnton Korobeynikov
2009-08-23eliminate the "Value" printing methods that print to a std::ostream.Chris Lattner
2009-08-22Rename TargetAsmInfo (and its subclasses) to MCAsmInfo.Chris Lattner
2009-08-13Push LLVMContexts through the IntegerType APIs.Owen Anderson
2009-08-12change CBE to just get TAI now, instead of TM to get TAI.Chris Lattner
2009-08-05Cleanup in dbg_stoppoint handling in CBE. Patch by Sandeep Patel.Anton Korobeynikov
2009-08-05Minor arm CBE fixes. Patch by Sandeep.Anton Korobeynikov
2009-08-05Emit module-level inline asm for CBE.Anton Korobeynikov
2009-08-04No really, it's unused.Daniel Dunbar
2009-08-04Remove now unused Module argument to createTargetMachine.Daniel Dunbar
2009-08-03Remove now unused arguments from TargetRegistry::lookupTarget.Daniel Dunbar
2009-08-03Pass target triple string in to TargetMachine constructor.Daniel Dunbar
2009-08-02Move most targets TargetMachine constructor to only taking a target triple.Daniel Dunbar
2009-07-31Move a few more APIs back to 2.5 forms. The only remaining ones left to chan...Owen Anderson
2009-07-26Add TargetRegistry::lookupTarget.Daniel Dunbar
2009-07-25Add new helpers for registering targets.Daniel Dunbar
2009-07-24Revert the ConstantInt constructors back to their 2.5 forms where possible, t...Owen Anderson
2009-07-22Simplify some uses of Value::getName()Daniel Dunbar
2009-07-22Get rid of the Pass+Context magic.Owen Anderson
2009-07-18Put Target definitions inside Target specific header, and llvm namespace.Daniel Dunbar
2009-07-17Make sure CWriter's Context get's initialized.Daniel Dunbar
2009-07-16Kill off <TARGET>MachineModule variables, and <TARGETASMPRINTER>ForceLinkDaniel 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