Searched refs:MOVT (Results 1 – 25 of 26) sorted by relevance
12
/external/llvm/test/CodeGen/ARM/ |
D | darwin-tls.ll | 1 ; 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 …]
|
D | subtarget-no-movt.ll | 2 …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 …]
|
D | machine-licm.ll | 3 …-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]+}}]
|
D | fast-isel-mvn.ll | 5 …elocation-model=dynamic-no-pic -mtriple=armv7-apple-ios < %s | FileCheck %s --check-prefix=MOVT 88 ; MOVT-LABEL: t10 89 ; MOVT: ldr
|
D | minsize-litpools.ll | 5 ; make use of it in deciding whether to use MOVW/MOVT for global variables or a
|
/external/swiftshader/third_party/LLVM/test/CodeGen/ARM/ |
D | machine-licm.ll | 3 …-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/ |
D | cond-rd-operand-imm16-t32.json | 33 "Movt", // MOVT{<c>}{<q>} <Rd>, #<imm16> ; T1 85 "Movt" // MOVT{<c>}{<q>} <Rd>, #<imm16> ; T1
|
/external/valgrind/none/tests/mips32/ |
D | MoveIns.stdout.exp-BE | 226 MOVT 243 MOVT.S 274 MOVT.D
|
D | MoveIns.stdout.exp | 226 MOVT
|
/external/pcre/dist2/src/sljit/ |
D | sljitNativeARM_32.c | 120 #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()
|
D | sljitNativeARM_T2_32.c | 128 #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/ |
D | diagnostics.s | 103 @ Out of range immediate for MOVT
|
D | basic-arm-instructions.s | 865 @ MOVT
|
D | basic-thumb2-instructions.s | 1129 @ MOVT
|
/external/swiftshader/third_party/LLVM/lib/Target/Mips/ |
D | MipsInstrFPU.td | 319 def MOVT : CondMovFPInt<MipsCMovFP_T, 1, "movt">;
|
D | MipsISelLowering.cpp | 797 case Mips::MOVT: in EmitInstrWithCustomInserter()
|
/external/llvm/test/MC/ARM/ |
D | diagnostics.s | 171 @ Out of range immediate for MOVT
|
D | basic-arm-instructions.s | 1368 @ MOVT
|
/external/valgrind/none/tests/mips64/ |
D | move_instructions.stdout.exp-BE | 1093 --- MOVT.S --- 1111 --- MOVT.D --- 1260 --- MOVT --- if FPConditionalCode(cc) == 1 then out = RSval else out = RDval
|
D | move_instructions.stdout.exp-LE | 1093 --- MOVT.S --- 1111 --- MOVT.D --- 1260 --- MOVT --- if FPConditionalCode(cc) == 1 then out = RSval else out = RDval
|
/external/llvm/lib/Target/ARM/ |
D | ARMScheduleSwift.td | 154 // MOVT
|
/external/swiftshader/third_party/LLVM/test/MC/Disassembler/ARM/ |
D | thumb2.txt | 956 # MOVT
|
D | basic-arm-instructions.txt | 703 # MOVT
|
/external/llvm/test/MC/Disassembler/ARM/ |
D | thumb2.txt | 1073 # MOVT
|
D | basic-arm-instructions.txt | 798 # MOVT
|
12