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

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/
intel-movs.s 4 movs: label
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
movs-thumb1-reloc-local-armv7-m.s 6 movs r0, #:upper8_15:#bar label
7 movs r0, #:upper0_7:#bar label
8 movs r0, #:lower8_15:#bar label
9 movs r0, #:lower0_7:#bar label
movs-thumb1-reloc-local.s 6 movs r0, #:upper8_15:#bar label
7 movs r0, #:upper0_7:#bar label
8 movs r0, #:lower8_15:#bar label
9 movs r0, #:lower0_7:#bar label
thumb1_unified.s 6 movs r0, #12 label
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_opt_copy_propagation.c 65 try_copy_prop(struct vc4_compile *c, struct qinst *inst, struct qinst **movs)
74 /* We have two ways of finding MOVs we can copy propagate
77 * SSA def. Alternatively, if it's in the "movs" array
82 struct qinst *mov = movs[inst->src[i].index];
157 apply_kills(struct vc4_compile *c, struct qinst **movs, struct qinst *inst)
163 if (movs[i] &&
164 (movs[i]->dst.index == inst->dst.index ||
165 (movs[i]->src[0].file == QFILE_TEMP &&
166 movs[i]->src[0].index == inst->dst.index))) {
167 movs[i] = NULL
176 struct qinst **movs; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_sel_peephole.cpp 34 /* Four MOVs seems to be pretty typical, so I picked the next power of two in
38 #define MAX_MOVS 8 /**< The maximum number of MOVs to attempt to match. */
50 * \return the minimum number of MOVs found in the two branches or zero if
117 * where each pair of MOVs to a common destination and can be easily translated
153 int movs = count_movs_from_if(then_mov, else_mov, then_block, else_block); local
155 if (movs == 0)
158 /* Generate SEL instructions for pairs of MOVs to a common destination. */
159 for (int i = 0; i < movs; i++) {
163 /* Check that the MOVs are the right form. */
174 movs = i
    [all...]
  /external/llvm/test/MC/X86/
intel-syntax.s 783 movs dword ptr [eax], dword ptr [ebx] label
786 // CHECK-STDERR-NEXT: movs dword ptr [eax], dword ptr [ebx]
788 // CHECK-STDERR-NEXT: movs dword ptr [eax], dword ptr [ebx]
  /external/vixl/src/aarch32/
assembler-aarch32.cc 7187 void Assembler::movs(Condition cond, function in class:vixl::aarch32::Assembler
    [all...]
assembler-aarch32.h 2614 void movs(Register rd, const Operand& operand) { function in class:vixl::aarch32::Assembler
2617 void movs(Condition cond, Register rd, const Operand& operand) { function in class:vixl::aarch32::Assembler
2620 void movs(EncodingSize size, Register rd, const Operand& operand) { function in class:vixl::aarch32::Assembler
    [all...]
disasm-aarch32.cc 1917 void Disassembler::movs(Condition cond, function in class:vixl::aarch32::Disassembler
    [all...]

Completed in 302 milliseconds