HomeSort by relevance Sort by last modified time
    Searched defs:movt (Results 1 - 13 of 13) sorted by null

  /external/llvm/test/MC/ARM/
thumb2be-movt-encoding.s 4 movt r9, :upper16:(_bar) label
5 @ CHECK-LE: movt r9, :upper16:_bar @ encoding: [0xc0'A',0xf2'A',0b0000AAAA,0x09]
7 @ CHECK-BE: movt r9, :upper16:_bar @ encoding: [0xf2,0b1100AAAA,0x09'A',A]
thumbv8m.s 94 // CHECK: movt r1, #65535 @ encoding: [0xcf,0xf6,0xff,0x71]
95 movt r1, #0xffff label
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
movw-shared-2.s 5 movt r0, #:upper16:b label
movw-shared-4.s 6 movt r0, #:upper16:d label
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
movw-local.s 6 movt r0, #:upper16: bar label
9 movt r0, #:upper16: bar label
  /art/compiler/linker/arm/
relative_patcher_thumb2_test.cc 286 0xc0, 0xf2, 0x00, 0x00, // MOVT r0, #0 (placeholder)
323 // Distribute the bits of the diff between the MOVW and MOVT:
331 uint32_t movt = 0xf2c00000u | // MOVT r0, #0 (placeholder), local
339 static_cast<uint8_t>(movt >> 16), static_cast<uint8_t>(movt >> 24),
340 static_cast<uint8_t>(movt >> 0), static_cast<uint8_t>(movt >> 8),
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceAssemblerMIPS32.cpp 868 void AssemblerMIPS32::movt(const Operand *OpRd, const Operand *OpRs, function in class:Ice::MIPS32::AssemblerMIPS32
871 const IValueT Rd = encodeGPRegister(OpRd, "Rd", "movt");
872 const IValueT Rs = encodeGPRegister(OpRs, "Rs", "movt");
    [all...]
  /external/v8/src/arm/
assembler-arm.cc 328 // specially coded on ARM means that it is a movw/movt instruction, or is an
931 // movt dst, #target16_1
949 // Patch with movw/movt.
960 patcher.masm()->movt(dst, target16_1);
1644 void Assembler::movt(Register reg, uint32_t immediate, Condition cond) { function in class:v8::internal::Assembler
    [all...]
  /external/v8/src/mips/
assembler-mips.cc 2132 void Assembler::movt(Register rd, Register rs, uint16_t cc) { function in class:v8::Assembler
    [all...]
  /external/v8/src/mips64/
assembler-mips64.cc 2384 void Assembler::movt(Register rd, Register rs, uint16_t cc) { function in class:v8::internal::Assembler
    [all...]
  /external/vixl/src/aarch32/
assembler-aarch32.cc 6695 void Assembler::movt(Condition cond, Register rd, const Operand& operand) { function in class:vixl::aarch32::Assembler
    [all...]
assembler-aarch32.h 2584 void movt(Register rd, const Operand& operand) { movt(al, rd, operand); } function in class:vixl::aarch32::Assembler
    [all...]
disasm-aarch32.cc 1924 void Disassembler::movt(Condition cond, Register rd, const Operand& operand) { function in class:vixl::aarch32::Disassembler
    [all...]

Completed in 599 milliseconds