Home
last modified time | relevance | path

Searched refs:instruction_compatible (Results 1 – 1 of 1) sorted by relevance

/art/runtime/verifier/
Dmethod_verifier.cc4546 bool instruction_compatible; in VerifyPrimitivePut() local
4550 instruction_compatible = target_type.Equals(insn_type); in VerifyPrimitivePut()
4553 instruction_compatible = insn_type.IsInteger(); // no put-float, so expect put-int in VerifyPrimitivePut()
4556 instruction_compatible = insn_type.IsLong(); in VerifyPrimitivePut()
4559 if (instruction_compatible && work_line_->NumRegs() > vregA + 1) { in VerifyPrimitivePut()
4566 instruction_compatible = insn_type.IsLong(); // no put-double, so expect put-long in VerifyPrimitivePut()
4569 if (instruction_compatible && work_line_->NumRegs() > vregA + 1) { in VerifyPrimitivePut()
4576 instruction_compatible = false; // reference with primitive store in VerifyPrimitivePut()
4579 if (!instruction_compatible) { in VerifyPrimitivePut()