Home
last modified time | relevance | path

Searched refs:isShortTerm (Results 1 – 4 of 4) sorted by relevance

/dalvik/vm/compiler/codegen/x86/
DNcgAot.h32 bool isShortTerm);
34 const char* target, bool isShortTerm);
DNcgAot.cpp124 bool isShortTerm) { in conditional_jump_global_API() argument
129 conditional_jump(cc, target, isShortTerm); in conditional_jump_global_API()
133 const char* target, bool isShortTerm) { in unconditional_jump_global_API() argument
138 unconditional_jump(target, isShortTerm); in unconditional_jump_global_API()
DLowerJump.cpp457 int getRelativeOffset(const char* target, bool isShortTerm, JmpCall_type type, bool* unknown, OpndS… in getRelativeOffset() argument
459 if(isShortTerm) targetPtrInStream = findCodeForShortLabel(target); in getRelativeOffset()
468 if(isShortTerm) { in getRelativeOffset()
506 else if (!isShortTerm) { in getRelativeOffset()
531 void conditional_jump(ConditionCode cc, const char* target, bool isShortTerm) { in conditional_jump() argument
540 imm = getRelativeOffset(target, isShortTerm, JmpCall_cond, &unknown, &size); in conditional_jump()
541 dump_label(m, size, imm, target, isShortTerm); in conditional_jump()
555 void unconditional_jump(const char* target, bool isShortTerm) { in unconditional_jump() argument
575 imm = getRelativeOffset(target, isShortTerm, JmpCall_uncond, &unknown, &size); in unconditional_jump()
576 dump_label(m, size, imm, target, isShortTerm); in unconditional_jump()
DLower.h677 void conditional_jump(ConditionCode cc, const char* target, bool isShortTerm);
678 void unconditional_jump(const char* target, bool isShortTerm);
1231 int getRelativeOffset(const char* target, bool isShortTerm, JmpCall_type type, bool* unknown,