Home | History | Annotate | Download | only in entrypoints

Lines Matching refs:Array

56       ThrowRuntimeException("Bad filled array request for type %s",
63 "Found type %s; filled-new-array not implemented for anything but 'int'",
79 // Helper function to allocate array for FILLED_NEW_ARRAY.
80 mirror::Array* CheckAndAllocArrayFromCode(uint32_t type_idx, mirror::ArtMethod* referrer,
89 // Always go slow path for now, filled new array is not common.
93 return mirror::Array::Alloc<false>(self, klass, component_count, klass->GetComponentSize(),
97 // Helper function to allocate array for FILLED_NEW_ARRAY.
98 mirror::Array* CheckAndAllocArrayFromCodeInstrumented(uint32_t type_idx,
112 return mirror::Array::Alloc<true>(self, klass, component_count, klass->GetComponentSize(),
239 // Build argument array possibly triggering GC.