mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
041da6277f
This patch adds a new !annotation metadata kind which can be used to attach annotation strings to instructions. It also adds a new pass that emits summary remarks per function with the counts for each annotation kind. The intended uses cases for this new metadata is annotating 'interesting' instructions and the remarks should provide additional insight into transformations applied to a program. To motivate this, consider these specific questions we would like to get answered: * How many stores added for automatic variable initialization remain after optimizations? Where are they? * How many runtime checks inserted by a frontend could be eliminated? Where are the ones that did not get eliminated? Discussed on llvm-dev as part of 'RFC: Combining Annotation Metadata and Remarks' (http://lists.llvm.org/pipermail/llvm-dev/2020-November/146393.html) Reviewed By: thegameg, jdoerfert Differential Revision: https://reviews.llvm.org/D91188
14 lines
309 B
LLVM
14 lines
309 B
LLVM
; RUN: not llvm-as -disable-output < %s -o /dev/null 2>&1 | FileCheck %s
|
|
|
|
define void @test1(float* %a) {
|
|
entry:
|
|
; CHECK: annotation must have at least one operand
|
|
%a.addr = alloca float*, align 8, !annotation !0
|
|
|
|
; CHECK-NEXT: operands must be strings
|
|
ret void, !annotation !1
|
|
}
|
|
|
|
!0 = !{}
|
|
!1 = !{i32 10}
|