Lines Matching defs:lui
208 // specially coded on MIPS means that it is a lui/ori instruction, and that is
558 return opcode == LUI;
1350 lui(at, (src.offset_ >> kLuiShift) & kImm16Mask);
1456 void Assembler::lui(Register rd, int32_t j) {
1458 GenInstrImmediate(LUI, zero_reg, rd, j);
2114 lui(at, (imm32 & kHiMask) >> kLuiShift);
2141 // Interpret 2 instructions generated by li: lui/ori
2142 if ((GetOpcodeField(instr1) == LUI) && (GetOpcodeField(instr2) == ORI)) {
2163 // On Mips, a target address is stored in a lui/ori instruction pair, each
2179 CHECK((GetOpcodeField(instr1) == LUI && GetOpcodeField(instr2) == ORI));
2182 // Must use 2 instructions to insure patchable code => just use lui and ori.
2183 // lui rt, upper-16.
2185 *p = LUI | rt_code | ((itarget & kHiMask) >> kLuiShift);
2270 // Address pc points to lui/ori instructions.
2281 ASSERT(GetOpcodeField(instr1) == LUI);
2289 ASSERT(GetOpcodeField(instr1) == LUI);