Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

__declspec(property): double invocations of foo() when compiling foo()->propertyName #24506

Closed
llvmbot opened this issue Jul 15, 2015 · 1 comment
Labels
bugzilla Issues migrated from bugzilla clang Clang issues not falling into any other category

Comments

@llvmbot
Copy link
Member

llvmbot commented Jul 15, 2015

Bugzilla Link 24132
Resolution FIXED
Resolved on Nov 25, 2015 08:45
Version 3.6
OS Windows NT
Reporter LLVM Bugzilla Contributor
CC @alexey-bataev,@majnemer,@rnk

Extended Description

Code for repro is as follows.

00 #include <stdio.h>
01 class Test1 {
02 private:
03 int x_;
04 public:
05 Test1(int x) : x_(x) {}
06 _declspec(property(get=get_x)) int X;
07 int get_x() const { return x
; }
08 static Test1* GetTest1(){printf("create,"); return new Test1(10);}
09 };
10 int main(int argc, char** argv) {
11 int x = Test1::GetTest1()->X;
12 printf("x=%d\n",x);
13 }

The execution output is like:
create,create,x=10

Basically, the compiler builds the code line 11 into
0x000000000040077f call 0x4007c0 Test1::GetTest1()
0x0000000000400784 mov QWORD PTR [rbp-0x20],rax
0x0000000000400788 call 0x4007c0 Test1::GetTest1()
0x000000000040078d mov rdi,rax
0x0000000000400790 call 0x400830 <Test1::get_x() const>
0x0000000000400795 movabs rdi,0x4008e4
0x000000000040079f mov DWORD PTR [rbp-0x14],eax

As we notice, Test1::GetTest1() is called twice. The result of the 1st call is stored into a compiler-allocated stack variable, and seems never used later; The result of the 2nd call is passed as "this" pointer to Test1::get_x(). Is this an expected behavior? Since our real GetTest1() is not idempotent, being called twice is causing incorrect program behavior.

@alexey-bataev
Copy link
Member

Fixed in 250265.

@llvmbot llvmbot transferred this issue from llvm/llvm-bugzilla-archive Dec 10, 2021
This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bugzilla Issues migrated from bugzilla clang Clang issues not falling into any other category
Projects
None yet
Development

No branches or pull requests

2 participants