/dalvik/vm/native/ |
D | sun_misc_Unsafe.c | 70 volatile int32_t* address = (volatile int32_t*) (((u1*) obj) + offset); in Dalvik_sun_misc_Unsafe_compareAndSwapInt() local 73 int result = android_atomic_release_cas(expectedValue, newValue, address); in Dalvik_sun_misc_Unsafe_compareAndSwapInt() 90 volatile int64_t* address = (volatile int64_t*) (((u1*) obj) + offset); in Dalvik_sun_misc_Unsafe_compareAndSwapLong() local 94 dvmQuasiAtomicCas64(expectedValue, newValue, address); in Dalvik_sun_misc_Unsafe_compareAndSwapLong() 111 int32_t* address = (int32_t*) (((u1*) obj) + offset); in Dalvik_sun_misc_Unsafe_compareAndSwapObject() local 115 (int32_t) newValue, address); in Dalvik_sun_misc_Unsafe_compareAndSwapObject() 116 dvmWriteBarrierField(obj, address); in Dalvik_sun_misc_Unsafe_compareAndSwapObject() 129 volatile int32_t* address = (volatile int32_t*) (((u1*) obj) + offset); in Dalvik_sun_misc_Unsafe_getIntVolatile() local 131 int32_t value = android_atomic_acquire_load(address); in Dalvik_sun_misc_Unsafe_getIntVolatile() 145 volatile int32_t* address = (volatile int32_t*) (((u1*) obj) + offset); in Dalvik_sun_misc_Unsafe_putIntVolatile() local [all …]
|
/dalvik/dx/src/com/android/dx/rop/code/ |
D | SourcePosition.java | 38 private final int address; field in SourcePosition 56 public SourcePosition(CstUtf8 sourceFile, int address, int line) { in SourcePosition() argument 57 if (address < -1) { in SourcePosition() 66 this.address = address; in SourcePosition() 86 if (address < 0) { in toString() 89 sb.append(Hex.u2(address)); in toString() 108 return (address == pos.address) && sameLineAndFile(pos); in equals() 114 return sourceFile.hashCode() + address + line; in hashCode() 156 return address; in getAddress()
|
/dalvik/dx/src/com/android/dx/dex/code/ |
D | LocalList.java | 122 private final int address; field in LocalList.Entry 141 public Entry(int address, Disposition disposition, RegisterSpec spec) { in Entry() argument 142 if (address < 0) { in Entry() 160 this.address = address; in Entry() 168 return Integer.toHexString(address) + " " + disposition + " " + in toString() 190 if (address < other.address) { in compareTo() 192 } else if (address > other.address) { in compareTo() 212 return address; in getAddress() 315 return new Entry(address, disposition, spec); in withDisposition() 494 private void aboutToProcess(int address, int reg) { in aboutToProcess() argument [all …]
|
D | PositionList.java | 150 private final int address; field in PositionList.Entry 161 public Entry (int address, SourcePosition position) { in Entry() argument 162 if (address < 0) { in Entry() 170 this.address = address; in Entry() 180 return address; in getAddress()
|
D | DalvInsn.java | 34 private int address; field in DalvInsn 106 this.address = -1; in DalvInsn() 149 return (address >= 0); in hasAddress() 161 if (address < 0) { in getAddress() 165 return address; in getAddress() 295 if (address != -1) { in identifierString() 296 return String.format("%04x", address); in identifierString() 336 public final void setAddress(int address) { in setAddress() argument 337 if (address < 0) { in setAddress() 341 this.address = address; in setAddress()
|
D | InsnFormat.java | 250 int address = ti.getTargetAddress(); in branchString() local 252 return (address == (char) address) ? Hex.u2(address) : Hex.u4(address); in branchString()
|
D | OutputFinisher.java | 640 int address = 0; in assignAddresses() local 645 insn.setAddress(address); in assignAddresses() 646 address += insn.codeSize(); in assignAddresses()
|
/dalvik/libdex/ |
D | DexCatch.h | 32 u4 address; /* handler address */ member 61 pIterator->handler.address = 0; in dexCatchIteratorClear() 104 pIterator->handler.address = readUnsignedLeb128(&pIterator->pEncodedData); in dexCatchIteratorNext() 115 u4 address); 121 const DexCode* pCode, u4 address) { in dexFindCatchHandler() argument 134 if (address < start) { in dexFindCatchHandler() 140 if (address >= end) { in dexFindCatchHandler() 149 address); in dexFindCatchHandler()
|
D | DexCatch.c | 53 u4 address) { in dexFindCatchHandlerOffset0() argument 63 if (address < start) { in dexFindCatchHandlerOffset0() 70 if (address >= end) { in dexFindCatchHandlerOffset0()
|
D | DexFile.c | 860 u4 address = 0; in dexDecodeDebugInfo() local 922 localInReg[reg].startAddress = address; in dexDecodeDebugInfo() 936 address += readUnsignedLeb128(&stream); in dexDecodeDebugInfo() 949 emitLocalCbIfLive (cnxt, reg, address, in dexDecodeDebugInfo() 960 localInReg[reg].startAddress = address; in dexDecodeDebugInfo() 968 emitLocalCbIfLive (cnxt, reg, address, localInReg, localCb); in dexDecodeDebugInfo() 986 localInReg[reg].startAddress = address; in dexDecodeDebugInfo() 999 address += adjopcode / DBG_LINE_RANGE; in dexDecodeDebugInfo() 1004 done = posCb(cnxt, address, line); in dexDecodeDebugInfo()
|
/dalvik/dx/src/com/android/dx/dex/file/ |
D | DebugInfoDecoder.java | 78 private int address = 0; field in DebugInfoDecoder 131 public int address; field in DebugInfoDecoder.PositionEntry 136 public PositionEntry(int address, int line) { in PositionEntry() argument 137 this.address = address; in PositionEntry() 147 public int address; field in DebugInfoDecoder.LocalEntry 164 public LocalEntry(int address, boolean isStart, int reg, int nameIndex, in LocalEntry() argument 166 this.address = address; in LocalEntry() 176 address, isStart ? "start" : "end", reg, in toString() 298 address, true, reg, nameIdx, typeIdx, 0); in decode0() 311 address, true, reg, nameIdx, typeIdx, sigIdx); in decode0() [all …]
|
D | DebugInfoEncoder.java | 73 private int address = 0; field in DebugInfoEncoder 203 annotate(1, String.format("%04x: prologue end",address)); in convert0() 259 emitAdvancePc(next - address); in convert0() 285 && (locals.get(curLocalIdx).getAddress() == address)) { in emitLocalsAtAddress() 354 == address)) { in emitPositionsAtAddress() 622 address, entryAnnotationString(entry))); in emitLocalRestart() 700 String.format("%04x: +local %s", address, in emitLocalStart() 730 String.format("%04x: +localx %s", address, in emitLocalStartExtended() 755 String.format("%04x: -local %s", address, in emitLocalEnd() 782 int deltaAddress = newAddress - address; in emitPosition() [all …]
|
/dalvik/vm/compiler/template/armv5te/ |
D | TEMPLATE_CMPL_DOUBLE.S | 18 mov r11, lr @ save return address
|
D | TEMPLATE_CMPL_FLOAT.S | 38 mov r11, lr @ save return address
|
D | TEMPLATE_INVOKE_METHOD_CHAIN.S | 17 add r12, lr, #2 @ setup the punt-to-interp address
|
/dalvik/tools/gdbjithelper/ |
D | README.txt | 4 code cache address range*, copy them into codePC and codeLR in gdbjithelper.c, 8 the crashing address is not contained by any shared library.
|
/dalvik/vm/interp/ |
D | Stack.c | 784 u4 address; member 788 static int lineNumForPcCb(void *cnxt, u4 address, u4 lineNum) in lineNumForPcCb() argument 796 if (address > pContext->address) { in lineNumForPcCb() 804 return (address == pContext->address) ? 1 : 0; in lineNumForPcCb() 827 context.address = relPc; in dvmLineNumFromPC()
|
/dalvik/vm/mterp/x86/ |
D | OP_IPUT_WIDE.S | 57 leal (%ecx,%eax,1),%eax # eax<- address of field
|
D | OP_IGET_WIDE.S | 57 leal (%ecx,%eax,1),%eax # eax<- address of field
|
/dalvik/vm/mterp/armv5te/ |
D | OP_IGET_WIDE.S | 38 add r0, r9, r3 @ r0<- address of field
|
D | OP_IPUT_WIDE.S | 41 add r2, r9, r3 @ r2<- target address
|
/dalvik/vm/mterp/armv4t/ |
D | OP_IGET_WIDE.S | 38 add r0, r9, r3 @ r0<- address of field
|
/dalvik/vm/mterp/x86-atom/ |
D | OP_EXECUTE_INLINE.S | 79 movl $$gDvmInlineOpsTable, %eax # %eax<- address for table of inline operations
|
/dalvik/vm/compiler/template/out/ |
D | CompilerTemplateAsm-armv5te.S | 489 mov r11, lr @ save return address 531 mov r11, lr @ save return address 653 mov r11, lr @ save return address
|
/dalvik/dexlist/ |
D | DexList.c | 79 static int positionsCallback(void* cnxt, u4 address, u4 lineNum) in positionsCallback() argument
|