Home
last modified time | relevance | path

Searched refs:MOVT (Results 1 – 25 of 26) sorted by relevance

12

/external/llvm/test/CodeGen/ARM/
Ddarwin-tls.ll1 ; RUN: llc -mtriple=thumbv7s-apple-ios7.0 -o - -fast-isel %s | FileCheck %s --check-prefix=T2-MOVT-…
3 …thumbv7s-apple-ios7.0 -o - %s -relocation-model=static | FileCheck %s --check-prefix=T2-MOVT-STATIC
5 ; RUN: llc -mtriple=armv7s-apple-ios7.0 -o - %s | FileCheck %s --check-prefix=ARM-MOVT-PIC
7 …=armv7s-apple-ios7.0 -o - %s -relocation-model=static | FileCheck %s --check-prefix=ARM-MOVT-STATIC
17 ; T2-MOVT-PIC-LABEL: test_local_tls:
18 ; T2-MOVT-PIC: movw r0, :lower16:(_local_tls_var-([[PCREL_LOC:LPC[0-9]+_[0-9]+]]+4))
19 ; T2-MOVT-PIC: movt r0, :upper16:(_local_tls_var-([[PCREL_LOC]]+4))
20 ; T2-MOVT-PIC: [[PCREL_LOC]]:
21 ; T2-MOVT-PIC-NEXT: add r0, pc
22 ; T2-MOVT-PIC: ldr [[TLV_GET_ADDR:r[0-9]+]], [r0]
[all …]
Dsubtarget-no-movt.ll2 …pu=cortex-a8 -relocation-model=static %s -o - -mattr=-no-movt | FileCheck -check-prefix=USE-MOVT %s
3 …cortex-a8 -relocation-model=static %s -o - -mattr=+no-movt | FileCheck -check-prefix=NO-USE-MOVT %s
5 …ortex-a8 -relocation-model=static %s -o - -O0 -mattr=-no-movt | FileCheck -check-prefix=USE-MOVT %s
6 …ex-a8 -relocation-model=static %s -o - -O0 -mattr=+no-movt | FileCheck -check-prefix=NO-USE-MOVT %s
13 ; USE-MOVT-LABEL: {{_?}}foo0
14 ; USE-MOVT: movw [[R0:r[0-9]+]], #52257
15 ; USE-MOVT: movt [[R0]], #35037
17 ; NO-USE-MOVT-LABEL: {{_?}}foo0
18 ; NO-USE-MOVT: ldr [[R0:r[0-9]+]], [[L0:.*]]
19 ; NO-USE-MOVT: [[L0]]:
[all …]
Dmachine-licm.ll3 …-apple-darwin -relocation-model=pic -disable-fp-elim -mattr=+v6t2 | FileCheck %s -check-prefix=MOVT
18 ; MOVT-LABEL: t:
19 ; MOVT: movw [[REGISTER_2:r[0-9]+]], :lower16:(L_GV$non_lazy_ptr-(LPC0_0+8))
20 ; MOVT: movt [[REGISTER_2]], :upper16:(L_GV$non_lazy_ptr-(LPC0_0+8))
21 ; MOVT: LPC0_0:
22 ; MOVT: ldr r{{[0-9]+}}, [pc, [[REGISTER_2]]]
23 ; MOVT: ldr r{{[0-9]+}}, [r{{[0-9]+}}]
Dfast-isel-mvn.ll5 …elocation-model=dynamic-no-pic -mtriple=armv7-apple-ios < %s | FileCheck %s --check-prefix=MOVT
88 ; MOVT-LABEL: t10
89 ; MOVT: ldr
Dminsize-litpools.ll5 ; make use of it in deciding whether to use MOVW/MOVT for global variables or a
/external/swiftshader/third_party/LLVM/test/CodeGen/ARM/
Dmachine-licm.ll3 …-apple-darwin -relocation-model=pic -disable-fp-elim -mattr=+v6t2 | FileCheck %s -check-prefix=MOVT
26 ; MOVT: t:
27 ; MOVT: movw [[REGISTER_2:r[0-9]+]], :lower16:(L_GV$non_lazy_ptr-(LPC0_0+8))
28 ; MOVT: movt [[REGISTER_2]], :upper16:(L_GV$non_lazy_ptr-(LPC0_0+8))
29 ; MOVT: LPC0_0:
30 ; MOVT: ldr r{{[0-9]+}}, [pc, [[REGISTER_2]]]
31 ; MOVT: ldr r{{[0-9]+}}, [r{{[0-9]+}}]
/external/vixl/test/aarch32/config/
Dcond-rd-operand-imm16-t32.json33 "Movt", // MOVT{<c>}{<q>} <Rd>, #<imm16> ; T1
85 "Movt" // MOVT{<c>}{<q>} <Rd>, #<imm16> ; T1
/external/valgrind/none/tests/mips32/
DMoveIns.stdout.exp-BE226 MOVT
243 MOVT.S
274 MOVT.D
DMoveIns.stdout.exp226 MOVT
/external/pcre/dist2/src/sljit/
DsljitNativeARM_32.c120 #define MOVT 0xe3400000 macro
387 return push_inst(compiler, MOVT | RD(reg) | ((imm >> 12) & 0xf0000) | ((imm >> 16) & 0xfff)); in emit_imm()
496 SLJIT_ASSERT((inst[0] & 0xfff00000) == MOVW && (inst[1] & 0xfff00000) == MOVT); in inline_set_jump_addr()
498 inst[1] = MOVT | (inst[1] & 0xf000) | ((new_addr >> 12) & 0xf0000) | ((new_addr >> 16) & 0xfff); in inline_set_jump_addr()
547 SLJIT_ASSERT((inst[0] & 0xfff00000) == MOVW && (inst[1] & 0xfff00000) == MOVT); in inline_set_const()
549 …inst[1] = MOVT | (inst[1] & 0xf000) | ((new_constant >> 12) & 0xf0000) | ((new_constant >> 16) & 0… in inline_set_const()
DsljitNativeARM_T2_32.c128 #define MOVT 0xf2c00000 macro
210 return push_inst32(compiler, MOVT | RD4(dst) | in emit_imm32_const()
217 …SLJIT_ASSERT(((inst[0] & 0xfbf0) == (MOVW >> 16)) && ((inst[2] & 0xfbf0) == (MOVT >> 16)) && dst =… in modify_imm32_const()
220 inst[2] = (MOVT >> 16) | COPY_BITS(new_imm, 12 + 16, 0, 4) | COPY_BITS(new_imm, 11 + 16, 10, 1); in modify_imm32_const()
496 return push_inst32(compiler, MOVT | RD4(dst) | in load_immediate()
/external/swiftshader/third_party/LLVM/test/MC/ARM/
Ddiagnostics.s103 @ Out of range immediate for MOVT
Dbasic-arm-instructions.s865 @ MOVT
Dbasic-thumb2-instructions.s1129 @ MOVT
/external/swiftshader/third_party/LLVM/lib/Target/Mips/
DMipsInstrFPU.td319 def MOVT : CondMovFPInt<MipsCMovFP_T, 1, "movt">;
DMipsISelLowering.cpp797 case Mips::MOVT: in EmitInstrWithCustomInserter()
/external/llvm/test/MC/ARM/
Ddiagnostics.s171 @ Out of range immediate for MOVT
Dbasic-arm-instructions.s1368 @ MOVT
/external/valgrind/none/tests/mips64/
Dmove_instructions.stdout.exp-BE1093 --- MOVT.S ---
1111 --- MOVT.D ---
1260 --- MOVT --- if FPConditionalCode(cc) == 1 then out = RSval else out = RDval
Dmove_instructions.stdout.exp-LE1093 --- MOVT.S ---
1111 --- MOVT.D ---
1260 --- MOVT --- if FPConditionalCode(cc) == 1 then out = RSval else out = RDval
/external/llvm/lib/Target/ARM/
DARMScheduleSwift.td154 // MOVT
/external/swiftshader/third_party/LLVM/test/MC/Disassembler/ARM/
Dthumb2.txt956 # MOVT
Dbasic-arm-instructions.txt703 # MOVT
/external/llvm/test/MC/Disassembler/ARM/
Dthumb2.txt1073 # MOVT
Dbasic-arm-instructions.txt798 # MOVT

12