
GCC's attribute 'target', in addition to being an optimization hint, also allows function multiversioning. We currently have the former implemented, this is the latter's implementation. This works by enabling functions with the same name/signature to coexist, so that they can all be emitted. Multiversion state is stored in the FunctionDecl itself, and SemaDecl manages the definitions. Note that it ends up having to permit redefinition of functions so that they can all be emitted. Additionally, all versions of the function must be emitted, so this also manages that. Note that this includes some additional rules that GCC does not, since defining something as a MultiVersion function after a usage has been made illegal. The only 'history rewriting' that happens is if a function is emitted before it has been converted to a multiversion'ed function, at which point its name needs to be changed. Function templates and virtual functions are NOT yet supported (not supported in GCC either). Additionally, constructors/destructors are disallowed, but the former is planned. llvm-svn: 322028
46 lines
1.3 KiB
C++
46 lines
1.3 KiB
C++
// RUN: %clang_cc1 -std=c++11 -triple x86_64-linux-gnu -emit-llvm %s -o - | FileCheck %s
|
|
void temp();
|
|
void temp(int);
|
|
using FP = void(*)(int);
|
|
void b() {
|
|
FP f = temp;
|
|
}
|
|
|
|
int __attribute__((target("sse4.2"))) foo(int) { return 0; }
|
|
int __attribute__((target("arch=sandybridge"))) foo(int);
|
|
int __attribute__((target("arch=ivybridge"))) foo(int) {return 1;}
|
|
int __attribute__((target("default"))) foo(int) { return 2; }
|
|
|
|
struct S {
|
|
int __attribute__((target("sse4.2"))) foo(int) { return 0; }
|
|
int __attribute__((target("arch=sandybridge"))) foo(int);
|
|
int __attribute__((target("arch=ivybridge"))) foo(int) {return 1;}
|
|
int __attribute__((target("default"))) foo(int) { return 2; }
|
|
};
|
|
|
|
using FuncPtr = int (*)(int);
|
|
using MemFuncPtr = int (S::*)(int);
|
|
|
|
void f(FuncPtr, MemFuncPtr);
|
|
|
|
int bar() {
|
|
FuncPtr Free = &foo;
|
|
MemFuncPtr Member = &S::foo;
|
|
S s;
|
|
f(foo, &S::foo);
|
|
return Free(1) + (s.*Member)(2);
|
|
}
|
|
|
|
|
|
// CHECK: @_Z3fooi.ifunc
|
|
// CHECK: @_ZN1S3fooEi.ifunc
|
|
|
|
// CHECK: define i32 @_Z3barv()
|
|
// Store to Free of ifunc
|
|
// CHECK: store i32 (i32)* @_Z3fooi.ifunc
|
|
// Store to Member of ifunc
|
|
// CHECK: store { i64, i64 } { i64 ptrtoint (i32 (%struct.S*, i32)* @_ZN1S3fooEi.ifunc to i64), i64 0 }, { i64, i64 }* [[MEMBER:%[a-z]+]]
|
|
|
|
// Call to 'f' with the ifunc
|
|
// CHECK: call void @_Z1fPFiiEM1SFiiE(i32 (i32)* @_Z3fooi.ifunc
|