Searched refs:is_primitive (Results 1 - 4 of 4) sorted by relevance

/art/runtime/entrypoints/
H A Dentrypoint_utils-inl.h326 bool is_primitive; local
330 case InstanceObjectRead: is_primitive = false; is_set = false; is_static = false; break;
331 case InstanceObjectWrite: is_primitive = false; is_set = true; is_static = false; break;
332 case InstancePrimitiveRead: is_primitive = true; is_set = false; is_static = false; break;
333 case InstancePrimitiveWrite: is_primitive = true; is_set = true; is_static = false; break;
334 case StaticObjectRead: is_primitive = false; is_set = false; is_static = true; break;
335 case StaticObjectWrite: is_primitive = false; is_set = true; is_static = true; break;
336 case StaticPrimitiveRead: is_primitive = true; is_set = false; is_static = true; break;
338 default: is_primitive = true; is_set = true; is_static = true; break;
387 if (UNLIKELY(resolved_field->IsPrimitiveType() != is_primitive ||
637 bool is_primitive; local
[all...]
/art/runtime/verifier/
H A Dmethod_verifier.h543 // bottom type inferred from the type of instruction is used. is_primitive is false for an
546 bool is_primitive) REQUIRES_SHARED(Locks::mutator_lock_);
550 bool is_primitive) REQUIRES_SHARED(Locks::mutator_lock_);
566 bool is_primitive, bool is_static)
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()) {
4653 if (is_primitive) {
4667 if (!component_type.IsReferenceTypes() && !is_primitive) {
4670 } else if (component_type.IsNonZeroReferenceTypes() && is_primitive) {
4673 } else if (is_primitive && !insn_type.Equals(component_type) &&
4745 const RegType& insn_type, bool is_primitive) {
4776 if (is_primitive) {
4786 if (is_primitive) {
4932 bool is_primitive, boo
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...]
/art/runtime/
H A Dclass_linker.cc7777 bool is_primitive = type != Primitive::kPrimNot; local
7780 is_primitive = true; // We lied above, so we have to expect a lie here.
7783 if (is_primitive) {

Completed in 137 milliseconds