HomeSort by relevance Sort by last modified time
    Searched refs:immSize (Results 1 - 4 of 4) 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 267 OpndSize immSize = estOpndSizeFromImm(relOffset);
268 relOffset -= getJmpCallInstSize(immSize, JmpCall_uncond);
269 dump_imm(Mnemonic_JMP, immSize, relOffset);
469 OpndSize immSize = estOpndSizeFromImm(relOffset);
470 int jumpSize = getJmpCallInstSize(immSize, JmpCall_uncond);
476 dump_imm_with_codeaddr(Mnemonic_JMP, immSize, relOffset, (char*) (&newCell)); //update newCell.branch
    [all...]
Lower.h     [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZInstrInfo.cpp 429 LogicOp() : RegSize(0), ImmLSB(0), ImmSize(0) {}
430 LogicOp(unsigned regSize, unsigned immLSB, unsigned immSize)
431 : RegSize(regSize), ImmLSB(immLSB), ImmSize(immSize) {}
435 unsigned RegSize, ImmLSB, ImmSize;
515 Imm |= allOnes(And.RegSize) & ~(allOnes(And.ImmSize) << And.ImmLSB);

Completed in 61 milliseconds