HomeSort by relevance Sort by last modified time
    Searched refs:vC (Results 1 - 25 of 48) sorted by null

1 2

  /external/mesa3d/src/gallium/auxiliary/rtasm/
rtasm_ppc.c 358 unsigned vC:5;
364 emit_va(struct ppc_function *p, uint op2, uint vD, uint vA, uint vB, uint vC,
372 inst.inst.vC = vC;
377 printf(format, vD, vA, vB, vC);
613 /** vector float mult add: vD = vA * vB + vC */
615 ppc_vmaddfp(struct ppc_function *p, uint vD, uint vA, uint vB, uint vC)
618 emit_va(p, 46, vD, vA, vC, vB, "vmaddfp\tv%u, v%u, v%u, v%u\n");
621 /** vector float negative mult subtract: vD = vA - vB * vC */
623 ppc_vnmsubfp(struct ppc_function *p, uint vD, uint vA, uint vB, uint vC)
    [all...]
rtasm_ppc.h 108 /** vector float mult add: vD = vA * vB + vC */
110 ppc_vmaddfp(struct ppc_function *p, uint vD, uint vA, uint vB, uint vC);
112 /** vector float negative mult subtract: vD = vA - vB * vC */
114 ppc_vnmsubfp(struct ppc_function *p, uint vD, uint vA, uint vB, uint vC);
216 ppc_vperm(struct ppc_function *p, uint vD, uint vA, uint vB, uint vC);
220 ppc_vsel(struct ppc_function *p, uint vD, uint vA, uint vB, uint vC);
  /dalvik/libdex/
InstrUtils.h 57 kFmt35c, // op {vC,vD,vE,vF,vG}, thing@BBBB
133 u4 vC;
134 u4 arg[5]; /* vC/D/E/F/G in invoke or filled-new-array */
InstrUtils.cpp 544 pDec->vC = FETCH(1) >> 8;
549 pDec->vC = (s1) (FETCH(1) >> 8); // sign-extend 8-bit value
555 pDec->vC = (s2) FETCH(1); // sign-extend 16-bit value
561 pDec->vC = FETCH(1);
579 case kFmt35c: // op {vC, vD, vE, vF, vG}, thing@BBBB
604 * also copy the first argument (if any) into vC. (The
626 case 1: pDec->vC = pDec->arg[0] = regList & 0x0f; break;
639 pDec->vC = FETCH(2);
  /external/mksh/src/
edit.c     [all...]
  /art/compiler/dex/
mir_dataflow.cc 927 // For vector MIRs, vC contains type information
929 int type_size = d_insn.vC >> 16;
960 HandleLiveInUse(use_v, def_v, live_in_v, d_insn.vC);
968 HandleLiveInUse(use_v, def_v, live_in_v, d_insn.vC);
969 HandleLiveInUse(use_v, def_v, live_in_v, d_insn.vC + 1);
1016 HandleLiveInUse(use_v, def_v, live_in_v, d_insn->vC);
1018 HandleLiveInUse(use_v, def_v, live_in_v, d_insn->vC+1);
1029 HandleLiveInUse(use_v, def_v, live_in_v, d_insn->vC+i);
1113 HandleSSAUse(mir->ssa_rep->uses, d_insn->vC+i, i);
1119 // For vector MIRs, vC contains type informatio
    [all...]
mir_graph.cc 175 decoded_instruction->vC = inst->HasVRegC() ? inst->VRegC() : 0;
473 target += insn->dalvikInsn.vC;
    [all...]
mir_optimization_test.cc 58 uint32_t vC;
88 #define DEF_AGET_APUT(bb, opcode, vA, vB, vC) \
89 { bb, opcode, 0u, vA, vB, vC }
90 #define DEF_INVOKE(bb, opcode, vC, method_info) \
91 { bb, opcode, method_info, 0u, 0u, vC }
308 mir->dalvikInsn.vC = def->vC;
    [all...]
mir_optimization.cc 522 IsInstructionIfCc(opcode) ? mir->dalvikInsn.vC : mir->dalvikInsn.vB;
589 mir_next->dalvikInsn.vB = mir->dalvikInsn.vC;
665 // "false" set val in vC
666 mir->dalvikInsn.vC = if_false->dalvikInsn.vB;
    [all...]
mir_graph.h 260 uint32_t vC;
261 uint32_t arg[5]; /* vC/D/E/F/G in invoke or filled-new-array */
264 explicit DecodedInstruction():vA(0), vB(0), vB_wide(0), vC(0), opcode(Instruction::NOP) {
    [all...]
gvn_dead_code_elimination.cc 515 mir->dalvikInsn.vC = mir->dalvikInsn.vB;
    [all...]
global_value_numbering_test.cc     [all...]
gvn_dead_code_elimination_test.cc 316 mir->dalvikInsn.vC = SRegToVReg(mir->ssa_rep->uses, &use, (df_attrs & DF_C_WIDE) != 0);
    [all...]
mir_analysis.cc 1232 field_idx = mir->dalvikInsn.vC;
    [all...]
local_value_numbering.cc     [all...]
  /art/compiler/dex/quick/x86/
target_x86.cc     [all...]
quick_assemble_x86_test.cc 208 mir->dalvikInsn.vC = (vector_type << 16) | vector_size; // Type size.
utility_x86.cc     [all...]
  /dalvik/dexdump/
DexDump.cpp 737 index = pDecInsn->vC;
951 printf(" v%d, v%d, v%d", pDecInsn->vA, pDecInsn->vB, pDecInsn->vC);
955 pDecInsn->vA, pDecInsn->vB, (s4)pDecInsn->vC, (u1)pDecInsn->vC);
959 s4 targ = (s4) pDecInsn->vC;
968 pDecInsn->vA, pDecInsn->vB, (s4)pDecInsn->vC, (u2)pDecInsn->vC);
996 case kFmt35c: // op {vC, vD, vE, vF, vG}, thing@BBBB
1021 printf("v%d", pDecInsn->vC + i);
1023 printf(", v%d", pDecInsn->vC + i)
    [all...]
  /art/compiler/dex/quick/
mir_to_lir.cc 483 const uint32_t vC = mir->dalvikInsn.vC;
620 GenInstanceof(vC, rl_dest, rl_src[0]);
666 GenNewArray(vC, rl_dest, rl_src[0]);
    [all...]
dex_file_method_inliner.cc 124 return invoke->dalvikInsn.vC + arg; // Range invoke.
    [all...]
ralloc_util.cc     [all...]
  /art/runtime/verifier/
method_verifier.h 450 // - vA holds word count, vC holds index of first reg.
451 bool CheckVarArgRangeRegs(uint32_t vA, uint32_t vC);
    [all...]
method_verifier.cc     [all...]
  /external/valgrind/VEX/priv/
guest_ppc_toIR.c     [all...]

Completed in 830 milliseconds

1 2