]> granicus.if.org Git - clang/commitdiff
implement __sync_synchronize and __sync_lock_release,
authorChris Lattner <sabre@nondot.org>
Wed, 13 May 2009 04:46:13 +0000 (04:46 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 13 May 2009 04:46:13 +0000 (04:46 +0000)
rdar://6880573

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71637 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGBuiltin.cpp
test/CodeGen/atomic.c

index bddbf4ca42850e8adffcda2606d59531b1ae48e8..93901fd5359de3967ef2f2ba5ea24efc21651b18 100644 (file)
@@ -470,11 +470,23 @@ RValue CodeGenFunction::EmitBuiltinExpr(const FunctionDecl *FD,
   case Builtin::BI__sync_lock_release_2:
   case Builtin::BI__sync_lock_release_4:
   case Builtin::BI__sync_lock_release_8:
-  case Builtin::BI__sync_lock_release_16:
-    assert(0 && "FIXME: Implement");
+  case Builtin::BI__sync_lock_release_16: {
+    Value *Ptr = EmitScalarExpr(E->getArg(0));
+    const llvm::Type *ElTy =
+      cast<llvm::PointerType>(Ptr->getType())->getElementType();
+    Builder.CreateStore(llvm::Constant::getNullValue(ElTy), Ptr, true);
+    return RValue();
+  }
 
+  case Builtin::BI__sync_synchronize: {
+    Value *C[5];
+    C[0] = C[1] = C[2] = C[3] = llvm::ConstantInt::get(llvm::Type::Int1Ty, 1);
+    C[4] = ConstantInt::get(llvm::Type::Int1Ty, 0);
+    Builder.CreateCall(CGM.getIntrinsic(Intrinsic::memory_barrier), C, C + 5);
+    return RValue();
+  }
+      
     // Library functions with special handling.
-
   case Builtin::BIsqrt:
   case Builtin::BIsqrtf:
   case Builtin::BIsqrtl: {
index 12a9910223c21cf3dd7d42c988b46ec2838e6ba6..09e3bf03a47143e64c14b33722d886cd054e1df2 100644 (file)
@@ -33,15 +33,21 @@ int atomic(void)
   old = __sync_fetch_and_and(&val, 0x9);
   old = __sync_fetch_and_or(&val, 0xa);
   old = __sync_fetch_and_xor(&val, 0xb);
+  old = __sync_fetch_and_nand(&val, 0xb);
 
   old = __sync_add_and_fetch(&val, 1);
   old = __sync_sub_and_fetch(&val, 2);
   old = __sync_and_and_fetch(&valc, 3);
   old = __sync_or_and_fetch(&valc, 4);
   old = __sync_xor_and_fetch(&valc, 5);
+  old = __sync_nand_and_fetch(&valc, 5);
 
   
   __sync_val_compare_and_swap((void **)0, (void *)0, (void *)0);
 
+  
+  __sync_lock_release(&val);
+  __sync_synchronize ();
+
   return old;
 }