Similar to gep (r230786) and load (r230794) changes.
Similar migration script can be used to update test cases, which
successfully migrated all of LLVM and Polly, but about 4 test cases
needed manually changes in Clang.
(this script will read the contents of stdin and massage it into stdout
- wrap it in the 'apply.sh' script shown in previous commits + xargs to
apply it over a large set of test cases)
import fileinput
import sys
import re
rep = re.compile(r"(getelementptr(?:\s+inbounds)?\s*\()((<\d*\s+x\s+)?([^@]*?)(|\s*addrspace\(\d+\))\s*\*(?(3)>)\s*)(?=$|%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|zeroinitializer|<|\[\[[a-zA-Z]|\{\{)", re.MULTILINE | re.DOTALL)
def conv(match):
line = match.group(1)
line += match.group(4)
line += ", "
line += match.group(2)
return line
line = sys.stdin.read()
off = 0
for match in re.finditer(rep, line):
sys.stdout.write(line[off:match.start()])
sys.stdout.write(conv(match))
off = match.end()
sys.stdout.write(line[off:])
llvm-svn: 232184
47 lines
2.1 KiB
LLVM
47 lines
2.1 KiB
LLVM
;; Check that runtime symbols get appropriate linkage.
|
|
|
|
; RUN: opt < %s -mtriple=x86_64-apple-macosx10.10.0 -instrprof -S | FileCheck %s
|
|
; RUN: opt < %s -mtriple=x86_64-unknown-linux -instrprof -S | FileCheck %s
|
|
|
|
@__llvm_profile_name_foo = hidden constant [3 x i8] c"foo"
|
|
@__llvm_profile_name_foo_weak = weak hidden constant [8 x i8] c"foo_weak"
|
|
@"__llvm_profile_name_linkage.ll:foo_internal" = internal constant [23 x i8] c"linkage.ll:foo_internal"
|
|
@__llvm_profile_name_foo_inline = linkonce_odr hidden constant [10 x i8] c"foo_inline"
|
|
|
|
; CHECK: @__llvm_profile_counters_foo = hidden global
|
|
; CHECK: @__llvm_profile_data_foo = hidden constant
|
|
define void @foo() {
|
|
call void @llvm.instrprof.increment(i8* getelementptr inbounds ([3 x i8], [3 x i8]* @__llvm_profile_name_foo, i32 0, i32 0), i64 0, i32 1, i32 0)
|
|
ret void
|
|
}
|
|
|
|
; CHECK: @__llvm_profile_counters_foo_weak = weak hidden global
|
|
; CHECK: @__llvm_profile_data_foo_weak = weak hidden constant
|
|
define weak void @foo_weak() {
|
|
call void @llvm.instrprof.increment(i8* getelementptr inbounds ([8 x i8], [8 x i8]* @__llvm_profile_name_foo_weak, i32 0, i32 0), i64 0, i32 1, i32 0)
|
|
ret void
|
|
}
|
|
|
|
; CHECK: @"__llvm_profile_counters_linkage.ll:foo_internal" = internal global
|
|
; CHECK: @"__llvm_profile_data_linkage.ll:foo_internal" = internal constant
|
|
define internal void @foo_internal() {
|
|
call void @llvm.instrprof.increment(i8* getelementptr inbounds ([23 x i8], [23 x i8]* @"__llvm_profile_name_linkage.ll:foo_internal", i32 0, i32 0), i64 0, i32 1, i32 0)
|
|
ret void
|
|
}
|
|
|
|
; CHECK: @__llvm_profile_counters_foo_inline = linkonce_odr hidden global
|
|
; CHECK: @__llvm_profile_data_foo_inline = linkonce_odr hidden constant
|
|
define linkonce_odr void @foo_inline() {
|
|
call void @llvm.instrprof.increment(i8* getelementptr inbounds ([10 x i8], [10 x i8]* @__llvm_profile_name_foo_inline, i32 0, i32 0), i64 0, i32 1, i32 0)
|
|
ret void
|
|
}
|
|
|
|
declare void @llvm.instrprof.increment(i8*, i64, i32, i32)
|
|
|
|
; CHECK: @__llvm_profile_runtime = external global i32
|
|
|
|
; CHECK: define linkonce_odr hidden i32 @__llvm_profile_runtime_user() {{.*}} {
|
|
; CHECK: %[[REG:.*]] = load i32, i32* @__llvm_profile_runtime
|
|
; CHECK: ret i32 %[[REG]]
|
|
; CHECK: }
|