aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/IntrinsicLowering.cpp
Commit message (Expand)AuthorAgeFilesLines
* use ArgOperand API and CallSite to access arguments of CallInstGabor Greif2010-06-251-23/+26
* Fixes for Microsoft Visual Studio 2010, from Steven Watanabe!Douglas Gregor2010-05-111-0/+6
* Revert 101465, it broke internal OpenGL testing.Eric Christopher2010-04-161-23/+23
* reapply r101434Gabor Greif2010-04-161-23/+23
* back out r101423 and r101397, they break llvm-gcc self-host on darwin10Gabor Greif2010-04-161-23/+23
* reapply r101364, which has been backed out in r101368Gabor Greif2010-04-151-23/+23
* back out r101364, as it trips the linux nightlybot on some clang C++ testsGabor Greif2010-04-151-23/+23
* rotate CallInst operands, i.e. move callee to the backGabor Greif2010-04-151-23/+23
* Add const qualifiers to CodeGen's use of LLVM IR constructs.Dan Gohman2010-04-151-1/+1
* rename llvm::llvm_report_error -> llvm::report_fatal_errorChris Lattner2010-04-071-2/+2
* Uniformize the names of type predicates: rather than having isFloatTy andDuncan Sands2010-02-151-2/+2
* Avoid going through the LLVMContext for type equality where it's safe to dere...Benjamin Kramer2010-01-051-3/+3
* Delete renaming use of dead dbg intrinsics.Devang Patel2010-01-051-4/+0
* Codegen support for the llvm.invariant/lifetime.start/end intrinsics:Duncan Sands2009-11-101-0/+9
* I don't see any point in having both eh.selector.i32 and eh.selector.i64,Duncan Sands2009-10-141-4/+2
* Introduce and use convenience methods for getting pointer typesDuncan Sands2009-10-061-8/+8
* Change Pass::print to take a raw ostream instead of std::ostream,Chris Lattner2009-08-231-7/+8
* Push LLVMContexts through the IntegerType APIs.Owen Anderson2009-08-131-38/+46
* Move a few more APIs back to 2.5 forms. The only remaining ones left to chan...Owen Anderson2009-07-311-3/+3
* Revert the ConstantInt constructors back to their 2.5 forms where possible, t...Owen Anderson2009-07-241-31/+31
* Get rid of the Pass+Context magic.Owen Anderson2009-07-221-12/+12
* Move EVER MORE stuff over to LLVMContext.Owen Anderson2009-07-141-39/+44
* llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin2009-07-141-2/+2
* eliminate extra space.Torok Edwin2009-07-141-1/+1
* Begin the painful process of tearing apart the rat'ss nest that is Constants....Owen Anderson2009-07-131-3/+4
* remove llvm.part.set.* and llvm.part.select.*. They have never been Chris Lattner2009-07-121-340/+0
* assert(0) -> LLVM_UNREACHABLE.Torok Edwin2009-07-111-1/+1
* Convert more assert(0)+abort() -> LLVM_UNREACHABLE,Torok Edwin2009-07-111-7/+6
* Push LLVMContext _back_ through IRBuilder.Owen Anderson2009-07-081-2/+2
* Get rid of these cache variables, which are a holdover from the days whenOwen Anderson2009-06-261-41/+28
* Now with EVEN FEWER statics!Owen Anderson2009-06-251-28/+0
* Switch to using IRBuilder throughout.Jay Foad2009-05-121-204/+195
* Don't generate redundant casts of constant values when lowering calls toJay Foad2009-05-111-38/+29
* Introduce new linkage types linkonce_odr, weak_odr, common_odrDuncan Sands2009-03-071-2/+2
* Add missing break statements, fixing PR3503.Chris Lattner2009-02-071-8/+11
* As Duncan suggested, add braces for the one-line "else branch".Zhou Sheng2009-01-301-1/+2
* This is to fix the bug in IntrinsicLowering.cpp,Zhou Sheng2009-01-301-1/+2
* reapply Sanjiv's patch to genericize memcpy/memset/memmove to take anChris Lattner2008-11-211-12/+6
* Revert r59802. It was breaking the build of llvm-gcc:Bill Wendling2008-11-211-6/+12
* Make mem[cpy,move,set] intrinsics overloaded.Sanjiv Gupta2008-11-211-12/+6
* More refactoring. Yawn.Dale Johannesen2008-09-221-126/+43
* Refactor FP intrinisic setup. Per review feedback.Dale Johannesen2008-09-221-117/+28
* Add intrinsics for log, log2, log10, exp, exp2.Dale Johannesen2008-09-041-0/+213
* API change for {BinaryOperator|CmpInst|CastInst}::create*() --> Create. Legac...Gabor Greif2008-05-161-78/+78
* API changes for class Use size reduction, wave 1.Gabor Greif2008-04-061-41/+41
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-291-2/+2
* Change the PointerType api for creating pointer types. The old functionality ...Christopher Lamb2007-12-171-8/+9
* Implement necessary bits for flt_rounds gcc builtin. Anton Korobeynikov2007-11-151-0/+5
* Teach IntrinsicLowering.cpp about the sin, cos, and pow intrinsics.Dan Gohman2007-10-151-0/+45
* Rewrite sqrt and powi to use anyfloat. By popular demand.Dale Johannesen2007-10-021-29/+28