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

1 2 3 4 5 6

  /external/neven/Embedded/common/src/b_BitFeatureEm/
Functions.h 43 #define bbf_BIT_SUM_8( vA ) ( bbf_bit8TblG[ vA ] )
46 #define bbf_BIT_SUM_16( vA ) ( bbf_bit8TblG[ vA & 0x00FF ] + bbf_bit8TblG[ ( vA >> 8 ) & 0x00FF ] )
49 #define bbf_BIT_SUM_32( vA ) ( bbf_bit8TblG[ vA & 0x00FF ] + bbf_bit8TblG[ ( vA >> 8 ) & 0x00FF ] + bbf_bit8TblG[ ( vA >> 16 ) & 0x00FF ] + bbf_bit8TblG[ ( vA >> 24 ) & 0x00FF ]
    [all...]
  /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...]
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...]
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...]
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...]
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...]
  /dalvik/vm/compiler/template/armv5te-vfp/
funop.S 11 /* unop vA, vB */
14 fsts s1, [r0] @ vA<- s1
funopNarrower.S 11 /* unop vA, vB */
14 fsts s0, [r0] @ vA<- s0
funopWider.S 11 /* unop vA, vB */
14 fstd d0, [r0] @ vA<- d0
  /dalvik/vm/compiler/template/mips/
funopWider.S 12 /* unop vA, vB */
20 STORE64(rRESULT0, rRESULT1, rOBJ) # vA/vA+1<- v0/v1
27 $st_result # vA/vA+1<- fv0/fv0f
funopNarrower.S 25 STORE(v0, rINST) # vA<- v0
31 STORE_F(fv0, rINST) # vA<- fv0
  /dalvik/vm/mterp/mips/
OP_IGET_QUICK.S 4 # op vA, vB, offset /* CCCC */
OP_IGET_WIDE_QUICK.S 3 # iget-wide-quick vA, vB, offset /* CCCC */
unflopWider.S 9 /* unop vA, vB */
24 STORE64(rRESULT0, rRESULT1, rOBJ) # vA/vA+1 <- a0/a1
29 $st_result # vA/vA+1 <- a0/a1
  /dalvik/vm/mterp/x86/
OP_ADD_DOUBLE_2ADDR.S 9 movq (rFP, %ecx, 4), %xmm0 # %xmm0<- vA
11 addsd %xmm1, %xmm0 # %xmm0<- vA op vB
13 movq %xmm0, (rFP, %ecx, 4) # vA<- %xmm0; result
OP_MUL_DOUBLE_2ADDR.S 10 movq (rFP, %ecx, 4), %xmm0 # %xmm0<- vA
12 mulsd %xmm1, %xmm0 # %xmm0<- vA op vB
14 movq %xmm0, (rFP, %ecx, 4) # vA<- %xmm0; result
OP_SUB_DOUBLE_2ADDR.S 10 movq (rFP, %ecx, 4), %xmm0 # %xmm0<- vA
12 subsd %xmm1, %xmm0 # %xmm0<- vA op vB
14 movq %xmm0, (rFP, %ecx, 4) # vA<- %xmm0; result
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rtasm/
rtasm_ppc.h 94 ppc_vaddfp(struct ppc_function *p,uint vD, uint vA, uint vB);
98 ppc_vsubfp(struct ppc_function *p, uint vD, uint vA, uint vB);
102 ppc_vminfp(struct ppc_function *p, uint vD, uint vA, uint vB);
106 ppc_vmaxfp(struct ppc_function *p, uint vD, uint vA, uint vB);
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);
118 ppc_vcmpgtfpx(struct ppc_function *p, uint vD, uint vA, uint vB);
122 ppc_vcmpgefpx(struct ppc_function *p, uint vD, uint vA, uint vB)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/rtasm/
rtasm_ppc.h 94 ppc_vaddfp(struct ppc_function *p,uint vD, uint vA, uint vB);
98 ppc_vsubfp(struct ppc_function *p, uint vD, uint vA, uint vB);
102 ppc_vminfp(struct ppc_function *p, uint vD, uint vA, uint vB);
106 ppc_vmaxfp(struct ppc_function *p, uint vD, uint vA, uint vB);
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);
118 ppc_vcmpgtfpx(struct ppc_function *p, uint vD, uint vA, uint vB);
122 ppc_vcmpgefpx(struct ppc_function *p, uint vD, uint vA, uint vB)
    [all...]
  /dalvik/vm/mterp/arm-vfp/
fbinop2addr.S 8 /* binop/2addr vA, vB */
14 VREG_INDEX_TO_ADDR(r9, r9) @ r9<- &vA
16 flds s0, [r9] @ s0<- vA
fbinopWide2addr.S 9 /* binop/2addr vA, vB */
15 VREG_INDEX_TO_ADDR(r9, r9) @ r9<- &vA
17 fldd d0, [r9] @ d0<- vA
funop.S 7 /* unop vA, vB */
16 VREG_INDEX_TO_ADDR(r9, r9) @ r9<- &vA
17 fsts s1, [r9] @ vA<- s1
funopNarrower.S 7 /* unop vA, vB */
16 VREG_INDEX_TO_ADDR(r9, r9) @ r9<- &vA
17 fsts s0, [r9] @ vA<- s0
funopWider.S 7 /* unop vA, vB */
16 VREG_INDEX_TO_ADDR(r9, r9) @ r9<- &vA
17 fstd d0, [r9] @ vA<- d0
  /dalvik/vm/mterp/armv6t2/
unopWider.S 9 /* unop vA, vB */
18 stmia r9, {r0-r1} @ vA/vA+1<- r0/r1

Completed in 1317 milliseconds

1 2 3 4 5 6