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

/art/runtime/verifier/
H A Dmethod_verifier.h538 void VerifyPrimitivePut(const RegType& target_type, const RegType& insn_type,
545 void VerifyAGet(const Instruction* inst, const RegType& insn_type,
549 void VerifyAPut(const Instruction* inst, const RegType& insn_type,
565 void VerifyISFieldAccess(const Instruction* inst, const RegType& insn_type,
570 void VerifyQuickFieldAccess(const Instruction* inst, const RegType& insn_type, bool is_primitive)
H A Dmethod_verifier.cc4630 const RegType& insn_type, bool is_primitive) {
4640 if (!is_primitive || insn_type.IsCategory1Types()) {
4673 } else if (is_primitive && !insn_type.Equals(component_type) &&
4674 !((insn_type.IsInteger() && component_type.IsFloat()) ||
4675 (insn_type.IsLong() && component_type.IsDouble()))) {
4677 << " incompatible with aget of type " << insn_type; local
4693 void MethodVerifier::VerifyPrimitivePut(const RegType& target_type, const RegType& insn_type, argument
4700 instruction_compatible = target_type.Equals(insn_type);
4703 instruction_compatible = insn_type.IsInteger(); // no put-float, so expect put-int
4706 instruction_compatible = insn_type
4629 VerifyAGet(const Instruction* inst, const RegType& insn_type, bool is_primitive) argument
4744 VerifyAPut(const Instruction* inst, const RegType& insn_type, bool is_primitive) argument
4931 VerifyISFieldAccess(const Instruction* inst, const RegType& insn_type, bool is_primitive, bool is_static) argument
5080 VerifyQuickFieldAccess(const Instruction* inst, const RegType& insn_type, bool is_primitive) argument
[all...]

Completed in 39 milliseconds