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

1 2

  /dalvik/vm/compiler/codegen/x86/
LowerMove.cpp 31 u2 vA, vB;
32 vA = INST_A(inst);
35 set_virtual_reg(vA, OpndSize_32, 1, false);
43 u2 vA, vB;
44 vA = INST_AA(inst);
47 set_virtual_reg(vA, OpndSize_32, 1, false);
55 u2 vA, vB;
56 vA = FETCH(1);
59 set_virtual_reg(vA, OpndSize_32, 1, false);
68 u2 vA = INST_A(inst)
    [all...]
LowerReturn.cpp 126 u2 vA = INST_AA(inst);
128 get_virtual_reg(vA, OpndSize_32, 22, false);
142 u2 vA = INST_AA(inst);
143 get_virtual_reg(vA, OpndSize_64, 1, false);
LowerConst.cpp 47 int const_string_common_nohelper(u4 tmp, u2 vA) {
52 set_VR_to_imm(vA, OpndSize_32, (int) strPtr );
58 int const_string_common(u4 tmp, u2 vA) {
59 return const_string_common_nohelper(tmp, vA);
68 u2 vA = INST_A(inst);
70 set_VR_to_imm(vA, OpndSize_32, tmp);
79 u2 vA = INST_AA(inst);
80 set_VR_to_imm(vA, OpndSize_32, (s2)BBBB);
88 u2 vA = INST_AA(inst);
91 set_VR_to_imm(vA, OpndSize_32, (s4)tmp)
    [all...]
LowerObject.cpp 35 int check_cast_nohelper(u2 vA, u4 tmp, bool instance, u2 vDest) {
36 get_virtual_reg(vA, OpndSize_32, 1, false); //object
169 int common_check_cast_instance_of(u2 vA, u4 tmp, bool instance, u2 vDest) {
170 return check_cast_nohelper(vA, tmp, instance, vDest);
180 u2 vA = INST_AA(inst);
182 common_check_cast_instance_of(vA, tmp, false, 0);
191 u2 vA = INST_A(inst);
193 common_check_cast_instance_of(vB, tmp, true, vA);
203 int monitor_enter_nohelper(u2 vA) {
207 requestVRFreeDelay(vA,VRDELAY_NULLCHECK); // Request VR delay before transfer to temporar
    [all...]
BytecodeVisitor.cpp 418 void touchOneVR(u2 vA, LowOpndRegType type) {
419 int index = searchCompileTable(LowOpndRegType_virtual | type, vA);
421 ALOGE("virtual reg %d type %d not found in touchOneVR", vA, type);
429 void touchTwoVRs(u2 vA, u2 vB, LowOpndRegType type) {
430 int index = searchCompileTable(LowOpndRegType_virtual | type, vA);
432 ALOGE("virtual reg vA %d type %d not found in touchTwoVRs", vA, type);
529 //! if a bytecode uses vA (const), and updates vA to non const, getConstInfo will return false and update constWorklist to make sure when lowering the bytecode, vA is treated as constan
    [all...]
LowerGetPut.cpp 34 int aget_common_nohelper(int flag, u2 vA, u2 vref, u2 vindex) {
85 set_virtual_reg(vA, OpndSize_64, 1, false);
88 set_virtual_reg(vA, OpndSize_32, 4, false);
96 int aget_common(int flag, u2 vA, u2 vref, u2 vindex) {
97 return aget_common_nohelper(flag, vA, vref, vindex);
107 u2 vA = INST_AA(inst);
110 int retval = aget_common(AGET, vA, vref, vindex);
118 u2 vA = INST_AA(inst);
121 int retval = aget_common(AGET_WIDE, vA, vref, vindex);
135 u2 vA = INST_AA(inst)
    [all...]
LowerInvoke.cpp 540 u2 vA = INST_A(inst); //5th argument
543 get_virtual_reg(vA, OpndSize_32, 22, false);
    [all...]
LowerAlu.cpp 33 u2 vA = INST_A(inst); //destination
37 set_virtual_reg(vA, OpndSize_32, 1, false);
45 u2 vA = INST_A(inst); //destination
49 set_virtual_reg(vA, OpndSize_32, 1, false);
58 u2 vA = INST_A(inst); //destination
63 set_virtual_reg(vA, OpndSize_64, 2, false);
71 u2 vA = INST_A(inst); //destination
76 set_virtual_reg(vA, OpndSize_64, 1, false);
85 u2 vA = INST_A(inst); //destination
89 set_virtual_reg(vA, OpndSize_32, 1, false)
    [all...]
LowerJump.cpp     [all...]
  /external/chromium_org/third_party/skia/src/sfnt/
SkOTTable_OS_2.h 31 struct VA : SkOTTableOS2_VA { } vA;
45 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::VA) == 68, sizeof_SkOTTableOS2__VA_not_68);
  /external/clang/test/CodeGen/
volatile.c 10 volatile int vA[10];
59 i=vA[2];
60 // CHECK: load volatile i32* getelementptr {{.*}} @vA
132 vA[2]=i;
134 // CHECK: store volatile i32 {{.*}}, i32* getelementptr {{.*}} @vA
  /external/skia/src/sfnt/
SkOTTable_OS_2.h 31 struct VA : SkOTTableOS2_VA { } vA;
45 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::VA) == 68, sizeof_SkOTTableOS2__VA_not_68);
  /dalvik/tests/083-jit-regressions/src/
Main.java 112 int vA = 1;
118 vA += 1;
121 if (vA == 100001) {
125 System.out.println("b5884080 fails: vA is " + vA +
  /external/chromium_org/content/browser/indexed_db/
indexed_db_leveldb_coding_unittest.cc 838 std::string vA = WrappedEncodeByte(n);
841 EXPECT_EQ(vA.size(), vB.size());
842 EXPECT_EQ(*vA.begin(), *vB.begin());
  /dalvik/dx/src/com/android/dx/ssa/
SCCP.java 273 int vA = ((CstInteger) cA).getValue();
276 constantSuccessor = (vA == 0);
279 constantSuccessor = (vA != 0);
282 constantSuccessor = (vA < 0);
285 constantSuccessor = (vA >= 0);
288 constantSuccessor = (vA <= 0);
291 constantSuccessor = (vA > 0);
304 int vA = ((CstInteger) cA).getValue();
308 constantSuccessor = (vA == vB);
311 constantSuccessor = (vA != vB)
    [all...]
  /dalvik/libdex/
InstrUtils.h 35 kFmt12x, // op vA, vB
36 kFmt11n, // op vA, #+B
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
130 u4 vA;
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SCCP.java 274 int vA = ((CstInteger) cA).getValue();
277 constantSuccessor = (vA == 0);
280 constantSuccessor = (vA != 0);
283 constantSuccessor = (vA < 0);
286 constantSuccessor = (vA >= 0);
289 constantSuccessor = (vA <= 0);
292 constantSuccessor = (vA > 0);
305 int vA = ((CstInteger) cA).getValue();
309 constantSuccessor = (vA == vB);
312 constantSuccessor = (vA != vB)
    [all...]
  /art/compiler/sea_ir/ir/
sea.cc 668 int vA = instruction_->VRegA();
669 uses.push_back(vA);
  /art/runtime/
dex_instruction.h 95 k12x, // op vA, vB
96 k11n, // op vA, #+B
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;
438 uint32_t vA;
446 inst->Decode(vA, vB, vB_wide, vC, arg);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rtasm/
rtasm_ppc.c 293 unsigned vA:5;
300 emit_vx(struct ppc_function *p, uint op2, uint vD, uint vA, uint vB,
306 inst.inst.vA = vA;
313 printf(format, vD, vB, vA);
315 printf(format, vD, vA, vB);
325 unsigned vA:5;
333 emit_vxr(struct ppc_function *p, uint op2, uint vD, uint vA, uint vB,
339 inst.inst.vA = vA;
    [all...]
  /external/mesa3d/src/gallium/auxiliary/rtasm/
rtasm_ppc.c 293 unsigned vA:5;
300 emit_vx(struct ppc_function *p, uint op2, uint vD, uint vA, uint vB,
306 inst.inst.vA = vA;
313 printf(format, vD, vB, vA);
315 printf(format, vD, vA, vB);
325 unsigned vA:5;
333 emit_vxr(struct ppc_function *p, uint op2, uint vD, uint vA, uint vB,
339 inst.inst.vA = vA;
    [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/
guest_ppc_toIR.c     [all...]
  /art/test/083-compiler-regressions/src/
Main.java 230 int vA = 1;
237 vA += 1;
240 if (vA == 100001) {
244 System.out.println("b5884080 fails: vA is " + vA +
    [all...]

Completed in 2308 milliseconds

1 2