Searched defs:instr1 (Results 1 - 2 of 2) sorted by relevance

/external/v8/src/mips/
H A Dassembler-mips-inl.h276 Instr instr1 = Assembler::instr_at(pc_ + 1 * Assembler::kInstrSize); local
279 (instr1 & kOpcodeMask) == ORI &&
H A Dassembler-mips.cc2125 Instr instr1 = instr_at(pc); local
2128 if ((GetOpcodeField(instr1) == LUI) && (GetOpcodeField(instr2) == ORI)) {
2131 (GetImmediate16(instr1) << 16) | GetImmediate16(instr2));
2164 Instr instr1 = instr_at(pc); local
2165 CHECK((GetOpcodeField(instr1) == LUI && GetOpcodeField(instr2) == ORI));
2258 Instr instr1 = instr_at(pc); local
2265 ASSERT(GetOpcodeField(instr1) == LUI);
2273 ASSERT(GetOpcodeField(instr1) == LUI);

Completed in 22 milliseconds