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

/art/runtime/verifier/
H A Dmethod_verifier.cc3720 const RegType& insn_type, bool is_primitive) {
3730 if (!is_primitive || insn_type.IsCategory1Types()) {
3750 } else if (is_primitive && !insn_type.Equals(component_type) &&
3751 !((insn_type.IsInteger() && component_type.IsFloat()) ||
3752 (insn_type.IsLong() && component_type.IsDouble()))) {
3754 << " incompatible with aget of type " << insn_type; local
3770 void MethodVerifier::VerifyPrimitivePut(const RegType& target_type, const RegType& insn_type, argument
3777 instruction_compatible = target_type.Equals(insn_type);
3780 instruction_compatible = insn_type.IsInteger(); // no put-float, so expect put-int
3783 instruction_compatible = insn_type
3719 VerifyAGet(const Instruction* inst, const RegType& insn_type, bool is_primitive) argument
3821 VerifyAPut(const Instruction* inst, const RegType& insn_type, bool is_primitive) argument
3974 VerifyISFieldAccess(const Instruction* inst, const RegType& insn_type, bool is_primitive, bool is_static) argument
4098 VerifyQuickFieldAccess(const Instruction* inst, const RegType& insn_type, bool is_primitive) argument
[all...]

Completed in 52 milliseconds