Home
last modified time | relevance | path

Searched +full:- +full:- +full:target (Results 1 – 25 of 1240) sorted by relevance

12345678910>>...50

/external/clang/test/Driver/
Dx86-target-features.c1 // 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 …]
Darm-mfpu.c1 // 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 …]
Dmips-integrated-as.s1 // 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 …]
Daarch64-cpus.c1 // 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 …]
Darm-cortex-cpus.c2 // 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 …]
Dmips-abi.c3 // 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 …]
Dppc-features.cpp1 // 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 …]
Dclang-translation.c1 …UN: %clang -target i386-unknown-unknown -### -S -O0 -Os %s -o %t.s -fverbose-asm -funwind-tables -
2 // I386: "-triple" "i386-unknown-unknown"
3 // I386: "-S"
4 // I386: "-disable-free"
5 // I386: "-mrelocation-model" "static"
6 // I386: "-mdisable-fp-elim"
7 // I386: "-masm-verbose"
8 // I386: "-munwind-tables"
9 // I386: "-Os"
10 // I386: "-fvisibility"
[all …]
/external/llvm/test/MC/PowerPC/
Dppc64-fixups.s2 # 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 …]
Dppc64-encoding-ext.s2 # 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/tpm2/
Dtpm_generated.c2 // Use of this source code is governed by a BSD-style license that can be
5 // THIS CODE IS GENERATED - DO NOT MODIFY!
29 *size -= sizeof(uint8_t); in uint8_t_Marshal()
33 TPM_RC uint8_t_Unmarshal(uint8_t* target, BYTE** buffer, INT32* size) { in uint8_t_Unmarshal() argument
41 *target = be16toh(value_net); in uint8_t_Unmarshal()
44 *target = be32toh(value_net); in uint8_t_Unmarshal()
47 *target = be64toh(value_net); in uint8_t_Unmarshal()
50 *target = value_net; in uint8_t_Unmarshal()
53 *size -= sizeof(uint8_t); in uint8_t_Unmarshal()
77 *size -= sizeof(int8_t); in int8_t_Marshal()
[all …]
/external/clang/test/OpenMP/
Dtarget_exit_data_ast_print.cpp1 // 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 …]
Dtarget_enter_data_ast_print.cpp1 // 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 …]
Dtarget_map_messages.cpp1 // 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 …]
Dtarget_update_to_messages.cpp1 // RUN: %clang_cc1 -verify -fopenmp -ferror-limit 100 %s
10 struct S1; // expected-note 2 {{declared here}}
17 static float S2s; // expected-note 4 {{mappable type cannot contain static members}}
18 static const float S2sc; // expected-note 4 {{mappable type cannot contain static members}}
62 #pragma omp threadprivate(h) // expected-note 2 {{defined as threadprivate or thread local}}
66 template <typename T, int I> // expected-note {{declared here}}
82target update to // expected-error {{expected '(' after 'to'}} expected-error {{expected at least … in tmain()
83target update to( // expected-error {{expected ')'}} expected-note {{to match this '('}} expected- in tmain()
84target update to() // expected-error {{expected expression}} expected-error {{expected at least on… in tmain()
85target update() // expected-warning {{extra tokens at the end of '#pragma omp target update' are i… in tmain()
[all …]
Dtarget_update_from_messages.cpp1 // RUN: %clang_cc1 -verify -fopenmp -ferror-limit 100 %s
10 struct S1; // expected-note 2 {{declared here}}
17 static float S2s; // expected-note 4 {{mappable type cannot contain static members}}
18 static const float S2sc; // expected-note 4 {{mappable type cannot contain static members}}
62 #pragma omp threadprivate(h) // expected-note 2 {{defined as threadprivate or thread local}}
66 template <typename T, int I> // expected-note {{declared here}}
82target update from // expected-error {{expected '(' after 'from'}} expected-error {{expected at le… in tmain()
83target update from( // expected-error {{expected ')'}} expected-note {{to match this '('}} expecte… in tmain()
84target update from() // expected-error {{expected expression}} expected-error {{expected at least … in tmain()
85target update() // expected-warning {{extra tokens at the end of '#pragma omp target update' are i… in tmain()
[all …]
Dtarget_if_messages.cpp1 // 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 …]
Dtarget_update_if_messages.cpp1 // 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/
DTargetRegistry.h1 //===-- 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/
Daarch64-target-features.c1 // 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/llvm/include/llvm/Support/
DTargetRegistry.h1 //===-- 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/curl/packages/vms/
Dgnv_link_curl.com21 $! 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/libchrome/base/memory/
Dweak_ptr_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
33 creator_thread.task_runner()->PostTask( in NewObject()
51 struct Target : public TargetBase, public SupportsWeakPtr<Target> { struct
52 virtual ~Target() {} in ~Target() argument
54 struct DerivedTarget : public Target {};
56 WeakPtr<Target> target; member
58 struct TargetWithFactory : public Target {
60 WeakPtrFactory<Target> factory;
71 void CreateArrowFromTarget(Arrow** arrow, Target* target) { in CreateArrowFromTarget() argument
74 task_runner()->PostTask( in CreateArrowFromTarget()
[all …]
/external/llvm/test/MC/SystemZ/
Dfixups.s2 # 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/Disassembler/PowerPC/
Dppc64-encoding-ext.txt1 # RUN: llvm-mc --disassemble %s -triple powerpc64-unknown-unknown -mcpu=pwr7 | FileCheck %s
251 # CHECK: bdnzlr-
254 # CHECK: bdnzlrl-
281 # CHECK: bdzlr-
284 # CHECK: bdzlrl-
363 # FIXME: decode as bltlr- 2
367 # FIXME: decode as bltlr- 0
371 # FIXME: decode as bltctr- 2
375 # FIXME: decode as bltctr- 0
379 # FIXME: decode as bltlrl- 2
[all …]

12345678910>>...50