HomeSort by relevance Sort by last modified time
    Searched refs:LUI (Results 1 - 10 of 10) sorted by null

  /external/valgrind/main/none/tests/mips64/
logical_instructions.c 6 AND=0, ANDI, LUI, NOR,
40 case LUI:
44 TEST6("lui $t0, 0xffff", 0xffff, t0);
45 TEST6("lui $a0, 0x0", 0x0, a0);
46 TEST6("lui $t9, 0xff", 0xff, t9);
47 TEST6("lui $v0, 0xfff", 0xfff, v0);
48 TEST6("lui $s0, 0x2", 0x2, s0);
  /external/chromium_org/v8/src/mips/
constants-mips.cc 301 case LUI:
assembler-mips.cc 181 // specially coded on MIPS means that it is a lui/ori instruction, and that is
543 return opcode == LUI;
1441 void Assembler::lui(Register rd, int32_t j) { function in class:v8::Assembler
    [all...]
assembler-mips-inl.h 149 // For an instruction like LUI/ORI where the target bits are mixed into the
352 bool patched_return = ((instr0 & kOpcodeMask) == LUI &&
constants-mips.h 281 LUI = ((1 << 3) + 7) << kOpcodeShift,
simulator-mips.cc     [all...]
macro-assembler-mips.cc 911 lui(rd, (j.imm32_ >> kLuiShift) & kImm16Mask);
913 lui(rd, (j.imm32_ >> kLuiShift) & kImm16Mask);
922 lui(rd, (j.imm32_ >> kLuiShift) & kImm16Mask);
    [all...]
  /external/llvm/lib/IR/
LegacyPassManager.cpp 557 for (DenseMap<Pass *, Pass *>::iterator LUI = LastUser.begin(),
558 LUE = LastUser.end(); LUI != LUE; ++LUI) {
559 if (LUI->second == AP)
562 LastUser[LUI->first] = P;
    [all...]
  /system/core/libpixelflinger/codeflinger/
MIPSAssembler.cpp 385 mMips->LUI(tmpReg, (amode.value >> 16));
499 mMips->LUI(Rd, (amode.value >> 16));
531 mMips->LUI(Rd, (amode.value >> 16));
    [all...]
MIPSAssembler.h 342 void LUI(int Rt, int16_t offset);

Completed in 2632 milliseconds