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

  /art/runtime/interpreter/mterp/x86/
binopWide.S 11 $instr2 # ex: adcl 4(rFP,%ecx,4),%eax
binopWide2addr.S 11 $instr2 # ex: adcl %ecx,4(rFP,rINST,4)
  /external/v8/src/mips/
assembler-mips-inl.h 160 Instr instr2 = Assembler::instr_at(pc + 1 * Assembler::kInstrSize); local
162 DCHECK(Assembler::IsOri(instr2) || Assembler::IsJicOrJialc(instr2));
164 instr2 &= ~kImm16Mask;
167 if (Assembler::IsJicOrJialc(instr2)) {
175 instr2 | jic_offset_u);
181 instr2 | (imm & kImm16Mask));
245 Instr instr2 = Assembler::instr_at(pc_ + 1 * Assembler::kInstrSize); local
247 DCHECK(Assembler::IsOri(instr2) || Assembler::IsJicOrJialc(instr2));
    [all...]
assembler-mips.cc 802 Instr instr2 = instr_at(pos + 1 * Assembler::kInstrSize);
803 DCHECK(IsOri(instr2) || IsJicOrJialc(instr2));
805 if (IsJicOrJialc(instr2)) {
806 imm = CreateTargetAddress(instr1, instr2);
809 imm |= (instr2 & static_cast<int32_t>(kImm16Mask));
864 Instr instr2 = instr_at(pos + 1 * Assembler::kInstrSize);
865 DCHECK(IsOri(instr2) || IsJicOrJialc(instr2));
868 DCHECK(IsLui(instr1) && (IsJicOrJialc(instr2) || IsOri(instr2)))
2974 Instr instr2 = instr_at(pc + 1 * Assembler::kInstrSize); local
3213 Instr instr2 = instr_at(pc + kInstrSize); local
3248 Instr instr2 = instr_at(pc + kInstrSize); local
    [all...]
  /external/v8/src/arm64/
code-stubs-arm64.h 106 Instruction* instr2 = instr1->following(); local
109 DCHECK(instr2->IsPCRelAddressing() && (instr2->Rd() == xzr.code()));
115 if (instr2->IsUncondBranchImm()) {
119 DCHECK(instr2->IsPCRelAddressing());
137 Instruction* instr2 = patcher.InstructionAt(kInstructionSize); local
140 DCHECK(instr2->IsPCRelAddressing() || instr2->IsUncondBranchImm());
145 static_cast<int32_t>(instr2->ImmPCOffset());
  /external/v8/src/ppc/
assembler-ppc-inl.h 455 Instr instr2 = instr_at(pc + kInstrSize); local
457 if (IsLis(instr1) && IsOri(instr2)) {
463 static_cast<uint32_t>(instr2 & kImm16Mask));
470 (instr2 & kImm16Mask));
574 Instr instr2 = instr_at(pc + kInstrSize); local
577 instr2 &= ~kImm16Mask;
578 instr2 |= (lo_word & kImm16Mask);
580 instr_at_put(pc + kInstrSize, instr2);
635 Instr instr2 = instr_at(pc + kInstrSize); local
637 if (IsLis(instr1) && IsOri(instr2)) {
    [all...]
assembler-ppc.h     [all...]
assembler-ppc.cc 333 bool Assembler::Is64BitLoadIntoR12(Instr instr1, Instr instr2, Instr instr3,
341 return (((instr1 >> 16) == 0x3d80) && ((instr2 >> 16) == 0x618c) &&
347 bool Assembler::Is32BitLoadIntoR12(Instr instr1, Instr instr2) {
351 return (((instr1 >> 16) == 0x3d80) && ((instr2 >> 16) == 0x618c));
    [all...]
  /external/mesa3d/src/compiler/nir/
nir_instr_set.c 254 nir_instrs_equal(const nir_instr *instr1, const nir_instr *instr2)
256 if (instr1->type != instr2->type)
262 nir_alu_instr *alu2 = nir_instr_as_alu(instr2);
294 nir_tex_instr *tex2 = nir_instr_as_tex(instr2);
328 nir_load_const_instr *load2 = nir_instr_as_load_const(instr2);
341 nir_phi_instr *phi2 = nir_instr_as_phi(instr2);
361 nir_intrinsic_instr *intrinsic2 = nir_instr_as_intrinsic(instr2);
  /external/mesa3d/src/gallium/drivers/freedreno/ir3/
ir3_sched.c 73 list_for_each_entry (struct ir3_instruction, instr2, &ctx->depth_list, node) {
74 if ((instr2->data == instr) || (instr2->data == NULL_INSTR) || !instr)
75 instr2->data = NULL;
  /external/v8/src/s390/
assembler-s390.cc 345 bool Assembler::Is64BitLoadIntoIP(SixByteInstr instr1, SixByteInstr instr2) {
347 return (((instr1 >> 32) == 0xC0C8) && ((instr2 >> 32) == 0xC0C9));
    [all...]
assembler-s390.h     [all...]
  /art/compiler/utils/mips/
assembler_mips.cc 994 uint32_t instr2 = buffer_.Load<uint32_t>(pos2); local
4260 uint32_t instr2 = buffer_.Load<uint32_t>(pos2); local
    [all...]
  /external/icu/icu4c/source/test/intltest/
regextst.cpp 811 UnicodeString instr2 = "not abc"; local
822 m1->reset(instr2);
824 REGEX_ASSERT(m1->input() == instr2);
866 m1->reset(instr2);
907 m1->reset(instr2); // "not abc"
    [all...]
  /external/v8/src/compiler/s390/
code-generator-s390.cc 488 #define ASSEMBLE_BIN_OP(instr1, instr2, instr3) \
490 &MacroAssembler::instr2, &MacroAssembler::instr3)
    [all...]

Completed in 402 milliseconds