aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGBuiltin.cpp
AgeCommit message (Expand)Author
2012-04-18Revert some Hexagon builtin commits to match reverts done to LLVM inChandler Carruth
2012-04-16Hexagon V5(Floating Point) support.Sirish Pande
2012-04-13Implement the missing pieces needed to support libstdc++4.7's <atomic>:Richard Smith
2012-04-11Provide, and document, a set of __c11_atomic_* intrinsics to implement C11'sRichard Smith
2012-03-16Don't try to create "store atomic" instructions of non-integer types; they ar...Eli Friedman
2012-03-15Fix codegen for vld{3,4}_dup intrinsics.James Molloy
2012-03-04add a testcase for PR12094 and fix a crash on pointer to incomplete type,Chris Lattner
2012-03-02PR12094: Set the alignment of memory intrinsic instructions based on theJay Foad
2012-02-22Use an ArrayRef when we can instead of passing in a SmallVectorImpl reference.Bill Wendling
2012-02-20Add 3dNOW intrinsic header to x86intrin.h, conditioned on __3dNOW__ toChandler Carruth
2012-02-07simplify a bunch of code to use the well-known LLVM IR types computed by Code...Chris Lattner
2012-02-04Preserve alignment for Neon vld1_lane/dup and vst1_lane intrinsics.Bob Wilson
2012-01-30Remove long dead code for handling vector shift by immediate builtins.Craig Topper
2012-01-30Remove custom handling for cmpsd/cmpss/cmppd/cmpps builtins. The builtins are...Craig Topper
2012-01-30Cleanup 3dnow builtin handling. Most of them were already handled by LLVM con...Craig Topper
2012-01-28Make the __builtin_c[lt]zs builtins target independent.Benjamin Kramer
2012-01-26Make clz/ctz builtins defined for zero on ARM targets. rdar://10732455Bob Wilson
2012-01-25reapply r148902:Chris Lattner
2012-01-25Revert 148902 which was part of 148901 which was reverted in r148906.Argyrios Kyrtzidis
2012-01-25use the new ConstantVector::getSplat method where it makes sense.Chris Lattner
2012-01-20More dead code removal (using -Wunreachable-code)David Blaikie
2012-01-17Add __builtin_labs and __builtin_llabs, to complete the set of __builtin_*abs...Eli Friedman
2012-01-17Remove unnecessary default cases in switches over enums.David Blaikie
2012-01-06Revert r147655; it's breaking the compiler_rt build on OSX.Eli Friedman
2012-01-06If we are compiling with -fno-builtin then don't do constant folding ofDavid Chisnall
2011-12-28Small refactoring and simplification of constant evaluation and some of itsRichard Smith
2011-12-25Add intrinsics for lzcnt and tzcnt instructions.Craig Topper
2011-12-19More AVX2 intrinsic support including saturating add/sub and palignr.Craig Topper
2011-12-12Hexagon backend supportTony Linthicum
2011-12-12Update Clang to emit the new form of llvm.cttz and llvm.ctlz intrinsics,Chandler Carruth
2011-11-08lib/CodeGen/CGBuiltin.cpp: Tweak the identifier "Type" to appease msvc.NAKAMURA Takumi
2011-11-08Clean up type flags for overloaded Neon builtins. No functional change.Bob Wilson
2011-10-29Rename Expr::Evaluate to Expr::EvaluateAsRValue to make it clear that it willRichard Smith
2011-10-11Initial implementation of __atomic_* (everything except __atomic_is_lock_free).Eli Friedman
2011-10-10Constant expression evaluation refactoring:Richard Smith
2011-10-06llvm.memory.barrier is going away; remove the wrapper intrinsic __builtin_llv...Eli Friedman
2011-09-27de-tmpify clang.Benjamin Kramer
2011-09-23Switch assert(0/false) llvm_unreachable.David Blaikie
2011-09-14Fix comment.Eli Friedman
2011-09-13Correctly generate IR for casted "builtin" functions, whereJohn McCall
2011-09-13Re-commit r139643.Eli Friedman
2011-09-13Revert r139643 while I look into it; it's breaking selfhost.Eli Friedman
2011-09-13Make clang use Acquire loads and Release stores where necessary.Eli Friedman
2011-09-09Remove trailing } in comment.Julien Lerouge
2011-09-09Bring llvm.annotation* intrinsics support back to where it was in llvm-gcc: canJulien Lerouge
2011-09-07Switch clang over to using fence/atomicrmw/cmpxchg instead of the intrinsics ...Eli Friedman
2011-08-17Fix a handful of dead stores found by Clang's static analyzer. There's a bun...Ted Kremenek
2011-08-13Move handling of vget_lane/vset_lane before the code that checks the type.Bob Wilson
2011-07-29Remove some unnecessary single element array temporaries.Jay Foad
2011-07-25Shorten some expressions by using ArrayRef::slice().Frits van Bommel