Searched refs:codePtr (Results 1 – 6 of 6) sorted by relevance
/dalvik/vm/compiler/codegen/x86/ |
D | LowerJump.cpp | 116 item->codePtr = stream; in insertLabel() 132 item->codePtr = stream; in insertLabel() 143 int relativeNCG = stream - ptr->codePtr; in insertLabel() 144 unsigned instSize = encoder_get_inst_size(ptr->codePtr); in insertLabel() 147 … ALOGI("perform work short-term %p for label %s relative %d", ptr->codePtr, label, relativeNCG); in insertLabel() 149 updateJumpInst(ptr->codePtr, ptr->size, relativeNCG); in insertLabel() 177 return ptr->codePtr; in findCodeForLabel() 191 return ptr->codePtr; in findCodeForShortLabel() 204 item->codePtr = stream; in insertLabelWorklist() 221 item->codePtr = stream; in insertShortWorklist() [all …]
|
D | Lower.h | 453 char* codePtr; //code corresponding to the label or code that uses the label member 468 char* codePtr; //code for native jump instruction member 482 char* codePtr; //code for native instruction add_imm_reg imm, %edx member 1146 int imm, char* codePtr); 1204 bool lowerByteCodeJit(const Method* method, const u2* codePtr, MIR* mir);
|
D | Lower.cpp | 411 bool lowerByteCodeJit(const Method* method, const u2* codePtr, MIR* mir) { in lowerByteCodeJit() argument 412 rPC = (u2*)codePtr; in lowerByteCodeJit()
|
D | CodegenInterface.cpp | 1233 const u2 *codePtr; in dvmCompilerMIR2LIR() local 1283 codePtr = startCodePtr + mir->offset; in dvmCompilerMIR2LIR()
|
D | LowerHelper.cpp | 265 int imm, char* codePtr) { in dump_imm_with_codeaddr() argument 266 encoder_imm(m, size, imm, codePtr); in dump_imm_with_codeaddr()
|
/dalvik/vm/compiler/ |
D | Frontend.cpp | 24 static inline bool contentIsInsn(const u2 *codePtr) { in contentIsInsn() argument 25 u2 instr = *codePtr; in contentIsInsn() 38 static inline int parseInsn(const u2 *codePtr, DecodedInstruction *decInsn, in parseInsn() argument 42 if (!contentIsInsn(codePtr)) { in parseInsn() 46 u2 instr = *codePtr; in parseInsn() 49 dexDecodeInstruction(codePtr, decInsn); in parseInsn() 52 ALOGD("%p: %#06x %s", codePtr, opcode, decodedString); in parseInsn() 276 const u2 *codePtr = dexCode->insns; in dvmCompilerAnalyzeMethodBody() local 329 while (codePtr < codeEnd) { in dvmCompilerAnalyzeMethodBody() 331 int width = parseInsn(codePtr, &dalvikInsn, false); in dvmCompilerAnalyzeMethodBody() [all …]
|