aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGBuiltin.cpp
AgeCommit message (Expand)Author
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
2011-07-23remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....Chris Lattner
2011-07-18Migrate LLVM and Clang to use the new makeArrayRef(...) functions where previ...Frits van Bommel
2011-07-18de-constify llvm::Type, patch by David Blaikie!Chris Lattner
2011-07-15Convert CallInst and InvokeInst APIs to use ArrayRef.Jay Foad
2011-07-14Change intrinsic getter to take an ArrayRef, now that the underlying function...Benjamin Kramer
2011-07-09clang side to match the LLVM IR type system rewrite patch.Chris Lattner
2011-07-08Introduce __builtin_expect() intrinsic support.Jakub Staszak
2011-07-08Add codegen support for the fma/fmal/fmaf builtins.Cameron Zwarich
2011-06-24Revert "Shorten some ARM builtin names by removing unnecessary "neon" prefix."Bob Wilson
2011-06-24Shorten some ARM builtin names by removing unnecessary "neon" prefix.Bob Wilson
2011-06-18update for api change.Chris Lattner
2011-06-14Update the prefetch intrinsic usage. Now the last argument tells codegenBruno Cardoso Lopes
2011-05-28Eliminate temporary argument vectors.Benjamin Kramer
2011-05-28Add support for ARM ldrexd/strexd builtinsBruno Cardoso Lopes
2011-05-13Remove the 'unaligned load' builtins now that they're no longer used in the *...Bill Wendling
2011-05-12LLVM doesn't always optimize away the four loads from this:Bill Wendling
2011-05-04Simplification noticed by Chris.Bill Wendling
2011-05-04Convert the non-temporal store builtins to LLVM-native IR.Bill Wendling
2011-04-25Generalize case for built-in expressions havingFariborz Jahanian
2011-04-25Ir-gen the side-effect(s) when __builtin_expect isFariborz Jahanian
2011-04-20fix a crash on code that uses the result value of __builtin___memcpy_chk.Chris Lattner