HomeSort by relevance Sort by last modified time
    Searched defs:vB (Results 1 - 25 of 26) sorted by null

1 2

  /dalvik/vm/compiler/codegen/x86/
LowerMove.cpp 31 u2 vA, vB;
33 vB = INST_B(inst);
34 get_virtual_reg(vB, OpndSize_32, 1, false/*isPhysical*/);
43 u2 vA, vB;
45 vB = FETCH(1);
46 get_virtual_reg(vB, OpndSize_32, 1, false);
55 u2 vA, vB;
57 vB = FETCH(2);
58 get_virtual_reg(vB, OpndSize_32, 1, false);
69 u2 vB = INST_B(inst)
    [all...]
LowerConst.cpp 157 u2 vB = FETCH(1);
159 u4 tmp = vB;
LowerObject.cpp 190 u2 vB = INST_B(inst);
193 common_check_cast_instance_of(vB, tmp, true, vA);
296 u2 vB = INST_B(inst);
299 requestVRFreeDelay(vB,VRDELAY_NULLCHECK); // Request VR delay before transfer to temporary
300 get_virtual_reg(vB, OpndSize_32, 1, false);
301 nullCheck(1, false, 1, vB); //maybe optimized away
302 cancelVRFreeDelayRequest(vB,VRDELAY_NULLCHECK);
391 u2 vB = INST_B(inst); //length
397 get_virtual_reg(vB, OpndSize_32, 5, false);
662 u2 vA, vB;
    [all...]
