
In #74514 and #74778 we marked various instrumentation-added sections as large. This causes an extra PT_LOAD segment if using the small code model. Since people using the small code model presumably aren't hitting relocation limits, disable this when using the small code model to avoid the extra segment. This uses Module::getCodeModel() which isn't necessarily reliable since it reads module metadata (which right now only the clang frontend sets), but it would be nice to get to a point where we reliably put this sort of information (e.g. PIC/code model/etc) in the IR. This requires duplicating the existing tests since opt/llc currently don't set these metadata. If we get to a point where they do set the code model metadata based on command line arguments then we can deduplicate these tests.
36 lines
1.0 KiB
LLVM
36 lines
1.0 KiB
LLVM
;; Check that certain globals are in large sections under x86-64 large code model.
|
|
; RUN: opt %s -mtriple=x86_64-unknown-linux -passes=instrprof -S | FileCheck %s
|
|
|
|
@__profn_foo = private constant [3 x i8] c"foo"
|
|
|
|
define i32 @foo(ptr) {
|
|
call void @llvm.instrprof.increment(ptr @__profn_foo, i64 12884901887, i32 1, i32 0)
|
|
%2 = ptrtoint ptr %0 to i64
|
|
call void @llvm.instrprof.value.profile(ptr @__profn_foo, i64 12884901887, i64 %2, i32 0, i32 0)
|
|
%3 = tail call i32 %0()
|
|
ret i32 %3
|
|
}
|
|
|
|
; Function Attrs: nounwind
|
|
declare void @llvm.instrprof.increment(ptr, i64, i32, i32) #0
|
|
|
|
; Function Attrs: nounwind
|
|
declare void @llvm.instrprof.value.profile(ptr, i64, i64, i32, i32) #0
|
|
|
|
attributes #0 = { nounwind }
|
|
|
|
!llvm.module.flags = !{!0}
|
|
|
|
!0 = !{i32 1, !"Code Model", i32 4}
|
|
|
|
; CHECK: @__profc_foo =
|
|
; CHECK-NOT: code_model "large"
|
|
; CHECK: @__profvp_foo =
|
|
; CHECK-SAME: code_model "large"
|
|
; CHECK: @__profd_foo =
|
|
; CHECK-NOT: code_model "large"
|
|
; CHECK: @__llvm_prf_vnodes =
|
|
; CHECK-SAME: code_model "large"
|
|
; CHECK: @__llvm_prf_nm =
|
|
; CHECK-SAME: code_model "large"
|