| Anders Carlsson | 022012e | 2007-08-20 18:05:56 +0000 | [diff] [blame] | 1 | //===---- CGBuiltin.cpp - Emit LLVM Code for builtins ---------------------===// | 
|  | 2 | // | 
|  | 3 | //                     The LLVM Compiler Infrastructure | 
|  | 4 | // | 
| Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source | 
|  | 6 | // License. See LICENSE.TXT for details. | 
| Anders Carlsson | 022012e | 2007-08-20 18:05:56 +0000 | [diff] [blame] | 7 | // | 
|  | 8 | //===----------------------------------------------------------------------===// | 
|  | 9 | // | 
|  | 10 | // This contains code to emit Builtin calls as LLVM code. | 
|  | 11 | // | 
|  | 12 | //===----------------------------------------------------------------------===// | 
|  | 13 |  | 
| John McCall | d0b76ca | 2010-03-02 03:50:12 +0000 | [diff] [blame] | 14 | #include "TargetInfo.h" | 
| Anders Carlsson | 022012e | 2007-08-20 18:05:56 +0000 | [diff] [blame] | 15 | #include "CodeGenFunction.h" | 
|  | 16 | #include "CodeGenModule.h" | 
| Anders Carlsson | ca6fcfa | 2007-12-09 21:20:04 +0000 | [diff] [blame] | 17 | #include "clang/Basic/TargetInfo.h" | 
| Chris Lattner | 1f32999 | 2008-10-06 06:09:18 +0000 | [diff] [blame] | 18 | #include "clang/AST/APValue.h" | 
| Chris Lattner | bef20ac | 2007-08-31 04:31:45 +0000 | [diff] [blame] | 19 | #include "clang/AST/ASTContext.h" | 
| Daniel Dunbar | c4a1dea | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 20 | #include "clang/AST/Decl.h" | 
| Chris Lattner | 6b15cdc | 2009-06-14 01:05:48 +0000 | [diff] [blame] | 21 | #include "clang/Basic/TargetBuiltins.h" | 
| Anders Carlsson | 793680e | 2007-10-12 23:56:29 +0000 | [diff] [blame] | 22 | #include "llvm/Intrinsics.h" | 
| John McCall | d0b76ca | 2010-03-02 03:50:12 +0000 | [diff] [blame] | 23 | #include "llvm/Target/TargetData.h" | 
| Anders Carlsson | 022012e | 2007-08-20 18:05:56 +0000 | [diff] [blame] | 24 | using namespace clang; | 
|  | 25 | using namespace CodeGen; | 
| Anders Carlsson | ca6fcfa | 2007-12-09 21:20:04 +0000 | [diff] [blame] | 26 | using namespace llvm; | 
|  | 27 |  | 
| Daniel Dunbar | cb61a7b | 2010-03-20 07:04:11 +0000 | [diff] [blame] | 28 | static void EmitMemoryBarrier(CodeGenFunction &CGF, | 
|  | 29 | bool LoadLoad, bool LoadStore, | 
|  | 30 | bool StoreLoad, bool StoreStore, | 
|  | 31 | bool Device) { | 
|  | 32 | Value *True = llvm::ConstantInt::getTrue(CGF.getLLVMContext()); | 
|  | 33 | Value *False = llvm::ConstantInt::getFalse(CGF.getLLVMContext()); | 
|  | 34 | Value *C[5] = { LoadLoad ? True : False, | 
|  | 35 | LoadStore ? True : False, | 
|  | 36 | StoreLoad ? True : False, | 
|  | 37 | StoreStore  ? True : False, | 
|  | 38 | Device ? True : False }; | 
|  | 39 | CGF.Builder.CreateCall(CGF.CGM.getIntrinsic(Intrinsic::memory_barrier), | 
|  | 40 | C, C + 5); | 
|  | 41 | } | 
|  | 42 |  | 
|  | 43 | // The atomic builtins are also full memory barriers. This is a utility for | 
|  | 44 | // wrapping a call to the builtins with memory barriers. | 
|  | 45 | static Value *EmitCallWithBarrier(CodeGenFunction &CGF, Value *Fn, | 
|  | 46 | Value **ArgBegin, Value **ArgEnd) { | 
|  | 47 | // FIXME: We need a target hook for whether this applies to device memory or | 
|  | 48 | // not. | 
|  | 49 | bool Device = true; | 
|  | 50 |  | 
|  | 51 | // Create barriers both before and after the call. | 
|  | 52 | EmitMemoryBarrier(CGF, true, true, true, true, Device); | 
|  | 53 | Value *Result = CGF.Builder.CreateCall(Fn, ArgBegin, ArgEnd); | 
|  | 54 | EmitMemoryBarrier(CGF, true, true, true, true, Device); | 
|  | 55 | return Result; | 
|  | 56 | } | 
|  | 57 |  | 
| Daniel Dunbar | 0002d23 | 2009-04-07 00:55:51 +0000 | [diff] [blame] | 58 | /// Utility to insert an atomic instruction based on Instrinsic::ID | 
|  | 59 | /// and the expression node. | 
| Daniel Dunbar | cb61a7b | 2010-03-20 07:04:11 +0000 | [diff] [blame] | 60 | static RValue EmitBinaryAtomic(CodeGenFunction &CGF, | 
| Mon P Wang | 1ffe281 | 2008-05-09 22:40:52 +0000 | [diff] [blame] | 61 | Intrinsic::ID Id, const CallExpr *E) { | 
| Daniel Dunbar | cb61a7b | 2010-03-20 07:04:11 +0000 | [diff] [blame] | 62 | Value *Args[2] = { CGF.EmitScalarExpr(E->getArg(0)), | 
|  | 63 | CGF.EmitScalarExpr(E->getArg(1)) }; | 
| Mon P Wang | c500451 | 2008-07-31 03:28:23 +0000 | [diff] [blame] | 64 | const llvm::Type *ResType[2]; | 
| Daniel Dunbar | 0002d23 | 2009-04-07 00:55:51 +0000 | [diff] [blame] | 65 | ResType[0] = CGF.ConvertType(E->getType()); | 
|  | 66 | ResType[1] = CGF.ConvertType(E->getArg(0)->getType()); | 
|  | 67 | Value *AtomF = CGF.CGM.getIntrinsic(Id, ResType, 2); | 
| Daniel Dunbar | cb61a7b | 2010-03-20 07:04:11 +0000 | [diff] [blame] | 68 | return RValue::get(EmitCallWithBarrier(CGF, AtomF, Args, Args + 2)); | 
| Daniel Dunbar | 0002d23 | 2009-04-07 00:55:51 +0000 | [diff] [blame] | 69 | } | 
|  | 70 |  | 
|  | 71 | /// Utility to insert an atomic instruction based Instrinsic::ID and | 
|  | 72 | // the expression node, where the return value is the result of the | 
|  | 73 | // operation. | 
| Chris Lattner | 420b118 | 2010-05-06 05:35:16 +0000 | [diff] [blame] | 74 | static RValue EmitBinaryAtomicPost(CodeGenFunction &CGF, | 
| Daniel Dunbar | 0002d23 | 2009-04-07 00:55:51 +0000 | [diff] [blame] | 75 | Intrinsic::ID Id, const CallExpr *E, | 
|  | 76 | Instruction::BinaryOps Op) { | 
|  | 77 | const llvm::Type *ResType[2]; | 
|  | 78 | ResType[0] = CGF.ConvertType(E->getType()); | 
|  | 79 | ResType[1] = CGF.ConvertType(E->getArg(0)->getType()); | 
|  | 80 | Value *AtomF = CGF.CGM.getIntrinsic(Id, ResType, 2); | 
| Daniel Dunbar | cb61a7b | 2010-03-20 07:04:11 +0000 | [diff] [blame] | 81 | Value *Args[2] = { CGF.EmitScalarExpr(E->getArg(0)), | 
|  | 82 | CGF.EmitScalarExpr(E->getArg(1)) }; | 
|  | 83 | Value *Result = EmitCallWithBarrier(CGF, AtomF, Args, Args + 2); | 
| Daniel Dunbar | cb61a7b | 2010-03-20 07:04:11 +0000 | [diff] [blame] | 84 | return RValue::get(CGF.Builder.CreateBinOp(Op, Result, Args[1])); | 
| Mon P Wang | 1ffe281 | 2008-05-09 22:40:52 +0000 | [diff] [blame] | 85 | } | 
|  | 86 |  | 
| John McCall | fb17a56 | 2010-03-03 10:30:05 +0000 | [diff] [blame] | 87 | static llvm::ConstantInt *getInt32(llvm::LLVMContext &Context, int32_t Value) { | 
|  | 88 | return llvm::ConstantInt::get(llvm::Type::getInt32Ty(Context), Value); | 
|  | 89 | } | 
|  | 90 |  | 
| Chris Lattner | 420b118 | 2010-05-06 05:35:16 +0000 | [diff] [blame] | 91 |  | 
|  | 92 | /// EmitFAbs - Emit a call to fabs/fabsf/fabsl, depending on the type of ValTy, | 
|  | 93 | /// which must be a scalar floating point type. | 
|  | 94 | static Value *EmitFAbs(CodeGenFunction &CGF, Value *V, QualType ValTy) { | 
|  | 95 | const BuiltinType *ValTyP = ValTy->getAs<BuiltinType>(); | 
|  | 96 | assert(ValTyP && "isn't scalar fp type!"); | 
|  | 97 |  | 
|  | 98 | StringRef FnName; | 
|  | 99 | switch (ValTyP->getKind()) { | 
|  | 100 | default: assert(0 && "Isn't a scalar fp type!"); | 
|  | 101 | case BuiltinType::Float:      FnName = "fabsf"; break; | 
|  | 102 | case BuiltinType::Double:     FnName = "fabs"; break; | 
|  | 103 | case BuiltinType::LongDouble: FnName = "fabsl"; break; | 
|  | 104 | } | 
|  | 105 |  | 
|  | 106 | // The prototype is something that takes and returns whatever V's type is. | 
|  | 107 | std::vector<const llvm::Type*> Args; | 
|  | 108 | Args.push_back(V->getType()); | 
|  | 109 | llvm::FunctionType *FT = llvm::FunctionType::get(V->getType(), Args, false); | 
|  | 110 | llvm::Value *Fn = CGF.CGM.CreateRuntimeFunction(FT, FnName); | 
|  | 111 |  | 
|  | 112 | return CGF.Builder.CreateCall(Fn, V, "abs"); | 
|  | 113 | } | 
|  | 114 |  | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 115 | RValue CodeGenFunction::EmitBuiltinExpr(const FunctionDecl *FD, | 
| Daniel Dunbar | ef2abfe | 2009-02-16 22:43:43 +0000 | [diff] [blame] | 116 | unsigned BuiltinID, const CallExpr *E) { | 
| Chris Lattner | 564ea2a | 2008-10-06 06:56:41 +0000 | [diff] [blame] | 117 | // See if we can constant fold this builtin.  If so, don't emit it at all. | 
| Anders Carlsson | f35d35a | 2008-12-01 02:31:41 +0000 | [diff] [blame] | 118 | Expr::EvalResult Result; | 
| Chris Lattner | 6ee7aa1 | 2008-11-16 21:24:15 +0000 | [diff] [blame] | 119 | if (E->Evaluate(Result, CGM.getContext())) { | 
| Anders Carlsson | f35d35a | 2008-12-01 02:31:41 +0000 | [diff] [blame] | 120 | if (Result.Val.isInt()) | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 121 | return RValue::get(llvm::ConstantInt::get(VMContext, | 
| Owen Anderson | 4a28d5d | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 122 | Result.Val.getInt())); | 
| Eli Friedman | 3941b18 | 2009-01-25 01:54:01 +0000 | [diff] [blame] | 123 | else if (Result.Val.isFloat()) | 
| Owen Anderson | bc0a222 | 2009-07-27 21:00:51 +0000 | [diff] [blame] | 124 | return RValue::get(ConstantFP::get(VMContext, Result.Val.getFloat())); | 
| Chris Lattner | 1f32999 | 2008-10-06 06:09:18 +0000 | [diff] [blame] | 125 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 126 |  | 
| Chris Lattner | 564ea2a | 2008-10-06 06:56:41 +0000 | [diff] [blame] | 127 | switch (BuiltinID) { | 
|  | 128 | default: break;  // Handle intrinsics and libm functions below. | 
| Chris Lattner | 506ff88 | 2008-10-06 07:26:43 +0000 | [diff] [blame] | 129 | case Builtin::BI__builtin___CFStringMakeConstantString: | 
| David Chisnall | 0d13f6f | 2010-01-23 02:40:42 +0000 | [diff] [blame] | 130 | case Builtin::BI__builtin___NSStringMakeConstantString: | 
| Anders Carlsson | e9352cc | 2009-04-08 04:48:15 +0000 | [diff] [blame] | 131 | return RValue::get(CGM.EmitConstantExpr(E, E->getType(), 0)); | 
| Chris Lattner | 6a705f0 | 2008-07-09 17:28:44 +0000 | [diff] [blame] | 132 | case Builtin::BI__builtin_stdarg_start: | 
| Anders Carlsson | 793680e | 2007-10-12 23:56:29 +0000 | [diff] [blame] | 133 | case Builtin::BI__builtin_va_start: | 
|  | 134 | case Builtin::BI__builtin_va_end: { | 
| Daniel Dunbar | 0785570 | 2009-02-11 22:25:55 +0000 | [diff] [blame] | 135 | Value *ArgValue = EmitVAListRef(E->getArg(0)); | 
| Benjamin Kramer | 3c0ef8c | 2009-10-13 10:07:13 +0000 | [diff] [blame] | 136 | const llvm::Type *DestType = llvm::Type::getInt8PtrTy(VMContext); | 
| Anders Carlsson | 793680e | 2007-10-12 23:56:29 +0000 | [diff] [blame] | 137 | if (ArgValue->getType() != DestType) | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 138 | ArgValue = Builder.CreateBitCast(ArgValue, DestType, | 
| Daniel Dunbar | b27ffbe | 2009-07-26 09:28:40 +0000 | [diff] [blame] | 139 | ArgValue->getName().data()); | 
| Anders Carlsson | 793680e | 2007-10-12 23:56:29 +0000 | [diff] [blame] | 140 |  | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 141 | Intrinsic::ID inst = (BuiltinID == Builtin::BI__builtin_va_end) ? | 
| Chris Lattner | 6a705f0 | 2008-07-09 17:28:44 +0000 | [diff] [blame] | 142 | Intrinsic::vaend : Intrinsic::vastart; | 
| Chris Lattner | 7acda7c | 2007-12-18 00:25:38 +0000 | [diff] [blame] | 143 | return RValue::get(Builder.CreateCall(CGM.getIntrinsic(inst), ArgValue)); | 
| Anders Carlsson | 793680e | 2007-10-12 23:56:29 +0000 | [diff] [blame] | 144 | } | 
| Anders Carlsson | a28ef8b | 2008-02-09 20:26:43 +0000 | [diff] [blame] | 145 | case Builtin::BI__builtin_va_copy: { | 
| Eli Friedman | 4fd0aa5 | 2009-01-20 17:46:04 +0000 | [diff] [blame] | 146 | Value *DstPtr = EmitVAListRef(E->getArg(0)); | 
|  | 147 | Value *SrcPtr = EmitVAListRef(E->getArg(1)); | 
| Anders Carlsson | a28ef8b | 2008-02-09 20:26:43 +0000 | [diff] [blame] | 148 |  | 
| Benjamin Kramer | 3c0ef8c | 2009-10-13 10:07:13 +0000 | [diff] [blame] | 149 | const llvm::Type *Type = llvm::Type::getInt8PtrTy(VMContext); | 
| Anders Carlsson | a28ef8b | 2008-02-09 20:26:43 +0000 | [diff] [blame] | 150 |  | 
|  | 151 | DstPtr = Builder.CreateBitCast(DstPtr, Type); | 
|  | 152 | SrcPtr = Builder.CreateBitCast(SrcPtr, Type); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 153 | return RValue::get(Builder.CreateCall2(CGM.getIntrinsic(Intrinsic::vacopy), | 
| Chris Lattner | 3eae03e | 2008-05-06 00:56:42 +0000 | [diff] [blame] | 154 | DstPtr, SrcPtr)); | 
| Anders Carlsson | a28ef8b | 2008-02-09 20:26:43 +0000 | [diff] [blame] | 155 | } | 
| Anders Carlsson | c2251dc | 2007-11-20 19:05:17 +0000 | [diff] [blame] | 156 | case Builtin::BI__builtin_abs: { | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 157 | Value *ArgValue = EmitScalarExpr(E->getArg(0)); | 
|  | 158 |  | 
| Chris Lattner | 9a847f5 | 2008-07-23 06:53:34 +0000 | [diff] [blame] | 159 | Value *NegOp = Builder.CreateNeg(ArgValue, "neg"); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 160 | Value *CmpResult = | 
|  | 161 | Builder.CreateICmpSGE(ArgValue, | 
| Owen Anderson | c9c88b4 | 2009-07-31 20:28:54 +0000 | [diff] [blame] | 162 | llvm::Constant::getNullValue(ArgValue->getType()), | 
| Chris Lattner | 9a847f5 | 2008-07-23 06:53:34 +0000 | [diff] [blame] | 163 | "abscond"); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 164 | Value *Result = | 
| Anders Carlsson | c2251dc | 2007-11-20 19:05:17 +0000 | [diff] [blame] | 165 | Builder.CreateSelect(CmpResult, ArgValue, NegOp, "abs"); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 166 |  | 
| Anders Carlsson | c2251dc | 2007-11-20 19:05:17 +0000 | [diff] [blame] | 167 | return RValue::get(Result); | 
|  | 168 | } | 
| Anders Carlsson | 3a31d60 | 2008-02-06 07:19:27 +0000 | [diff] [blame] | 169 | case Builtin::BI__builtin_ctz: | 
|  | 170 | case Builtin::BI__builtin_ctzl: | 
|  | 171 | case Builtin::BI__builtin_ctzll: { | 
|  | 172 | Value *ArgValue = EmitScalarExpr(E->getArg(0)); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 173 |  | 
| Anders Carlsson | 3a31d60 | 2008-02-06 07:19:27 +0000 | [diff] [blame] | 174 | const llvm::Type *ArgType = ArgValue->getType(); | 
|  | 175 | Value *F = CGM.getIntrinsic(Intrinsic::cttz, &ArgType, 1); | 
|  | 176 |  | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 177 | const llvm::Type *ResultType = ConvertType(E->getType()); | 
| Anders Carlsson | 3a31d60 | 2008-02-06 07:19:27 +0000 | [diff] [blame] | 178 | Value *Result = Builder.CreateCall(F, ArgValue, "tmp"); | 
|  | 179 | if (Result->getType() != ResultType) | 
| Duncan Sands | eac73e5 | 2009-11-16 13:11:21 +0000 | [diff] [blame] | 180 | Result = Builder.CreateIntCast(Result, ResultType, /*isSigned*/true, | 
|  | 181 | "cast"); | 
| Anders Carlsson | 3a31d60 | 2008-02-06 07:19:27 +0000 | [diff] [blame] | 182 | return RValue::get(Result); | 
|  | 183 | } | 
| Eli Friedman | f4e8533 | 2008-05-27 15:32:46 +0000 | [diff] [blame] | 184 | case Builtin::BI__builtin_clz: | 
|  | 185 | case Builtin::BI__builtin_clzl: | 
|  | 186 | case Builtin::BI__builtin_clzll: { | 
|  | 187 | Value *ArgValue = EmitScalarExpr(E->getArg(0)); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 188 |  | 
| Eli Friedman | f4e8533 | 2008-05-27 15:32:46 +0000 | [diff] [blame] | 189 | const llvm::Type *ArgType = ArgValue->getType(); | 
|  | 190 | Value *F = CGM.getIntrinsic(Intrinsic::ctlz, &ArgType, 1); | 
|  | 191 |  | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 192 | const llvm::Type *ResultType = ConvertType(E->getType()); | 
| Eli Friedman | f4e8533 | 2008-05-27 15:32:46 +0000 | [diff] [blame] | 193 | Value *Result = Builder.CreateCall(F, ArgValue, "tmp"); | 
|  | 194 | if (Result->getType() != ResultType) | 
| Duncan Sands | eac73e5 | 2009-11-16 13:11:21 +0000 | [diff] [blame] | 195 | Result = Builder.CreateIntCast(Result, ResultType, /*isSigned*/true, | 
|  | 196 | "cast"); | 
| Eli Friedman | f4e8533 | 2008-05-27 15:32:46 +0000 | [diff] [blame] | 197 | return RValue::get(Result); | 
|  | 198 | } | 
| Daniel Dunbar | 04b2900 | 2008-07-21 17:19:41 +0000 | [diff] [blame] | 199 | case Builtin::BI__builtin_ffs: | 
|  | 200 | case Builtin::BI__builtin_ffsl: | 
|  | 201 | case Builtin::BI__builtin_ffsll: { | 
|  | 202 | // ffs(x) -> x ? cttz(x) + 1 : 0 | 
|  | 203 | Value *ArgValue = EmitScalarExpr(E->getArg(0)); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 204 |  | 
| Daniel Dunbar | 04b2900 | 2008-07-21 17:19:41 +0000 | [diff] [blame] | 205 | const llvm::Type *ArgType = ArgValue->getType(); | 
|  | 206 | Value *F = CGM.getIntrinsic(Intrinsic::cttz, &ArgType, 1); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 207 |  | 
| Daniel Dunbar | 04b2900 | 2008-07-21 17:19:41 +0000 | [diff] [blame] | 208 | const llvm::Type *ResultType = ConvertType(E->getType()); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 209 | Value *Tmp = Builder.CreateAdd(Builder.CreateCall(F, ArgValue, "tmp"), | 
| Owen Anderson | 4a28d5d | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 210 | llvm::ConstantInt::get(ArgType, 1), "tmp"); | 
| Owen Anderson | c9c88b4 | 2009-07-31 20:28:54 +0000 | [diff] [blame] | 211 | Value *Zero = llvm::Constant::getNullValue(ArgType); | 
| Daniel Dunbar | 04b2900 | 2008-07-21 17:19:41 +0000 | [diff] [blame] | 212 | Value *IsZero = Builder.CreateICmpEQ(ArgValue, Zero, "iszero"); | 
|  | 213 | Value *Result = Builder.CreateSelect(IsZero, Zero, Tmp, "ffs"); | 
|  | 214 | if (Result->getType() != ResultType) | 
| Duncan Sands | eac73e5 | 2009-11-16 13:11:21 +0000 | [diff] [blame] | 215 | Result = Builder.CreateIntCast(Result, ResultType, /*isSigned*/true, | 
|  | 216 | "cast"); | 
| Daniel Dunbar | 04b2900 | 2008-07-21 17:19:41 +0000 | [diff] [blame] | 217 | return RValue::get(Result); | 
|  | 218 | } | 
|  | 219 | case Builtin::BI__builtin_parity: | 
|  | 220 | case Builtin::BI__builtin_parityl: | 
|  | 221 | case Builtin::BI__builtin_parityll: { | 
|  | 222 | // parity(x) -> ctpop(x) & 1 | 
|  | 223 | Value *ArgValue = EmitScalarExpr(E->getArg(0)); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 224 |  | 
| Daniel Dunbar | 04b2900 | 2008-07-21 17:19:41 +0000 | [diff] [blame] | 225 | const llvm::Type *ArgType = ArgValue->getType(); | 
|  | 226 | Value *F = CGM.getIntrinsic(Intrinsic::ctpop, &ArgType, 1); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 227 |  | 
| Daniel Dunbar | 04b2900 | 2008-07-21 17:19:41 +0000 | [diff] [blame] | 228 | const llvm::Type *ResultType = ConvertType(E->getType()); | 
|  | 229 | Value *Tmp = Builder.CreateCall(F, ArgValue, "tmp"); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 230 | Value *Result = Builder.CreateAnd(Tmp, llvm::ConstantInt::get(ArgType, 1), | 
| Daniel Dunbar | 04b2900 | 2008-07-21 17:19:41 +0000 | [diff] [blame] | 231 | "tmp"); | 
|  | 232 | if (Result->getType() != ResultType) | 
| Duncan Sands | eac73e5 | 2009-11-16 13:11:21 +0000 | [diff] [blame] | 233 | Result = Builder.CreateIntCast(Result, ResultType, /*isSigned*/true, | 
|  | 234 | "cast"); | 
| Daniel Dunbar | 04b2900 | 2008-07-21 17:19:41 +0000 | [diff] [blame] | 235 | return RValue::get(Result); | 
|  | 236 | } | 
|  | 237 | case Builtin::BI__builtin_popcount: | 
|  | 238 | case Builtin::BI__builtin_popcountl: | 
|  | 239 | case Builtin::BI__builtin_popcountll: { | 
|  | 240 | Value *ArgValue = EmitScalarExpr(E->getArg(0)); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 241 |  | 
| Daniel Dunbar | 04b2900 | 2008-07-21 17:19:41 +0000 | [diff] [blame] | 242 | const llvm::Type *ArgType = ArgValue->getType(); | 
|  | 243 | Value *F = CGM.getIntrinsic(Intrinsic::ctpop, &ArgType, 1); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 244 |  | 
| Daniel Dunbar | 04b2900 | 2008-07-21 17:19:41 +0000 | [diff] [blame] | 245 | const llvm::Type *ResultType = ConvertType(E->getType()); | 
|  | 246 | Value *Result = Builder.CreateCall(F, ArgValue, "tmp"); | 
|  | 247 | if (Result->getType() != ResultType) | 
| Duncan Sands | eac73e5 | 2009-11-16 13:11:21 +0000 | [diff] [blame] | 248 | Result = Builder.CreateIntCast(Result, ResultType, /*isSigned*/true, | 
|  | 249 | "cast"); | 
| Daniel Dunbar | 04b2900 | 2008-07-21 17:19:41 +0000 | [diff] [blame] | 250 | return RValue::get(Result); | 
|  | 251 | } | 
| Chris Lattner | 1feedd8 | 2007-12-13 07:34:23 +0000 | [diff] [blame] | 252 | case Builtin::BI__builtin_expect: | 
| Daniel Dunbar | a933c3c | 2008-07-21 18:44:41 +0000 | [diff] [blame] | 253 | // FIXME: pass expect through to LLVM | 
| Chris Lattner | 1feedd8 | 2007-12-13 07:34:23 +0000 | [diff] [blame] | 254 | return RValue::get(EmitScalarExpr(E->getArg(0))); | 
| Anders Carlsson | df4852a | 2007-12-02 21:58:10 +0000 | [diff] [blame] | 255 | case Builtin::BI__builtin_bswap32: | 
|  | 256 | case Builtin::BI__builtin_bswap64: { | 
| Chris Lattner | 1feedd8 | 2007-12-13 07:34:23 +0000 | [diff] [blame] | 257 | Value *ArgValue = EmitScalarExpr(E->getArg(0)); | 
| Anders Carlsson | df4852a | 2007-12-02 21:58:10 +0000 | [diff] [blame] | 258 | const llvm::Type *ArgType = ArgValue->getType(); | 
| Chris Lattner | 7acda7c | 2007-12-18 00:25:38 +0000 | [diff] [blame] | 259 | Value *F = CGM.getIntrinsic(Intrinsic::bswap, &ArgType, 1); | 
| Chris Lattner | 1feedd8 | 2007-12-13 07:34:23 +0000 | [diff] [blame] | 260 | return RValue::get(Builder.CreateCall(F, ArgValue, "tmp")); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 261 | } | 
| Daniel Dunbar | d5f8a4f | 2008-09-03 21:13:56 +0000 | [diff] [blame] | 262 | case Builtin::BI__builtin_object_size: { | 
| Mike Stump | b16d32f | 2009-10-26 23:39:48 +0000 | [diff] [blame] | 263 | // We pass this builtin onto the optimizer so that it can | 
|  | 264 | // figure out the object size in more complex cases. | 
| Mike Stump | c4c9045 | 2009-10-27 22:09:17 +0000 | [diff] [blame] | 265 | const llvm::Type *ResType[] = { | 
|  | 266 | ConvertType(E->getType()) | 
|  | 267 | }; | 
| Eric Christopher | fee667f | 2009-12-23 03:49:37 +0000 | [diff] [blame] | 268 |  | 
|  | 269 | // LLVM only supports 0 and 2, make sure that we pass along that | 
|  | 270 | // as a boolean. | 
|  | 271 | Value *Ty = EmitScalarExpr(E->getArg(1)); | 
|  | 272 | ConstantInt *CI = dyn_cast<ConstantInt>(Ty); | 
|  | 273 | assert(CI); | 
|  | 274 | uint64_t val = CI->getZExtValue(); | 
|  | 275 | CI = ConstantInt::get(llvm::Type::getInt1Ty(VMContext), (val & 0x2) >> 1); | 
|  | 276 |  | 
| Mike Stump | c4c9045 | 2009-10-27 22:09:17 +0000 | [diff] [blame] | 277 | Value *F = CGM.getIntrinsic(Intrinsic::objectsize, ResType, 1); | 
|  | 278 | return RValue::get(Builder.CreateCall2(F, | 
|  | 279 | EmitScalarExpr(E->getArg(0)), | 
| Eric Christopher | fee667f | 2009-12-23 03:49:37 +0000 | [diff] [blame] | 280 | CI)); | 
| Daniel Dunbar | d5f8a4f | 2008-09-03 21:13:56 +0000 | [diff] [blame] | 281 | } | 
| Daniel Dunbar | 4493f79 | 2008-07-21 22:59:13 +0000 | [diff] [blame] | 282 | case Builtin::BI__builtin_prefetch: { | 
|  | 283 | Value *Locality, *RW, *Address = EmitScalarExpr(E->getArg(0)); | 
|  | 284 | // FIXME: Technically these constants should of type 'int', yes? | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 285 | RW = (E->getNumArgs() > 1) ? EmitScalarExpr(E->getArg(1)) : | 
| Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 286 | llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), 0); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 287 | Locality = (E->getNumArgs() > 2) ? EmitScalarExpr(E->getArg(2)) : | 
| Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 288 | llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), 3); | 
| Daniel Dunbar | 4493f79 | 2008-07-21 22:59:13 +0000 | [diff] [blame] | 289 | Value *F = CGM.getIntrinsic(Intrinsic::prefetch, 0, 0); | 
|  | 290 | return RValue::get(Builder.CreateCall3(F, Address, RW, Locality)); | 
| Anders Carlsson | df4852a | 2007-12-02 21:58:10 +0000 | [diff] [blame] | 291 | } | 
| Daniel Dunbar | 4493f79 | 2008-07-21 22:59:13 +0000 | [diff] [blame] | 292 | case Builtin::BI__builtin_trap: { | 
|  | 293 | Value *F = CGM.getIntrinsic(Intrinsic::trap, 0, 0); | 
|  | 294 | return RValue::get(Builder.CreateCall(F)); | 
|  | 295 | } | 
| Chris Lattner | 21190d5 | 2009-09-21 03:09:59 +0000 | [diff] [blame] | 296 | case Builtin::BI__builtin_unreachable: { | 
| Mike Stump | fba565d | 2009-12-16 03:07:12 +0000 | [diff] [blame] | 297 | if (CatchUndefined && HaveInsertPoint()) | 
|  | 298 | EmitBranch(getTrapBB()); | 
| Chris Lattner | 21190d5 | 2009-09-21 03:09:59 +0000 | [diff] [blame] | 299 | Value *V = Builder.CreateUnreachable(); | 
|  | 300 | Builder.ClearInsertionPoint(); | 
|  | 301 | return RValue::get(V); | 
|  | 302 | } | 
|  | 303 |  | 
| Daniel Dunbar | a933c3c | 2008-07-21 18:44:41 +0000 | [diff] [blame] | 304 | case Builtin::BI__builtin_powi: | 
|  | 305 | case Builtin::BI__builtin_powif: | 
|  | 306 | case Builtin::BI__builtin_powil: { | 
|  | 307 | Value *Base = EmitScalarExpr(E->getArg(0)); | 
|  | 308 | Value *Exponent = EmitScalarExpr(E->getArg(1)); | 
| Daniel Dunbar | a933c3c | 2008-07-21 18:44:41 +0000 | [diff] [blame] | 309 | const llvm::Type *ArgType = Base->getType(); | 
|  | 310 | Value *F = CGM.getIntrinsic(Intrinsic::powi, &ArgType, 1); | 
| Daniel Dunbar | a933c3c | 2008-07-21 18:44:41 +0000 | [diff] [blame] | 311 | return RValue::get(Builder.CreateCall2(F, Base, Exponent, "tmp")); | 
|  | 312 | } | 
|  | 313 |  | 
| Chris Lattner | fe23e21 | 2007-12-20 00:44:32 +0000 | [diff] [blame] | 314 | case Builtin::BI__builtin_isgreater: | 
|  | 315 | case Builtin::BI__builtin_isgreaterequal: | 
|  | 316 | case Builtin::BI__builtin_isless: | 
|  | 317 | case Builtin::BI__builtin_islessequal: | 
|  | 318 | case Builtin::BI__builtin_islessgreater: | 
|  | 319 | case Builtin::BI__builtin_isunordered: { | 
|  | 320 | // Ordered comparisons: we know the arguments to these are matching scalar | 
|  | 321 | // floating point values. | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 322 | Value *LHS = EmitScalarExpr(E->getArg(0)); | 
| Chris Lattner | fe23e21 | 2007-12-20 00:44:32 +0000 | [diff] [blame] | 323 | Value *RHS = EmitScalarExpr(E->getArg(1)); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 324 |  | 
| Chris Lattner | fe23e21 | 2007-12-20 00:44:32 +0000 | [diff] [blame] | 325 | switch (BuiltinID) { | 
|  | 326 | default: assert(0 && "Unknown ordered comparison"); | 
|  | 327 | case Builtin::BI__builtin_isgreater: | 
|  | 328 | LHS = Builder.CreateFCmpOGT(LHS, RHS, "cmp"); | 
|  | 329 | break; | 
|  | 330 | case Builtin::BI__builtin_isgreaterequal: | 
|  | 331 | LHS = Builder.CreateFCmpOGE(LHS, RHS, "cmp"); | 
|  | 332 | break; | 
|  | 333 | case Builtin::BI__builtin_isless: | 
|  | 334 | LHS = Builder.CreateFCmpOLT(LHS, RHS, "cmp"); | 
|  | 335 | break; | 
|  | 336 | case Builtin::BI__builtin_islessequal: | 
|  | 337 | LHS = Builder.CreateFCmpOLE(LHS, RHS, "cmp"); | 
|  | 338 | break; | 
|  | 339 | case Builtin::BI__builtin_islessgreater: | 
|  | 340 | LHS = Builder.CreateFCmpONE(LHS, RHS, "cmp"); | 
|  | 341 | break; | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 342 | case Builtin::BI__builtin_isunordered: | 
| Chris Lattner | fe23e21 | 2007-12-20 00:44:32 +0000 | [diff] [blame] | 343 | LHS = Builder.CreateFCmpUNO(LHS, RHS, "cmp"); | 
|  | 344 | break; | 
|  | 345 | } | 
|  | 346 | // ZExt bool to int type. | 
|  | 347 | return RValue::get(Builder.CreateZExt(LHS, ConvertType(E->getType()), | 
|  | 348 | "tmp")); | 
|  | 349 | } | 
| Eli Friedman | d613989 | 2009-09-01 04:19:44 +0000 | [diff] [blame] | 350 | case Builtin::BI__builtin_isnan: { | 
|  | 351 | Value *V = EmitScalarExpr(E->getArg(0)); | 
|  | 352 | V = Builder.CreateFCmpUNO(V, V, "cmp"); | 
|  | 353 | return RValue::get(Builder.CreateZExt(V, ConvertType(E->getType()), "tmp")); | 
|  | 354 | } | 
| Chris Lattner | 420b118 | 2010-05-06 05:35:16 +0000 | [diff] [blame] | 355 |  | 
|  | 356 | case Builtin::BI__builtin_isinf: { | 
|  | 357 | // isinf(x) --> fabs(x) == infinity | 
|  | 358 | Value *V = EmitScalarExpr(E->getArg(0)); | 
|  | 359 | V = EmitFAbs(*this, V, E->getArg(0)->getType()); | 
|  | 360 |  | 
|  | 361 | V = Builder.CreateFCmpOEQ(V, ConstantFP::getInfinity(V->getType()),"isinf"); | 
|  | 362 | return RValue::get(Builder.CreateZExt(V, ConvertType(E->getType()), "tmp")); | 
|  | 363 | } | 
| Chris Lattner | 58ae5b4 | 2010-05-06 06:13:53 +0000 | [diff] [blame] | 364 |  | 
|  | 365 | // TODO: BI__builtin_isinf_sign | 
|  | 366 | //   isinf_sign(x) -> isinf(x) ? (signbit(x) ? -1 : 1) : 0 | 
| Benjamin Kramer | 6349ce9 | 2010-05-19 11:24:26 +0000 | [diff] [blame] | 367 |  | 
|  | 368 | case Builtin::BI__builtin_isnormal: { | 
|  | 369 | // isnormal(x) --> x == x && fabsf(x) < infinity && fabsf(x) >= float_min | 
|  | 370 | Value *V = EmitScalarExpr(E->getArg(0)); | 
|  | 371 | Value *Eq = Builder.CreateFCmpOEQ(V, V, "iseq"); | 
|  | 372 |  | 
|  | 373 | Value *Abs = EmitFAbs(*this, V, E->getArg(0)->getType()); | 
|  | 374 | Value *IsLessThanInf = | 
|  | 375 | Builder.CreateFCmpULT(Abs, ConstantFP::getInfinity(V->getType()),"isinf"); | 
|  | 376 | APFloat Smallest = APFloat::getSmallestNormalized( | 
|  | 377 | getContext().getFloatTypeSemantics(E->getArg(0)->getType())); | 
|  | 378 | Value *IsNormal = | 
|  | 379 | Builder.CreateFCmpUGE(Abs, ConstantFP::get(V->getContext(), Smallest), | 
|  | 380 | "isnormal"); | 
|  | 381 | V = Builder.CreateAnd(Eq, IsLessThanInf, "and"); | 
|  | 382 | V = Builder.CreateAnd(V, IsNormal, "and"); | 
|  | 383 | return RValue::get(Builder.CreateZExt(V, ConvertType(E->getType()))); | 
|  | 384 | } | 
|  | 385 |  | 
| Chris Lattner | ed07415 | 2010-05-06 06:04:13 +0000 | [diff] [blame] | 386 | case Builtin::BI__builtin_isfinite: { | 
|  | 387 | // isfinite(x) --> x == x && fabs(x) != infinity; } | 
|  | 388 | Value *V = EmitScalarExpr(E->getArg(0)); | 
|  | 389 | Value *Eq = Builder.CreateFCmpOEQ(V, V, "iseq"); | 
|  | 390 |  | 
|  | 391 | Value *Abs = EmitFAbs(*this, V, E->getArg(0)->getType()); | 
|  | 392 | Value *IsNotInf = | 
|  | 393 | Builder.CreateFCmpUNE(Abs, ConstantFP::getInfinity(V->getType()),"isinf"); | 
|  | 394 |  | 
|  | 395 | V = Builder.CreateAnd(Eq, IsNotInf, "and"); | 
|  | 396 | return RValue::get(Builder.CreateZExt(V, ConvertType(E->getType()))); | 
|  | 397 | } | 
|  | 398 |  | 
| Eli Friedman | b52fe9c | 2009-06-02 07:10:30 +0000 | [diff] [blame] | 399 | case Builtin::BIalloca: | 
| Chris Lattner | 9e800e3 | 2008-06-16 17:15:14 +0000 | [diff] [blame] | 400 | case Builtin::BI__builtin_alloca: { | 
|  | 401 | // FIXME: LLVM IR Should allow alloca with an i64 size! | 
|  | 402 | Value *Size = EmitScalarExpr(E->getArg(0)); | 
| Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 403 | Size = Builder.CreateIntCast(Size, llvm::Type::getInt32Ty(VMContext), false, "tmp"); | 
|  | 404 | return RValue::get(Builder.CreateAlloca(llvm::Type::getInt8Ty(VMContext), Size, "tmp")); | 
| Daniel Dunbar | 1caae95 | 2008-07-22 00:26:45 +0000 | [diff] [blame] | 405 | } | 
| Eli Friedman | e6dddfd | 2010-01-23 19:00:10 +0000 | [diff] [blame] | 406 | case Builtin::BIbzero: | 
| Daniel Dunbar | 1caae95 | 2008-07-22 00:26:45 +0000 | [diff] [blame] | 407 | case Builtin::BI__builtin_bzero: { | 
|  | 408 | Value *Address = EmitScalarExpr(E->getArg(0)); | 
| Mon P Wang | 3ecd785 | 2010-04-04 03:10:52 +0000 | [diff] [blame] | 409 | Value *SizeVal = EmitScalarExpr(E->getArg(1)); | 
|  | 410 | Builder.CreateCall5(CGM.getMemSetFn(Address->getType(), SizeVal->getType()), | 
|  | 411 | Address, | 
|  | 412 | llvm::ConstantInt::get(llvm::Type::getInt8Ty(VMContext), 0), | 
|  | 413 | SizeVal, | 
|  | 414 | llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), 1), | 
|  | 415 | llvm::ConstantInt::get(llvm::Type::getInt1Ty(VMContext), 0)); | 
| Daniel Dunbar | 1caae95 | 2008-07-22 00:26:45 +0000 | [diff] [blame] | 416 | return RValue::get(Address); | 
| Chris Lattner | 9e800e3 | 2008-06-16 17:15:14 +0000 | [diff] [blame] | 417 | } | 
| Eli Friedman | e6ec205 | 2009-12-17 00:14:28 +0000 | [diff] [blame] | 418 | case Builtin::BImemcpy: | 
| Eli Friedman | d4b32e4 | 2008-05-19 23:27:48 +0000 | [diff] [blame] | 419 | case Builtin::BI__builtin_memcpy: { | 
| Daniel Dunbar | 1caae95 | 2008-07-22 00:26:45 +0000 | [diff] [blame] | 420 | Value *Address = EmitScalarExpr(E->getArg(0)); | 
| Mon P Wang | 3ecd785 | 2010-04-04 03:10:52 +0000 | [diff] [blame] | 421 | Value *SrcAddr = EmitScalarExpr(E->getArg(1)); | 
|  | 422 | Value *SizeVal = EmitScalarExpr(E->getArg(2)); | 
|  | 423 | Builder.CreateCall5(CGM.getMemCpyFn(Address->getType(), SrcAddr->getType(), | 
|  | 424 | SizeVal->getType()), | 
|  | 425 | Address, SrcAddr, SizeVal, | 
|  | 426 | llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), 1), | 
|  | 427 | llvm::ConstantInt::get(llvm::Type::getInt1Ty(VMContext), 0)); | 
| Daniel Dunbar | 1caae95 | 2008-07-22 00:26:45 +0000 | [diff] [blame] | 428 | return RValue::get(Address); | 
|  | 429 | } | 
| Eli Friedman | e6ec205 | 2009-12-17 00:14:28 +0000 | [diff] [blame] | 430 | case Builtin::BImemmove: | 
| Daniel Dunbar | 1caae95 | 2008-07-22 00:26:45 +0000 | [diff] [blame] | 431 | case Builtin::BI__builtin_memmove: { | 
|  | 432 | Value *Address = EmitScalarExpr(E->getArg(0)); | 
| Mon P Wang | 3ecd785 | 2010-04-04 03:10:52 +0000 | [diff] [blame] | 433 | Value *SrcAddr = EmitScalarExpr(E->getArg(1)); | 
|  | 434 | Value *SizeVal = EmitScalarExpr(E->getArg(2)); | 
|  | 435 | Builder.CreateCall5(CGM.getMemMoveFn(Address->getType(), SrcAddr->getType(), | 
|  | 436 | SizeVal->getType()), | 
|  | 437 | Address, SrcAddr, SizeVal, | 
|  | 438 | llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), 1), | 
|  | 439 | llvm::ConstantInt::get(llvm::Type::getInt1Ty(VMContext), 0)); | 
| Daniel Dunbar | 1caae95 | 2008-07-22 00:26:45 +0000 | [diff] [blame] | 440 | return RValue::get(Address); | 
|  | 441 | } | 
| Eli Friedman | e6ec205 | 2009-12-17 00:14:28 +0000 | [diff] [blame] | 442 | case Builtin::BImemset: | 
| Daniel Dunbar | 1caae95 | 2008-07-22 00:26:45 +0000 | [diff] [blame] | 443 | case Builtin::BI__builtin_memset: { | 
|  | 444 | Value *Address = EmitScalarExpr(E->getArg(0)); | 
| Mon P Wang | 3ecd785 | 2010-04-04 03:10:52 +0000 | [diff] [blame] | 445 | Value *SizeVal = EmitScalarExpr(E->getArg(2)); | 
|  | 446 | Builder.CreateCall5(CGM.getMemSetFn(Address->getType(), SizeVal->getType()), | 
|  | 447 | Address, | 
|  | 448 | Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), | 
|  | 449 | llvm::Type::getInt8Ty(VMContext)), | 
|  | 450 | SizeVal, | 
|  | 451 | llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), 1), | 
|  | 452 | llvm::ConstantInt::get(llvm::Type::getInt1Ty(VMContext), 0)); | 
| Daniel Dunbar | 1caae95 | 2008-07-22 00:26:45 +0000 | [diff] [blame] | 453 | return RValue::get(Address); | 
| Eli Friedman | d4b32e4 | 2008-05-19 23:27:48 +0000 | [diff] [blame] | 454 | } | 
| John McCall | fb17a56 | 2010-03-03 10:30:05 +0000 | [diff] [blame] | 455 | case Builtin::BI__builtin_dwarf_cfa: { | 
|  | 456 | // The offset in bytes from the first argument to the CFA. | 
|  | 457 | // | 
|  | 458 | // Why on earth is this in the frontend?  Is there any reason at | 
|  | 459 | // all that the backend can't reasonably determine this while | 
|  | 460 | // lowering llvm.eh.dwarf.cfa()? | 
|  | 461 | // | 
|  | 462 | // TODO: If there's a satisfactory reason, add a target hook for | 
|  | 463 | // this instead of hard-coding 0, which is correct for most targets. | 
|  | 464 | int32_t Offset = 0; | 
|  | 465 |  | 
|  | 466 | Value *F = CGM.getIntrinsic(Intrinsic::eh_dwarf_cfa, 0, 0); | 
|  | 467 | return RValue::get(Builder.CreateCall(F, getInt32(VMContext, Offset))); | 
|  | 468 | } | 
| Eli Friedman | 256f77e | 2008-05-20 08:59:34 +0000 | [diff] [blame] | 469 | case Builtin::BI__builtin_return_address: { | 
| Anton Korobeynikov | 83c2a98 | 2009-12-27 14:27:22 +0000 | [diff] [blame] | 470 | Value *Depth = EmitScalarExpr(E->getArg(0)); | 
|  | 471 | Depth = Builder.CreateIntCast(Depth, | 
|  | 472 | llvm::Type::getInt32Ty(VMContext), | 
|  | 473 | false, "tmp"); | 
| Eli Friedman | 256f77e | 2008-05-20 08:59:34 +0000 | [diff] [blame] | 474 | Value *F = CGM.getIntrinsic(Intrinsic::returnaddress, 0, 0); | 
| Anton Korobeynikov | 83c2a98 | 2009-12-27 14:27:22 +0000 | [diff] [blame] | 475 | return RValue::get(Builder.CreateCall(F, Depth)); | 
| Eli Friedman | 256f77e | 2008-05-20 08:59:34 +0000 | [diff] [blame] | 476 | } | 
|  | 477 | case Builtin::BI__builtin_frame_address: { | 
| Anton Korobeynikov | 83c2a98 | 2009-12-27 14:27:22 +0000 | [diff] [blame] | 478 | Value *Depth = EmitScalarExpr(E->getArg(0)); | 
|  | 479 | Depth = Builder.CreateIntCast(Depth, | 
|  | 480 | llvm::Type::getInt32Ty(VMContext), | 
|  | 481 | false, "tmp"); | 
| Eli Friedman | 256f77e | 2008-05-20 08:59:34 +0000 | [diff] [blame] | 482 | Value *F = CGM.getIntrinsic(Intrinsic::frameaddress, 0, 0); | 
| Anton Korobeynikov | 83c2a98 | 2009-12-27 14:27:22 +0000 | [diff] [blame] | 483 | return RValue::get(Builder.CreateCall(F, Depth)); | 
| Eli Friedman | 256f77e | 2008-05-20 08:59:34 +0000 | [diff] [blame] | 484 | } | 
| Eli Friedman | 3b660ef | 2009-05-03 19:23:23 +0000 | [diff] [blame] | 485 | case Builtin::BI__builtin_extract_return_addr: { | 
| John McCall | 492c4f9 | 2010-03-03 04:15:11 +0000 | [diff] [blame] | 486 | Value *Address = EmitScalarExpr(E->getArg(0)); | 
|  | 487 | Value *Result = getTargetHooks().decodeReturnAddress(*this, Address); | 
|  | 488 | return RValue::get(Result); | 
|  | 489 | } | 
|  | 490 | case Builtin::BI__builtin_frob_return_addr: { | 
|  | 491 | Value *Address = EmitScalarExpr(E->getArg(0)); | 
|  | 492 | Value *Result = getTargetHooks().encodeReturnAddress(*this, Address); | 
|  | 493 | return RValue::get(Result); | 
| Eli Friedman | 3b660ef | 2009-05-03 19:23:23 +0000 | [diff] [blame] | 494 | } | 
| John McCall | 6374c33 | 2010-03-06 00:35:14 +0000 | [diff] [blame] | 495 | case Builtin::BI__builtin_dwarf_sp_column: { | 
|  | 496 | const llvm::IntegerType *Ty | 
|  | 497 | = cast<llvm::IntegerType>(ConvertType(E->getType())); | 
|  | 498 | int Column = getTargetHooks().getDwarfEHStackPointer(CGM); | 
|  | 499 | if (Column == -1) { | 
|  | 500 | CGM.ErrorUnsupported(E, "__builtin_dwarf_sp_column"); | 
|  | 501 | return RValue::get(llvm::UndefValue::get(Ty)); | 
|  | 502 | } | 
|  | 503 | return RValue::get(llvm::ConstantInt::get(Ty, Column, true)); | 
|  | 504 | } | 
|  | 505 | case Builtin::BI__builtin_init_dwarf_reg_size_table: { | 
|  | 506 | Value *Address = EmitScalarExpr(E->getArg(0)); | 
|  | 507 | if (getTargetHooks().initDwarfEHRegSizeTable(*this, Address)) | 
|  | 508 | CGM.ErrorUnsupported(E, "__builtin_init_dwarf_reg_size_table"); | 
|  | 509 | return RValue::get(llvm::UndefValue::get(ConvertType(E->getType()))); | 
|  | 510 | } | 
| John McCall | 7ada111 | 2010-03-03 05:38:58 +0000 | [diff] [blame] | 511 | case Builtin::BI__builtin_eh_return: { | 
|  | 512 | Value *Int = EmitScalarExpr(E->getArg(0)); | 
|  | 513 | Value *Ptr = EmitScalarExpr(E->getArg(1)); | 
|  | 514 |  | 
|  | 515 | const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(Int->getType()); | 
|  | 516 | assert((IntTy->getBitWidth() == 32 || IntTy->getBitWidth() == 64) && | 
|  | 517 | "LLVM's __builtin_eh_return only supports 32- and 64-bit variants"); | 
|  | 518 | Value *F = CGM.getIntrinsic(IntTy->getBitWidth() == 32 | 
|  | 519 | ? Intrinsic::eh_return_i32 | 
|  | 520 | : Intrinsic::eh_return_i64, | 
|  | 521 | 0, 0); | 
|  | 522 | Builder.CreateCall2(F, Int, Ptr); | 
|  | 523 | Value *V = Builder.CreateUnreachable(); | 
|  | 524 | Builder.ClearInsertionPoint(); | 
|  | 525 | return RValue::get(V); | 
|  | 526 | } | 
| Eli Friedman | a6d75c0 | 2009-06-02 09:37:50 +0000 | [diff] [blame] | 527 | case Builtin::BI__builtin_unwind_init: { | 
|  | 528 | Value *F = CGM.getIntrinsic(Intrinsic::eh_unwind_init, 0, 0); | 
|  | 529 | return RValue::get(Builder.CreateCall(F)); | 
|  | 530 | } | 
| John McCall | 5e11085 | 2010-03-02 02:31:24 +0000 | [diff] [blame] | 531 | case Builtin::BI__builtin_extend_pointer: { | 
|  | 532 | // Extends a pointer to the size of an _Unwind_Word, which is | 
| John McCall | d0b76ca | 2010-03-02 03:50:12 +0000 | [diff] [blame] | 533 | // uint64_t on all platforms.  Generally this gets poked into a | 
|  | 534 | // register and eventually used as an address, so if the | 
|  | 535 | // addressing registers are wider than pointers and the platform | 
|  | 536 | // doesn't implicitly ignore high-order bits when doing | 
|  | 537 | // addressing, we need to make sure we zext / sext based on | 
|  | 538 | // the platform's expectations. | 
| John McCall | 5e11085 | 2010-03-02 02:31:24 +0000 | [diff] [blame] | 539 | // | 
|  | 540 | // See: http://gcc.gnu.org/ml/gcc-bugs/2002-02/msg00237.html | 
| John McCall | d0b76ca | 2010-03-02 03:50:12 +0000 | [diff] [blame] | 541 |  | 
|  | 542 | LLVMContext &C = CGM.getLLVMContext(); | 
|  | 543 |  | 
|  | 544 | // Cast the pointer to intptr_t. | 
| John McCall | 5e11085 | 2010-03-02 02:31:24 +0000 | [diff] [blame] | 545 | Value *Ptr = EmitScalarExpr(E->getArg(0)); | 
| John McCall | d0b76ca | 2010-03-02 03:50:12 +0000 | [diff] [blame] | 546 | const llvm::IntegerType *IntPtrTy = CGM.getTargetData().getIntPtrType(C); | 
|  | 547 | Value *Result = Builder.CreatePtrToInt(Ptr, IntPtrTy, "extend.cast"); | 
|  | 548 |  | 
|  | 549 | // If that's 64 bits, we're done. | 
|  | 550 | if (IntPtrTy->getBitWidth() == 64) | 
|  | 551 | return RValue::get(Result); | 
|  | 552 |  | 
|  | 553 | // Otherwise, ask the codegen data what to do. | 
|  | 554 | const llvm::IntegerType *Int64Ty = llvm::IntegerType::get(C, 64); | 
| John McCall | 492c4f9 | 2010-03-03 04:15:11 +0000 | [diff] [blame] | 555 | if (getTargetHooks().extendPointerWithSExt()) | 
| John McCall | d0b76ca | 2010-03-02 03:50:12 +0000 | [diff] [blame] | 556 | return RValue::get(Builder.CreateSExt(Result, Int64Ty, "extend.sext")); | 
|  | 557 | else | 
|  | 558 | return RValue::get(Builder.CreateZExt(Result, Int64Ty, "extend.zext")); | 
| John McCall | 5e11085 | 2010-03-02 02:31:24 +0000 | [diff] [blame] | 559 | } | 
| Eli Friedman | a6d75c0 | 2009-06-02 09:37:50 +0000 | [diff] [blame] | 560 | case Builtin::BI__builtin_setjmp: { | 
| John McCall | 78673d9 | 2010-05-27 18:47:06 +0000 | [diff] [blame^] | 561 | // Buffer is a void**. | 
| Eli Friedman | a6d75c0 | 2009-06-02 09:37:50 +0000 | [diff] [blame] | 562 | Value *Buf = EmitScalarExpr(E->getArg(0)); | 
| John McCall | 78673d9 | 2010-05-27 18:47:06 +0000 | [diff] [blame^] | 563 |  | 
|  | 564 | // Store the frame pointer to the setjmp buffer. | 
| Eli Friedman | a6d75c0 | 2009-06-02 09:37:50 +0000 | [diff] [blame] | 565 | Value *FrameAddr = | 
| John McCall | 78673d9 | 2010-05-27 18:47:06 +0000 | [diff] [blame^] | 566 | Builder.CreateCall(CGM.getIntrinsic(Intrinsic::frameaddress), | 
|  | 567 | ConstantInt::get(llvm::Type::getInt32Ty(VMContext), 0)); | 
| Eli Friedman | a6d75c0 | 2009-06-02 09:37:50 +0000 | [diff] [blame] | 568 | Builder.CreateStore(FrameAddr, Buf); | 
| John McCall | 78673d9 | 2010-05-27 18:47:06 +0000 | [diff] [blame^] | 569 |  | 
|  | 570 | // Call LLVM's EH setjmp, which is lightweight. | 
|  | 571 | Value *F = CGM.getIntrinsic(Intrinsic::eh_sjlj_setjmp); | 
|  | 572 | Buf = Builder.CreateBitCast(Buf, llvm::Type::getInt8PtrTy(VMContext)); | 
| Eli Friedman | a6d75c0 | 2009-06-02 09:37:50 +0000 | [diff] [blame] | 573 | return RValue::get(Builder.CreateCall(F, Buf)); | 
|  | 574 | } | 
|  | 575 | case Builtin::BI__builtin_longjmp: { | 
| Eli Friedman | a6d75c0 | 2009-06-02 09:37:50 +0000 | [diff] [blame] | 576 | Value *Buf = EmitScalarExpr(E->getArg(0)); | 
| John McCall | 78673d9 | 2010-05-27 18:47:06 +0000 | [diff] [blame^] | 577 | Buf = Builder.CreateBitCast(Buf, llvm::Type::getInt8PtrTy(VMContext)); | 
|  | 578 |  | 
|  | 579 | // Call LLVM's EH longjmp, which is lightweight. | 
|  | 580 | Builder.CreateCall(CGM.getIntrinsic(Intrinsic::eh_sjlj_longjmp), Buf); | 
|  | 581 |  | 
|  | 582 | // longjmp doesn't return; mark this as unreachable | 
|  | 583 | Value *V = Builder.CreateUnreachable(); | 
|  | 584 | Builder.ClearInsertionPoint(); | 
|  | 585 | return RValue::get(V); | 
| Eli Friedman | a6d75c0 | 2009-06-02 09:37:50 +0000 | [diff] [blame] | 586 | } | 
| Mon P Wang | 1ffe281 | 2008-05-09 22:40:52 +0000 | [diff] [blame] | 587 | case Builtin::BI__sync_fetch_and_add: | 
| Mon P Wang | 1ffe281 | 2008-05-09 22:40:52 +0000 | [diff] [blame] | 588 | case Builtin::BI__sync_fetch_and_sub: | 
| Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 589 | case Builtin::BI__sync_fetch_and_or: | 
|  | 590 | case Builtin::BI__sync_fetch_and_and: | 
|  | 591 | case Builtin::BI__sync_fetch_and_xor: | 
|  | 592 | case Builtin::BI__sync_add_and_fetch: | 
|  | 593 | case Builtin::BI__sync_sub_and_fetch: | 
|  | 594 | case Builtin::BI__sync_and_and_fetch: | 
|  | 595 | case Builtin::BI__sync_or_and_fetch: | 
|  | 596 | case Builtin::BI__sync_xor_and_fetch: | 
|  | 597 | case Builtin::BI__sync_val_compare_and_swap: | 
|  | 598 | case Builtin::BI__sync_bool_compare_and_swap: | 
|  | 599 | case Builtin::BI__sync_lock_test_and_set: | 
|  | 600 | case Builtin::BI__sync_lock_release: | 
|  | 601 | assert(0 && "Shouldn't make it through sema"); | 
|  | 602 | case Builtin::BI__sync_fetch_and_add_1: | 
|  | 603 | case Builtin::BI__sync_fetch_and_add_2: | 
|  | 604 | case Builtin::BI__sync_fetch_and_add_4: | 
|  | 605 | case Builtin::BI__sync_fetch_and_add_8: | 
|  | 606 | case Builtin::BI__sync_fetch_and_add_16: | 
|  | 607 | return EmitBinaryAtomic(*this, Intrinsic::atomic_load_add, E); | 
|  | 608 | case Builtin::BI__sync_fetch_and_sub_1: | 
|  | 609 | case Builtin::BI__sync_fetch_and_sub_2: | 
|  | 610 | case Builtin::BI__sync_fetch_and_sub_4: | 
|  | 611 | case Builtin::BI__sync_fetch_and_sub_8: | 
|  | 612 | case Builtin::BI__sync_fetch_and_sub_16: | 
| Mon P Wang | 09b6bf5 | 2008-06-25 08:21:36 +0000 | [diff] [blame] | 613 | return EmitBinaryAtomic(*this, Intrinsic::atomic_load_sub, E); | 
| Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 614 | case Builtin::BI__sync_fetch_and_or_1: | 
|  | 615 | case Builtin::BI__sync_fetch_and_or_2: | 
|  | 616 | case Builtin::BI__sync_fetch_and_or_4: | 
|  | 617 | case Builtin::BI__sync_fetch_and_or_8: | 
|  | 618 | case Builtin::BI__sync_fetch_and_or_16: | 
|  | 619 | return EmitBinaryAtomic(*this, Intrinsic::atomic_load_or, E); | 
|  | 620 | case Builtin::BI__sync_fetch_and_and_1: | 
|  | 621 | case Builtin::BI__sync_fetch_and_and_2: | 
|  | 622 | case Builtin::BI__sync_fetch_and_and_4: | 
|  | 623 | case Builtin::BI__sync_fetch_and_and_8: | 
|  | 624 | case Builtin::BI__sync_fetch_and_and_16: | 
|  | 625 | return EmitBinaryAtomic(*this, Intrinsic::atomic_load_and, E); | 
|  | 626 | case Builtin::BI__sync_fetch_and_xor_1: | 
|  | 627 | case Builtin::BI__sync_fetch_and_xor_2: | 
|  | 628 | case Builtin::BI__sync_fetch_and_xor_4: | 
|  | 629 | case Builtin::BI__sync_fetch_and_xor_8: | 
|  | 630 | case Builtin::BI__sync_fetch_and_xor_16: | 
|  | 631 | return EmitBinaryAtomic(*this, Intrinsic::atomic_load_xor, E); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 632 |  | 
| Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 633 | // Clang extensions: not overloaded yet. | 
| Mon P Wang | 1ffe281 | 2008-05-09 22:40:52 +0000 | [diff] [blame] | 634 | case Builtin::BI__sync_fetch_and_min: | 
|  | 635 | return EmitBinaryAtomic(*this, Intrinsic::atomic_load_min, E); | 
|  | 636 | case Builtin::BI__sync_fetch_and_max: | 
|  | 637 | return EmitBinaryAtomic(*this, Intrinsic::atomic_load_max, E); | 
|  | 638 | case Builtin::BI__sync_fetch_and_umin: | 
|  | 639 | return EmitBinaryAtomic(*this, Intrinsic::atomic_load_umin, E); | 
|  | 640 | case Builtin::BI__sync_fetch_and_umax: | 
|  | 641 | return EmitBinaryAtomic(*this, Intrinsic::atomic_load_umax, E); | 
| Daniel Dunbar | 0002d23 | 2009-04-07 00:55:51 +0000 | [diff] [blame] | 642 |  | 
| Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 643 | case Builtin::BI__sync_add_and_fetch_1: | 
|  | 644 | case Builtin::BI__sync_add_and_fetch_2: | 
|  | 645 | case Builtin::BI__sync_add_and_fetch_4: | 
|  | 646 | case Builtin::BI__sync_add_and_fetch_8: | 
|  | 647 | case Builtin::BI__sync_add_and_fetch_16: | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 648 | return EmitBinaryAtomicPost(*this, Intrinsic::atomic_load_add, E, | 
| Daniel Dunbar | 0002d23 | 2009-04-07 00:55:51 +0000 | [diff] [blame] | 649 | llvm::Instruction::Add); | 
| Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 650 | case Builtin::BI__sync_sub_and_fetch_1: | 
|  | 651 | case Builtin::BI__sync_sub_and_fetch_2: | 
|  | 652 | case Builtin::BI__sync_sub_and_fetch_4: | 
|  | 653 | case Builtin::BI__sync_sub_and_fetch_8: | 
|  | 654 | case Builtin::BI__sync_sub_and_fetch_16: | 
| Daniel Dunbar | 0002d23 | 2009-04-07 00:55:51 +0000 | [diff] [blame] | 655 | return EmitBinaryAtomicPost(*this, Intrinsic::atomic_load_sub, E, | 
|  | 656 | llvm::Instruction::Sub); | 
| Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 657 | case Builtin::BI__sync_and_and_fetch_1: | 
|  | 658 | case Builtin::BI__sync_and_and_fetch_2: | 
|  | 659 | case Builtin::BI__sync_and_and_fetch_4: | 
|  | 660 | case Builtin::BI__sync_and_and_fetch_8: | 
|  | 661 | case Builtin::BI__sync_and_and_fetch_16: | 
| Daniel Dunbar | 0002d23 | 2009-04-07 00:55:51 +0000 | [diff] [blame] | 662 | return EmitBinaryAtomicPost(*this, Intrinsic::atomic_load_and, E, | 
|  | 663 | llvm::Instruction::And); | 
| Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 664 | case Builtin::BI__sync_or_and_fetch_1: | 
|  | 665 | case Builtin::BI__sync_or_and_fetch_2: | 
|  | 666 | case Builtin::BI__sync_or_and_fetch_4: | 
|  | 667 | case Builtin::BI__sync_or_and_fetch_8: | 
|  | 668 | case Builtin::BI__sync_or_and_fetch_16: | 
| Daniel Dunbar | 0002d23 | 2009-04-07 00:55:51 +0000 | [diff] [blame] | 669 | return EmitBinaryAtomicPost(*this, Intrinsic::atomic_load_or, E, | 
|  | 670 | llvm::Instruction::Or); | 
| Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 671 | case Builtin::BI__sync_xor_and_fetch_1: | 
|  | 672 | case Builtin::BI__sync_xor_and_fetch_2: | 
|  | 673 | case Builtin::BI__sync_xor_and_fetch_4: | 
|  | 674 | case Builtin::BI__sync_xor_and_fetch_8: | 
|  | 675 | case Builtin::BI__sync_xor_and_fetch_16: | 
| Daniel Dunbar | 0002d23 | 2009-04-07 00:55:51 +0000 | [diff] [blame] | 676 | return EmitBinaryAtomicPost(*this, Intrinsic::atomic_load_xor, E, | 
|  | 677 | llvm::Instruction::Xor); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 678 |  | 
| Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 679 | case Builtin::BI__sync_val_compare_and_swap_1: | 
|  | 680 | case Builtin::BI__sync_val_compare_and_swap_2: | 
|  | 681 | case Builtin::BI__sync_val_compare_and_swap_4: | 
|  | 682 | case Builtin::BI__sync_val_compare_and_swap_8: | 
| Daniel Dunbar | cb61a7b | 2010-03-20 07:04:11 +0000 | [diff] [blame] | 683 | case Builtin::BI__sync_val_compare_and_swap_16: { | 
| Mon P Wang | c500451 | 2008-07-31 03:28:23 +0000 | [diff] [blame] | 684 | const llvm::Type *ResType[2]; | 
|  | 685 | ResType[0]= ConvertType(E->getType()); | 
|  | 686 | ResType[1] = ConvertType(E->getArg(0)->getType()); | 
|  | 687 | Value *AtomF = CGM.getIntrinsic(Intrinsic::atomic_cmp_swap, ResType, 2); | 
| Daniel Dunbar | cb61a7b | 2010-03-20 07:04:11 +0000 | [diff] [blame] | 688 | Value *Args[3] = { EmitScalarExpr(E->getArg(0)), | 
|  | 689 | EmitScalarExpr(E->getArg(1)), | 
|  | 690 | EmitScalarExpr(E->getArg(2)) }; | 
|  | 691 | return RValue::get(EmitCallWithBarrier(*this, AtomF, Args, Args + 3)); | 
| Anders Carlsson | 89799cf | 2007-10-29 02:59:40 +0000 | [diff] [blame] | 692 | } | 
| Daniel Dunbar | 0002d23 | 2009-04-07 00:55:51 +0000 | [diff] [blame] | 693 |  | 
| Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 694 | case Builtin::BI__sync_bool_compare_and_swap_1: | 
|  | 695 | case Builtin::BI__sync_bool_compare_and_swap_2: | 
|  | 696 | case Builtin::BI__sync_bool_compare_and_swap_4: | 
|  | 697 | case Builtin::BI__sync_bool_compare_and_swap_8: | 
| Daniel Dunbar | cb61a7b | 2010-03-20 07:04:11 +0000 | [diff] [blame] | 698 | case Builtin::BI__sync_bool_compare_and_swap_16: { | 
| Daniel Dunbar | 0002d23 | 2009-04-07 00:55:51 +0000 | [diff] [blame] | 699 | const llvm::Type *ResType[2]; | 
| Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 700 | ResType[0]= ConvertType(E->getArg(1)->getType()); | 
| Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 701 | ResType[1] = llvm::PointerType::getUnqual(ResType[0]); | 
| Daniel Dunbar | 0002d23 | 2009-04-07 00:55:51 +0000 | [diff] [blame] | 702 | Value *AtomF = CGM.getIntrinsic(Intrinsic::atomic_cmp_swap, ResType, 2); | 
|  | 703 | Value *OldVal = EmitScalarExpr(E->getArg(1)); | 
| Daniel Dunbar | cb61a7b | 2010-03-20 07:04:11 +0000 | [diff] [blame] | 704 | Value *Args[3] = { EmitScalarExpr(E->getArg(0)), | 
|  | 705 | OldVal, | 
|  | 706 | EmitScalarExpr(E->getArg(2)) }; | 
|  | 707 | Value *PrevVal = EmitCallWithBarrier(*this, AtomF, Args, Args + 3); | 
| Daniel Dunbar | 0002d23 | 2009-04-07 00:55:51 +0000 | [diff] [blame] | 708 | Value *Result = Builder.CreateICmpEQ(PrevVal, OldVal); | 
|  | 709 | // zext bool to int. | 
|  | 710 | return RValue::get(Builder.CreateZExt(Result, ConvertType(E->getType()))); | 
|  | 711 | } | 
|  | 712 |  | 
| Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 713 | case Builtin::BI__sync_lock_test_and_set_1: | 
|  | 714 | case Builtin::BI__sync_lock_test_and_set_2: | 
|  | 715 | case Builtin::BI__sync_lock_test_and_set_4: | 
|  | 716 | case Builtin::BI__sync_lock_test_and_set_8: | 
|  | 717 | case Builtin::BI__sync_lock_test_and_set_16: | 
| Nate Begeman | 7ea2e3f | 2008-05-15 07:38:03 +0000 | [diff] [blame] | 718 | return EmitBinaryAtomic(*this, Intrinsic::atomic_swap, E); | 
| Daniel Dunbar | cb61a7b | 2010-03-20 07:04:11 +0000 | [diff] [blame] | 719 |  | 
| Chris Lattner | 5caa370 | 2009-05-08 06:58:22 +0000 | [diff] [blame] | 720 | case Builtin::BI__sync_lock_release_1: | 
|  | 721 | case Builtin::BI__sync_lock_release_2: | 
|  | 722 | case Builtin::BI__sync_lock_release_4: | 
|  | 723 | case Builtin::BI__sync_lock_release_8: | 
| Chris Lattner | f58cd9b | 2009-05-13 04:46:13 +0000 | [diff] [blame] | 724 | case Builtin::BI__sync_lock_release_16: { | 
|  | 725 | Value *Ptr = EmitScalarExpr(E->getArg(0)); | 
|  | 726 | const llvm::Type *ElTy = | 
|  | 727 | cast<llvm::PointerType>(Ptr->getType())->getElementType(); | 
| Daniel Dunbar | 007b567 | 2009-11-29 21:11:47 +0000 | [diff] [blame] | 728 | llvm::StoreInst *Store = | 
|  | 729 | Builder.CreateStore(llvm::Constant::getNullValue(ElTy), Ptr); | 
|  | 730 | Store->setVolatile(true); | 
| Daniel Dunbar | eb4f81e | 2009-05-27 23:45:33 +0000 | [diff] [blame] | 731 | return RValue::get(0); | 
| Chris Lattner | f58cd9b | 2009-05-13 04:46:13 +0000 | [diff] [blame] | 732 | } | 
| Daniel Dunbar | ef2abfe | 2009-02-16 22:43:43 +0000 | [diff] [blame] | 733 |  | 
| Chris Lattner | f58cd9b | 2009-05-13 04:46:13 +0000 | [diff] [blame] | 734 | case Builtin::BI__sync_synchronize: { | 
| Daniel Dunbar | cb61a7b | 2010-03-20 07:04:11 +0000 | [diff] [blame] | 735 | // We assume like gcc appears to, that this only applies to cached memory. | 
|  | 736 | EmitMemoryBarrier(*this, true, true, true, true, false); | 
| Daniel Dunbar | eb4f81e | 2009-05-27 23:45:33 +0000 | [diff] [blame] | 737 | return RValue::get(0); | 
| Chris Lattner | f58cd9b | 2009-05-13 04:46:13 +0000 | [diff] [blame] | 738 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 739 |  | 
| Tanya Lattner | 0b57164 | 2010-01-16 01:21:14 +0000 | [diff] [blame] | 740 | case Builtin::BI__builtin_llvm_memory_barrier: { | 
|  | 741 | Value *C[5] = { | 
|  | 742 | EmitScalarExpr(E->getArg(0)), | 
|  | 743 | EmitScalarExpr(E->getArg(1)), | 
|  | 744 | EmitScalarExpr(E->getArg(2)), | 
|  | 745 | EmitScalarExpr(E->getArg(3)), | 
|  | 746 | EmitScalarExpr(E->getArg(4)) | 
|  | 747 | }; | 
|  | 748 | Builder.CreateCall(CGM.getIntrinsic(Intrinsic::memory_barrier), C, C + 5); | 
|  | 749 | return RValue::get(0); | 
|  | 750 | } | 
|  | 751 |  | 
| Daniel Dunbar | ef2abfe | 2009-02-16 22:43:43 +0000 | [diff] [blame] | 752 | // Library functions with special handling. | 
| Daniel Dunbar | ef2abfe | 2009-02-16 22:43:43 +0000 | [diff] [blame] | 753 | case Builtin::BIsqrt: | 
|  | 754 | case Builtin::BIsqrtf: | 
|  | 755 | case Builtin::BIsqrtl: { | 
| John McCall | beb4128 | 2010-04-07 08:20:20 +0000 | [diff] [blame] | 756 | // TODO: there is currently no set of optimizer flags | 
|  | 757 | // sufficient for us to rewrite sqrt to @llvm.sqrt. | 
|  | 758 | // -fmath-errno=0 is not good enough; we need finiteness. | 
|  | 759 | // We could probably precondition the call with an ult | 
|  | 760 | // against 0, but is that worth the complexity? | 
|  | 761 | break; | 
| Daniel Dunbar | ef2abfe | 2009-02-16 22:43:43 +0000 | [diff] [blame] | 762 | } | 
|  | 763 |  | 
|  | 764 | case Builtin::BIpow: | 
|  | 765 | case Builtin::BIpowf: | 
|  | 766 | case Builtin::BIpowl: { | 
|  | 767 | // Rewrite sqrt to intrinsic if allowed. | 
| Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 768 | if (!FD->hasAttr<ConstAttr>()) | 
| Daniel Dunbar | ef2abfe | 2009-02-16 22:43:43 +0000 | [diff] [blame] | 769 | break; | 
|  | 770 | Value *Base = EmitScalarExpr(E->getArg(0)); | 
|  | 771 | Value *Exponent = EmitScalarExpr(E->getArg(1)); | 
|  | 772 | const llvm::Type *ArgType = Base->getType(); | 
|  | 773 | Value *F = CGM.getIntrinsic(Intrinsic::pow, &ArgType, 1); | 
|  | 774 | return RValue::get(Builder.CreateCall2(F, Base, Exponent, "tmp")); | 
|  | 775 | } | 
| Eli Friedman | ba68b08 | 2010-03-06 02:17:52 +0000 | [diff] [blame] | 776 |  | 
|  | 777 | case Builtin::BI__builtin_signbit: | 
|  | 778 | case Builtin::BI__builtin_signbitf: | 
|  | 779 | case Builtin::BI__builtin_signbitl: { | 
|  | 780 | LLVMContext &C = CGM.getLLVMContext(); | 
|  | 781 |  | 
|  | 782 | Value *Arg = EmitScalarExpr(E->getArg(0)); | 
|  | 783 | const llvm::Type *ArgTy = Arg->getType(); | 
|  | 784 | if (ArgTy->isPPC_FP128Ty()) | 
|  | 785 | break; // FIXME: I'm not sure what the right implementation is here. | 
|  | 786 | int ArgWidth = ArgTy->getPrimitiveSizeInBits(); | 
|  | 787 | const llvm::Type *ArgIntTy = llvm::IntegerType::get(C, ArgWidth); | 
|  | 788 | Value *BCArg = Builder.CreateBitCast(Arg, ArgIntTy); | 
|  | 789 | Value *ZeroCmp = llvm::Constant::getNullValue(ArgIntTy); | 
|  | 790 | Value *Result = Builder.CreateICmpSLT(BCArg, ZeroCmp); | 
|  | 791 | return RValue::get(Builder.CreateZExt(Result, ConvertType(E->getType()))); | 
|  | 792 | } | 
| Nate Begeman | 7ea2e3f | 2008-05-15 07:38:03 +0000 | [diff] [blame] | 793 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 794 |  | 
| Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 795 | // If this is an alias for a libm function (e.g. __builtin_sin) turn it into | 
|  | 796 | // that function. | 
| Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 797 | if (getContext().BuiltinInfo.isLibFunction(BuiltinID) || | 
|  | 798 | getContext().BuiltinInfo.isPredefinedLibFunction(BuiltinID)) | 
| Anders Carlsson | 31777a2 | 2009-12-24 19:08:58 +0000 | [diff] [blame] | 799 | return EmitCall(E->getCallee()->getType(), | 
|  | 800 | CGM.getBuiltinLibFunction(FD, BuiltinID), | 
| Anders Carlsson | d2490a9 | 2009-12-24 20:40:36 +0000 | [diff] [blame] | 801 | ReturnValueSlot(), | 
| Anders Carlsson | 31777a2 | 2009-12-24 19:08:58 +0000 | [diff] [blame] | 802 | E->arg_begin(), E->arg_end()); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 803 |  | 
| Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 804 | // See if we have a target specific intrinsic. | 
| Dale Johannesen | a6f80ef | 2009-02-05 01:50:47 +0000 | [diff] [blame] | 805 | const char *Name = getContext().BuiltinInfo.GetName(BuiltinID); | 
| Daniel Dunbar | 55cc2ed | 2009-08-24 09:54:37 +0000 | [diff] [blame] | 806 | Intrinsic::ID IntrinsicID = Intrinsic::not_intrinsic; | 
|  | 807 | if (const char *Prefix = | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 808 | llvm::Triple::getArchTypePrefix(Target.getTriple().getArch())) | 
| Daniel Dunbar | 55cc2ed | 2009-08-24 09:54:37 +0000 | [diff] [blame] | 809 | IntrinsicID = Intrinsic::getIntrinsicForGCCBuiltin(Prefix, Name); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 810 |  | 
| Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 811 | if (IntrinsicID != Intrinsic::not_intrinsic) { | 
|  | 812 | SmallVector<Value*, 16> Args; | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 813 |  | 
| Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 814 | Function *F = CGM.getIntrinsic(IntrinsicID); | 
|  | 815 | const llvm::FunctionType *FTy = F->getFunctionType(); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 816 |  | 
| Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 817 | for (unsigned i = 0, e = E->getNumArgs(); i != e; ++i) { | 
|  | 818 | Value *ArgValue = EmitScalarExpr(E->getArg(i)); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 819 |  | 
| Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 820 | // If the intrinsic arg type is different from the builtin arg type | 
|  | 821 | // we need to do a bit cast. | 
|  | 822 | const llvm::Type *PTy = FTy->getParamType(i); | 
|  | 823 | if (PTy != ArgValue->getType()) { | 
|  | 824 | assert(PTy->canLosslesslyBitCastTo(FTy->getParamType(i)) && | 
|  | 825 | "Must be able to losslessly bit cast to param"); | 
|  | 826 | ArgValue = Builder.CreateBitCast(ArgValue, PTy); | 
|  | 827 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 828 |  | 
| Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 829 | Args.push_back(ArgValue); | 
|  | 830 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 831 |  | 
| Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 832 | Value *V = Builder.CreateCall(F, Args.data(), Args.data() + Args.size()); | 
| Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 833 | QualType BuiltinRetType = E->getType(); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 834 |  | 
| Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 835 | const llvm::Type *RetTy = llvm::Type::getVoidTy(VMContext); | 
| Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 836 | if (!BuiltinRetType->isVoidType()) RetTy = ConvertType(BuiltinRetType); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 837 |  | 
| Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 838 | if (RetTy != V->getType()) { | 
|  | 839 | assert(V->getType()->canLosslesslyBitCastTo(RetTy) && | 
|  | 840 | "Must be able to losslessly bit cast result type"); | 
|  | 841 | V = Builder.CreateBitCast(V, RetTy); | 
|  | 842 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 843 |  | 
| Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 844 | return RValue::get(V); | 
|  | 845 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 846 |  | 
| Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 847 | // See if we have a target specific builtin that needs to be lowered. | 
| Daniel Dunbar | f02e9dd | 2008-10-10 00:24:54 +0000 | [diff] [blame] | 848 | if (Value *V = EmitTargetBuiltinExpr(BuiltinID, E)) | 
| Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 849 | return RValue::get(V); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 850 |  | 
| Daniel Dunbar | 488e993 | 2008-08-16 00:56:44 +0000 | [diff] [blame] | 851 | ErrorUnsupported(E, "builtin function"); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 852 |  | 
| Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 853 | // Unknown builtin, for now just dump it out and return undef. | 
|  | 854 | if (hasAggregateLLVMType(E->getType())) | 
| Daniel Dunbar | 195337d | 2010-02-09 02:48:28 +0000 | [diff] [blame] | 855 | return RValue::getAggregate(CreateMemTemp(E->getType())); | 
| Owen Anderson | 03e2050 | 2009-07-30 23:11:26 +0000 | [diff] [blame] | 856 | return RValue::get(llvm::UndefValue::get(ConvertType(E->getType()))); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 857 | } | 
| Anders Carlsson | 564f1de | 2007-12-09 23:17:02 +0000 | [diff] [blame] | 858 |  | 
| Daniel Dunbar | f02e9dd | 2008-10-10 00:24:54 +0000 | [diff] [blame] | 859 | Value *CodeGenFunction::EmitTargetBuiltinExpr(unsigned BuiltinID, | 
|  | 860 | const CallExpr *E) { | 
| Daniel Dunbar | 55cc2ed | 2009-08-24 09:54:37 +0000 | [diff] [blame] | 861 | switch (Target.getTriple().getArch()) { | 
| Chris Lattner | 2752c01 | 2010-03-03 19:03:45 +0000 | [diff] [blame] | 862 | case llvm::Triple::arm: | 
|  | 863 | case llvm::Triple::thumb: | 
|  | 864 | return EmitARMBuiltinExpr(BuiltinID, E); | 
| Daniel Dunbar | 55cc2ed | 2009-08-24 09:54:37 +0000 | [diff] [blame] | 865 | case llvm::Triple::x86: | 
|  | 866 | case llvm::Triple::x86_64: | 
| Daniel Dunbar | f02e9dd | 2008-10-10 00:24:54 +0000 | [diff] [blame] | 867 | return EmitX86BuiltinExpr(BuiltinID, E); | 
| Daniel Dunbar | 55cc2ed | 2009-08-24 09:54:37 +0000 | [diff] [blame] | 868 | case llvm::Triple::ppc: | 
|  | 869 | case llvm::Triple::ppc64: | 
| Daniel Dunbar | f02e9dd | 2008-10-10 00:24:54 +0000 | [diff] [blame] | 870 | return EmitPPCBuiltinExpr(BuiltinID, E); | 
| Daniel Dunbar | 55cc2ed | 2009-08-24 09:54:37 +0000 | [diff] [blame] | 871 | default: | 
|  | 872 | return 0; | 
|  | 873 | } | 
| Daniel Dunbar | f02e9dd | 2008-10-10 00:24:54 +0000 | [diff] [blame] | 874 | } | 
|  | 875 |  | 
| Chris Lattner | 2752c01 | 2010-03-03 19:03:45 +0000 | [diff] [blame] | 876 | Value *CodeGenFunction::EmitARMBuiltinExpr(unsigned BuiltinID, | 
|  | 877 | const CallExpr *E) { | 
|  | 878 | switch (BuiltinID) { | 
|  | 879 | default: return 0; | 
|  | 880 |  | 
|  | 881 | case ARM::BI__builtin_thread_pointer: { | 
|  | 882 | Value *AtomF = CGM.getIntrinsic(Intrinsic::arm_thread_pointer, 0, 0); | 
|  | 883 | return Builder.CreateCall(AtomF); | 
|  | 884 | } | 
|  | 885 | } | 
|  | 886 | } | 
|  | 887 |  | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 888 | Value *CodeGenFunction::EmitX86BuiltinExpr(unsigned BuiltinID, | 
| Chris Lattner | 1feedd8 | 2007-12-13 07:34:23 +0000 | [diff] [blame] | 889 | const CallExpr *E) { | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 890 |  | 
| Anders Carlsson | 2929cfa | 2007-12-14 17:48:24 +0000 | [diff] [blame] | 891 | llvm::SmallVector<Value*, 4> Ops; | 
|  | 892 |  | 
|  | 893 | for (unsigned i = 0, e = E->getNumArgs(); i != e; i++) | 
|  | 894 | Ops.push_back(EmitScalarExpr(E->getArg(i))); | 
|  | 895 |  | 
| Anders Carlsson | 564f1de | 2007-12-09 23:17:02 +0000 | [diff] [blame] | 896 | switch (BuiltinID) { | 
| Anders Carlsson | 46a26b0 | 2007-12-09 23:39:18 +0000 | [diff] [blame] | 897 | default: return 0; | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 898 | case X86::BI__builtin_ia32_pslldi128: | 
| Nate Begeman | e772210 | 2008-04-14 04:49:57 +0000 | [diff] [blame] | 899 | case X86::BI__builtin_ia32_psllqi128: | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 900 | case X86::BI__builtin_ia32_psllwi128: | 
| Nate Begeman | e772210 | 2008-04-14 04:49:57 +0000 | [diff] [blame] | 901 | case X86::BI__builtin_ia32_psradi128: | 
|  | 902 | case X86::BI__builtin_ia32_psrawi128: | 
|  | 903 | case X86::BI__builtin_ia32_psrldi128: | 
|  | 904 | case X86::BI__builtin_ia32_psrlqi128: | 
|  | 905 | case X86::BI__builtin_ia32_psrlwi128: { | 
| Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 906 | Ops[1] = Builder.CreateZExt(Ops[1], llvm::Type::getInt64Ty(VMContext), "zext"); | 
|  | 907 | const llvm::Type *Ty = llvm::VectorType::get(llvm::Type::getInt64Ty(VMContext), 2); | 
|  | 908 | llvm::Value *Zero = llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), 0); | 
| Owen Anderson | 03e2050 | 2009-07-30 23:11:26 +0000 | [diff] [blame] | 909 | Ops[1] = Builder.CreateInsertElement(llvm::UndefValue::get(Ty), | 
| Nate Begeman | e772210 | 2008-04-14 04:49:57 +0000 | [diff] [blame] | 910 | Ops[1], Zero, "insert"); | 
|  | 911 | Ops[1] = Builder.CreateBitCast(Ops[1], Ops[0]->getType(), "bitcast"); | 
|  | 912 | const char *name = 0; | 
|  | 913 | Intrinsic::ID ID = Intrinsic::not_intrinsic; | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 914 |  | 
| Nate Begeman | e772210 | 2008-04-14 04:49:57 +0000 | [diff] [blame] | 915 | switch (BuiltinID) { | 
|  | 916 | default: assert(0 && "Unsupported shift intrinsic!"); | 
|  | 917 | case X86::BI__builtin_ia32_pslldi128: | 
|  | 918 | name = "pslldi"; | 
|  | 919 | ID = Intrinsic::x86_sse2_psll_d; | 
|  | 920 | break; | 
|  | 921 | case X86::BI__builtin_ia32_psllqi128: | 
|  | 922 | name = "psllqi"; | 
|  | 923 | ID = Intrinsic::x86_sse2_psll_q; | 
|  | 924 | break; | 
|  | 925 | case X86::BI__builtin_ia32_psllwi128: | 
|  | 926 | name = "psllwi"; | 
|  | 927 | ID = Intrinsic::x86_sse2_psll_w; | 
|  | 928 | break; | 
|  | 929 | case X86::BI__builtin_ia32_psradi128: | 
|  | 930 | name = "psradi"; | 
|  | 931 | ID = Intrinsic::x86_sse2_psra_d; | 
|  | 932 | break; | 
|  | 933 | case X86::BI__builtin_ia32_psrawi128: | 
|  | 934 | name = "psrawi"; | 
|  | 935 | ID = Intrinsic::x86_sse2_psra_w; | 
|  | 936 | break; | 
|  | 937 | case X86::BI__builtin_ia32_psrldi128: | 
|  | 938 | name = "psrldi"; | 
|  | 939 | ID = Intrinsic::x86_sse2_psrl_d; | 
|  | 940 | break; | 
|  | 941 | case X86::BI__builtin_ia32_psrlqi128: | 
|  | 942 | name = "psrlqi"; | 
|  | 943 | ID = Intrinsic::x86_sse2_psrl_q; | 
|  | 944 | break; | 
|  | 945 | case X86::BI__builtin_ia32_psrlwi128: | 
|  | 946 | name = "psrlwi"; | 
|  | 947 | ID = Intrinsic::x86_sse2_psrl_w; | 
|  | 948 | break; | 
|  | 949 | } | 
|  | 950 | llvm::Function *F = CGM.getIntrinsic(ID); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 951 | return Builder.CreateCall(F, &Ops[0], &Ops[0] + Ops.size(), name); | 
| Nate Begeman | e772210 | 2008-04-14 04:49:57 +0000 | [diff] [blame] | 952 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 953 | case X86::BI__builtin_ia32_pslldi: | 
| Anders Carlsson | 2929cfa | 2007-12-14 17:48:24 +0000 | [diff] [blame] | 954 | case X86::BI__builtin_ia32_psllqi: | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 955 | case X86::BI__builtin_ia32_psllwi: | 
| Anders Carlsson | 2929cfa | 2007-12-14 17:48:24 +0000 | [diff] [blame] | 956 | case X86::BI__builtin_ia32_psradi: | 
|  | 957 | case X86::BI__builtin_ia32_psrawi: | 
|  | 958 | case X86::BI__builtin_ia32_psrldi: | 
|  | 959 | case X86::BI__builtin_ia32_psrlqi: | 
|  | 960 | case X86::BI__builtin_ia32_psrlwi: { | 
| Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 961 | Ops[1] = Builder.CreateZExt(Ops[1], llvm::Type::getInt64Ty(VMContext), "zext"); | 
|  | 962 | const llvm::Type *Ty = llvm::VectorType::get(llvm::Type::getInt64Ty(VMContext), 1); | 
| Anders Carlsson | 2929cfa | 2007-12-14 17:48:24 +0000 | [diff] [blame] | 963 | Ops[1] = Builder.CreateBitCast(Ops[1], Ty, "bitcast"); | 
| Anders Carlsson | 2929cfa | 2007-12-14 17:48:24 +0000 | [diff] [blame] | 964 | const char *name = 0; | 
|  | 965 | Intrinsic::ID ID = Intrinsic::not_intrinsic; | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 966 |  | 
| Anders Carlsson | 2929cfa | 2007-12-14 17:48:24 +0000 | [diff] [blame] | 967 | switch (BuiltinID) { | 
|  | 968 | default: assert(0 && "Unsupported shift intrinsic!"); | 
|  | 969 | case X86::BI__builtin_ia32_pslldi: | 
|  | 970 | name = "pslldi"; | 
|  | 971 | ID = Intrinsic::x86_mmx_psll_d; | 
|  | 972 | break; | 
|  | 973 | case X86::BI__builtin_ia32_psllqi: | 
|  | 974 | name = "psllqi"; | 
|  | 975 | ID = Intrinsic::x86_mmx_psll_q; | 
|  | 976 | break; | 
|  | 977 | case X86::BI__builtin_ia32_psllwi: | 
|  | 978 | name = "psllwi"; | 
|  | 979 | ID = Intrinsic::x86_mmx_psll_w; | 
|  | 980 | break; | 
|  | 981 | case X86::BI__builtin_ia32_psradi: | 
|  | 982 | name = "psradi"; | 
|  | 983 | ID = Intrinsic::x86_mmx_psra_d; | 
|  | 984 | break; | 
|  | 985 | case X86::BI__builtin_ia32_psrawi: | 
|  | 986 | name = "psrawi"; | 
|  | 987 | ID = Intrinsic::x86_mmx_psra_w; | 
|  | 988 | break; | 
|  | 989 | case X86::BI__builtin_ia32_psrldi: | 
|  | 990 | name = "psrldi"; | 
|  | 991 | ID = Intrinsic::x86_mmx_psrl_d; | 
|  | 992 | break; | 
|  | 993 | case X86::BI__builtin_ia32_psrlqi: | 
|  | 994 | name = "psrlqi"; | 
|  | 995 | ID = Intrinsic::x86_mmx_psrl_q; | 
|  | 996 | break; | 
|  | 997 | case X86::BI__builtin_ia32_psrlwi: | 
|  | 998 | name = "psrlwi"; | 
|  | 999 | ID = Intrinsic::x86_mmx_psrl_w; | 
|  | 1000 | break; | 
|  | 1001 | } | 
| Chris Lattner | 7acda7c | 2007-12-18 00:25:38 +0000 | [diff] [blame] | 1002 | llvm::Function *F = CGM.getIntrinsic(ID); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1003 | return Builder.CreateCall(F, &Ops[0], &Ops[0] + Ops.size(), name); | 
| Anders Carlsson | 2929cfa | 2007-12-14 17:48:24 +0000 | [diff] [blame] | 1004 | } | 
| Anders Carlsson | 79dcf5f | 2009-05-18 19:16:46 +0000 | [diff] [blame] | 1005 | case X86::BI__builtin_ia32_cmpps: { | 
|  | 1006 | llvm::Function *F = CGM.getIntrinsic(Intrinsic::x86_sse_cmp_ps); | 
|  | 1007 | return Builder.CreateCall(F, &Ops[0], &Ops[0] + Ops.size(), "cmpps"); | 
|  | 1008 | } | 
|  | 1009 | case X86::BI__builtin_ia32_cmpss: { | 
|  | 1010 | llvm::Function *F = CGM.getIntrinsic(Intrinsic::x86_sse_cmp_ss); | 
|  | 1011 | return Builder.CreateCall(F, &Ops[0], &Ops[0] + Ops.size(), "cmpss"); | 
| Anders Carlsson | cc8b7f9 | 2007-12-16 22:33:50 +0000 | [diff] [blame] | 1012 | } | 
| Nate Begeman | e772210 | 2008-04-14 04:49:57 +0000 | [diff] [blame] | 1013 | case X86::BI__builtin_ia32_ldmxcsr: { | 
| Benjamin Kramer | 3c0ef8c | 2009-10-13 10:07:13 +0000 | [diff] [blame] | 1014 | const llvm::Type *PtrTy = llvm::Type::getInt8PtrTy(VMContext); | 
| Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 1015 | Value *One = llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), 1); | 
|  | 1016 | Value *Tmp = Builder.CreateAlloca(llvm::Type::getInt32Ty(VMContext), One, "tmp"); | 
| Nate Begeman | e772210 | 2008-04-14 04:49:57 +0000 | [diff] [blame] | 1017 | Builder.CreateStore(Ops[0], Tmp); | 
|  | 1018 | return Builder.CreateCall(CGM.getIntrinsic(Intrinsic::x86_sse_ldmxcsr), | 
| Chris Lattner | 3eae03e | 2008-05-06 00:56:42 +0000 | [diff] [blame] | 1019 | Builder.CreateBitCast(Tmp, PtrTy)); | 
| Nate Begeman | e772210 | 2008-04-14 04:49:57 +0000 | [diff] [blame] | 1020 | } | 
|  | 1021 | case X86::BI__builtin_ia32_stmxcsr: { | 
| Benjamin Kramer | 3c0ef8c | 2009-10-13 10:07:13 +0000 | [diff] [blame] | 1022 | const llvm::Type *PtrTy = llvm::Type::getInt8PtrTy(VMContext); | 
| Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 1023 | Value *One = llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), 1); | 
|  | 1024 | Value *Tmp = Builder.CreateAlloca(llvm::Type::getInt32Ty(VMContext), One, "tmp"); | 
| Nate Begeman | e772210 | 2008-04-14 04:49:57 +0000 | [diff] [blame] | 1025 | One = Builder.CreateCall(CGM.getIntrinsic(Intrinsic::x86_sse_stmxcsr), | 
| Chris Lattner | 3eae03e | 2008-05-06 00:56:42 +0000 | [diff] [blame] | 1026 | Builder.CreateBitCast(Tmp, PtrTy)); | 
| Nate Begeman | e772210 | 2008-04-14 04:49:57 +0000 | [diff] [blame] | 1027 | return Builder.CreateLoad(Tmp, "stmxcsr"); | 
|  | 1028 | } | 
| Anders Carlsson | 79dcf5f | 2009-05-18 19:16:46 +0000 | [diff] [blame] | 1029 | case X86::BI__builtin_ia32_cmppd: { | 
|  | 1030 | llvm::Function *F = CGM.getIntrinsic(Intrinsic::x86_sse2_cmp_pd); | 
|  | 1031 | return Builder.CreateCall(F, &Ops[0], &Ops[0] + Ops.size(), "cmppd"); | 
|  | 1032 | } | 
|  | 1033 | case X86::BI__builtin_ia32_cmpsd: { | 
|  | 1034 | llvm::Function *F = CGM.getIntrinsic(Intrinsic::x86_sse2_cmp_sd); | 
|  | 1035 | return Builder.CreateCall(F, &Ops[0], &Ops[0] + Ops.size(), "cmpsd"); | 
| Anders Carlsson | cc8b7f9 | 2007-12-16 22:33:50 +0000 | [diff] [blame] | 1036 | } | 
| Nate Begeman | e772210 | 2008-04-14 04:49:57 +0000 | [diff] [blame] | 1037 | case X86::BI__builtin_ia32_storehps: | 
|  | 1038 | case X86::BI__builtin_ia32_storelps: { | 
| Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 1039 | const llvm::Type *EltTy = llvm::Type::getInt64Ty(VMContext); | 
| Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 1040 | llvm::Type *PtrTy = llvm::PointerType::getUnqual(EltTy); | 
|  | 1041 | llvm::Type *VecTy = llvm::VectorType::get(EltTy, 2); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1042 |  | 
| Nate Begeman | e772210 | 2008-04-14 04:49:57 +0000 | [diff] [blame] | 1043 | // cast val v2i64 | 
|  | 1044 | Ops[1] = Builder.CreateBitCast(Ops[1], VecTy, "cast"); | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1045 |  | 
| Nate Begeman | e772210 | 2008-04-14 04:49:57 +0000 | [diff] [blame] | 1046 | // extract (0, 1) | 
|  | 1047 | unsigned Index = BuiltinID == X86::BI__builtin_ia32_storelps ? 0 : 1; | 
| Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 1048 | llvm::Value *Idx = llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), Index); | 
| Nate Begeman | e772210 | 2008-04-14 04:49:57 +0000 | [diff] [blame] | 1049 | Ops[1] = Builder.CreateExtractElement(Ops[1], Idx, "extract"); | 
|  | 1050 |  | 
|  | 1051 | // cast pointer to i64 & store | 
|  | 1052 | Ops[0] = Builder.CreateBitCast(Ops[0], PtrTy); | 
|  | 1053 | return Builder.CreateStore(Ops[1], Ops[0]); | 
|  | 1054 | } | 
| Eric Christopher | 91b5927 | 2009-12-01 05:00:51 +0000 | [diff] [blame] | 1055 | case X86::BI__builtin_ia32_palignr: { | 
| Eric Christopher | e57aa9e | 2010-04-15 01:43:08 +0000 | [diff] [blame] | 1056 | unsigned shiftVal = cast<llvm::ConstantInt>(Ops[2])->getZExtValue(); | 
|  | 1057 |  | 
|  | 1058 | // If palignr is shifting the pair of input vectors less than 9 bytes, | 
|  | 1059 | // emit a shuffle instruction. | 
|  | 1060 | if (shiftVal <= 8) { | 
|  | 1061 | const llvm::Type *IntTy = llvm::Type::getInt32Ty(VMContext); | 
|  | 1062 |  | 
|  | 1063 | llvm::SmallVector<llvm::Constant*, 8> Indices; | 
|  | 1064 | for (unsigned i = 0; i != 8; ++i) | 
|  | 1065 | Indices.push_back(llvm::ConstantInt::get(IntTy, shiftVal + i)); | 
|  | 1066 |  | 
|  | 1067 | Value* SV = llvm::ConstantVector::get(Indices.begin(), Indices.size()); | 
|  | 1068 | return Builder.CreateShuffleVector(Ops[1], Ops[0], SV, "palignr"); | 
|  | 1069 | } | 
|  | 1070 |  | 
|  | 1071 | // If palignr is shifting the pair of input vectors more than 8 but less | 
|  | 1072 | // than 16 bytes, emit a logical right shift of the destination. | 
|  | 1073 | if (shiftVal < 16) { | 
|  | 1074 | // MMX has these as 1 x i64 vectors for some odd optimization reasons. | 
|  | 1075 | const llvm::Type *EltTy = llvm::Type::getInt64Ty(VMContext); | 
|  | 1076 | const llvm::Type *VecTy = llvm::VectorType::get(EltTy, 1); | 
|  | 1077 |  | 
|  | 1078 | Ops[0] = Builder.CreateBitCast(Ops[0], VecTy, "cast"); | 
|  | 1079 | Ops[1] = llvm::ConstantInt::get(VecTy, (shiftVal-8) * 8); | 
|  | 1080 |  | 
|  | 1081 | // create i32 constant | 
|  | 1082 | llvm::Function *F = CGM.getIntrinsic(Intrinsic::x86_mmx_psrl_q); | 
|  | 1083 | return Builder.CreateCall(F, &Ops[0], &Ops[0] + 2, "palignr"); | 
|  | 1084 | } | 
|  | 1085 |  | 
|  | 1086 | // If palignr is shifting the pair of vectors more than 32 bytes, emit zero. | 
|  | 1087 | return llvm::Constant::getNullValue(ConvertType(E->getType())); | 
| Nate Begeman | c3420ff | 2009-12-14 05:15:02 +0000 | [diff] [blame] | 1088 | } | 
|  | 1089 | case X86::BI__builtin_ia32_palignr128: { | 
| Nate Begeman | ce5818a | 2009-12-14 04:57:03 +0000 | [diff] [blame] | 1090 | unsigned shiftVal = cast<llvm::ConstantInt>(Ops[2])->getZExtValue(); | 
|  | 1091 |  | 
|  | 1092 | // If palignr is shifting the pair of input vectors less than 17 bytes, | 
|  | 1093 | // emit a shuffle instruction. | 
|  | 1094 | if (shiftVal <= 16) { | 
|  | 1095 | const llvm::Type *IntTy = llvm::Type::getInt32Ty(VMContext); | 
|  | 1096 |  | 
|  | 1097 | llvm::SmallVector<llvm::Constant*, 16> Indices; | 
|  | 1098 | for (unsigned i = 0; i != 16; ++i) | 
|  | 1099 | Indices.push_back(llvm::ConstantInt::get(IntTy, shiftVal + i)); | 
|  | 1100 |  | 
|  | 1101 | Value* SV = llvm::ConstantVector::get(Indices.begin(), Indices.size()); | 
|  | 1102 | return Builder.CreateShuffleVector(Ops[1], Ops[0], SV, "palignr"); | 
|  | 1103 | } | 
|  | 1104 |  | 
|  | 1105 | // If palignr is shifting the pair of input vectors more than 16 but less | 
|  | 1106 | // than 32 bytes, emit a logical right shift of the destination. | 
|  | 1107 | if (shiftVal < 32) { | 
|  | 1108 | const llvm::Type *EltTy = llvm::Type::getInt64Ty(VMContext); | 
|  | 1109 | const llvm::Type *VecTy = llvm::VectorType::get(EltTy, 2); | 
|  | 1110 | const llvm::Type *IntTy = llvm::Type::getInt32Ty(VMContext); | 
|  | 1111 |  | 
|  | 1112 | Ops[0] = Builder.CreateBitCast(Ops[0], VecTy, "cast"); | 
|  | 1113 | Ops[1] = llvm::ConstantInt::get(IntTy, (shiftVal-16) * 8); | 
|  | 1114 |  | 
|  | 1115 | // create i32 constant | 
|  | 1116 | llvm::Function *F = CGM.getIntrinsic(Intrinsic::x86_sse2_psrl_dq); | 
|  | 1117 | return Builder.CreateCall(F, &Ops[0], &Ops[0] + 2, "palignr"); | 
|  | 1118 | } | 
|  | 1119 |  | 
|  | 1120 | // If palignr is shifting the pair of vectors more than 32 bytes, emit zero. | 
|  | 1121 | return llvm::Constant::getNullValue(ConvertType(E->getType())); | 
| Eric Christopher | 91b5927 | 2009-12-01 05:00:51 +0000 | [diff] [blame] | 1122 | } | 
| Anders Carlsson | 564f1de | 2007-12-09 23:17:02 +0000 | [diff] [blame] | 1123 | } | 
|  | 1124 | } | 
|  | 1125 |  | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1126 | Value *CodeGenFunction::EmitPPCBuiltinExpr(unsigned BuiltinID, | 
| Chris Lattner | 1feedd8 | 2007-12-13 07:34:23 +0000 | [diff] [blame] | 1127 | const CallExpr *E) { | 
| Chris Lattner | dd17394 | 2010-04-14 03:54:58 +0000 | [diff] [blame] | 1128 | llvm::SmallVector<Value*, 4> Ops; | 
|  | 1129 |  | 
|  | 1130 | for (unsigned i = 0, e = E->getNumArgs(); i != e; i++) | 
|  | 1131 | Ops.push_back(EmitScalarExpr(E->getArg(i))); | 
|  | 1132 |  | 
|  | 1133 | Intrinsic::ID ID = Intrinsic::not_intrinsic; | 
|  | 1134 |  | 
|  | 1135 | switch (BuiltinID) { | 
|  | 1136 | default: return 0; | 
|  | 1137 |  | 
|  | 1138 | // vec_st | 
|  | 1139 | case PPC::BI__builtin_altivec_stvx: | 
|  | 1140 | case PPC::BI__builtin_altivec_stvxl: | 
|  | 1141 | case PPC::BI__builtin_altivec_stvebx: | 
|  | 1142 | case PPC::BI__builtin_altivec_stvehx: | 
|  | 1143 | case PPC::BI__builtin_altivec_stvewx: | 
|  | 1144 | { | 
|  | 1145 | Ops[2] = Builder.CreateBitCast(Ops[2], llvm::Type::getInt8PtrTy(VMContext)); | 
|  | 1146 | Ops[1] = !isa<Constant>(Ops[1]) || !cast<Constant>(Ops[1])->isNullValue() | 
|  | 1147 | ? Builder.CreateGEP(Ops[2], Ops[1], "tmp") : Ops[2]; | 
|  | 1148 | Ops.pop_back(); | 
|  | 1149 |  | 
|  | 1150 | switch (BuiltinID) { | 
|  | 1151 | default: assert(0 && "Unsupported vavg intrinsic!"); | 
|  | 1152 | case PPC::BI__builtin_altivec_stvx: | 
|  | 1153 | ID = Intrinsic::ppc_altivec_stvx; | 
|  | 1154 | break; | 
|  | 1155 | case PPC::BI__builtin_altivec_stvxl: | 
|  | 1156 | ID = Intrinsic::ppc_altivec_stvxl; | 
|  | 1157 | break; | 
|  | 1158 | case PPC::BI__builtin_altivec_stvebx: | 
|  | 1159 | ID = Intrinsic::ppc_altivec_stvebx; | 
|  | 1160 | break; | 
|  | 1161 | case PPC::BI__builtin_altivec_stvehx: | 
|  | 1162 | ID = Intrinsic::ppc_altivec_stvehx; | 
|  | 1163 | break; | 
|  | 1164 | case PPC::BI__builtin_altivec_stvewx: | 
|  | 1165 | ID = Intrinsic::ppc_altivec_stvewx; | 
|  | 1166 | break; | 
|  | 1167 | } | 
|  | 1168 | llvm::Function *F = CGM.getIntrinsic(ID); | 
|  | 1169 | return Builder.CreateCall(F, &Ops[0], &Ops[0] + Ops.size(), ""); | 
|  | 1170 | } | 
|  | 1171 | } | 
| Daniel Dunbar | b0b8438 | 2009-12-18 20:58:47 +0000 | [diff] [blame] | 1172 | return 0; | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1173 | } |