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

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

Completed in 64 milliseconds