Home
last modified time | relevance | path

Searched +full:- +full:fno +full:- +full:rtti (Results 1 – 25 of 249) sorted by relevance

12345678910

/external/clang/test/Driver/
Drtti-options.cpp2 // exceptions, rtti, and vptr sanitizer flags when targetting the PS4.
4 // the vptr sanitizer with -fno-rtti
6 // Special cases: -fcxx-exceptions in C code should warn about unused arguments
7 // We should also not have any rtti-related arguments
8-x c -### -target x86_64-scei-ps4 -c -fcxx-exceptions %s 2>&1 | FileCheck -check-prefix=CHECK-UNUS…
9-x c -### -target x86_64-unknown-unknown -c -fcxx-exceptions %s 2>&1 | FileCheck -check-prefix=CHE…
11 // Make sure we keep the last -frtti/-fno-rtti argument
12 // RUN: %clang -### -c -fno-rtti -frtti %s 2>&1 | FileCheck -check-prefix=CHECK-RTTI %s
13 // RUN: %clang -### -c -frtti -fno-rtti %s 2>&1 | FileCheck -check-prefix=CHECK-NO-RTTI %s
15 // -fsanitize=vptr
[all …]
Dapple-kext-mkernel.c1 // RUN: %clang -target x86_64-apple-darwin10 -mkernel -### -fsyntax-only %s 2>&1 | FileCheck --chec…
2 …lang -target x86_64-apple-darwin10 -mkernel -### -fsyntax-only -fbuiltin -fno-builtin -fcommon -fn…
4 // CHECK-X86: "-disable-red-zone"
5 // CHECK-X86: "-fno-builtin"
6 // CHECK-X86: "-fno-rtti"
7 // CHECK-X86: "-fno-common"
9 // RUN: %clang -target x86_64-apple-darwin10 -mkernel -### -fsyntax-only -fbuiltin -fcommon %s 2>&1…
11 // CHECK-X86-2: "-disable-red-zone"
12 // CHECK-X86-2-NOT: "-fno-builtin"
13 // CHECK-X86-2: "-fno-rtti"
[all …]
Dfsanitize.c1 …UN: %clang -target x86_64-linux-gnu -fsanitize=undefined -fsanitize-trap=undefined %s -### 2>&1 | …
2-target x86_64-linux-gnu -fsanitize=undefined -fsanitize-trap=undefined -fno-sanitize-trap=signed-
3 …clang -target x86_64-linux-gnu -fsanitize=undefined -fsanitize-undefined-trap-on-error %s -### 2>&…
4 …ang -target x86_64-linux-gnu -fsanitize=undefined-trap -fsanitize-undefined-trap-on-error %s -### …
5 …ang -target x86_64-linux-gnu -fsanitize-undefined-trap-on-error -fsanitize=undefined-trap %s -### …
6-UNDEFINED-TRAP: "-fsanitize={{((signed-integer-overflow|integer-divide-by-zero|float-divide-by-ze…
7-UNDEFINED-TRAP: "-fsanitize-trap=alignment,array-bounds,bool,enum,float-cast-overflow,float-divid…
8-UNDEFINED-TRAP2: "-fsanitize-trap=alignment,array-bounds,bool,enum,float-cast-overflow,float-divi…
10 // RUN: %clang -target x86_64-linux-gnu -fsanitize=undefined %s -### 2>&1 | FileCheck %s --check-pr…
11-UNDEFINED: "-fsanitize={{((signed-integer-overflow|integer-divide-by-zero|float-divide-by-zero|fu…
[all …]
Dcl-options.c1 // Note: %s must be preceded by --, otherwise it may be interpreted as a
2 // command-line option, e.g. on Mac where %s is commonly under /Users.
7 // RUN: %clang_cl /c -### -- %s 2>&1 | FileCheck -check-prefix=c %s
8 // c: -c
10 // RUN: %clang_cl /C -### -- %s 2>&1 | FileCheck -check-prefix=C %s
11 // C: error: invalid argument '-C' only allowed with '/E, /P or /EP'
13 // RUN: %clang_cl /C /P -### -- %s 2>&1 | FileCheck -check-prefix=C_P %s
14 // C_P: "-E"
15 // C_P: "-C"
18 // RUN: -### -- %s 2>&1 | FileCheck -check-prefix=D %s
[all …]
/external/google-fruit/extras/benchmark/suites/
Ddebug.yml7 # http://www.apache.org/licenses/LICENSE-2.0
10 # distributed under the License is distributed on an "AS-IS" BASIS,
25 - "g++-9"
26 - "clang++-10"
28 - "g++-9"
30 - "clang++-10"
33 - name: "fruit_single_file_compile_time"
35 - 20
39 - []
41 - []
[all …]
Dfruit_full.yml7 # http://www.apache.org/licenses/LICENSE-2.0
10 # distributed under the License is distributed on an "AS-IS" BASIS,
22 - "g++-9"
23 - "clang++-10"
25 - 100
26 - 250
27 - 1000
30 - name: "fruit_single_file_compile_time"
32 - 20
33 - 80
[all …]
/external/google-fruit/extras/benchmark/tables/
Dfruit_internal.yml20 - new_delete_run_time
21 - fruit_single_file_compile_time
24 - total_max_ram_usage
30 - name: "Compile time (Clang)"
34 compiler: "clang++-10"
56 - name: "Compile time (GCC)"
60 compiler: "g++-9"
82 - name: "Incremental compile time (Clang)"
86 compiler: "clang++-10"
108 - name: "Incremental compile time (GCC)"
[all …]
Dfruit_wiki.yml22 - name: "Fruit compile time (single file)"
33 - name: "Fruit compile time"
44 - name: "Fruit startup time"
55 - name: "Fruit per-request time"
66 - name: "New/delete time"
79 - name: "Compile time (100 classes)"
105 - name: "Compile time (250 classes)"
131 - name: "Compile time (1000 classes)"
157 - name: "Incremental compile time (100 classes)"
183 - name: "Incremental compile time (250 classes)"
[all …]
/external/clang/test/CodeGenCXX/
Dexceptions-no-rtti.cpp1 // RUN: %clang_cc1 -fno-rtti -fcxx-exceptions -fexceptions %s -triple=x86_64-apple-darwin10 -emit-l…
21 // These classes have key functions defined out-of-line. Under
22 // normal circumstances, we wouldn't generate RTTI for them; under
23 // -fno-rtti, we generate RTTI only when required by EH. But
25 // users are also compiled under -fno-rtti and therefore will be
26 // emitting RTTI regardless of key function.
Ddynamic_cast-no-rtti.cpp1 // RUN: %clang_cc1 -emit-llvm %s -verify -fno-rtti -triple %itanium_abi_triple -o - | FileCheck %s
2 // expected-no-diagnostics
12 // An upcast can be resolved statically and can be used with -fno-rtti, iff it
16 // CHECK-LABEL: define {{.*}}%struct.A* @_Z6upcastP1B in upcast()
17 // CHECK-NOT: call {{.*}}i8* @__dynamic_cast in upcast()
20 // A NoOp dynamic_cast can be used with -fno-rtti iff it does not use
24 // CHECK-LABEL: define {{.*}}%struct.B* @_Z8samecastP1B in samecast()
25 // CHECK-NOT: call {{.*}}i8* @__dynamic_cast in samecast()
Dmicrosoft-abi-try-throw.cpp1 …clang_cc1 -emit-llvm %s -o - -triple=i386-pc-win32 -mconstructor-aliases -fcxx-exceptions -fexcept…
2 …clang_cc1 -emit-llvm %s -o - -triple=i386-pc-win32 -mconstructor-aliases -fcxx-exceptions -fexcept…
4 // THROW-DAG: @"\01??_R0H@8" = linkonce_odr global %rtti.TypeDescriptor2 { i8** @"\01??_7type_info@…
5-DAG: @"_CT??_R0H@84" = linkonce_odr unnamed_addr constant %eh.CatchableType { i32 1, i8* bitcast …
6 // THROW-DAG: @_CTA1H = linkonce_odr unnamed_addr constant %eh.CatchableTypeArray.1 { i32 1, [1 x %…
7 // THROW-DAG: @_TI1H = linkonce_odr unnamed_addr constant %eh.ThrowInfo { i32 0, i8* null, i8* null…
22 // TRY: catchpad within {{.*}} [%rtti.TypeDescriptor2* @"\01??_R0H@8", i32 0, i8* null] in main()
36 // TRY-LABEL: define void @"\01?qual_catch@@YAXXZ"
42 // TRY: catchpad within {{.*}} [%rtti.TypeDescriptor4* @"\01??_R0PAH@8", i32 1, i8* null] in qual_catch()
Dmicrosoft-abi-non-virtual-base-ordering.cpp1 // RUN: %clang_cc1 -fno-rtti -emit-llvm -triple=i686-pc-win32 -o - %s 2>/dev/null | FileCheck %s
2 // RUN: %clang_cc1 -fno-rtti -emit-llvm -triple=x86_64-pc-win32 -o - %s 2>/dev/null | FileCheck %s
Dmicrosoft-abi-alignment-fail.cpp1 // RUN: %clang_cc1 -fno-rtti -emit-llvm -triple=i686-pc-win32 -o - %s 2>/dev/null | FileCheck %s
2 // RUN: %clang_cc1 -fno-rtti -emit-llvm -triple=x86_64-pc-win32 -o - %s 2>/dev/null | FileCheck %s…
10 // CHECK-X64: %struct.A = type { i32*, %struct.B }
Dcfi-ms-rtti.cpp1 // RUN: %clang_cc1 -flto -emit-llvm -o - -triple=x86_64-pc-win32 %s -fsanitize=cfi-vcall | FileChec…
2 … RUN: %clang_cc1 -flto -emit-llvm -o - -triple=x86_64-pc-win32 %s -fsanitize=cfi-vcall -fno-rtti-d…
11 // RTTI: !{i64 8, !"?AUA@@"}
12 // NO-RTTI: !{i64 0, !"?AUA@@"}
/external/clang/test/SemaCXX/
Dno-rtti.cpp1 // RUN: %clang_cc1 -fsyntax-only -verify -fno-rtti %s
9 (void)typeid(int); // expected-error {{cannot use typeid with -fno-rtti}} in f()
23 return dynamic_cast<B *>(a) != 0; // expected-error {{cannot use dynamic_cast with -fno-rtti}} in isa_B()
27 // This cast does not use RTTI. in getMostDerived()
/external/clang/test/Lexer/
Dhas_feature_rtti.cpp1 // RUN: %clang_cc1 -E %s -o - | FileCheck --check-prefix=CHECK-RTTI %s
2 // RUN: %clang_cc1 -E -fno-rtti %s -o - | FileCheck --check-prefix=CHECK-NO-RTTI %s
3 // RUN: %clang_cc1 -E -fno-rtti-data %s -o - | FileCheck --check-prefix=CHECK-NO-RTTI %s
11 // CHECK-RTTI: foo
12 // CHECK-NO-RTTI: bar
/external/tensorflow/tensorflow/lite/tools/make/targets/
Dstm32f7_makefile.inc4 TARGET_TOOLCHAIN_PREFIX := arm-none-eabi-
7 -DGEMMLOWP_ALLOW_SLOW_SCALAR_FALLBACK \
8 -DTFLITE_MCU \
9 -fno-rtti \
10 -fmessage-length=0 \
11 -fno-exceptions \
12 -fno-builtin \
13 -ffunction-sections \
14 -fdata-sections \
15 -funsigned-char \
[all …]
/external/webrtc/android_tools/
Dselected_targets.json5 "-T"
8 "-fPIC",
9 "-fno-strict-aliasing",
10 "--param=ssp-buffer-size=4",
11 "-fstack-protector",
12 "-funwind-tables",
13 "-fPIC",
14 "-pthread",
15 "-fcolor-diagnostics",
16 "-fmerge-all-constants",
[all …]
Dsorted_targets.txt5 "-T"
8 "-fPIC",
9 "-fno-strict-aliasing",
10 "--param=ssp-buffer-size=4",
11 "-fstack-protector",
12 "-funwind-tables",
13 "-fPIC",
14 "-B../src/third_party/binutils/Linux_x64/Release/bin",
15 "-pthread",
16 "-fcolor-diagnostics",
[all …]
Dproject.json3 "build_dir": "/home/jemoreira/webrtc-checout/json/",
5-config.py", "//build/config/linux/pkg_config.gni", "//build/config/logging.gni", "//build/config/…
6 "root_path": "/home/jemoreira/webrtc-checout/src"
12 "arflags": [ "-T" ],
13-fPIC", "-fno-strict-aliasing", "--param=ssp-buffer-size=4", "-fstack-protector", "-funwind-tables…
14-fno-strict-aliasing", "--param=ssp-buffer-size=4", "-fstack-protector", "-funwind-tables", "-fPIC…
15 …"cflags_c": [ "-std=c11", "-Wno-implicit-fallthrough", "--sysroot=../src/build/linux/debian_sid_am…
16-Wno-undefined-bool-conversion", "-Wno-tautological-undefined-compare", "-std=c++14", "-fno-trigra…
17 …"cflags_objc": [ "-std=c11", "--sysroot=../src/build/linux/debian_sid_amd64-sysroot", "-Wstrict-pr…
18-Wno-undefined-bool-conversion", "-Wno-tautological-undefined-compare", "-std=c++14", "-fno-trigra…
[all …]
/external/toolchain-utils/binary_search_tool/ndk/
DPATCH13 Date: Tue, 9 Aug 2016 09:38:41 -0700
10 ---
11 Teapot/app/build.gradle | 7 ++++++-
12 1 file changed, 6 insertions(+), 1 deletion(-)
14 diff --git a/Teapot/app/build.gradle b/Teapot/app/build.gradle
16 --- a/Teapot/app/build.gradle
18 @@ -29,7 +29,7 @@ model {
19 cppFlags.addAll(['-I' + "${ndkDir}/sources/android/cpufeatures",
20 '-I' + file('src/main/jni/ndk_helper')])
21 cppFlags.addAll(['-std=c++11', '-Wall',
[all …]
/external/deqp-deps/glslang/
DCMakeLists.txt67 # This logic inside SPIRV-Tools, which can upset build target dependencies
80 option(ENABLE_GLSLANG_BINARIES "Builds glslangValidator and spirv-remap" ON)
83 …"If using Emscripten, build glslang.js. Otherwise, builds a sample executable for binary-size test…
106 option(ENABLE_RTTI "Enables RTTI" OFF)
108 option(ENABLE_OPT "Enables spirv-opt capability if present" ON)
111 # Workaround for CMake behavior on Mac OS with gcc, cmake generates -Xarch_* arguments
136 add_definitions(-DENABLE_HLSL)
140 add_definitions(-DGLSLANG_WEB)
142 add_definitions(-DGLSLANG_WEB_DEVEL)
152 add_definitions(-DGLSLANG_OSINCLUDE_WIN32)
[all …]
/external/angle/third_party/vulkan-deps/glslang/src/
DCMakeLists.txt67 # This logic inside SPIRV-Tools, which can upset build target dependencies
80 option(ENABLE_GLSLANG_BINARIES "Builds glslangValidator and spirv-remap" ON)
83 …"If using Emscripten, build glslang.js. Otherwise, builds a sample executable for binary-size test…
106 option(ENABLE_RTTI "Enables RTTI" OFF)
108 option(ENABLE_OPT "Enables spirv-opt capability if present" ON)
111 # Workaround for CMake behavior on Mac OS with gcc, cmake generates -Xarch_* arguments
136 add_definitions(-DENABLE_HLSL)
140 add_definitions(-DGLSLANG_WEB)
142 add_definitions(-DGLSLANG_WEB_DEVEL)
152 add_definitions(-DGLSLANG_OSINCLUDE_WIN32)
[all …]
/external/googletest/googletest/cmake/
Dinternal_utils.cmake6 # - This file will be run twice when building Google Mock (once via
11 # - The functions/macros defined in this file may depend on Google
27 # https://gitlab.kitware.com/cmake/community/wikis/FAQ#dynamic-replace.
37 # hard-to-find crashes. When it is built as a static library, it is
41 string(REPLACE "/MD" "-MT" ${flag_var} "${${flag_var}}")
49 # turned off (/EHs-c- flag). Where required, exceptions are explicitly
50 # re-enabled using the cxx_exception_flags variable.
74 # TODO(vladl@google.com): Add -RTCs and -RTCu to debug builds.
75 set(cxx_base_flags "-GS -W4 -WX -wd4251 -wd4275 -nologo -J")
76 set(cxx_base_flags "${cxx_base_flags} -D_UNICODE -DUNICODE -DWIN32 -D_WIN32")
[all …]
/external/openscreen/build/config/
DBUILD.gn2 # Use of this source code is governed by a BSD-style license that can be
19 # Enables clang's source-based coverage (requires is_clang=true).
31 cflags += [ "-fPIC" ]
36 ldflags += [ "-pthread" ]
39 ldflags += [ "-Wl,--fatal-warnings" ]
43 "-stdlib=libstdc++",
44 "-latomic",
55 # These are explicitly specified in case of cross-compiling.
56 cflags += [ "-m64" ]
57 ldflags += [ "-m64" ]
[all …]

12345678910