Lines Matching defs:instr
33 inline int DecodeConstantPoolLength(int instr) {
34 DCHECK_EQ(instr & kConstantPoolMarkerMask, kConstantPoolMarker);
35 return ((instr >> 4) & 0xfff0) | (instr & 0xf);
412 // Instruction* instr = Instruction::At(ptr);
413 // int type = instr->TypeValue();
414 // return ((type == 0) || (type == 1)) && instr->HasS();
430 static inline return_type Name(Instr instr) { \
431 char* temp = reinterpret_cast<char*>(&instr); \
468 // e.g. if instr is the 'addgt r0, r1, r2' instruction, encoded as
469 // 0xC0810002 ConditionField(instr) will return 0xC0000000.
471 // e.g. if instr is the 'addgt r0, r1, r2' instruction, encoded as
472 // 0xC0810002 ConditionField(instr) will return 0xC.