-
-
Notifications
You must be signed in to change notification settings - Fork 265
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7cf6565
commit c60bf81
Showing
3 changed files
with
85 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
// Test instrumentation of indirect calls | ||
|
||
// REQUIRES: atleast_llvm309 | ||
|
||
// RUN: %ldc -O3 -fprofile-generate=%t.profraw -run %s \ | ||
// RUN: && %profdata merge %t.profraw -o %t.profdata \ | ||
// RUN: && %ldc -O3 -c -output-ll -of=%t.use.ll -fprofile-use=%t.profdata %s \ | ||
// RUN: && FileCheck %s -check-prefix=PROFUSE < %t.use.ll | ||
|
||
import ldc.attributes : weak; | ||
|
||
extern (C) | ||
{ // simplify name mangling for simpler string matching | ||
|
||
@weak // disable reasoning about this function | ||
void hot() | ||
{ | ||
} | ||
|
||
void luke() | ||
{ | ||
} | ||
|
||
void cold() | ||
{ | ||
} | ||
|
||
void function() foo; | ||
|
||
@weak // disable reasoning about this function | ||
void select_func(int i) | ||
{ | ||
if (i < 1700) | ||
foo = &hot; | ||
else if (i < 1990) | ||
foo = &luke; | ||
else | ||
foo = &cold; | ||
} | ||
|
||
} // extern C | ||
|
||
// PROFUSE-LABEL: @_Dmain( | ||
int main() | ||
{ | ||
for (int i; i < 2000; ++i) | ||
{ | ||
select_func(i); | ||
|
||
// PROFUSE: [[REG1:%[0-9]+]] = load void ()*, void ()** @foo | ||
// PROFUSE: [[REG2:%[0-9]+]] = icmp eq void ()* [[REG1]], @hot | ||
// PROFUSE: call void @hot() | ||
// PROFUSE: call void [[REG1]]() | ||
|
||
foo(); | ||
} | ||
|
||
return 0; | ||
} |