Information in the function `Prologue Data` is intentionally opaque. When a function with `Prologue Data` is duplicated. The self (global value) references inside `Prologue Data` is still pointing to the original function. This may cause errors like `fatal error: error in backend: Cannot represent a difference across sections`. This patch detaches the information from function `Prologue Data` and attaches it to a function metadata node. This and D116130 fix https://github.com/llvm/llvm-project/issues/49689. Reviewed By: pcc Differential Revision: https://reviews.llvm.org/D115844
18 lines
789 B
C++
18 lines
789 B
C++
// RUN: %clang_cc1 -no-opaque-pointers -std=c++17 -fsanitize=function -emit-llvm -triple x86_64-linux-gnu %s -o - | FileCheck %s
|
|
|
|
// Check that typeinfo recorded in function prolog doesn't have "Do" noexcept
|
|
// qualifier in its mangled name.
|
|
// CHECK: [[PROXY:@.*]] = private unnamed_addr constant i8* bitcast ({ i8*, i8* }* @_ZTIFvvE to i8*)
|
|
// CHECK: define{{.*}} void @_Z1fv() #{{.*}} !func_sanitize ![[FUNCSAN:.*]] {
|
|
void f() noexcept {}
|
|
|
|
// CHECK: define{{.*}} void @_Z1gPDoFvvE
|
|
void g(void (*p)() noexcept) {
|
|
// Check that reference typeinfo at call site doesn't have "Do" noexcept
|
|
// qualifier in its mangled name, either.
|
|
// CHECK: icmp eq i8* %{{.*}}, bitcast ({ i8*, i8* }* @_ZTIFvvE to i8*), !nosanitize
|
|
p();
|
|
}
|
|
|
|
// CHECK: ![[FUNCSAN]] = !{i32 846595819, i8** [[PROXY]]}
|