Home
last modified time | relevance | path

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

/art/runtime/verifier/
Dmethod_verifier.cc3773 bool instruction_compatible; in VerifyPrimitivePut() local
3777 instruction_compatible = target_type.Equals(insn_type); in VerifyPrimitivePut()
3780 instruction_compatible = insn_type.IsInteger(); // no put-float, so expect put-int in VerifyPrimitivePut()
3783 instruction_compatible = insn_type.IsLong(); in VerifyPrimitivePut()
3786 if (instruction_compatible && work_line_->NumRegs() > vregA + 1) { in VerifyPrimitivePut()
3793 instruction_compatible = insn_type.IsLong(); // no put-double, so expect put-long in VerifyPrimitivePut()
3796 if (instruction_compatible && work_line_->NumRegs() > vregA + 1) { in VerifyPrimitivePut()
3803 instruction_compatible = false; // reference with primitive store in VerifyPrimitivePut()
3806 if (!instruction_compatible) { in VerifyPrimitivePut()
4145 bool instruction_compatible; in VerifyQuickFieldAccess() local
[all …]