aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNuno Lopes <nunoplopes@sapo.pt>2012-05-25 21:45:08 +0000
committerNuno Lopes <nunoplopes@sapo.pt>2012-05-25 21:45:08 +0000
commit976f266b969e03ef08b37b5f4aaf013f48f1ba6e (patch)
treec22c49b6d6ef2c9746fd2265679de44a6a3de0b2
parent6e5fa8c74ac4ed70475fcc0e48b897e2dbe9c8d4 (diff)
fix codegen support for alloc_size attribute for static C++ methods
add test case for C++ codegen git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@157500 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/CodeGen/CGCall.cpp6
-rw-r--r--test/CodeGenCXX/alloc_size.cpp18
2 files changed, 22 insertions, 2 deletions
diff --git a/lib/CodeGen/CGCall.cpp b/lib/CodeGen/CGCall.cpp
index 650fe8b623..cd01fa251c 100644
--- a/lib/CodeGen/CGCall.cpp
+++ b/lib/CodeGen/CGCall.cpp
@@ -2090,9 +2090,11 @@ RValue CodeGenFunction::EmitCall(const CGFunctionInfo &CallInfo,
// add metadata for __attribute__((alloc_size(foo)))
if (TargetDecl) {
if (const AllocSizeAttr* Attr = TargetDecl->getAttr<AllocSizeAttr>()) {
- std::vector<llvm::Value*> Args;
+ SmallVector<llvm::Value*, 4> Args;
llvm::IntegerType *Ty = llvm::IntegerType::getInt32Ty(getLLVMContext());
- bool isMethod = isa<CXXMethodDecl>(TargetDecl);
+ bool isMethod = false;
+ if (const CXXMethodDecl *MDecl = dyn_cast<CXXMethodDecl>(TargetDecl))
+ isMethod = MDecl->isInstance();
for (AllocSizeAttr::args_iterator I = Attr->args_begin(),
E = Attr->args_end(); I != E; ++I) {
diff --git a/test/CodeGenCXX/alloc_size.cpp b/test/CodeGenCXX/alloc_size.cpp
new file mode 100644
index 0000000000..90273cc893
--- /dev/null
+++ b/test/CodeGenCXX/alloc_size.cpp
@@ -0,0 +1,18 @@
+// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
+
+struct foo {
+ void *my_alloc(unsigned) __attribute__((alloc_size(2)));
+ static void* static_alloc(unsigned) __attribute__((alloc_size(1)));
+};
+
+
+void* f(bool a) {
+ // CHECK: call i8* {{.*}}alloc{{.*}}, !alloc_size !0
+ // CHECK: call i8* {{.*}}static_alloc{{.*}}, !alloc_size !1
+ foo obj;
+ return a ? obj.my_alloc(2) :
+ foo::static_alloc(42);
+}
+
+// CHECK: !0 = metadata !{i32 1}
+// CHECK: !1 = metadata !{i32 0}