Implement Attribute Target MultiVersioning
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
2018-01-09 05:34:17 +08:00
|
|
|
// RUN: %clang_cc1 -triple x86_64-linux-gnu -emit-llvm %s -o - | FileCheck %s
|
|
|
|
int __attribute__((target("sse4.2"))) foo(void) { return 0; }
|
|
|
|
int __attribute__((target("arch=sandybridge"))) foo(void);
|
|
|
|
int __attribute__((target("arch=ivybridge"))) foo(void) {return 1;}
|
|
|
|
int __attribute__((target("default"))) foo(void) { return 2; }
|
|
|
|
|
|
|
|
int bar() {
|
|
|
|
return foo();
|
|
|
|
}
|
|
|
|
|
|
|
|
inline int __attribute__((target("sse4.2"))) foo_inline(void) { return 0; }
|
|
|
|
inline int __attribute__((target("arch=sandybridge"))) foo_inline(void);
|
|
|
|
inline int __attribute__((target("arch=ivybridge"))) foo_inline(void) {return 1;}
|
|
|
|
inline int __attribute__((target("default"))) foo_inline(void) { return 2; }
|
|
|
|
|
|
|
|
int bar2() {
|
|
|
|
return foo_inline();
|
|
|
|
}
|
|
|
|
|
|
|
|
inline __attribute__((target("default"))) void foo_decls(void);
|
|
|
|
inline __attribute__((target("sse4.2"))) void foo_decls(void);
|
|
|
|
void bar3() {
|
|
|
|
foo_decls();
|
|
|
|
}
|
|
|
|
inline __attribute__((target("default"))) void foo_decls(void) {}
|
|
|
|
inline __attribute__((target("sse4.2"))) void foo_decls(void) {}
|
|
|
|
|
2018-01-17 12:46:04 +08:00
|
|
|
inline __attribute__((target("default"))) void foo_multi(void) {}
|
|
|
|
inline __attribute__((target("avx,sse4.2"))) void foo_multi(void) {}
|
|
|
|
inline __attribute__((target("sse4.2,fma4"))) void foo_multi(void) {}
|
|
|
|
inline __attribute__((target("arch=ivybridge,fma4,sse4.2"))) void foo_multi(void) {}
|
|
|
|
void bar4() {
|
|
|
|
foo_multi();
|
|
|
|
}
|
|
|
|
|
Implement Attribute Target MultiVersioning
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
2018-01-09 05:34:17 +08:00
|
|
|
// CHECK: @foo.ifunc = ifunc i32 (), i32 ()* ()* @foo.resolver
|
|
|
|
// CHECK: @foo_inline.ifunc = ifunc i32 (), i32 ()* ()* @foo_inline.resolver
|
|
|
|
// CHECK: @foo_decls.ifunc = ifunc void (), void ()* ()* @foo_decls.resolver
|
|
|
|
|
|
|
|
// CHECK: define i32 @foo.sse4.2()
|
|
|
|
// CHECK: ret i32 0
|
|
|
|
// CHECK: define i32 @foo.arch_ivybridge()
|
|
|
|
// CHECK: ret i32 1
|
|
|
|
// CHECK: define i32 @foo()
|
|
|
|
// CHECK: ret i32 2
|
|
|
|
// CHECK: define i32 @bar()
|
|
|
|
// CHECK: call i32 @foo.ifunc()
|
|
|
|
|
2018-01-17 03:49:52 +08:00
|
|
|
// CHECK: define i32 ()* @foo.resolver() comdat
|
Implement Attribute Target MultiVersioning
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
2018-01-09 05:34:17 +08:00
|
|
|
// CHECK: call void @__cpu_indicator_init()
|
|
|
|
// CHECK: ret i32 ()* @foo.arch_sandybridge
|
|
|
|
// CHECK: ret i32 ()* @foo.arch_ivybridge
|
|
|
|
// CHECK: ret i32 ()* @foo.sse4.2
|
|
|
|
// CHECK: ret i32 ()* @foo
|
|
|
|
|
|
|
|
// CHECK: define i32 @bar2()
|
|
|
|
// CHECK: call i32 @foo_inline.ifunc()
|
|
|
|
|
2018-01-17 03:49:52 +08:00
|
|
|
// CHECK: define i32 ()* @foo_inline.resolver() comdat
|
Implement Attribute Target MultiVersioning
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
2018-01-09 05:34:17 +08:00
|
|
|
// CHECK: call void @__cpu_indicator_init()
|
|
|
|
// CHECK: ret i32 ()* @foo_inline.arch_sandybridge
|
|
|
|
// CHECK: ret i32 ()* @foo_inline.arch_ivybridge
|
|
|
|
// CHECK: ret i32 ()* @foo_inline.sse4.2
|
|
|
|
// CHECK: ret i32 ()* @foo_inline
|
|
|
|
|
|
|
|
// CHECK: define void @bar3()
|
|
|
|
// CHECK: call void @foo_decls.ifunc()
|
|
|
|
|
2018-01-17 03:49:52 +08:00
|
|
|
// CHECK: define void ()* @foo_decls.resolver() comdat
|
Implement Attribute Target MultiVersioning
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
2018-01-09 05:34:17 +08:00
|
|
|
// CHECK: ret void ()* @foo_decls.sse4.2
|
|
|
|
// CHECK: ret void ()* @foo_decls
|
|
|
|
|
|
|
|
// CHECK: declare i32 @foo.arch_sandybridge()
|
|
|
|
|
|
|
|
// CHECK: define available_externally i32 @foo_inline.sse4.2()
|
|
|
|
// CHECK: ret i32 0
|
|
|
|
|
|
|
|
// CHECK: declare i32 @foo_inline.arch_sandybridge()
|
|
|
|
//
|
|
|
|
// CHECK: define available_externally i32 @foo_inline.arch_ivybridge()
|
|
|
|
// CHECK: ret i32 1
|
|
|
|
// CHECK: define available_externally i32 @foo_inline()
|
|
|
|
// CHECK: ret i32 2
|
|
|
|
|
|
|
|
// CHECK: define available_externally void @foo_decls()
|
|
|
|
// CHECK: define available_externally void @foo_decls.sse4.2()
|
|
|
|
|
2018-01-17 12:46:04 +08:00
|
|
|
// CHECK: define available_externally void @foo_multi.avx_sse4.2()
|
|
|
|
// CHECK: define available_externally void @foo_multi.fma4_sse4.2()
|
|
|
|
// CHECK: define available_externally void @foo_multi.arch_ivybridge_fma4_sse4.2()
|
|
|
|
|