/external/clang/test/Driver/ |
D | x86-target-features.c | 1 // RUN: %clang -target i386-unknown-linux-gnu -march=i386 -mx87 %s -### -o %t.o 2>&1 | FileCheck -c… 2 // RUN: %clang -target i386-unknown-linux-gnu -march=i386 -mno-x87 %s -### -o %t.o 2>&1 | FileCheck… 3 // RUN: %clang -target i386-unknown-linux-gnu -march=i386 -m80387 %s -### -o %t.o 2>&1 | FileCheck … 4 // RUN: %clang -target i386-unknown-linux-gnu -march=i386 -mno-80387 %s -### -o %t.o 2>&1 | FileChe… 5 // X87: "-target-feature" "+x87" 6 // NO-X87: "-target-feature" "-x87" 8 // RUN: %clang -target i386-unknown-linux-gnu -march=i386 -mmmx -m3dnow -m3dnowa %s -### -o %t.o 2>… 9 …/ RUN: %clang -target i386-unknown-linux-gnu -march=i386 -mno-mmx -mno-3dnow -mno-3dnowa %s -### -… 10 // MMX: "-target-feature" "+mmx" "-target-feature" "+3dnow" "-target-feature" "+3dnowa" 11 // NO-MMX: "-target-feature" "-mmx" "-target-feature" "-3dnow" "-target-feature" "-3dnowa" [all …]
|
D | arm-mfpu.c | 1 // Test that different values of -mfpu pick correct ARM FPU target-feature(s). 3 // RUN: %clang -target arm-linux-eabi %s -### -o %t.o 2>&1 \ 4 // RUN: | FileCheck --check-prefix=CHECK-DEFAULT %s 5 // CHECK-DEFAULT-NOT: "-target-feature" "+vfp2" 6 // CHECK-DEFAULT-NOT: "-target-feature" "+vfp3" 7 // CHECK-DEFAULT-NOT: "-target-feature" "+d16" 8 // CHECK-DEFAULT-NOT: "-target-feature" "+neon" 10 // RUN: %clang -target arm-linux-eabi -mfpu=fpa %s -### -o %t.o 2>&1 \ 11 // RUN: | FileCheck --check-prefix=CHECK-FPA %s 12 // RUN: %clang -target arm-linux-eabi -mfpu=fpe2 %s -### -o %t.o 2>&1 \ [all …]
|
D | mips-integrated-as.s | 1 // RUN: %clang -target mips-linux-gnu -### -fintegrated-as -c %s 2>&1 | \ 2 // RUN: FileCheck -check-prefix=ABI-O32 %s 3 // RUN: %clang -target mips-linux-gnu -### -fintegrated-as -c %s -mabi=32 2>&1 | \ 4 // RUN: FileCheck -check-prefix=ABI-O32 %s 5 // RUN: %clang -target mips-linux-gnu -### -fintegrated-as -c %s -mabi=o32 2>&1 | \ 6 // RUN: FileCheck -check-prefix=ABI-O32 %s 7 // ABI-O32: -cc1as 8 // ABI-O32: "-target-abi" "o32" 10 // RUN: %clang -target mips-linux-gnu -### -fintegrated-as -c %s -mabi=eabi 2>&1 | \ 11 // RUN: FileCheck -check-prefix=ABI-EABI32 %s [all …]
|
D | aarch64-cpus.c | 1 // Check target CPUs are correctly passed. 3 // RUN: %clang -target aarch64 -### -c %s 2>&1 | FileCheck -check-prefix=GENERIC %s 4 // RUN: %clang -target aarch64 -mcpu=generic -### -c %s 2>&1 | FileCheck -check-prefix=GENERIC %s 5 // RUN: %clang -target aarch64 -mlittle-endian -### -c %s 2>&1 | FileCheck -check-prefix=GENERIC %s 6 // RUN: %clang -target aarch64 -mlittle-endian -mcpu=generic -### -c %s 2>&1 | FileCheck -check-pre… 7 // RUN: %clang -target aarch64_be -mlittle-endian -### -c %s 2>&1 | FileCheck -check-prefix=GENERIC… 8 // RUN: %clang -target aarch64_be -mlittle-endian -mcpu=generic -### -c %s 2>&1 | FileCheck -check-… 9 // GENERIC: "-cc1"{{.*}} "-triple" "aarch64{{.*}}" "-target-cpu" "generic" 11 // RUN: %clang -target arm64 -### -c %s 2>&1 | FileCheck -check-prefix=ARM64-GENERIC %s 12 // RUN: %clang -target arm64 -mcpu=generic -### -c %s 2>&1 | FileCheck -check-prefix=ARM64-GENERIC … [all …]
|
D | mips-abi.c | 3 // RUN: %clang -target mips-linux-gnu -### -c %s 2>&1 \ 4 // RUN: | FileCheck -check-prefix=MIPS32R2-O32 %s 5 // RUN: %clang -target mips64-linux-gnu -mips32r2 -mabi=32 -### -c %s 2>&1 \ 6 // RUN: | FileCheck -check-prefix=MIPS32R2-O32 %s 7 // MIPS32R2-O32: "-target-cpu" "mips32r2" 8 // MIPS32R2-O32: "-target-abi" "o32" 12 // RUN: not %clang -target mips-linux-gnu -c %s \ 13 // RUN: -march=mips64r2 -mabi=32 2>&1 \ 14 // RUN: | FileCheck -check-prefix=MIPS64R2-O32 %s 15 // MIPS64R2-O32: error: ABI 'o32' is not supported on CPU 'mips64r2' [all …]
|
D | arm-cortex-cpus.c | 2 // RUN: %clang -target arm -mcpu=generic -### -c %s 2>&1 | FileCheck -check-prefix=CHECK-GENERIC %s 3 // CHECK-GENERIC: "-cc1"{{.*}} "-triple" "armv4t-{{.*}} "-target-cpu" "generic" 5 // RUN: %clang -target armeb -mcpu=generic -### -c %s 2>&1 | FileCheck -check-prefix=CHECK-BE-GENER… 6 // CHECK-BE-GENERIC: "-cc1"{{.*}} "-triple" "armebv4t-{{.*}} "-target-cpu" "generic" 8 // RUN: %clang -target arm -mthumb -mcpu=generic -### -c %s 2>&1 | FileCheck -check-prefix=CHECK-GE… 9 // CHECK-GENERIC-THUMB: "-cc1"{{.*}} "-triple" "thumbv4t-{{.*}} "-target-cpu" "generic" 11 // RUN: %clang -target armeb -mthumb -mcpu=generic -### -c %s 2>&1 | FileCheck -check-prefix=CHECK-… 12 // CHECK-BE-GENERIC-THUMB: "-cc1"{{.*}} "-triple" "thumbebv4t-{{.*}} "-target-cpu" "generic" 14 // RUN: %clang -target armv4t -### -c %s 2>&1 | FileCheck -check-prefix=CHECK-V4T %s 15 // RUN: %clang -target arm -march=armv4t -### -c %s 2>&1 | FileCheck -check-prefix=CHECK-V4T %s [all …]
|
D | ppc-features.cpp | 1 // Check that we error when -faltivec is specified on non-ppc platforms. 3 // RUN: %clang -target powerpc-unk-unk -faltivec -fsyntax-only %s 4 // RUN: %clang -target powerpc64-linux-gnu -faltivec -fsyntax-only %s 5 // RUN: %clang -target powerpc64-linux-gnu -maltivec -fsyntax-only %s 7 // RUN: not %clang -target i386-pc-win32 -faltivec -fsyntax-only %s 2>&1 | FileCheck %s 8 // RUN: not %clang -target x86_64-unknown-freebsd -faltivec -fsyntax-only %s 2>&1 | FileCheck %s 9 // RUN: not %clang -target armv6-apple-darwin -faltivec -fsyntax-only %s 2>&1 | FileCheck %s 10 // RUN: not %clang -target armv7-apple-darwin -faltivec -fsyntax-only %s 2>&1 | FileCheck %s 11 // RUN: not %clang -target mips-linux-gnu -faltivec -fsyntax-only %s 2>&1 | FileCheck %s 12 // RUN: not %clang -target mips64-linux-gnu -faltivec -fsyntax-only %s 2>&1 | FileCheck %s [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/PowerPC/ |
D | ppc64-fixups.s | 2 # RUN: llvm-mc -triple powerpc64-unknown-unknown --show-encoding %s | FileCheck -check-prefix=CHECK… 3 # RUN: llvm-mc -triple powerpc64le-unknown-unknown --show-encoding %s | FileCheck -check-prefix=CHE… 5 # RUN: llvm-mc -triple powerpc64-unknown-unknown -filetype=obj %s | \ 6 # RUN: llvm-readobj -r | FileCheck %s -check-prefix=CHECK-BE-REL 7 # RUN: llvm-mc -triple powerpc64le-unknown-unknown -filetype=obj %s | \ 8 # RUN: llvm-readobj -r | FileCheck %s -check-prefix=CHECK-LE-REL 10 # CHECK-BE: b target # encoding: [0b010010AA,A,A,0bAAAAAA00] 11 # CHECK-LE: b target # encoding: [0bAAAAAA00,A,A,0b010010AA] 12 # CHECK-BE-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc… 13 # CHECK-LE-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc… [all …]
|
D | ppc64-encoding-ext.s | 2 # RUN: llvm-mc -triple powerpc64-unknown-unknown --show-encoding %s | FileCheck -check-prefix=CHECK… 3 # RUN: llvm-mc -triple powerpc64le-unknown-unknown --show-encoding %s | FileCheck -check-prefix=CHE… 7 # CHECK-BE: beqlr 0 # encoding: [0x4d,0x82,0x00,0x20] 8 # CHECK-LE: beqlr 0 # encoding: [0x20,0x00,0x82,0x4d] 10 # CHECK-BE: beqlr 1 # encoding: [0x4d,0x86,0x00,0x20] 11 # CHECK-LE: beqlr 1 # encoding: [0x20,0x00,0x86,0x4d] 13 # CHECK-BE: beqlr 2 # encoding: [0x4d,0x8a,0x00,0x20] 14 # CHECK-LE: beqlr 2 # encoding: [0x20,0x00,0x8a,0x4d] 16 # CHECK-BE: beqlr 3 # encoding: [0x4d,0x8e,0x00,0x20] 17 # CHECK-LE: beqlr 3 # encoding: [0x20,0x00,0x8e,0x4d] [all …]
|
/external/llvm/test/MC/PowerPC/ |
D | ppc64-fixups.s | 2 # RUN: llvm-mc -triple powerpc64-unknown-unknown --show-encoding %s | FileCheck -check-prefix=CHECK… 3 # RUN: llvm-mc -triple powerpc64le-unknown-unknown --show-encoding %s | FileCheck -check-prefix=CHE… 5 # RUN: llvm-mc -triple powerpc64-unknown-unknown -filetype=obj %s | \ 6 # RUN: llvm-readobj -r | FileCheck %s -check-prefix=CHECK-BE-REL 7 # RUN: llvm-mc -triple powerpc64le-unknown-unknown -filetype=obj %s | \ 8 # RUN: llvm-readobj -r | FileCheck %s -check-prefix=CHECK-LE-REL 10 # CHECK-BE: b target # encoding: [0b010010AA,A,A,0bAAAAAA00] 11 # CHECK-LE: b target # encoding: [0bAAAAAA00,A,A,0b010010AA] 12 # CHECK-BE-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc… 13 # CHECK-LE-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc… [all …]
|
D | ppc64-encoding-ext.s | 2 # RUN: llvm-mc -triple powerpc64-unknown-unknown --show-encoding %s | FileCheck -check-prefix=CHECK… 3 # RUN: llvm-mc -triple powerpc64le-unknown-unknown --show-encoding %s | FileCheck -check-prefix=CHE… 7 # CHECK-BE: beqlr 0 # encoding: [0x4d,0x82,0x00,0x20] 8 # CHECK-LE: beqlr 0 # encoding: [0x20,0x00,0x82,0x4d] 10 # CHECK-BE: beqlr 1 # encoding: [0x4d,0x86,0x00,0x20] 11 # CHECK-LE: beqlr 1 # encoding: [0x20,0x00,0x86,0x4d] 13 # CHECK-BE: beqlr 2 # encoding: [0x4d,0x8a,0x00,0x20] 14 # CHECK-LE: beqlr 2 # encoding: [0x20,0x00,0x8a,0x4d] 16 # CHECK-BE: beqlr 3 # encoding: [0x4d,0x8e,0x00,0x20] 17 # CHECK-LE: beqlr 3 # encoding: [0x20,0x00,0x8e,0x4d] [all …]
|
/external/clang/test/OpenMP/ |
D | target_exit_data_ast_print.cpp | 1 // RUN: %clang_cc1 -verify -fopenmp -ast-print %s | FileCheck %s 2 // RUN: %clang_cc1 -fopenmp -x c++ -std=c++11 -emit-pch -o %t %s 3 // RUN: %clang_cc1 -fopenmp -std=c++11 -include-pch %t -fsyntax-only -verify %s -ast-print | FileCh… 4 // expected-no-diagnostics 14 #pragma omp target exit data map(from: i) in tmain() 16 #pragma omp target exit data map(from: i) if (target exit data: j > 0) in tmain() 18 #pragma omp target exit data map(from: i) if (b) in tmain() 20 #pragma omp target exit data map(from: c) in tmain() 22 #pragma omp target exit data map(from: c) if(b>e) in tmain() 24 #pragma omp target exit data map(release: x[0:10], c) in tmain() [all …]
|
D | target_enter_data_ast_print.cpp | 1 // RUN: %clang_cc1 -verify -fopenmp -ast-print %s | FileCheck %s 2 // RUN: %clang_cc1 -fopenmp -x c++ -std=c++11 -emit-pch -o %t %s 3 // RUN: %clang_cc1 -fopenmp -std=c++11 -include-pch %t -fsyntax-only -verify %s -ast-print | FileCh… 4 // expected-no-diagnostics 14 #pragma omp target enter data map(to: i) in tmain() 16 #pragma omp target enter data map(to: i) if (target enter data: j > 0) in tmain() 18 #pragma omp target enter data map(to: i) if (b) in tmain() 20 #pragma omp target enter data map(to: c) in tmain() 22 #pragma omp target enter data map(to: c) if(b>e) in tmain() 24 #pragma omp target enter data map(alloc: x[0:10], c) in tmain() [all …]
|
D | target_map_messages.cpp | 1 // RUN: %clang_cc1 -verify -fopenmp -ferror-limit 200 %s 2 // RUN: %clang_cc1 -DCCODE -verify -fopenmp -ferror-limit 200 -x c %s 9 …#pragma omp target map(marr[2][0:2][0:2]) // expected-error {{array section does not specify conti… in foo() 11 #pragma omp target map(marr[:][0:][:]) in foo() 13 …#pragma omp target map(marr[:][1:][:]) // expected-error {{array section does not specify contiguo… in foo() 15 #pragma omp target map(marr[:][n:][:]) in foo() 22 #pragma omp threadprivate(ss) // expected-note {{defined as threadprivate or thread local}} 30 #pragma omp target map(arg,a,d) in func() 32 …#pragma omp target map(arg[2:2],a,d) // expected-error {{subscripted value is not an array or poin… in func() 34 …#pragma omp target map(arg,a*2) // expected-error {{expected expression containing only member acc… in func() [all …]
|
D | target_if_messages.cpp | 1 // RUN: %clang_cc1 -verify -fopenmp %s 10 struct S1; // expected-note {{declared here}} 12 template <class T, class S> // expected-note {{declared here}} 14 #pragma omp target if // expected-error {{expected '(' after 'if'}} in tmain() 16 …#pragma omp target if ( // expected-error {{expected expression}} expected-error {{expected ')'}} … in tmain() 18 #pragma omp target if () // expected-error {{expected expression}} in tmain() 20 #pragma omp target if (argc // expected-error {{expected ')'}} expected-note {{to match this '('}} in tmain() 22 …#pragma omp target if (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target… in tmain() 24 #pragma omp target if (argc > 0 ? argv[1] : argv[2]) in tmain() 26 …#pragma omp target if (foobool(argc)), if (true) // expected-error {{directive '#pragma omp target… in tmain() [all …]
|
D | target_update_if_messages.cpp | 1 // RUN: %clang_cc1 -verify -fopenmp -ferror-limit 100 %s 10 struct S1; // expected-note {{declared here}} 12 template <class T, class S> // expected-note {{declared here}} 15 #pragma omp target update to(n) if // expected-error {{expected '(' after 'if'}} in tmain() 16 #pragma omp target update from(n) if ( // expected-error {{expected expression}} expected-error {{e… in tmain() 17 #pragma omp target update to(n) if () // expected-error {{expected expression}} in tmain() 18 #pragma omp target update from(n) if (argc // expected-error {{expected ')'}} expected-note {{to ma… in tmain() 19 #pragma omp target update to(n) if (argc)) // expected-warning {{extra tokens at the end of '#pragm… in tmain() 20 #pragma omp target update from(n) if (argc > 0 ? argv[1] : argv[2]) in tmain() 21 #pragma omp target update to(n) if (foobool(argc)), if (true) // expected-error {{directive '#pragm… in tmain() [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | TargetRegistry.h | 1 //===-- Support/TargetRegistry.h - Target Registration ----------*- C++ -*-===// 8 //===----------------------------------------------------------------------===// 11 // the appropriate target specific classes (TargetMachine, AsmPrinter, etc.) 14 // Target specific class implementations should register themselves using the 17 //===----------------------------------------------------------------------===// 58 /// Target - Wrapper for Target specific information. 66 class Target { 72 typedef MCAsmInfo *(*MCAsmInfoCtorFnTy)(const Target &T, 83 typedef TargetMachine *(*TargetMachineCtorTy)(const Target &T, 91 typedef MCAsmBackend *(*MCAsmBackendCtorTy)(const Target &T, StringRef TT); [all …]
|
/external/clang/test/Preprocessor/ |
D | aarch64-target-features.c | 1 // RUN: %clang -target aarch64-none-linux-gnu -x c -E -dM %s -o - | FileCheck %s 2 // RUN: %clang -target arm64-none-linux-gnu -x c -E -dM %s -o - | FileCheck %s 6 // CHECK-NOT: __ARM_32BIT_STATE 11 // CHECK-NOT: __ARM_ARCH_ISA_ARM 12 // CHECK-NOT: __ARM_ARCH_ISA_THUMB 13 // CHECK-NOT: __ARM_FEATURE_QBIT 14 // CHECK-NOT: __ARM_FEATURE_DSP 15 // CHECK-NOT: __ARM_FEATURE_SAT 16 // CHECK-NOT: __ARM_FEATURE_SIMD32 18 // CHECK-NOT: __ARM_FEATURE_BIG_ENDIAN [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/ |
D | loh.mir | 1 # RUN: llc -o /dev/null %s -mtriple=aarch64-apple-ios -run-pass=aarch64-collect-loh -debug-only=aar… 3 --- | 15 --- 18 # CHECK-LABEL: ********** AArch64 Collect LOH ********** 19 # CHECK-LABEL: Looking in function func0 25 ; CHECK-NEXT: $x1 = ADRP target-flags(aarch64-page) @g3 26 ; CHECK-NEXT: $x1 = ADRP target-flags(aarch64-page) @g4 27 ; CHECK-NEXT: Adding MCLOH_AdrpAdrp: 28 ; CHECK-NEXT: $x1 = ADRP target-flags(aarch64-page) @g2 29 ; CHECK-NEXT: $x1 = ADRP target-flags(aarch64-page) @g3 [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
D | TargetRegistry.h | 1 //===- Support/TargetRegistry.h - Target Registration -----------*- C++ -*-===// 8 //===----------------------------------------------------------------------===// 11 // the appropriate target specific classes (TargetMachine, AsmPrinter, etc.) 14 // Target specific class implementations should register themselves using the 17 //===----------------------------------------------------------------------===// 22 #include "llvm-c/DisassemblerTypes.h" 67 /// target, suitable for compiling with a native assembler. 69 /// \param InstPrint - If given, the instruction printer to use. If not given 73 /// \param CE - If given, a code emitter to use to show the instruction 76 /// \param TAB - If given, a target asm backend to use to show the fixup [all …]
|
/external/llvm/include/llvm/Support/ |
D | TargetRegistry.h | 1 //===-- Support/TargetRegistry.h - Target Registration ----------*- C++ -*-===// 8 //===----------------------------------------------------------------------===// 11 // the appropriate target specific classes (TargetMachine, AsmPrinter, etc.) 14 // Target specific class implementations should register themselves using the 17 //===----------------------------------------------------------------------===// 22 #include "llvm-c/Disassembler.h" 79 /// Target - Wrapper for Target specific information. 87 class Target { 105 const Target &T, const Triple &TT, StringRef CPU, StringRef Features, 113 typedef MCAsmBackend *(*MCAsmBackendCtorTy)(const Target &T, [all …]
|
/external/libchrome/base/memory/ |
D | weak_ptr_unittest.cc | 2 // Use of this source code is governed by a BSD-style license that can be 34 creator_thread.task_runner()->PostTask( in NewObject() 53 struct Target : public TargetBase, public SupportsWeakPtr<Target> { struct 54 virtual ~Target() = default; 57 struct DerivedTarget : public Target {}; 59 // A class inheriting from Target and defining a nested type called 'Base'. 61 struct DerivedTargetWithNestedBase : public Target { 70 // A class inheriting from Target where Target is not the first base, and where 72 // Target base is not positioned at the beginning of 75 public Target {}; [all …]
|
/external/curl/packages/vms/ |
D | gnv_link_curl.com | 21 $! 10-Jun-2009 J. Malmberg 41 $! Extended parsing option starts with VMS 7.3-1. 48 $ min_ver = f$element(0, "-", min_ver_patch) 49 $ patch = f$element(1, "-", min_ver_patch) 50 $ if patch .eqs. "-" then patch = "" 69 $ set def [--] 73 $!-------------------------- 85 $!------------------------------------------- 97 $!-------------------------------------------------------- 180 $ ver_patchltr_c = f$extract(ver_patch_len - 1, 1, ver_patch) [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/SystemZ/ |
D | fixups.s | 2 # RUN: llvm-mc -triple s390x-unknown-unknown --show-encoding %s | FileCheck %s 4 # RUN: llvm-mc -triple s390x-unknown-unknown -filetype=obj %s | \ 5 # RUN: llvm-readobj -r | FileCheck %s -check-prefix=CHECK-REL 7 # CHECK: larl %r14, target # encoding: [0xc0,0xe0,A,A,A,A] 8 # CHECK-NEXT: # fixup A - offset: 2, value: target+2, kind: FK_39… 9 # CHECK-REL: 0x{{[0-9A-F]*2}} R_390_PC32DBL target 0x2 11 larl %r14, target 13 # CHECK: larl %r14, target@GOT # encoding: [0xc0,0xe0,A,A,A,A] 14 # CHECK-NEXT: # fixup A - offset: 2, value: target@GOT+2, kind: F… 15 # CHECK-REL: 0x{{[0-9A-F]*2}} R_390_GOTENT target 0x2 [all …]
|
/external/llvm/test/MC/SystemZ/ |
D | fixups.s | 2 # RUN: llvm-mc -triple s390x-unknown-unknown --show-encoding %s | FileCheck %s 4 # RUN: llvm-mc -triple s390x-unknown-unknown -filetype=obj %s | \ 5 # RUN: llvm-readobj -r | FileCheck %s -check-prefix=CHECK-REL 7 # CHECK: larl %r14, target # encoding: [0xc0,0xe0,A,A,A,A] 8 # CHECK-NEXT: # fixup A - offset: 2, value: target+2, kind: FK_39… 9 # CHECK-REL: 0x{{[0-9A-F]*2}} R_390_PC32DBL target 0x2 11 larl %r14, target 13 # CHECK: larl %r14, target@GOT # encoding: [0xc0,0xe0,A,A,A,A] 14 # CHECK-NEXT: # fixup A - offset: 2, value: target@GOT+2, kind: F… 15 # CHECK-REL: 0x{{[0-9A-F]*2}} R_390_GOTENT target 0x2 [all …]
|