HomeSort by relevance Sort by last modified time
    Searched refs:relativeNCG (Results 1 - 3 of 3) sorted by null

  /dalvik/vm/compiler/codegen/x86/
LowerJump.cpp 81 int updateJumpInst(char* jumpInst, OpndSize immSize, int relativeNCG) {
83 ALOGI("update jump inst @ %p with %d", jumpInst, relativeNCG);
86 if(relativeNCG >= 128 || relativeNCG < -128) {
92 if(relativeNCG >= 32768 || relativeNCG < -32768) {
97 encoder_update_imm(relativeNCG, jumpInst);
143 int relativeNCG = stream - ptr->codePtr;
145 relativeNCG -= instSize; //size of the instruction
147 ALOGI("perform work short-term %p for label %s relative %d", ptr->codePtr, label, relativeNCG);
    [all...]
CodegenInterface.cpp 277 int relativeNCG = targetId;
278 relativeNCG = getRelativeNCG(targetId, JmpCall_uncond, &unknown, &size);
279 unconditional_jump_int(relativeNCG, size);
287 int relativeNCG = targetId;
288 relativeNCG = getRelativeNCG(targetId, JmpCall_cond, &unknown, &size);
289 conditional_jump_int(cc, relativeNCG, size);
    [all...]
LowerInvoke.cpp 68 int relativeNCG = stream - streamMisPred;
70 relativeNCG -= instSize; //size of the instruction
71 updateJumpInst(streamMisPred, OpndSize_8, relativeNCG);
    [all...]

Completed in 36 milliseconds