2014-09-25 02:25:54 +08:00
|
|
|
// RUN: %clang_cc1 -mrtd -triple i386-unknown-unknown -std=c89 -emit-llvm -o - %s 2>&1 | FileCheck %s
|
2014-09-20 07:07:12 +08:00
|
|
|
|
2014-10-25 01:42:17 +08:00
|
|
|
// CHECK: mrtd.c:10:3: warning: function with no prototype cannot use the stdcall calling convention
|
2011-03-02 01:40:53 +08:00
|
|
|
|
|
|
|
void baz(int arg);
|
|
|
|
|
2013-02-27 07:08:48 +08:00
|
|
|
// CHECK: define x86_stdcallcc void @foo(i32 %arg) [[NUW:#[0-9]+]]
|
2011-03-02 01:40:53 +08:00
|
|
|
void foo(int arg) {
|
2011-09-21 16:08:30 +08:00
|
|
|
// CHECK: call x86_stdcallcc i32 bitcast (i32 (...)* @bar to i32 (i32)*)(
|
2011-03-02 01:40:53 +08:00
|
|
|
bar(arg);
|
2011-03-02 03:55:40 +08:00
|
|
|
// CHECK: call x86_stdcallcc void @baz(i32
|
2011-03-02 01:40:53 +08:00
|
|
|
baz(arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK: declare x86_stdcallcc i32 @bar(...)
|
|
|
|
|
|
|
|
// CHECK: declare x86_stdcallcc void @baz(i32)
|
2013-02-20 15:22:19 +08:00
|
|
|
|
2013-08-28 07:08:25 +08:00
|
|
|
void qux(int arg, ...) { }
|
|
|
|
// CHECK: define void @qux(i32 %arg, ...)
|
|
|
|
|
|
|
|
void quux(int a1, int a2, int a3) {
|
|
|
|
qux(a1, a2, a3);
|
|
|
|
}
|
|
|
|
// CHECK-LABEL: define x86_stdcallcc void @quux
|
2015-04-17 07:25:00 +08:00
|
|
|
// CHECK: call void (i32, ...) @qux
|
2013-08-28 07:08:25 +08:00
|
|
|
|
Cleanup the handling of noinline function attributes, -fno-inline,
-fno-inline-functions, -O0, and optnone.
These were really, really tangled together:
- We used the noinline LLVM attribute for -fno-inline
- But not for -fno-inline-functions (breaking LTO)
- But we did use it for -finline-hint-functions (yay, LTO is happy!)
- But we didn't for -O0 (LTO is sad yet again...)
- We had weird structuring of CodeGenOpts with both an inlining
enumeration and a boolean. They interacted in weird ways and
needlessly.
- A *lot* of set smashing went on with setting these, and then got worse
when we considered optnone and other inlining-effecting attributes.
- A bunch of inline affecting attributes were managed in a completely
different place from -fno-inline.
- Even with -fno-inline we failed to put the LLVM noinline attribute
onto many generated function definitions because they didn't show up
as AST-level functions.
- If you passed -O0 but -finline-functions we would run the normal
inliner pass in LLVM despite it being in the O0 pipeline, which really
doesn't make much sense.
- Lastly, we used things like '-fno-inline' to manipulate the pass
pipeline which forced the pass pipeline to be much more
parameterizable than it really needs to be. Instead we can *just* use
the optimization level to select a pipeline and control the rest via
attributes.
Sadly, this causes a bunch of churn in tests because we don't run the
optimizer in the tests and check the contents of attribute sets. It
would be awesome if attribute sets were a bit more FileCheck friendly,
but oh well.
I think this is a significant improvement and should remove the semantic
need to change what inliner pass we run in order to comply with the
requested inlining semantics by relying completely on attributes. It
also cleans up tho optnone and related handling a bit.
One unfortunate aspect of this is that for generating alwaysinline
routines like those in OpenMP we end up removing noinline and then
adding alwaysinline. I tried a bunch of other approaches, but because we
recompute function attributes from scratch and don't have a declaration
here I couldn't find anything substantially cleaner than this.
Differential Revision: https://reviews.llvm.org/D28053
llvm-svn: 290398
2016-12-23 09:24:49 +08:00
|
|
|
// CHECK: attributes [[NUW]] = { noinline nounwind{{.*}} }
|