summaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/CGBuiltin.cpp
Commit message (Expand)AuthorAgeFilesLines
* Revert some Hexagon builtin commits to match reverts done to LLVM inChandler Carruth2012-04-181-749/+155
* Hexagon V5(Floating Point) support.Sirish Pande2012-04-161-155/+749
* Implement the missing pieces needed to support libstdc++4.7's <atomic>:Richard Smith2012-04-131-0/+173
* Provide, and document, a set of __c11_atomic_* intrinsics to implement C11'sRichard Smith2012-04-111-2/+5
* Don't try to create "store atomic" instructions of non-integer types; they ar...Eli Friedman2012-03-161-4/+5
* Fix codegen for vld{3,4}_dup intrinsics.James Molloy2012-03-151-4/+4
* add a testcase for PR12094 and fix a crash on pointer to incomplete type,Chris Lattner2012-03-041-3/+7
* PR12094: Set the alignment of memory intrinsic instructions based on theJay Foad2012-03-021-29/+47
* Use an ArrayRef when we can instead of passing in a SmallVectorImpl reference.Bill Wendling2012-02-221-1/+1
* Add 3dNOW intrinsic header to x86intrin.h, conditioned on __3dNOW__ toChandler Carruth2012-02-201-0/+2
* simplify a bunch of code to use the well-known LLVM IR types computed by Code...Chris Lattner2012-02-071-19/+17
* Preserve alignment for Neon vld1_lane/dup and vst1_lane intrinsics.Bob Wilson2012-02-041-7/+17
* Remove long dead code for handling vector shift by immediate builtins.Craig Topper2012-01-301-107/+0
* Remove custom handling for cmpsd/cmpss/cmppd/cmpps builtins. The builtins are...Craig Topper2012-01-301-16/+0
* Cleanup 3dnow builtin handling. Most of them were already handled by LLVM con...Craig Topper2012-01-301-117/+1
* Make the __builtin_c[lt]zs builtins target independent.Benjamin Kramer2012-01-281-26/+2
* Make clz/ctz builtins defined for zero on ARM targets. rdar://10732455Bob Wilson2012-01-261-2/+4
* reapply r148902:Chris Lattner2012-01-251-11/+7
* Revert 148902 which was part of 148901 which was reverted in r148906.Argyrios Kyrtzidis2012-01-251-7/+11
* use the new ConstantVector::getSplat method where it makes sense.Chris Lattner2012-01-251-11/+7
* More dead code removal (using -Wunreachable-code)David Blaikie2012-01-201-1/+0
* Add __builtin_labs and __builtin_llabs, to complete the set of __builtin_*abs...Eli Friedman2012-01-171-1/+3
* Remove unnecessary default cases in switches over enums.David Blaikie2012-01-171-3/+2
* Revert r147655; it's breaking the compiler_rt build on OSX.Eli Friedman2012-01-061-2/+1
* If we are compiling with -fno-builtin then don't do constant folding ofDavid Chisnall2012-01-061-1/+2
* Small refactoring and simplification of constant evaluation and some of itsRichard Smith2011-12-281-1/+0
* Add intrinsics for lzcnt and tzcnt instructions.Craig Topper2011-12-251-0/+26
* More AVX2 intrinsic support including saturating add/sub and palignr.Craig Topper2011-12-191-0/+38
* Hexagon backend supportTony Linthicum2011-12-121-0/+1989
* Update Clang to emit the new form of llvm.cttz and llvm.ctlz intrinsics,Chandler Carruth2011-12-121-3/+4
* lib/CodeGen/CGBuiltin.cpp: Tweak the identifier "Type" to appease msvc.NAKAMURA Takumi2011-11-081-3/+3
* Clean up type flags for overloaded Neon builtins. No functional change.Bob Wilson2011-11-081-29/+46
* Rename Expr::Evaluate to Expr::EvaluateAsRValue to make it clear that it willRichard Smith2011-10-291-1/+1
* Initial implementation of __atomic_* (everything except __atomic_is_lock_free).Eli Friedman2011-10-111-0/+66
* Constant expression evaluation refactoring:Richard Smith2011-10-101-12/+9
* llvm.memory.barrier is going away; remove the wrapper intrinsic __builtin_llv...Eli Friedman2011-10-061-12/+0
* de-tmpify clang.Benjamin Kramer2011-09-271-25/+22
* Switch assert(0/false) llvm_unreachable.David Blaikie2011-09-231-9/+9
* Fix comment.Eli Friedman2011-09-141-1/+1
* Correctly generate IR for casted "builtin" functions, whereJohn McCall2011-09-131-7/+41
* Re-commit r139643.Eli Friedman2011-09-131-5/+6
* Revert r139643 while I look into it; it's breaking selfhost.Eli Friedman2011-09-131-6/+5
* Make clang use Acquire loads and Release stores where necessary.Eli Friedman2011-09-131-5/+6
* Remove trailing } in comment.Julien Lerouge2011-09-091-1/+1
* Bring llvm.annotation* intrinsics support back to where it was in llvm-gcc: canJulien Lerouge2011-09-091-0/+11
* Switch clang over to using fence/atomicrmw/cmpxchg instead of the intrinsics ...Eli Friedman2011-09-071-65/+40
* Fix a handful of dead stores found by Clang's static analyzer. There's a bun...Ted Kremenek2011-08-171-2/+2
* Move handling of vget_lane/vset_lane before the code that checks the type.Bob Wilson2011-08-131-24/+31
* Remove some unnecessary single element array temporaries.Jay Foad2011-07-291-2/+1
* Shorten some expressions by using ArrayRef::slice().Frits van Bommel2011-07-251-6/+3