forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reland [CodeGen] emit CG profile for COFF object file
This reverts commit 90242ca. Error fixed at f543539 Differential Revision: https://reviews.llvm.org/D87811
- Loading branch information
Showing
5 changed files
with
118 additions
and
53 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
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,51 @@ | ||
; RUN: llc -filetype=asm %s -o - -mtriple x86_64-pc-windows-msvc | FileCheck %s | ||
; RUN: llc -filetype=obj %s -o %t -mtriple x86_64-pc-windows-msvc | ||
; RUN: llvm-readobj --cg-profile %t | FileCheck %s --check-prefix=OBJ | ||
|
||
declare void @b() | ||
|
||
define void @a() { | ||
call void @b() | ||
ret void | ||
} | ||
|
||
define void @freq(i1 %cond) { | ||
br i1 %cond, label %A, label %B | ||
A: | ||
call void @a(); | ||
ret void | ||
B: | ||
call void @b(); | ||
ret void | ||
} | ||
|
||
!llvm.module.flags = !{!0} | ||
|
||
!0 = !{i32 5, !"CG Profile", !1} | ||
!1 = !{!2, !3, !4, !5} | ||
!2 = !{void ()* @a, void ()* @b, i64 32} | ||
!3 = !{void (i1)* @freq, void ()* @a, i64 11} | ||
!4 = !{void (i1)* @freq, void ()* @b, i64 20} | ||
!5 = !{void (i1)* @freq, null, i64 20} | ||
|
||
; CHECK: .cg_profile a, b, 32 | ||
; CHECK: .cg_profile freq, a, 11 | ||
; CHECK: .cg_profile freq, b, 20 | ||
|
||
; OBJ: CGProfile [ | ||
; OBJ: CGProfileEntry { | ||
; OBJ: From: a | ||
; OBJ: To: b | ||
; OBJ: Weight: 32 | ||
; OBJ: } | ||
; OBJ: CGProfileEntry { | ||
; OBJ: From: freq | ||
; OBJ: To: a | ||
; OBJ: Weight: 11 | ||
; OBJ: } | ||
; OBJ: CGProfileEntry { | ||
; OBJ: From: freq | ||
; OBJ: To: b | ||
; OBJ: Weight: 20 | ||
; OBJ: } | ||
; OBJ:] |