Updated to match new atomic names (to enable overloading for pointers to

different address spaces) for llvm r54195.

llvm-svn: 54241
This commit is contained in:
Mon P Wang 2008-07-31 03:28:23 +00:00
parent 345d63ccf2
commit b160a0d78d
1 changed files with 8 additions and 4 deletions

View File

@ -29,8 +29,10 @@ using namespace llvm;
// the expression node
static RValue EmitBinaryAtomic(CodeGenFunction& CFG,
Intrinsic::ID Id, const CallExpr *E) {
const llvm::Type *ResType = CFG.ConvertType(E->getType());
Value *AtomF = CFG.CGM.getIntrinsic(Id, &ResType, 1);
const llvm::Type *ResType[2];
ResType[0] = CFG.ConvertType(E->getType());
ResType[1] = CFG.ConvertType(E->getArg(0)->getType());
Value *AtomF = CFG.CGM.getIntrinsic(Id, ResType, 2);
return RValue::get(CFG.Builder.CreateCall2(AtomF,
CFG.EmitScalarExpr(E->getArg(0)),
CFG.EmitScalarExpr(E->getArg(1))));
@ -356,8 +358,10 @@ RValue CodeGenFunction::EmitBuiltinExpr(unsigned BuiltinID, const CallExpr *E) {
Args[0]= EmitScalarExpr(E->getArg(0));
Args[1] = EmitScalarExpr(E->getArg(1));
Args[2] = EmitScalarExpr(E->getArg(2));
const llvm::Type *ResType = ConvertType(E->getType());
Value *AtomF = CGM.getIntrinsic(Intrinsic::atomic_cmp_swap, &ResType, 1);
const llvm::Type *ResType[2];
ResType[0]= ConvertType(E->getType());
ResType[1] = ConvertType(E->getArg(0)->getType());
Value *AtomF = CGM.getIntrinsic(Intrinsic::atomic_cmp_swap, ResType, 2);
return RValue::get(Builder.CreateCall(AtomF, &Args[0], &Args[1]+2));
}
case Builtin::BI__sync_lock_test_and_set: