Home
last modified time | relevance | path

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

/art/runtime/verifier/
Dmethod_verifier.cc4321 const RegType& insn_type, bool is_primitive) { in VerifyAGet() argument
4331 if (!is_primitive || insn_type.IsCategory1Types()) { in VerifyAGet()
4364 } else if (is_primitive && !insn_type.Equals(component_type) && in VerifyAGet()
4365 !((insn_type.IsInteger() && component_type.IsFloat()) || in VerifyAGet()
4366 (insn_type.IsLong() && component_type.IsDouble()))) { in VerifyAGet()
4368 << " incompatible with aget of type " << insn_type; in VerifyAGet()
4384 void MethodVerifier::VerifyPrimitivePut(const RegType& target_type, const RegType& insn_type, in VerifyPrimitivePut() argument
4391 instruction_compatible = target_type.Equals(insn_type); in VerifyPrimitivePut()
4394 instruction_compatible = insn_type.IsInteger(); // no put-float, so expect put-int in VerifyPrimitivePut()
4397 instruction_compatible = insn_type.IsLong(); in VerifyPrimitivePut()
[all …]
Dmethod_verifier.h587 void VerifyPrimitivePut(const RegType& target_type, const RegType& insn_type,
594 void VerifyAGet(const Instruction* inst, const RegType& insn_type,
598 void VerifyAPut(const Instruction* inst, const RegType& insn_type,
614 void VerifyISFieldAccess(const Instruction* inst, const RegType& insn_type,
619 void VerifyQuickFieldAccess(const Instruction* inst, const RegType& insn_type, bool is_primitive)