]> granicus.if.org Git - clang/commitdiff
Provide basic support for generation of objc2's
authorFariborz Jahanian <fjahanian@apple.com>
Mon, 4 May 2009 23:27:20 +0000 (23:27 +0000)
committerFariborz Jahanian <fjahanian@apple.com>
Mon, 4 May 2009 23:27:20 +0000 (23:27 +0000)
objc_assign_global API when assigning to global
objective-c object pointer.

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

lib/CodeGen/CGExpr.cpp
lib/CodeGen/CGValue.h
test/CodeGenObjC/objc2-assign-global.m [new file with mode: 0644]

index 2bcb362f186a9f89b8d62e695dba6430c54cee28..74d736490a247a39ded875febbfbee6f7f7ca653 100644 (file)
@@ -442,7 +442,10 @@ void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst,
     else
       CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
 #endif
-    CGM.getObjCRuntime().EmitObjCStrongCastAssign(*this, src, LvalueDst);
+    if (Dst.isGlobalObjCRef())
+      CGM.getObjCRuntime().EmitObjCGlobalAssign(*this, src, LvalueDst);
+    else
+      CGM.getObjCRuntime().EmitObjCStrongCastAssign(*this, src, LvalueDst);
     return;
   }
   
@@ -666,6 +669,8 @@ LValue CodeGenFunction::EmitDeclRefLValue(const DeclRefExpr *E) {
     LValue LV = LValue::MakeAddr(CGM.GetAddrOfGlobalVar(VD),
                                  E->getType().getCVRQualifiers(),
                                  getContext().getObjCGCAttrKind(E->getType()));
+    if (LV.isObjCStrong())
+      LV.SetGlobalObjCRef(LV, true);
     return LV;
   } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(E->getDecl())) {
     return LValue::MakeAddr(CGM.GetAddrOfFunction(FD),
index 66cb0037a1361ed9f870bfb190fbd6c791da151d..5204c451666ffa7f5b4cc8b38dfb262b9db9973f 100644 (file)
@@ -149,8 +149,12 @@ class LValue {
   // variable.
   bool NonGC: 1;
 
+  // Lvalue is a global reference of an objective-c object
+  bool GlobalObjCRef : 1;
+
   // objective-c's gc attributes
   unsigned ObjCType : 2;  
+
   
 
 private:
@@ -160,7 +164,7 @@ private:
     // FIXME: Convenient place to set objc flags to 0. This
     // should really be done in a user-defined constructor instead.
     R.ObjCType = None;
-    R.Ivar = R.NonGC = false;
+    R.Ivar = R.NonGC = R.GlobalObjCRef = false;
   }
   
 public:
@@ -180,12 +184,17 @@ public:
   
   bool isObjCIvar() const { return Ivar; }
   bool isNonGC () const { return NonGC; }
+  bool isGlobalObjCRef() const { return GlobalObjCRef; }
   bool isObjCWeak() const { return ObjCType == Weak; }
   bool isObjCStrong() const { return ObjCType == Strong; }
   
   static void SetObjCIvar(LValue& R, bool iValue) {
     R.Ivar = iValue;
   }
+
+  static void SetGlobalObjCRef(LValue& R, bool iValue) {
+    R.GlobalObjCRef = iValue;
+  }
   
   static void SetObjCNonGC(LValue& R, bool iValue) {
     R.NonGC = iValue;
diff --git a/test/CodeGenObjC/objc2-assign-global.m b/test/CodeGenObjC/objc2-assign-global.m
new file mode 100644 (file)
index 0000000..ae40761
--- /dev/null
@@ -0,0 +1,8 @@
+// RUN: clang-cc -fnext-runtime -fobjc-gc -emit-llvm -o %t %s &&
+// RUN: grep -F '@objc_assign_global' %t  | count 2 &&
+// RUN: true
+id a;
+int main() {
+        a = 0;
+}
+