mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 03:06:06 +00:00

With C++17 the exception specification has been made part of the function type, and therefore part of mangled type names. However, it's valid to convert function pointers with an exception specification to function pointers with the same argument and return types but without an exception specification, which means that e.g. a function of type "void () noexcept" can be called through a pointer of type "void ()". We must therefore consider the two types to be compatible for CFI purposes. We can do this by stripping the exception specification before mangling the type name, which is what this patch does. Differential Revision: https://reviews.llvm.org/D115015
12 lines
412 B
C++
12 lines
412 B
C++
// RUN: %clang_cc1 -triple x86_64-unknown-linux -fsanitize=cfi-icall -emit-llvm -std=c++17 -o - %s | FileCheck %s
|
|
|
|
// Tests that exception specifiers are stripped when forming the
|
|
// mangled CFI type name.
|
|
|
|
void f() noexcept {}
|
|
|
|
// CHECK: define{{.*}} void @_Z1fv({{.*}} !type [[TS1:![0-9]+]] !type [[TS2:![0-9]+]]
|
|
|
|
// CHECK: [[TS1]] = !{i64 0, !"_ZTSFvvE"}
|
|
// CHECK: [[TS2]] = !{i64 0, !"_ZTSFvvE.generalized"}
|