aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/CppBackend/CPPBackend.cpp
AgeCommit message (Expand)Author
2013-03-25Remove assert. There may be target-dependent attributes left.Bill Wendling
2013-01-27Convert the CPP backend to use the AttributeSet instead of AttributeWithIndex.Bill Wendling
2013-01-25Remove some introspection functions.Bill Wendling
2013-01-25Use the new 'getSlotIndex' method to retrieve the attribute's slot index.Bill Wendling
2013-01-23Add the IR attribute 'sspstrong'.Bill Wendling
2013-01-02Move all of the header files which are involved in modelling the LLVM IRChandler Carruth
2012-12-30s/hasAttribute/contains/g to be more consistent with other method names.Bill Wendling
2012-12-19Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling
2012-12-07s/AttrListPtr/AttributeSet/g to better label what this class is going to be i...Bill Wendling
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth
2012-11-27Remove the dependent libraries feature.Bill Wendling
2012-11-23Update call to the new syntax.Bill Wendling
2012-10-30Change ForceSizeOpt attribute into MinSize attributeQuentin Colombet
2012-10-26Fix CPP backend for method attributes by creating a block where a new AttrBui...Nicolas Geoffray
2012-10-16Pass in the context to the Attributes::get method.Bill Wendling
2012-10-15Move the Attributes::Builder outside of the Attributes class and into its own...Bill Wendling
2012-10-14Don't pass in an Attributes object to something that expects an integral value.Bill Wendling
2012-10-10Remove the final bits of Attributes being declared in the AttributeBill Wendling
2012-09-21Make the 'get*AlignmentFromAttr' functions into member functions within the A...Bill Wendling
2012-09-20Revert r164308 to fix buildbots.Bill Wendling
2012-09-20Make the 'get*AlignmentFromAttr' functions into member functions within the A...Bill Wendling
2012-08-17Change the `linker_private_weak_def_auto' linkage to `linkonce_odr_auto_hide' toBill Wendling
2012-07-02Extend TargetPassConfig to allow running only a subset of the normal passes.Bob Wilson
2012-06-23Extend the IL for selecting TLS models (PR9788)Hans Wennborg
2012-05-29Update CPPBackend to new API for AttrListPtr::get.Nicolas Geoffray
2012-05-29ConstantRangesSet renamed to IntegersSubset. CRSBuilder renamed to IntegersSu...Stepan Dyatkovskiy
2012-05-19Ordinary PR1255 patch: DifferenceEngine and CPPBackend adopted to the new Swi...Stepan Dyatkovskiy
2012-03-23Include cstdio in a few place that depended on getting it transitively throug...Benjamin Kramer
2012-03-23Move ftostr into its last user (cppbackend) and simplify it a bit.Benjamin Kramer
2012-03-11llvm::SwitchInstStepan Dyatkovskiy
2012-03-08Taken into account Duncan's comments for r149481 dated by 2nd Feb 2012:Stepan Dyatkovskiy
2012-02-07Convert assert(0) to llvm_unreachableCraig Topper
2012-02-06[unwind removal] We no longer have 'unwind' instructions being generated, soBill Wendling
2012-02-05Remove dead test: this was already checked and handled a few linesDuncan Sands
2012-02-05Don't initialize CV in terms of itself! Spotted by GCC.Duncan Sands
2012-02-05reapply the patches reverted in r149470 that reenable ConstantDataArray,Chris Lattner
2012-02-01SwitchInst refactoring.Stepan Dyatkovskiy
2012-02-01Revert Chris' commits up to r149348 that started causing VMCoreTests unit tes...Argyrios Kyrtzidis
2012-01-31with recent changes, ConstantArray is never a "string". Remove the associatedChris Lattner
2012-01-24C++, CBE, and TLOF support for ConstantDataSequentialChris Lattner
2012-01-22Use Attributes::None instead of 0 after r148553 change on Attributes from uns...Nicolas Geoffray
2012-01-20More dead code removal (using -Wunreachable-code)David Blaikie
2012-01-10Remove unnecessary default cases in switches that cover all enum values.David Blaikie
2011-11-16Sink codegen optimization level into MCCodeGenInfo along side relocation modelEvan Cheng
2011-11-04Add missing argument for atomic instructions in c++ backend. PR11268, part 2.Eli Friedman
2011-10-31Add support for new atomics to cpp backend. Misc other fixes while I'm here....Eli Friedman
2011-10-08Always check if a method or a type exist before trying to create it.Nicolas Geoffray
2011-10-03Add the returns_twice attribute to LLVM.Rafael Espindola
2011-09-29Clean up uses of switch instructions so they are not dependent on the operand...Eli Friedman
2011-09-21Change:Richard Trieu