/dalvik/vm/ |
D | Bits.h | 59 u4 low, high; in get8BE() local 61 high = pSrc[0]; in get8BE() 62 high = (high << 8) | pSrc[1]; in get8BE() 63 high = (high << 8) | pSrc[2]; in get8BE() 64 high = (high << 8) | pSrc[3]; in get8BE() 70 return ((u8) high << 32) | (u8) low; in get8BE() 101 u4 low, high; in get8LE() local 107 high = pSrc[4]; in get8LE() 108 high |= pSrc[5] << 8; in get8LE() 109 high |= pSrc[6] << 16; in get8LE() [all …]
|
/dalvik/vm/mterp/armv5te/ |
D | OP_CONST_WIDE.S | 5 FETCH(r2, 3) @ r2<- hhhh (high middle) 7 FETCH(r3, 4) @ r3<- HHHH (high) 9 orr r1, r2, r3, lsl #16 @ r1<- HHHHhhhh (high word)
|
D | OP_DOUBLE_TO_INT.S | 20 mvn r3, #0xbe000000 @ maxint, as a double (high word) 31 mov r3, #0xc1000000 @ minint, as a double (high word)
|
D | OP_DOUBLE_TO_LONG.S | 15 mov r3, #0x43000000 @ maxlong, as a double (high word) 29 mov r3, #0xc3000000 @ minlong, as a double (high word)
|
D | OP_CONST.S | 5 FETCH(r1, 2) @ r1<- BBBB (high)
|
D | OP_CONST_WIDE_32.S | 5 FETCH_S(r2, 2) @ r2<- ssssBBBB (high)
|
D | OP_CMP_LONG.S | 35 blt .L${opcode}_less @ signed compare on high part
|
D | OP_CONST_STRING_JUMBO.S | 7 FETCH(r1, 2) @ r1<- BBBB (high)
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
D | InsnFormat.java | 425 protected static short codeUnit(int low, int high) { in codeUnit() argument 430 if ((high & 0xff) != high) { in codeUnit() 434 return (short) (low | (high << 8)); in codeUnit() 473 protected static int makeByte(int low, int high) { in makeByte() argument 478 if ((high & 0xf) != high) { in makeByte() 482 return low | (high << 4); in makeByte()
|
D | SwitchData.java | 212 long high = cases.get(sz - 1); in packedCodeSize() local 213 long result = ((high - low + 1)) * 2 + 4; in packedCodeSize()
|
/dalvik/dx/src/com/android/dx/dex/code/ |
D | InsnFormat.java | 525 protected static short codeUnit(int low, int high) { in codeUnit() argument 530 if ((high & 0xff) != high) { in codeUnit() 534 return (short) (low | (high << 8)); in codeUnit() 573 protected static int makeByte(int low, int high) { in makeByte() argument 578 if ((high & 0xf) != high) { in makeByte() 582 return low | (high << 4); in makeByte()
|
D | SwitchData.java | 213 long high = cases.get(sz - 1); in packedCodeSize() local 214 long result = ((high - low + 1)) * 2 + 4; in packedCodeSize()
|
/dalvik/vm/mterp/armv6t2/ |
D | OP_DOUBLE_TO_INT.S | 20 mvn r3, #0xbe000000 @ maxint, as a double (high word) 31 mov r3, #0xc1000000 @ minint, as a double (high word)
|
D | OP_DOUBLE_TO_LONG.S | 15 mov r3, #0x43000000 @ maxlong, as a double (high word) 29 mov r3, #0xc3000000 @ minlong, as a double (high word)
|
/dalvik/vm/mterp/x86-atom/ |
D | OP_CONST.S | 32 shl $$16, %edx # move BBBB to high bits
|
D | binopDivRemLong.S | 51 movl %edx, 4(rFP, rINST, 4) # vAA+1<- return high
|
D | binopDivRemLong2Addr.S | 52 movl %edx, 4(rFP, rINST, 4) # vA<- return high
|
/dalvik/vm/compiler/template/armv5te/ |
D | TEMPLATE_CMP_LONG.S | 23 blt .L${opcode}_less @ signed compare on high part
|
/dalvik/dx/tests/084-dex-high-register-moves/ |
D | info.txt | 2 high registers are moved to and from low registers with
|
/dalvik/vm/compiler/codegen/ |
D | Ralloc.h | 126 int low, int high); 129 int low, int high);
|
D | RallocUtil.cpp | 856 int low, int high, bool isSrc) in getLocWide() argument 863 highLoc = dvmCompilerGetSrc(cUnit, mir, high); in getLocWide() 866 highLoc = dvmCompilerGetDest(cUnit, mir, high); in getLocWide() 880 int low, int high) in dvmCompilerGetDestWide() argument 882 return getLocWide(cUnit, mir, low, high, false); in dvmCompilerGetDestWide() 886 int low, int high) in dvmCompilerGetSrcWide() argument 888 return getLocWide(cUnit, mir, low, high, true); in dvmCompilerGetSrcWide()
|
/dalvik/vm/native/ |
D | README.txt | 22 an optimization for a few high-volume Object calls, and should generally
|
/dalvik/dx/src/com/android/dx/cf/code/ |
D | BytecodeArray.java | 830 int high = bytes.getInt(at + 8); in parseTableswitch() local 831 int count = high - low + 1; in parseTableswitch() 834 if (low > high) { in parseTableswitch()
|
/dalvik/dx/tests/024-code-bytecode/ |
D | small-class.txt | 231 12340007 # high: 12340007
|
/dalvik/vm/compiler/template/out/ |
D | CompilerTemplateAsm-armv5te.S | 145 blt .LTEMPLATE_CMP_LONG_less @ signed compare on high part
|