BytecodeVisitor.cpp 429 void touchTwoVRs(u2 vA, u2 vB, LowOpndRegType type) {
436 index = searchCompileTable(LowOpndRegType_virtual | type, vB);
438 ALOGE("virtual reg vB %d type %d not found in touchTwoVRs", vB, type);
533 u2 vA = 0, vB = 0, v1, v2;
551 vB = INST_B(inst);
555 vB = FETCH(1);
559 vB = FETCH(2);
561 if(isVirtualRegConstant(vB, LowOpndRegType_gp, tmpValue, false) == 3) {
567 touchOneVR(vB, LowOpndRegType_gp)
    [all...]
LowerGetPut.cpp 444 int iget_iput_common_nohelper(int tmp, int flag, u2 vA, u2 vB, int isObj, bool isVolatile) {
459 // Request VR delay before transfer to temporary. Only vB needs delay.
462 requestVRFreeDelay(vB,VRDELAY_NULLCHECK);
463 get_virtual_reg(vB, OpndSize_32, 7, false);
464 nullCheck(7, false, 2, vB); //maybe optimized away, if not, call
465 cancelVRFreeDelayRequest(vB,VRDELAY_NULLCHECK);
528 int iget_iput_common(int tmp, int flag, u2 vA, u2 vB, int isObj, bool isVolatile) {
529 return iget_iput_common_nohelper(tmp, flag, vA, vB, isObj, isVolatile);
540 u2 vB = INST_B(inst);
542 int retval = iget_iput_common(tmp, IGET, vA, vB, 0, false)
    [all...]
LowerAlu.cpp 34 u2 vB = INST_B(inst);
35 get_virtual_reg(vB, OpndSize_32, 1, false);
46 u2 vB = INST_B(inst);
47 get_virtual_reg(vB, OpndSize_32, 1, false);
59 u2 vB = INST_B(inst);
60 get_virtual_reg(vB, OpndSize_64, 1, false);
72 u2 vB = INST_B(inst);
73 get_virtual_reg(vB, OpndSize_64, 1, false);
86 u2 vB = INST_B(inst);
87 get_virtual_reg(vB, OpndSize_32, 1, false)
    [all...]
LowerJump.cpp     [all...]
  /art/compiler/dex/quick/
mir_to_lir.cc 35 uint32_t vB = mir->dalvikInsn.vB;
141 LoadConstantNoClobber(rl_result.low_reg, vB);
143 if (vB == 0) {
150 LoadConstantNoClobber(rl_result.low_reg, vB << 16);
152 if (vB == 0) {
161 static_cast<int64_t>(static_cast<int32_t>(vB)));
174 static_cast<int64_t>(vB) << 48);
187 GenCheckCast(mir->offset, vB, rl_src[0]);
195 GenNewInstance(vB, rl_dest)
    [all...]
  /external/chromium_org/content/browser/indexed_db/
indexed_db_leveldb_coding_unittest.cc 839 std::string vB = WrappedEncodeVarInt(static_cast<int64>(n));
841 EXPECT_EQ(vA.size(), vB.size());
842 EXPECT_EQ(*vA.begin(), *vB.begin());
  /art/compiler/dex/
mir_optimization.cc 52 int32_t vB = static_cast<int32_t>(d_insn->vB);
57 SetConstant(mir->ssa_rep->defs[0], vB);
60 SetConstant(mir->ssa_rep->defs[0], vB << 16);
64 SetConstantWide(mir->ssa_rep->defs[0], static_cast<int64_t>(vB));
70 SetConstantWide(mir->ssa_rep->defs[0], static_cast<int64_t>(vB) << 48);
389 if_true->dalvikInsn.vB = ConstantValue(if_true->ssa_rep->uses[0]);
390 if_false->dalvikInsn.vB = ConstantValue(if_false->ssa_rep->uses[0]);
394 // "true" set val in vB
395 mir->dalvikInsn.vB = if_true->dalvikInsn.vB
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
SCCP.java 305 int vB = ((CstInteger) cB).getValue();
308 constantSuccessor = (vA == vB);
311 constantSuccessor = (vA != vB);
314 constantSuccessor = (vA < vB);
317 constantSuccessor = (vA >= vB);
320 constantSuccessor = (vA <= vB);
323 constantSuccessor = (vA > vB);
402 int vB = ((CstInteger) cB).getValue();
406 vR = vA + vB;
411 vR = vB - vA
    [all...]
  /dalvik/libdex/
InstrUtils.h 35 kFmt12x, // op vA, vB
48 kFmt22t, // op vA, vB, +CCCC
49 kFmt22s, // op vA, vB, #+CCCC
50 kFmt22c, // op vA, vB, thing@CCCC
51 kFmt22cs, // [opt] op vA, vB, field offset CCCC
131 u4 vB;
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SCCP.java 306 int vB = ((CstInteger) cB).getValue();
309 constantSuccessor = (vA == vB);
312 constantSuccessor = (vA != vB);
315 constantSuccessor = (vA < vB);
318 constantSuccessor = (vA >= vB);
321 constantSuccessor = (vA <= vB);
324 constantSuccessor = (vA > vB);
403 int vB = ((CstInteger) cB).getValue();
407 vR = vA + vB;
412 vR = vB - vA
    [all...]
  /art/compiler/sea_ir/ir/
sea.cc 672 int vB = instruction_->VRegB();
673 uses.push_back(vB);
  /art/compiler/dex/portable/
mir_to_gbc.cc 693 uint32_t vB = mir->dalvikInsn.vB;
772 ::llvm::Constant* imm_value = irb_->getJInt(vB);
781 int64_t imm = static_cast<int32_t>(vB);
789 ::llvm::Constant* imm_value = irb_->getJInt(vB << 16);
803 int64_t imm = static_cast<int64_t>(vB) << 48;
811 ConvertSput(vB, art::llvm::IntrinsicHelper::HLSputObject,
816 ConvertSput(vB, art::llvm::IntrinsicHelper::HLSputFloat,
819 ConvertSput(vB, art::llvm::IntrinsicHelper::HLSput, rl_src[0]);
823 ConvertSput(vB, art::llvm::IntrinsicHelper::HLSputBoolean
    [all...]
  /art/runtime/
dex_instruction.h 95 k12x, // op vA, vB
107 k22t, // op vA, vB, +CCCC
108 k22s, // op vA, vB, #+CCCC
109 k22c, // op vA, vB, thing@CCCC
155 void Decode(uint32_t &vA, uint32_t &vB, uint64_t &vB_wide, uint32_t &vC, uint32_t arg[]) const;
439 uint32_t vB;
446 inst->Decode(vA, vB, vB_wide, vC, arg);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rtasm/
rtasm_ppc.c 294 unsigned vB:5;
300 emit_vx(struct ppc_function *p, uint op2, uint vD, uint vA, uint vB,
307 inst.inst.vB = vB;
313 printf(format, vD, vB, vA);
315 printf(format, vD, vA, vB);
326 unsigned vB:5;
333 emit_vxr(struct ppc_function *p, uint op2, uint vD, uint vA, uint vB,
340 inst.inst.vB = vB;
    [all...]
  /external/mesa3d/src/gallium/auxiliary/rtasm/
rtasm_ppc.c 294 unsigned vB:5;
300 emit_vx(struct ppc_function *p, uint op2, uint vD, uint vA, uint vB,
307 inst.inst.vB = vB;
313 printf(format, vD, vB, vA);
315 printf(format, vD, vA, vB);
326 unsigned vB:5;
333 emit_vxr(struct ppc_function *p, uint op2, uint vD, uint vA, uint vB,
340 inst.inst.vB = vB;
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_blit_A.c 883 vector unsigned short vR, vG, vB;
899 vB = vec_sl((vector unsigned short)voverflow, v3_16);
900 vG = vec_sl(vB, v2_16);
902 vdst1 = vec_perm(vdst1, (vector unsigned char)vB, vblue1);
905 vdst2 = vec_perm(vdst2, (vector unsigned char)vB, vblue2);
    [all...]
SDL_blit_N.c 354 vector unsigned short vR, vG, vB;
361 vB = vec_sl((vector unsigned short)vsrc, v3);
362 vG = vec_sl(vB, v2);
365 vdst1 = vec_perm(vdst1, (vector unsigned char)vB, vblue1);
371 vdst2 = vec_perm(vdst2, (vector unsigned char)vB, vblue2);
499 vector unsigned short vR, vG, vB;
506 vB = vec_sl((vector unsigned short)vsrc, v3);
507 vG = vec_sl(vB, v3);
510 vdst1 = vec_perm(vdst1, (vector unsigned char)vB, vblue1);
516 vdst2 = vec_perm(vdst2, (vector unsigned char)vB, vblue2)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_ra.cpp     [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_ra.cpp     [all...]
  /external/valgrind/main/VEX/priv/
host_ppc_defs.c     [all...]
guest_ppc_toIR.c     [all...]
  /external/mksh/src/
edit.c     [all...]

Completed in 1982 milliseconds

1 2