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

  /dalvik/vm/compiler/codegen/x86/
LowerJump.cpp 81 int updateJumpInst(char* jumpInst, OpndSize immSize, int relativeNCG) {
85 if(immSize == OpndSize_8) { //-128 to 127
91 if(immSize == OpndSize_16) { //-2^16 to 2^16-1
197 int insertLabelWorklist(const char* label, OpndSize immSize) {
205 item->size = immSize;
214 int insertShortWorklist(const char* label, OpndSize immSize) {
222 item->size = immSize;
453 If the branch target is not handled, call insertShortWorklist or insertLabelWorklist depending on isShortTerm, unknown is set to true, immSize is set to 32 if isShortTerm is false, set to 32 if isShortTerm is true and target is check_cast_null, set to 8 otherwise.
455 If the branch target is handled, call estOpndSizeFromImm to set immSize for jump instruction, returns the value of the immediate
457 int getRelativeOffset(const char* target, bool isShortTerm, JmpCall_type type, bool* unknown, OpndSize* immSize) {
    [all...]
CodegenInterface.cpp 258 OpndSize immSize = estOpndSizeFromImm(relOffset);
259 relOffset -= getJmpCallInstSize(immSize, JmpCall_uncond);
260 dump_imm(Mnemonic_JMP, immSize, relOffset);
460 OpndSize immSize = estOpndSizeFromImm(relOffset);
461 int jumpSize = getJmpCallInstSize(immSize, JmpCall_uncond);
467 dump_imm_with_codeaddr(Mnemonic_JMP, immSize, relOffset, (char*) (&newCell)); //update newCell.branch
    [all...]
Lower.h     [all...]

Completed in 149 milliseconds