Searched +full:arm +full:- +full:linux +full:- +full:gnueabi (Results 1 – 25 of 613) sorted by relevance
12345678910>>...25
/external/clang/test/Driver/ |
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 | arm-compiler-rt.c | 1 // RUN: %clang -target arm-linux-gnueabi -rtlib=compiler-rt -### %s 2>&1 | FileCheck %s -check-pref… 2 // ARM-GNUEABI: "{{.*[/\\]}}libclang_rt.builtins-arm.a" 4 // RUN: %clang -target arm-linux-gnueabi -rtlib=compiler-rt -mfloat-abi=hard -### %s 2>&1 | FileChe… 5 // ARM-GNUEABI-ABI: "{{.*[/\\]}}libclang_rt.builtins-armhf.a" 7 // RUN: %clang -target arm-linux-gnueabihf -rtlib=compiler-rt -### %s 2>&1 | FileCheck %s -check-pr… 8 // ARM-GNUEABIHF: "{{.*[/\\]}}libclang_rt.builtins-armhf.a" 10 // RUN: %clang -target arm-linux-gnueabihf -rtlib=compiler-rt -mfloat-abi=soft -### %s 2>&1 | FileC… 11 // ARM-GNUEABIHF-ABI: "{{.*[/\\]}}libclang_rt.builtins-arm.a" 13 // RUN: %clang -target arm-windows-itanium -rtlib=compiler-rt -### %s 2>&1 | FileCheck %s -check-pr… 14 // ARM-WINDOWS: "{{.*[/\\]}}clang_rt.builtins-arm.lib" [all …]
|
D | arm-multilibs.c | 1 … %clang -target armv7-linux-gnueabi --sysroot=%S/Inputs/multilib_arm_linux_tree -### -c %s -o /dev… 2 …%clang -target thumbv7-linux-gnueabi --sysroot=%S/Inputs/multilib_arm_linux_tree -### -c %s -o /de… 4 … %clang -target armv7-linux-gnueabihf --sysroot=%S/Inputs/multilib_armhf_linux_tree -### -c %s -o … 5 …%clang -target thumbv7-linux-gnueabihf --sysroot=%S/Inputs/multilib_armhf_linux_tree -### -c %s -o… 7 … %clang -target armv7eb-linux-gnueabi --sysroot=%S/Inputs/multilib_armeb_linux_tree -### -c %s -o … 8 …%clang -target thumbv7eb-linux-gnueabi --sysroot=%S/Inputs/multilib_armeb_linux_tree -### -c %s -o… 10 …clang -target armv7eb-linux-gnueabihf --sysroot=%S/Inputs/multilib_armebhf_linux_tree -### -c %s -… 11 …lang -target thumbv7eb-linux-gnueabihf --sysroot=%S/Inputs/multilib_armebhf_linux_tree -### -c %s … 13 // CHECK-ARM: "-internal-externc-isystem" "{{.*}}/usr/include/arm-linux-gnueabi" 14 // CHECK-ARMHF: "-internal-externc-isystem" "{{.*}}/usr/include/arm-linux-gnueabihf" [all …]
|
D | arm-alignment.c | 1 // RUN: %clang -target arm-none-gnueabi -munaligned-access -### %s 2> %t 2 // RUN: FileCheck --check-prefix=CHECK-UNALIGNED-ARM < %t %s 4 // RUN: %clang -target arm-none-gnueabi -mstrict-align -munaligned-access -### %s 2> %t 5 // RUN: FileCheck --check-prefix=CHECK-UNALIGNED-ARM < %t %s 7 // RUN: %clang -target arm-none-gnueabi -mno-unaligned-access -munaligned-access -### %s 2> %t 8 // RUN: FileCheck --check-prefix=CHECK-UNALIGNED-ARM < %t %s 10 // RUN: %clang -target armv6-apple-darwin -### %s 2> %t 11 // RUN: FileCheck --check-prefix=CHECK-UNALIGNED-ARM < %t %s 13 // RUN: %clang -target armv6-netbsd-eabi -### %s 2> %t 14 // RUN: FileCheck --check-prefix=CHECK-UNALIGNED-ARM < %t %s [all …]
|
/external/clang/unittests/Driver/ |
D | ToolChainTest.cpp | 1 //===- unittests/Driver/ToolChainTest.cpp --- ToolChain tests -------------===// 8 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 36 Driver TheDriver("/bin/clang", "arm-linux-gnueabihf", Diags, in TEST() 42 "/usr/lib/gcc/arm-linux-gnueabi/4.6.1/crtbegin.o", in TEST() 43 "/usr/lib/gcc/arm-linux-gnueabi/4.6.1/crtend.o", in TEST() 44 "/usr/lib/gcc/arm-linux-gnueabihf/4.6.3/crtbegin.o", in TEST() 45 "/usr/lib/gcc/arm-linux-gnueabihf/4.6.3/crtend.o", in TEST() 46 "/usr/lib/arm-linux-gnueabi/crt1.o", in TEST() 47 "/usr/lib/arm-linux-gnueabi/crti.o", in TEST() [all …]
|
/external/llvm-project/clang/test/CodeGen/ |
D | arm-target-features.c | 1 // REQUIRES: arm-registered-target 3 // RUN: %clang_cc1 -triple thumbv7-linux-gnueabihf -target-cpu cortex-a8 -emit-llvm -o - %s | FileC… 4 // CHECK-VFP3: "target-features"="+armv7-a,+d32,+dsp,+fp64,+neon,+thumb-mode,+vfp2,+vfp2sp,+vfp3,+v… 7 // RUN: %clang_cc1 -triple thumbv7-linux-gnueabihf -target-cpu cortex-a5 -emit-llvm -o - %s | FileC… 8 // CHECK-VFP4: "target-features"="+armv7-a,+d32,+dsp,+fp16,+fp64,+neon,+thumb-mode,+vfp2,+vfp2sp,+v… 11 // RUN: %clang_cc1 -triple thumbv7-linux-gnueabihf -target-cpu cortex-a7 -emit-llvm -o - %s | FileC… 12 // RUN: %clang_cc1 -triple thumbv7-linux-gnueabi -target-cpu cortex-a12 -emit-llvm -o - %s | FileCh… 13 // RUN: %clang_cc1 -triple thumbv7s-linux-gnueabi -target-cpu swift -emit-llvm -o - %s | FileCheck … 14 // RUN: %clang_cc1 -triple thumbv7-linux-gnueabihf -target-cpu krait -emit-llvm -o - %s | FileCheck… 15 // CHECK-VFP4-DIV: "target-features"="+armv7-a,+d32,+dsp,+fp16,+fp64,+hwdiv,+hwdiv-arm,+neon,+thumb… [all …]
|
/external/llvm-project/clang/test/Driver/ |
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 | arm-compiler-rt.c | 1 // RUN: %clang -target arm-none-eabi \ 2 // RUN: -resource-dir=%S/Inputs/resource_dir_with_arch_subdir \ 3 // RUN: -rtlib=compiler-rt -### %s 2>&1 \ 4 // RUN: | FileCheck %s -check-prefix ARM-EABI 5 // ARM-EABI: "-L{{.*[/\\]}}Inputs/resource_dir_with_arch_subdir{{/|\\\\}}lib{{/|\\\\}}baremetal" 6 // ARM-EABI: "-lclang_rt.builtins-arm" 8 // RUN: %clang -target arm-linux-gnueabi \ 9 // RUN: -resource-dir=%S/Inputs/resource_dir_with_arch_subdir \ 10 // RUN: -rtlib=compiler-rt -### %s 2>&1 \ 11 // RUN: | FileCheck %s -check-prefix ARM-GNUEABI [all …]
|
D | arm-multilibs.c | 1 … %clang -target armv7-linux-gnueabi --sysroot=%S/Inputs/multilib_arm_linux_tree -### -c %s -o /dev… 2 …%clang -target thumbv7-linux-gnueabi --sysroot=%S/Inputs/multilib_arm_linux_tree -### -c %s -o /de… 4 … %clang -target armv7-linux-gnueabihf --sysroot=%S/Inputs/multilib_armhf_linux_tree -### -c %s -o … 5 …%clang -target thumbv7-linux-gnueabihf --sysroot=%S/Inputs/multilib_armhf_linux_tree -### -c %s -o… 7 … %clang -target armv7eb-linux-gnueabi --sysroot=%S/Inputs/multilib_armeb_linux_tree -### -c %s -o … 8 …%clang -target thumbv7eb-linux-gnueabi --sysroot=%S/Inputs/multilib_armeb_linux_tree -### -c %s -o… 10 …clang -target armv7eb-linux-gnueabihf --sysroot=%S/Inputs/multilib_armebhf_linux_tree -### -c %s -… 11 …lang -target thumbv7eb-linux-gnueabihf --sysroot=%S/Inputs/multilib_armebhf_linux_tree -### -c %s … 13 // CHECK-ARM: "-internal-externc-isystem" "{{.*}}/usr/include/arm-linux-gnueabi" 14 // CHECK-ARMHF: "-internal-externc-isystem" "{{.*}}/usr/include/arm-linux-gnueabihf" [all …]
|
D | arm-target-as-mthumb.s | 1 // Make sure -mthumb does not affect assembler triple, but -Wa,-mthumb or 2 // -Xassembler -mthumb does. Also check that -Wa,-mthumb or -Xassembler -mthumb 5 // RUN: %clang -target armv7a-linux-gnueabi -### -c -mthumb %s 2>&1 | \ 6 // RUN: FileCheck -check-prefix=TRIPLE-ARM %s 7 // RUN: %clang -target armv7a-linux-gnueabi -### -c -Wa,-mthumb \ 8 // RUN: %S/Inputs/wildcard1.c 2>&1 | FileCheck -check-prefix=TRIPLE-ARM %s 10 // TRIPLE-ARM: "-triple" "armv7-unknown-linux-gnueabi" 12 // RUN: %clang -target armv7a-linux-gnueabi -### -c -Wa,-mthumb %s 2>&1 | \ 13 // RUN: FileCheck -check-prefix=TRIPLE-THUMB %s 14 // RUN: %clang -target armv7a-linux-gnueabi -### -c -Xassembler -mthumb %s \ [all …]
|
D | arm-alignment.c | 1 // RUN: %clang -target arm-none-gnueabi -munaligned-access -### %s 2> %t 2 // RUN: FileCheck --check-prefix=CHECK-UNALIGNED-ARM < %t %s 4 // RUN: %clang -target arm-none-gnueabi -mstrict-align -munaligned-access -### %s 2> %t 5 // RUN: FileCheck --check-prefix=CHECK-UNALIGNED-ARM < %t %s 7 // RUN: %clang -target arm-none-gnueabi -mno-unaligned-access -munaligned-access -### %s 2> %t 8 // RUN: FileCheck --check-prefix=CHECK-UNALIGNED-ARM < %t %s 10 // RUN: %clang -target armv6-apple-darwin -### %s 2> %t 11 // RUN: FileCheck --check-prefix=CHECK-UNALIGNED-ARM < %t %s 13 // RUN: %clang -target armv6-netbsd-eabi -### %s 2> %t 14 // RUN: FileCheck --check-prefix=CHECK-UNALIGNED-ARM < %t %s [all …]
|
/external/llvm-project/clang/unittests/Driver/ |
D | ToolChainTest.cpp | 1 //===- unittests/Driver/ToolChainTest.cpp --- ToolChain tests -------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 37 Driver TheDriver("/bin/clang", "arm-linux-gnueabihf", Diags, in TEST() 43 "/usr/lib/gcc/arm-linux-gnueabi/4.6.1/crtbegin.o", in TEST() 44 "/usr/lib/gcc/arm-linux-gnueabi/4.6.1/crtend.o", in TEST() 45 "/usr/lib/gcc/arm-linux-gnueabihf/4.6.3/crtbegin.o", in TEST() 46 "/usr/lib/gcc/arm-linux-gnueabihf/4.6.3/crtend.o", in TEST() 47 "/usr/lib/arm-linux-gnueabi/crt1.o", in TEST() [all …]
|
/external/cpu_features/scripts/ |
D | test_integration.sh | 3 source "$(dirname -- "$0")"/run_integration.sh 5 # Toolchains for little-endian, 64-bit ARMv8 for GNU/Linux systems 6 function set_aarch64-linux-gnu() { 8 TARGET=aarch64-linux-gnu 12 # Toolchains for little-endian, hard-float, 32-bit ARMv7 (and earlier) for GNU/Linux systems 13 function set_arm-linux-gnueabihf() { 15 TARGET=arm-linux-gnueabihf 16 QEMU_ARCH=arm 19 # Toolchains for little-endian, 32-bit ARMv8 for GNU/Linux systems 20 function set_armv8l-linux-gnueabihf() { [all …]
|
/external/rust/crates/libz-sys/src/zlib-ng/.github/workflows/ |
D | configure.yml | 4 ci-configure: 6 runs-on: ${{ matrix.os }} 8 fail-fast: false 14 Ubuntu GCC ARM SF, 15 Ubuntu GCC ARM SF Compat No Opt, 16 Ubuntu GCC ARM HF, 17 Ubuntu GCC ARM HF No ACLE, 18 Ubuntu GCC ARM HF No NEON, 19 Ubuntu GCC ARM HF Compat No Opt, 33 - name: Ubuntu GCC [all …]
|
D | cmake.yml | 4 ci-cmake: 6 runs-on: ${{ matrix.os }} 8 fail-fast: false 12 Ubuntu GCC OSB -O1, 19 Ubuntu GCC ARM SF, 20 Ubuntu GCC ARM SF Compat No Opt, 21 Ubuntu GCC ARM HF, 22 Ubuntu GCC ARM HF No ACLE, 23 Ubuntu GCC ARM HF No NEON, 24 Ubuntu GCC ARM HF Compat No Opt, [all …]
|
/external/clang/test/CodeGen/ |
D | arm-target-features.c | 1 // REQUIRES: arm-registered-target 3 // RUN: %clang_cc1 -triple thumbv7-linux-gnueabihf -target-cpu cortex-a8 -emit-llvm -o - %s | FileC… 4 // CHECK-VFP3: "target-features"="+dsp,+neon,+vfp3" 7 // RUN: %clang_cc1 -triple thumbv7-linux-gnueabi -target-cpu cortex-a9 -emit-llvm -o - %s | FileChe… 8 // CHECK-VFP3-FP16: "target-features"="+dsp,+fp16,+neon,+vfp3" 11 // RUN: %clang_cc1 -triple thumbv7-linux-gnueabihf -target-cpu cortex-a5 -emit-llvm -o - %s | FileC… 12 // CHECK-VFP4: "target-features"="+dsp,+neon,+vfp4" 15 // RUN: %clang_cc1 -triple thumbv7-linux-gnueabihf -target-cpu cortex-a7 -emit-llvm -o - %s | FileC… 16 // RUN: %clang_cc1 -triple thumbv7-linux-gnueabi -target-cpu cortex-a12 -emit-llvm -o - %s | FileCh… 17 // RUN: %clang_cc1 -triple armv7-linux-gnueabihf -target-cpu cortex-a15 -emit-llvm -o - %s | FileCh… [all …]
|
/external/llvm-project/lld/test/ELF/ |
D | arm-target2.s | 1 // REQUIRES: arm 2 // RUN: llvm-mc -filetype=obj -triple=armv7a-none-linux-gnueabi %s -o %t.o 3 // RUN: ld.lld %t.o -o %t 4 // RUN: llvm-objdump -s --triple=armv7a-none-linux-gnueabi %t | FileCheck %s 5 // RUN: ld.lld %t.o --target2=got-rel -o %t2 6 // RUN: llvm-objdump -s --triple=armv7a-none-linux-gnueabi %t2 | FileCheck %s 7 // RUN: ld.lld %t.o --target2=abs -o %t3 8 // RUN: llvm-objdump -s --triple=armv7a-none-linux-gnueabi %t3 | FileCheck --check-prefix=CHECK-ABS… 9 // RUN: ld.lld %t.o --target2=rel -o %t4 10 // RUN: llvm-objdump -s --triple=armv7a-none-linux-gnueabi %t4 | FileCheck --check-prefix=CHECK-REL… [all …]
|
D | arm-branch-rangethunk.s | 1 // REQUIRES: arm 2 // RUN: llvm-mc -arm-add-build-attributes -filetype=obj -triple=armv7a-none-linux-gnueabi %s -o %t 3 // RUN: llvm-mc -arm-add-build-attributes -filetype=obj -triple=armv7a-none-linux-gnueabi %S/Inputs… 4 // RUN: ld.lld %t %tfar -o %t2 5 // RUN: llvm-objdump -d --no-show-raw-insn --triple=armv7a-none-linux-gnueabi %t2 | FileCheck --che… 6 // RUN: llvm-mc -arm-add-build-attributes -filetype=obj -triple=armv7a-none-linux-gnueabi %S/Inputs… 7 // RUN: ld.lld %t %tfarlong -o %t3 8 // RUN: llvm-objdump -d --no-show-raw-insn --triple=armv7a-none-linux-gnueabi %t3 | FileCheck --che… 15 /// address of too_far symbols are just out of range of ARM branch with 16 /// 26-bit immediate field and an addend of -8 [all …]
|
D | arm-bl-v6.s | 1 // REQUIRES: arm 2 // RUN: llvm-mc -arm-add-build-attributes -filetype=obj -triple=armv6-none-linux-gnueabi %s -o %t 3 // RUN: ld.lld %t -o %t2 4 …/ RUN: llvm-objdump -d --triple=armv6-none-linux-gnueabi --start-address=0x21000 --stop-address=0x… 5 … RUN: llvm-objdump -d --triple=thumbv6-none-linux-gnueabi %t2 --start-address=0x21008 --stop-addre… 6 … RUN: llvm-objdump -d --triple=armv6-none-linux-gnueabi --start-address=0x22100c --stop-address=0x… 7 …RUN: llvm-objdump -d --triple=thumbv6-none-linux-gnueabi %t2 --start-address=0x622000 --stop-addre… 9 /// On Arm v6 the range of a Thumb BL instruction is only 4 megabytes as the 11 /// BL that is out of range on ARM v6 and requires a range extension thunk. 16 /// ARM v6 supports blx so we shouldn't see the blx not supported warning. [all …]
|
/external/llvm-project/llvm/test/CodeGen/ARM/ |
D | atomic-cmpxchg.ll | 2 ; RUN: llc < %s -mtriple=arm-linux-gnueabi -asm-verbose=false -verify-machineinstrs | FileCheck %s … 3 ; RUN: llc < %s -mtriple=thumb-linux-gnueabi -asm-verbose=false -verify-machineinstrs | FileCheck %… 5 ; RUN: llc < %s -mtriple=armv6-linux-gnueabi -asm-verbose=false -verify-machineinstrs | FileCheck %… 6 ; RUN: llc < %s -mtriple=thumbv6-linux-gnueabi -asm-verbose=false -verify-machineinstrs | FileCheck… 8 ; RUN: llc < %s -mtriple=armv7-linux-gnueabi -asm-verbose=false -verify-machineinstrs | FileCheck %… 9 ; RUN: llc < %s -mtriple=thumbv7-linux-gnueabi -asm-verbose=false -verify-machineinstrs | FileCheck… 12 ; CHECK-ARM-LABEL: test_cmpxchg_res_i8: 13 ; CHECK-ARM: .save {r4, lr} 14 ; CHECK-ARM-NEXT: push {r4, lr} 15 ; CHECK-ARM-NEXT: mov r4, r1 [all …]
|
D | arm-abi-attr.ll | 1 ; RUN: llc -mtriple=arm-linux-gnu < %s | FileCheck %s --check-prefix=AAPCS 2 ; RUN: llc -mtriple=arm-linux-gnu -target-abi=apcs < %s | \ 3 ; RUN: FileCheck %s --check-prefix=APCS 4 ; RUN: llc -mtriple=arm-linux-gnueabi -target-abi=apcs < %s | \ 5 ; RUN: FileCheck %s --check-prefix=APCS 7 ; RUN: llc -mtriple=arm-linux-gnueabi < %s | FileCheck %s --check-prefix=AAPCS 8 ; RUN: llc -mtriple=arm-linux-gnueabi -target-abi=aapcs < %s | \ 9 ; RUN: FileCheck %s --check-prefix=AAPCS 10 ; RUN: llc -mtriple=arm-linux-gnu -target-abi=aapcs < %s | \ 11 ; RUN: FileCheck %s --check-prefix=AAPCS [all …]
|
D | ctor_order.ll | 1 ; RUN: llc < %s -mtriple=arm-apple-darwin | FileCheck %s -check-prefix=DARWIN 2 ; RUN: llc < %s -mtriple=arm-apple-darwin -relocation-model=dynamic-no-pic | FileCheck %s --check-… 3 ; RUN: llc < %s -mtriple=arm-apple-darwin -relocation-model=static | FileCheck %s -check-prefix=DA… 4 ; RUN: llc < %s -mtriple=arm-linux-gnu -target-abi=apcs | FileCheck %s -check-prefix=ELF 5 ; RUN: llc < %s -mtriple=arm-linux-gnueabi | FileCheck %s -check-prefix=GNUEABI 9 ; DARWIN-NEXT: .long _f152 11 ; DARWIN-STATIC: .section __TEXT,__constructor 18 ; GNUEABI: .section .init_array.151,"aw",%init_array 19 ; GNUEABI: .long f151 20 ; GNUEABI: .section .init_array.152,"aw",%init_array [all …]
|
/external/llvm-project/clang/test/Preprocessor/ |
D | arm-target-features.c | 1 // RUN: %clang -target armv8a-none-linux-gnu -x c -E -dM %s -o - | FileCheck -match-full-lines --ch… 2 // CHECK-V8A: #define __ARMEL__ 1 3 // CHECK-V8A: #define __ARM_ARCH 8 4 // CHECK-V8A: #define __ARM_ARCH_8A__ 1 5 // CHECK-V8A: #define __ARM_FEATURE_CRC32 1 6 // CHECK-V8A: #define __ARM_FEATURE_DIRECTED_ROUNDING 1 7 // CHECK-V8A: #define __ARM_FEATURE_NUMERIC_MAXMIN 1 8 // CHECK-V8A-NOT: #define __ARM_FP 0x 9 // CHECK-V8A-NOT: #define __ARM_FEATURE_DOTPROD 10 // CHECK-V8A-NOT: #define __ARM_BF16_FORMAT_ALTERNATIVE [all …]
|
/external/llvm/test/CodeGen/ARM/ |
D | arm-abi-attr.ll | 1 ; RUN: llc -mtriple=arm-linux-gnu < %s | FileCheck %s --check-prefix=APCS 2 ; RUN: llc -mtriple=arm-linux-gnu -target-abi=apcs < %s | \ 3 ; RUN: FileCheck %s --check-prefix=APCS 4 ; RUN: llc -mtriple=arm-linux-gnueabi -target-abi=apcs < %s | \ 5 ; RUN: FileCheck %s --check-prefix=APCS 7 ; RUN: llc -mtriple=arm-linux-gnueabi < %s | FileCheck %s --check-prefix=AAPCS 8 ; RUN: llc -mtriple=arm-linux-gnueabi -target-abi=aapcs < %s | \ 9 ; RUN: FileCheck %s --check-prefix=AAPCS 10 ; RUN: llc -mtriple=arm-linux-gnu -target-abi=aapcs < %s | \ 11 ; RUN: FileCheck %s --check-prefix=AAPCS [all …]
|
/external/llvm/utils/crosstool/ARM/ |
D | README | 1 HOWTO create an LLVM crosstool from x86_64/Linux to ARM/Linux 4 1. % llvm/utils/crosstool/create-snapshots.sh 6 This will create llvm-[REV_L].tar.bz2 and llvm-gcc-4.2-[REV_G].tar.bz2, 9 REV_G is the revision at which "llvm-gcc-4.2" was checked out 17 For example, if you're using $CROSS_TARGET == "arm-none-linux-gnueabi" then 20 …esourcery.com/sgpp/lite/arm/portal/package1787/public/arm-none-linux-gnueabi/arm-2007q3-51-arm-non… 23 not work -- you'll need to go to http://www.codesourcery.com and find the 34 LLVM_PKG_PATH=[dir where you stored your LLVM and LLVM-GCC snapshots] \ 37 build-install-linux.sh
|
12345678910>>...25