Searched defs:insn_type (Results 1 - 1 of 1) sorted by relevance

/art/runtime/verifier/
H A Dmethod_verifier.cc3465 RegType& insn_type, bool is_primitive) {
3474 if (!is_primitive || insn_type.IsCategory1Types()) {
3493 } else if (is_primitive && !insn_type.Equals(component_type) &&
3494 !((insn_type.IsInteger() && component_type.IsFloat()) ||
3495 (insn_type.IsLong() && component_type.IsDouble()))) {
3497 << " incompatible with aget of type " << insn_type; local
3513 void MethodVerifier::VerifyPrimitivePut(RegType& target_type, RegType& insn_type, argument
3520 instruction_compatible = target_type.Equals(insn_type);
3523 instruction_compatible = insn_type.IsInteger(); // no put-float, so expect put-int
3526 instruction_compatible = insn_type
3464 VerifyAGet(const Instruction* inst, RegType& insn_type, bool is_primitive) argument
3564 VerifyAPut(const Instruction* inst, RegType& insn_type, bool is_primitive) argument
3698 VerifyISGet(const Instruction* inst, RegType& insn_type, bool is_primitive, bool is_static) argument
3764 VerifyISPut(const Instruction* inst, RegType& insn_type, bool is_primitive, bool is_static) argument
3841 VerifyIGetQuick(const Instruction* inst, RegType& insn_type, bool is_primitive) argument
3901 VerifyIPutQuick(const Instruction* inst, RegType& insn_type, bool is_primitive) argument
[all...]

Completed in 53 milliseconds