Home
last modified time | relevance | path

Searched +full:linux +full:- +full:mips64el (Results 1 – 25 of 311) sorted by relevance

12345678910>>...13

/aosp_15_r20/external/llvm/test/MC/Mips/
H A Delf_eflags.s1 # These *MUST* match the output of 'gcc -c' compiled with the same triple and
2 # corresponding options (-mcpu=mips32 -> -mips32 for example).
4 …UN: llvm-mc -filetype=obj -triple mipsel-unknown-linux -mcpu=mips64r6 -target-abi n64 %s -o -| llv…
5 # MIPSEL-MIPS64R6: Flags [ (0xA0000406)
7-mc -filetype=obj -triple mipsel-unknown-linux -mcpu=mips64r6 -target-abi n64 -mattr=+nan2008 %s -
8 # MIPSEL-MIPS64R6-NAN2008: Flags [ (0xA0000406)
10 …UN: llvm-mc -filetype=obj -triple mipsel-unknown-linux -mcpu=mips64r2 -target-abi n64 %s -o -| llv…
11 …UN: llvm-mc -filetype=obj -triple mipsel-unknown-linux -mcpu=mips64r3 -target-abi n64 %s -o -| llv…
12 …UN: llvm-mc -filetype=obj -triple mipsel-unknown-linux -mcpu=mips64r5 -target-abi n64 %s -o -| llv…
13 # MIPSEL-MIPS64R2: Flags [ (0x80000006)
[all …]
/aosp_15_r20/external/clang/test/Driver/
H A Dlinux-ld.c1 // General tests that ld invocations on Linux targets sane. Note that we use
4 // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
5 // RUN: --target=i386-unknown-linux \
6 // RUN: --gcc-toolchain="" \
7 // RUN: --sysroot=%S/Inputs/basic_linux_tree \
8 // RUN: | FileCheck --check-prefix=CHECK-LD-32 %s
9 // CHECK-LD-32-NOT: warning:
10 // CHECK-LD-32: "{{.*}}ld{{(.exe)?}}" "--sysroot=[[SYSROOT:[^"]+]]"
11 // CHECK-LD-32: "{{.*}}/usr/lib/gcc/i386-unknown-linux/4.6.0{{/|\\\\}}crtbegin.o"
12 // CHECK-LD-32: "-L[[SYSROOT]]/usr/lib/gcc/i386-unknown-linux/4.6.0"
[all …]
H A 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 …]
H A Dlinux-header-search.cpp4 // Test a simulated installation of libc++ on Linux, both through sysroot and
6 // RUN: %clang -no-canonical-prefixes %s -### -fsyntax-only 2>&1 \
7 // RUN: -target x86_64-unknown-linux-gnu \
8 // RUN: -stdlib=libc++ \
9 // RUN: -ccc-install-dir %S/Inputs/basic_linux_tree/usr/bin \
10 // RUN: --sysroot=%S/Inputs/basic_linux_libcxx_tree \
11 // RUN: --gcc-toolchain="" \
12 // RUN: | FileCheck --check-prefix=CHECK-BASIC-LIBCXX-SYSROOT %s
13 // CHECK-BASIC-LIBCXX-SYSROOT: "{{[^"]*}}clang{{[^"]*}}" "-cc1"
14 // CHECK-BASIC-LIBCXX-SYSROOT: "-isysroot" "[[SYSROOT:[^"]+]]"
[all …]
H A Dandroid-ndk-standalone.cpp4 // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
5 // RUN: -target arm-linux-androideabi -stdlib=libstdc++ \
6 // RUN: -B%S/Inputs/basic_android_ndk_tree \
7 // RUN: --sysroot=%S/Inputs/basic_android_ndk_tree/sysroot \
9 // CHECK: {{.*}}clang{{.*}}" "-cc1"
10 // CHECK: "-resource-dir" "[[RESOURCE_DIR:[^"]+]]"
11 // CHECK: "-internal-isystem" "{{.*}}/include/c++/4.9"
12 // CHECK-NOT: "-internal-isystem" "{{.*}}/include/c++/4.9/arm-linux-androideabi/armv7-a/thumb"
13 // CHECK-NOT: "-internal-isystem" "{{.*}}/include/c++/4.9/arm-linux-androideabi/armv7-a"
14 // CHECK-NOT: "-internal-isystem" "{{.*}}/include/c++/4.9/arm-linux-androideabi/thumb"
[all …]
/aosp_15_r20/external/clang/test/Preprocessor/
H A Dinit.c1 // RUN: %clang_cc1 -E -dM -x assembler-with-cpp < /dev/null | FileCheck -match-full-lines -check-pr…
6 // RUN: %clang_cc1 -fblocks -E -dM < /dev/null | FileCheck -match-full-lines -check-prefix BLOCKS %s
12 // RUN: %clang_cc1 -x c++ -std=c++1z -E -dM < /dev/null | FileCheck -match-full-lines -check-prefix…
22 // RUN: %clang_cc1 -x c++ -std=c++1y -E -dM < /dev/null | FileCheck -match-full-lines -check-prefix…
32 // RUN: %clang_cc1 -x c++ -std=c++11 -E -dM < /dev/null | FileCheck -match-full-lines -check-prefix…
42 // RUN: %clang_cc1 -x c++ -std=c++98 -E -dM < /dev/null | FileCheck -match-full-lines -check-prefix…
51 // RUN: %clang_cc1 -fdeprecated-macro -E -dM < /dev/null | FileCheck -match-full-lines -check-prefi…
56 // RUN: %clang_cc1 -std=c99 -E -dM < /dev/null | FileCheck -match-full-lines -check-prefix C99 %s
60 // C99-NOT: __GXX_EXPERIMENTAL_CXX0X__
61 // C99-NOT: __GXX_RTTI
[all …]
/aosp_15_r20/external/bazelbuild-rules_rust/rust/
H A Dknown_shas.bzl3 This is a generated file -- see //util:fetch_shas
7 …"2018-10-30/cargo-beta-aarch64-unknown-linux-gnu.tar.gz": "9d91fb3ee868421fbf8f4ed62cb7ee843dc6a1e…
8 …"2018-10-30/cargo-beta-aarch64-unknown-linux-gnu.tar.xz": "344ff43655bb61a31eb7b13c4120b2676b95bda…
9 …"2018-10-30/cargo-beta-arm-unknown-linux-gnueabi.tar.gz": "0a606c94eb712e53cabb0a1d7c68412b39a76d7…
10 …"2018-10-30/cargo-beta-arm-unknown-linux-gnueabi.tar.xz": "d15292144b3fb332b6d7716e38fa888ca29cd9f…
11 …"2018-10-30/cargo-beta-arm-unknown-linux-gnueabihf.tar.gz": "b1179633aac6064c9e01942367d0b0d48d90e…
12 …"2018-10-30/cargo-beta-arm-unknown-linux-gnueabihf.tar.xz": "71d2f625afcc523b7a0341a165f488b6b44b5…
13 …"2018-10-30/cargo-beta-armv7-unknown-linux-gnueabihf.tar.gz": "6857ab5a0a4abc06331029325495c03d337…
14 …"2018-10-30/cargo-beta-armv7-unknown-linux-gnueabihf.tar.xz": "c9eabe7ae86ccc1079e2c9b69de6f39b9f3…
15 …"2018-10-30/cargo-beta-i686-pc-windows-gnu.tar.gz": "e0ed7c8ebf9a642879b7b548670b85836fab5127f6466…
[all …]
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/stdarch/ci/docker/mips64el-unknown-linux-gnuabi64/
H A DDockerfile3 RUN apt-get update && apt-get install -y --no-install-recommends \
4 gcc libc6-dev qemu-user ca-certificates \
5 gcc-mips64el-linux-gnuabi64 libc6-dev-mips64el-cross \
6 qemu-system-mips64el
8 ENV CARGO_TARGET_MIPS64EL_UNKNOWN_LINUX_GNUABI64_LINKER=mips64el-linux-gnuabi64-gcc \
9 …CARGO_TARGET_MIPS64EL_UNKNOWN_LINUX_GNUABI64_RUNNER="qemu-mips64el -L /usr/mips64el-linux-gnuabi64…
10 OBJDUMP=mips64el-linux-gnuabi64-objdump
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/stdarch/ci/docker/mips64el-unknown-linux-gnuabi64/
H A DDockerfile3 RUN apt-get update && apt-get install -y --no-install-recommends \
4 gcc libc6-dev qemu-user ca-certificates \
5 gcc-mips64el-linux-gnuabi64 libc6-dev-mips64el-cross \
6 qemu-system-mips64el
8 ENV CARGO_TARGET_MIPS64EL_UNKNOWN_LINUX_GNUABI64_LINKER=mips64el-linux-gnuabi64-gcc \
9 …CARGO_TARGET_MIPS64EL_UNKNOWN_LINUX_GNUABI64_RUNNER="qemu-mips64el -L /usr/mips64el-linux-gnuabi64…
10 OBJDUMP=mips64el-linux-gnuabi64-objdump
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/stdarch/ci/docker/mips64el-unknown-linux-gnuabi64/
H A DDockerfile3 RUN apt-get update && apt-get install -y --no-install-recommends \
4 gcc libc6-dev qemu-user ca-certificates \
5 gcc-mips64el-linux-gnuabi64 libc6-dev-mips64el-cross \
6 qemu-system-mips64el
8 ENV CARGO_TARGET_MIPS64EL_UNKNOWN_LINUX_GNUABI64_LINKER=mips64el-linux-gnuabi64-gcc \
9 …CARGO_TARGET_MIPS64EL_UNKNOWN_LINUX_GNUABI64_RUNNER="qemu-mips64el -L /usr/mips64el-linux-gnuabi64…
10 OBJDUMP=mips64el-linux-gnuabi64-objdump
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/stdarch/ci/docker/mips64el-unknown-linux-gnuabi64/
H A DDockerfile3 RUN apt-get update && apt-get install -y --no-install-recommends \
4 gcc libc6-dev qemu-user ca-certificates \
5 gcc-mips64el-linux-gnuabi64 libc6-dev-mips64el-cross \
6 qemu-system-mips64el
8 ENV CARGO_TARGET_MIPS64EL_UNKNOWN_LINUX_GNUABI64_LINKER=mips64el-linux-gnuabi64-gcc \
9 …CARGO_TARGET_MIPS64EL_UNKNOWN_LINUX_GNUABI64_RUNNER="qemu-mips64el -L /usr/mips64el-linux-gnuabi64…
10 OBJDUMP=mips64el-linux-gnuabi64-objdump
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/stdarch/ci/docker/mips64el-unknown-linux-gnuabi64/
H A DDockerfile3 RUN apt-get update && apt-get install -y --no-install-recommends \
4 gcc libc6-dev qemu-user ca-certificates \
5 gcc-mips64el-linux-gnuabi64 libc6-dev-mips64el-cross \
6 qemu-system-mips64el
8 ENV CARGO_TARGET_MIPS64EL_UNKNOWN_LINUX_GNUABI64_LINKER=mips64el-linux-gnuabi64-gcc \
9 …CARGO_TARGET_MIPS64EL_UNKNOWN_LINUX_GNUABI64_RUNNER="qemu-mips64el -L /usr/mips64el-linux-gnuabi64…
10 OBJDUMP=mips64el-linux-gnuabi64-objdump
/aosp_15_r20/external/angle/build/toolchain/linux/
H A DBUILD.gn2 # Use of this source code is governed by a BSD-style license that can be
15 current_os = "linux"
22 current_os = "linux"
29 current_os = "linux"
34 toolprefix = "aarch64-linux-gnu-"
46 current_os = "linux"
55 toolprefix = "arm-linux-gnueabihf-"
67 current_os = "linux"
81 current_os = "linux"
99 current_os = "linux"
[all …]
/aosp_15_r20/external/clang/test/CodeGen/
H A Dmips-unsupported-nan.c1 // RUN: %clang -target mipsel-unknown-linux -mnan=2008 -march=mips2 -emit-llvm -S %s -o - 2>%t | Fi…
2 // RUN: FileCheck -check-prefix=CHECK-MIPS2 %s < %t
4 // RUN: %clang -target mips64el-unknown-linux -mnan=2008 -march=mips3 -emit-llvm -S %s -o - 2>%t | …
5 // RUN: FileCheck -check-prefix=CHECK-MIPS3 %s < %t
7 // RUN: %clang -target mips64el-unknown-linux -mnan=2008 -march=mips4 -emit-llvm -S %s -o - 2>%t | …
8 // RUN: FileCheck -check-prefix=CHECK-MIPS4 %s < %t
10 // RUN: %clang -target mipsel-unknown-linux -mnan=2008 -march=mips32 -emit-llvm -S %s -o - 2>%t | F…
11 // RUN: FileCheck -check-prefix=CHECK-MIPS32 %s < %t
13 // RUN: %clang -target mipsel-unknown-linux -mnan=2008 -march=mips32r2 -emit-llvm -S %s -o - 2>%t |…
14 // RUN: FileCheck -allow-empty -check-prefix=NO-WARNINGS %s < %t
[all …]
/aosp_15_r20/external/cronet/build/toolchain/linux/
H A DBUILD.gn2 # Use of this source code is governed by a BSD-style license that can be
15 current_os = "linux"
22 current_os = "linux"
29 current_os = "linux"
34 toolprefix = "aarch64-linux-gnu-"
46 current_os = "linux"
55 toolprefix = "arm-linux-gnueabihf-"
67 current_os = "linux"
81 current_os = "linux"
99 current_os = "linux"
[all …]
/aosp_15_r20/external/cronet/build/config/android/
H A Dabi.gni2 # Use of this source code is governed by a BSD-style license that can be
30 # Forces all APKs/bundles to be 64-bit only to improve build speed
31 # (no need to also build 32-bit library).
40 android_abi_target = "i686-linux-android"
47 android_app_abi = "armeabi-v7a"
49 android_abi_target = "arm-linux-androideabi"
53 android_abi_target = "mipsel-linux-android"
56 android_abi_target = "x86_64-linux-android"
59 android_app_abi = "arm64-v8a"
60 android_abi_target = "aarch64-linux-android"
[all …]
/aosp_15_r20/external/angle/build/config/android/
H A Dabi.gni2 # Use of this source code is governed by a BSD-style license that can be
30 # Forces all APKs/bundles to be 64-bit only to improve build speed
31 # (no need to also build 32-bit library).
40 android_abi_target = "i686-linux-android"
47 android_app_abi = "armeabi-v7a"
49 android_abi_target = "arm-linux-androideabi"
53 android_abi_target = "mipsel-linux-android"
56 android_abi_target = "x86_64-linux-android"
59 android_app_abi = "arm64-v8a"
60 android_abi_target = "aarch64-linux-android"
[all …]
/aosp_15_r20/external/llvm/test/CodeGen/Mips/
H A Dehframe-indirect.ll1 ; RUN: llc -mtriple=mipsel-linux-gnu < %s -asm-verbose -relocation-model=pic | FileCheck -check-pre…
2 ; RUN: llc -mtriple=mipsel-linux-android < %s -asm-verbose -relocation-model=pic | FileCheck -check
3 ; RUN: llc -mtriple=mips64el-linux-gnu -target-abi=n32 < %s -asm-verbose -relocation-model=pic | Fi…
4 ; RUN: llc -mtriple=mips64el-linux-android -target-abi=n32 < %s -asm-verbose -relocation-model=pic …
5 ; RUN: llc -mtriple=mips64el-linux-gnu < %s -asm-verbose -relocation-model=pic | FileCheck -check-p…
6 ; RUN: llc -mtriple=mips64el-linux-android < %s -asm-verbose -relocation-model=pic | FileCheck -che…
34 ; ALL: GCC_except_table{{[0-9]+}}:
36 ; ALL: $[[PC_LABEL:tmp[0-9]+]]:
37 ; ALL: .4byte ($_ZTISt9exception.DW.stub)-($[[PC_LABEL]])
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-3289846/
Dmanifest_3289846.xml1 <?xml version='1.0' encoding='UTF-8'?>
3 <remote fetch=".." name="aosp" review="https://android-review.googlesource.com/" />
4 <default remote="aosp" revision="master" sync-j="4" />
16 …<project name="platform/external/clang-tools-extra" path="external/clang-tools-extra" revision="97…
17 …<project groups="pdk" name="platform/external/compiler-rt" path="external/compiler-rt" revision="1…
27 …<project clone-depth="1" groups="pdk" name="platform/prebuilts/build-tools" path="prebuilts/build-
28 …="pdk,darwin" name="platform/prebuilts/clang/host/darwin-x86" path="prebuilts/clang/host/darwin-x8…
29 …<project groups="pdk,linux" name="platform/prebuilts/clang/host/linux-x86" path="prebuilts/clang/h…
30 …<project groups="pdk,linux" name="platform/prebuilts/clang/host/windows-x86" path="prebuilts/clang…
31 …tform/prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.9" path="prebuilts/gcc/darwin-x86/a…
[all …]
/aosp_15_r20/external/libyuv/docs/
H A Dgetting_started.md5 ## Pre-requisites
7 …need to have depot tools installed: https://www.chromium.org/developers/how-tos/install-depot-tools
14 gclient config --name src https://chromium.googlesource.com/libyuv/libyuv
35 For Android add `;target_os=['android'];` to your Linux .gclient
47 target_os = ["android", "linux"];
62 call gn gen out\Release "--args=is_debug=false target_cpu=\"x64\""
63 call gn gen out\Debug "--args=is_debug=true target_cpu=\"x64\""
64 ninja -v -C out\Release
65 ninja -v -C out\Debug
67 call gn gen out\Release "--args=is_debug=false target_cpu=\"x86\""
[all …]
/aosp_15_r20/external/llvm/test/CodeGen/Mips/cconv/
H A Dreturn-hard-float.ll1 ; RUN: llc -mtriple=mips-linux-gnu -relocation-model=static < %s | FileCheck --check-prefixes=ALL,O…
2 ; RUN: llc -mtriple=mipsel-linux-gnu -relocation-model=static < %s | FileCheck --check-prefixes=ALL…
4 ; RUN-TODO: llc -mtriple=mips64-linux-gnu -relocation-model=static -target-abi o32 < %s | FileCheck…
5 ; RUN-TODO: llc -mtriple=mips64el-linux-gnu -relocation-model=static -target-abi o32 < %s | FileChe…
7 ; RUN: llc -mtriple=mips64-linux-gnu -relocation-model=static -target-abi n32 < %s | FileCheck --ch…
8 ; RUN: llc -mtriple=mips64el-linux-gnu -relocation-model=static -target-abi n32 < %s | FileCheck --
10 ; RUN: llc -mtriple=mips64-linux-gnu -relocation-model=static -target-abi n64 < %s | FileCheck --ch…
11 ; RUN: llc -mtriple=mips64el-linux-gnu -relocation-model=static -target-abi n64 < %s | FileCheck --
13 ; RUN: llc -mtriple=mips-linux-gnu -relocation-model=static -mattr=+o32,+fp64 < %s | FileCheck --ch…
14 ; RUN: llc -mtriple=mipsel-linux-gnu -relocation-model=static -mattr=+o32,+fp64 < %s | FileCheck --
[all …]
H A Darguments-struct.ll1 ; RUN: llc -mtriple=mips-unknown-linux-gnu -relocation-model=static < %s | FileCheck --check-prefix…
2 ; RUN: llc -mtriple=mipsel-unknown-linux-gnu -relocation-model=static < %s | FileCheck --check-pref…
4 ; RUN-TODO: llc -mtriple=mips64-unknown-linux-gnu -relocation-model=static -target-abi n32 < %s | F…
5 ; RUN-TODO: llc -mtriple=mips64el-unknown-linux-gnu -relocation-model=static -target-abi n32 < %s |…
7 ; RUN: llc -mtriple=mips64-unknown-linux-gnu -relocation-model=static -target-abi n32 < %s | FileCh…
8 ; RUN: llc -mtriple=mips64el-unknown-linux-gnu -relocation-model=static -target-abi n32 < %s | File…
10 ; RUN: llc -mtriple=mips64-unknown-linux-gnu -relocation-model=static -target-abi n64 < %s | FileCh…
11 ; RUN: llc -mtriple=mips64el-unknown-linux-gnu -relocation-model=static -target-abi n64 < %s | File…
26 ; ALL-LABEL: s_i8:
28 ; SYM32-DAG: lui [[PTR_HI:\$[0-9]+]], %hi(bytes)
[all …]
H A Dreturn-float.ll1 ; RUN: llc -mtriple=mips-linux-gnu -mattr=+soft-float -relocation-model=static < %s | FileCheck --c…
2 ; RUN: llc -mtriple=mipsel-linux-gnu -mattr=+soft-float -relocation-model=static < %s | FileCheck -…
4 ; RUN-TODO: llc -mtriple=mips64-linux-gnu -mattr=+soft-float -relocation-model=static -target-abi o…
5 ; RUN-TODO: llc -mtriple=mips64el-linux-gnu -mattr=+soft-float -relocation-model=static -target-abi…
7 ; RUN: llc -mtriple=mips64-linux-gnu -mattr=+soft-float -relocation-model=static -target-abi n32 < …
8 ; RUN: llc -mtriple=mips64el-linux-gnu -mattr=+soft-float -relocation-model=static -target-abi n32 …
10 ; RUN: llc -mtriple=mips64-linux-gnu -mattr=+soft-float -relocation-model=static -target-abi n64 < …
11 ; RUN: llc -mtriple=mips64el-linux-gnu -mattr=+soft-float -relocation-model=static -target-abi n64 …
16 ; We only test Linux because other OS's use different relocations and I don't
28 ; ALL-LABEL: retfloat:
[all …]
H A Dreturn.ll1 ; RUN: llc -mtriple=mips-linux-gnu -relocation-model=static < %s | FileCheck --check-prefixes=ALL,O…
2 ; RUN: llc -mtriple=mipsel-linux-gnu -relocation-model=static < %s | FileCheck --check-prefixes=ALL…
4 ; RUN-TODO: llc -mtriple=mips64-linux-gnu -relocation-model=static -target-abi o32 < %s | FileCheck…
5 ; RUN-TODO: llc -mtriple=mips64el-linux-gnu -relocation-model=static -target-abi o32 < %s | FileChe…
7 ; RUN: llc -mtriple=mips64-linux-gnu -relocation-model=static -target-abi n32 < %s | FileCheck --ch…
8 ; RUN: llc -mtriple=mips64el-linux-gnu -relocation-model=static -target-abi n32 < %s | FileCheck --
10 ; RUN: llc -mtriple=mips64-linux-gnu -relocation-model=static -target-abi n64 < %s | FileCheck --ch…
11 ; RUN: llc -mtriple=mips64el-linux-gnu -relocation-model=static -target-abi n64 < %s | FileCheck --
16 ; We only test Linux because other OS's use different relocations and I don't
31 ; ALL-LABEL: reti8:
[all …]
/aosp_15_r20/external/llvm/test/ExecutionEngine/RuntimeDyld/Mips/
H A DELF_N64R6_relocations.s1 # RUN: llvm-mc -triple=mips64el-unknown-linux -mcpu=mips64r6 -code-model=small -filetype=obj -o %T/…
2 # RUN: llc -mtriple=mips64el-unknown-linux -mcpu=mips64r6 -filetype=obj -o %T/test_ELF_ExternalFunc…
3-rtdyld -triple=mips64el-unknown-linux -mcpu=mips64r6 -verify -map-section test_ELF_N64R6.o,.text=…
5 # RUN: llvm-mc -triple=mips64-unknown-linux -mcpu=mips64r6 -code-model=small -filetype=obj -o %T/te…
6 # RUN: llc -mtriple=mips64-unknown-linux -mcpu=mips64r6 -filetype=obj -o %T/test_ELF_ExternalFuncti…
7-rtdyld -triple=mips64-unknown-linux -mcpu=mips64r6 -verify -map-section test_ELF_N64R6.o,.text=0x…
25 # rtdyld-check: decode_operand(R_MIPS_PC18_S3, 1)[20:0] = (foo - R_MIPS_PC18_S3)[20:0]
30 # rtdyld-check: decode_operand(R_MIPS_PC19_S2, 1)[20:0] = (foo - R_MIPS_PC19_S2)[20:0]
35 # rtdyld-check: decode_operand(R_MIPS_PC21_S2, 1)[22:0] = (foo - next_pc(R_MIPS_PC21_S2) + 0x04)[2…
40 # rtdyld-check: decode_operand(R_MIPS_PC26_S2, 0)[27:0] = (foo - next_pc(R_MIPS_PC26_S2) + 0x04)[2…
[all …]

12345678910>>...13