2013-05-01 06:01:21 +08:00
|
|
|
// RUN: %clang -target x86_64-apple-darwin -save-temps -arch x86_64 %s -### 2>&1 \
|
|
|
|
// RUN: | FileCheck %s
|
|
|
|
// CHECK: "-o" "save-temps.i"
|
2015-04-15 09:16:18 +08:00
|
|
|
// CHECK: "-emit-llvm-uselists"
|
2015-07-18 04:09:56 +08:00
|
|
|
// CHECK: "-disable-llvm-passes"
|
Reapply "Change -save-temps to emit unoptimized bitcode files."
This reapplies r224503 along with a fix for compiling Fortran by having the
clang driver invoke gcc (see r224546, where it was reverted). I have added
a testcase for that as well.
Original commit message:
It is often convenient to use -save-temps to collect the intermediate
results of a compilation, e.g., when triaging a bug report. Besides the
temporary files for preprocessed source and assembly code, this adds the
unoptimized bitcode files as well.
This adds a new BackendJobAction, which is mostly mechanical, to run after
the CompileJobAction. When not using -save-temps, the BackendJobAction is
combined into one job with the CompileJobAction, similar to the way the
integrated assembler is handled. I've implemented this entirely as a
driver change, so under the hood, it is just using -disable-llvm-optzns
to get the unoptimized bitcode.
Based in part on a patch by Steven Wu.
rdar://problem/18909437
llvm-svn: 224688
2014-12-21 15:00:00 +08:00
|
|
|
// CHECK: "-o" "save-temps.bc"
|
2013-05-01 06:01:21 +08:00
|
|
|
// CHECK: "-o" "save-temps.s"
|
|
|
|
// CHECK: "-o" "save-temps.o"
|
2015-02-03 06:41:48 +08:00
|
|
|
// CHECK: "-o" "a.out"
|
|
|
|
|
|
|
|
// Check -save-temps=cwd which should work the same as -save-temps above
|
|
|
|
//
|
|
|
|
// RUN: %clang -target x86_64-apple-darwin -save-temps=cwd -arch x86_64 %s -### 2>&1 \
|
|
|
|
// RUN: | FileCheck %s -check-prefix=CWD
|
|
|
|
// CWD: "-o" "save-temps.i"
|
2015-04-15 09:16:18 +08:00
|
|
|
// CWD: "-emit-llvm-uselists"
|
2015-07-18 04:09:56 +08:00
|
|
|
// CWD: "-disable-llvm-passes"
|
2015-02-03 06:41:48 +08:00
|
|
|
// CWD: "-o" "save-temps.bc"
|
|
|
|
// CWD: "-o" "save-temps.s"
|
|
|
|
// CWD: "-o" "save-temps.o"
|
|
|
|
// CWD: "-o" "a.out"
|
2013-05-01 06:01:21 +08:00
|
|
|
|
Reapply "Change -save-temps to emit unoptimized bitcode files."
This reapplies r224503 along with a fix for compiling Fortran by having the
clang driver invoke gcc (see r224546, where it was reverted). I have added
a testcase for that as well.
Original commit message:
It is often convenient to use -save-temps to collect the intermediate
results of a compilation, e.g., when triaging a bug report. Besides the
temporary files for preprocessed source and assembly code, this adds the
unoptimized bitcode files as well.
This adds a new BackendJobAction, which is mostly mechanical, to run after
the CompileJobAction. When not using -save-temps, the BackendJobAction is
combined into one job with the CompileJobAction, similar to the way the
integrated assembler is handled. I've implemented this entirely as a
driver change, so under the hood, it is just using -disable-llvm-optzns
to get the unoptimized bitcode.
Based in part on a patch by Steven Wu.
rdar://problem/18909437
llvm-svn: 224688
2014-12-21 15:00:00 +08:00
|
|
|
// Check for a single clang cc1 invocation when NOT using -save-temps.
|
|
|
|
// RUN: %clang -target x86_64-apple-darwin -arch x86_64 -S %s -### 2>&1 \
|
|
|
|
// RUN: | FileCheck %s -check-prefix=NO-TEMPS
|
|
|
|
// NO-TEMPS: "-cc1"
|
|
|
|
// NO-TEMPS: "-S"
|
|
|
|
// NO-TEMPS: "-x" "c"
|
|
|
|
|
2013-05-01 06:01:21 +08:00
|
|
|
// RUN: %clang -target x86_64-apple-darwin -save-temps -arch i386 -arch x86_64 %s -### 2>&1 \
|
|
|
|
// RUN: | FileCheck %s -check-prefix=MULT-ARCH
|
|
|
|
// MULT-ARCH: "-o" "save-temps-i386.i"
|
Reapply "Change -save-temps to emit unoptimized bitcode files."
This reapplies r224503 along with a fix for compiling Fortran by having the
clang driver invoke gcc (see r224546, where it was reverted). I have added
a testcase for that as well.
Original commit message:
It is often convenient to use -save-temps to collect the intermediate
results of a compilation, e.g., when triaging a bug report. Besides the
temporary files for preprocessed source and assembly code, this adds the
unoptimized bitcode files as well.
This adds a new BackendJobAction, which is mostly mechanical, to run after
the CompileJobAction. When not using -save-temps, the BackendJobAction is
combined into one job with the CompileJobAction, similar to the way the
integrated assembler is handled. I've implemented this entirely as a
driver change, so under the hood, it is just using -disable-llvm-optzns
to get the unoptimized bitcode.
Based in part on a patch by Steven Wu.
rdar://problem/18909437
llvm-svn: 224688
2014-12-21 15:00:00 +08:00
|
|
|
// MULT-ARCH: "-o" "save-temps-i386.bc"
|
2013-05-01 06:01:21 +08:00
|
|
|
// MULT-ARCH: "-o" "save-temps-i386.s"
|
|
|
|
// MULT-ARCH: "-o" "save-temps-i386.o"
|
2015-02-03 06:41:48 +08:00
|
|
|
// MULT-ARCH: "-o" "a.out-i386"
|
2013-05-01 06:01:21 +08:00
|
|
|
// MULT-ARCH: "-o" "save-temps-x86_64.i"
|
Reapply "Change -save-temps to emit unoptimized bitcode files."
This reapplies r224503 along with a fix for compiling Fortran by having the
clang driver invoke gcc (see r224546, where it was reverted). I have added
a testcase for that as well.
Original commit message:
It is often convenient to use -save-temps to collect the intermediate
results of a compilation, e.g., when triaging a bug report. Besides the
temporary files for preprocessed source and assembly code, this adds the
unoptimized bitcode files as well.
This adds a new BackendJobAction, which is mostly mechanical, to run after
the CompileJobAction. When not using -save-temps, the BackendJobAction is
combined into one job with the CompileJobAction, similar to the way the
integrated assembler is handled. I've implemented this entirely as a
driver change, so under the hood, it is just using -disable-llvm-optzns
to get the unoptimized bitcode.
Based in part on a patch by Steven Wu.
rdar://problem/18909437
llvm-svn: 224688
2014-12-21 15:00:00 +08:00
|
|
|
// MULT-ARCH: "-o" "save-temps-x86_64.bc"
|
2013-05-01 06:01:21 +08:00
|
|
|
// MULT-ARCH: "-o" "save-temps-x86_64.s"
|
|
|
|
// MULT-ARCH: "-o" "save-temps-x86_64.o"
|
2015-02-03 06:41:48 +08:00
|
|
|
// MULT-ARCH: "-o" "a.out-x86_64"
|
2013-05-01 06:01:21 +08:00
|
|
|
// MULT-ARCH: lipo
|
|
|
|
// MULT-ARCH: "-create" "-output" "a.out" "a.out-i386" "a.out-x86_64"
|
2015-02-03 06:41:48 +08:00
|
|
|
|
|
|
|
// RUN: %clang -target x86_64-apple-darwin -save-temps=cwd -arch i386 -arch x86_64 %s -### 2>&1 \
|
|
|
|
// RUN: | FileCheck %s -check-prefix=MULT-ARCH-CWD
|
|
|
|
// MULT-ARCH-CWD: "-o" "save-temps-i386.i"
|
|
|
|
// MULT-ARCH-CWD: "-o" "save-temps-i386.bc"
|
|
|
|
// MULT-ARCH-CWD: "-o" "save-temps-i386.s"
|
|
|
|
// MULT-ARCH-CWD: "-o" "save-temps-i386.o"
|
|
|
|
// MULT-ARCH-CWD: "-o" "a.out-i386"
|
|
|
|
// MULT-ARCH-CWD: "-o" "save-temps-x86_64.i"
|
|
|
|
// MULT-ARCH-CWD: "-o" "save-temps-x86_64.bc"
|
|
|
|
// MULT-ARCH-CWD: "-o" "save-temps-x86_64.s"
|
|
|
|
// MULT-ARCH-CWD: "-o" "save-temps-x86_64.o"
|
|
|
|
// MULT-ARCH-CWD: "-o" "a.out-x86_64"
|
|
|
|
// MULT-ARCH-CWD: lipo
|
|
|
|
// MULT-ARCH-CWD: "-create" "-output" "a.out" "a.out-i386" "a.out-x86_64"
|
|
|
|
|
|
|
|
// Check that temp files are saved in the same directory as the output file
|
|
|
|
// regardless of whether -o is specified.
|
|
|
|
//
|
|
|
|
// RUN: %clang -target x86_64-apple-darwin -save-temps=obj -o obj/dir/a.out -arch x86_64 %s -### 2>&1 \
|
|
|
|
// RUN: | FileCheck %s -check-prefix=CHECK-OBJ
|
|
|
|
// CHECK-OBJ: "-o" "obj/dir{{/|\\\\}}save-temps.i"
|
2015-07-18 04:09:56 +08:00
|
|
|
// CHECK-OBJ: "-disable-llvm-passes"
|
2015-02-03 06:41:48 +08:00
|
|
|
// CHECK-OBJ: "-o" "obj/dir{{/|\\\\}}save-temps.bc"
|
|
|
|
// CHECK-OBJ: "-o" "obj/dir{{/|\\\\}}save-temps.s"
|
|
|
|
// CHECK-OBJ: "-o" "obj/dir{{/|\\\\}}save-temps.o"
|
|
|
|
// CHECK-OBJ: "-o" "obj/dir{{/|\\\\}}a.out"
|
|
|
|
//
|
|
|
|
// RUN: %clang -target x86_64-apple-darwin -save-temps=obj -arch x86_64 %s -### 2>&1 \
|
|
|
|
// RUN: | FileCheck %s -check-prefix=CHECK-OBJ-NOO
|
|
|
|
// CHECK-OBJ-NOO: "-o" "save-temps.i"
|
2015-07-18 04:09:56 +08:00
|
|
|
// CHECK-OBJ-NOO: "-disable-llvm-passes"
|
2015-02-03 06:41:48 +08:00
|
|
|
// CHECK-OBJ-NOO: "-o" "save-temps.bc"
|
|
|
|
// CHECK-OBJ-NOO: "-o" "save-temps.s"
|
|
|
|
// CHECK-OBJ-NOO: "-o" "save-temps.o"
|
|
|
|
// CHECK-OBJ-NOO: "-o" "a.out"
|