Home
last modified time | relevance | path

Searched refs:instr_lui (Results 1 - 3 of 3) sorted by relevance

/third_party/node/deps/v8/src/codegen/mips/
H A Dassembler-mips.cc740 uint32_t Assembler::CreateTargetAddress(Instr instr_lui, Instr instr_jic) { in CreateTargetAddress() argument
741 DCHECK(IsLui(instr_lui) && IsJicOrJialc(instr_jic)); in CreateTargetAddress()
743 int16_t lui_offset = GetImmediate16(instr_lui); in CreateTargetAddress()
782 void Assembler::PatchLuiOriImmediate(int pc, int32_t imm, Instr instr_lui, in PatchLuiOriImmediate() argument
785 DCHECK(IsLui(instr_lui)); in PatchLuiOriImmediate()
788 instr_lui | ((imm >> kLuiShift) & kImm16Mask)); in PatchLuiOriImmediate()
793 void Assembler::PatchLuiOriImmediate(Address pc, int32_t imm, Instr instr_lui, in PatchLuiOriImmediate() argument
796 DCHECK(IsLui(instr_lui)); in PatchLuiOriImmediate()
798 instr_at_put(pc + offset_lui, instr_lui | ((imm >> kLuiShift) & kImm16Mask)); in PatchLuiOriImmediate()
802 int32_t Assembler::GetLuiOriImmediate(Instr instr_lui, Inst argument
838 Instr instr_lui = instr_at(pos + 2 * kInstrSize); target_at() local
850 Instr instr_lui = instr_at(pos + 0 * kInstrSize); target_at() local
918 Instr instr_lui = instr_at(pos + 2 * kInstrSize); target_at_put() local
956 Instr instr_lui = instr_at(pos + 0 * kInstrSize); target_at_put() local
[all...]
H A Dassembler-mips.h1496 static uint32_t CreateTargetAddress(Instr instr_lui, Instr instr_jic);
/third_party/node/deps/v8/src/codegen/mips64/
H A Dassembler-mips64.cc725 Instr instr_lui = instr_at(pos + 2 * kInstrSize); in target_at() local
727 DCHECK(IsLui(instr_lui)); in target_at()
729 imm32 = (instr_lui & static_cast<int32_t>(kImm16Mask)) << kLuiShift; in target_at()
739 Instr instr_lui = instr_at(pos + 0 * kInstrSize); in target_at() local
741 DCHECK(IsLui(instr_lui)); in target_at()
743 imm32 = (instr_lui & static_cast<int32_t>(kImm16Mask)) << kLuiShift; in target_at()
751 Instr instr_lui = instr_at(pos + 0 * kInstrSize); in target_at() local
758 int64_t imm = static_cast<int64_t>(instr_lui & kImm16Mask) << 48; in target_at()
823 Instr instr_lui = instr_at(pos + 0 * kInstrSize); in target_at_put() local
825 DCHECK(IsLui(instr_lui)); in target_at_put()
851 Instr instr_lui = instr_at(pos + 0 * kInstrSize); target_at_put() local
871 Instr instr_lui = instr_at(pos + 2 * kInstrSize); target_at_put() local
3684 Instr instr_lui = instr_at(pc + 0 * kInstrSize); RelocateInternalReference() local
[all...]

Completed in 14 milliseconds