Home | History | Annotate | Download | only in quick

Lines Matching refs:qpoints

153 void SetQuickAllocEntryPoints##suffix(QuickEntryPoints* qpoints, bool instrumented) { \
155 qpoints->pAllocArrayResolved = art_quick_alloc_array_resolved##suffix##_instrumented; \
156 qpoints->pAllocArrayResolved8 = art_quick_alloc_array_resolved8##suffix##_instrumented; \
157 qpoints->pAllocArrayResolved16 = art_quick_alloc_array_resolved16##suffix##_instrumented; \
158 qpoints->pAllocArrayResolved32 = art_quick_alloc_array_resolved32##suffix##_instrumented; \
159 qpoints->pAllocArrayResolved64 = art_quick_alloc_array_resolved64##suffix##_instrumented; \
160 qpoints->pAllocObjectResolved = art_quick_alloc_object_resolved##suffix##_instrumented; \
161 qpoints->pAllocObjectInitialized = art_quick_alloc_object_initialized##suffix##_instrumented; \
162 qpoints->pAllocObjectWithChecks = art_quick_alloc_object_with_checks##suffix##_instrumented; \
163 qpoints->pAllocStringFromBytes = art_quick_alloc_string_from_bytes##suffix##_instrumented; \
164 qpoints->pAllocStringFromChars = art_quick_alloc_string_from_chars##suffix##_instrumented; \
165 qpoints->pAllocStringFromString = art_quick_alloc_string_from_string##suffix##_instrumented; \
167 qpoints->pAllocArrayResolved = art_quick_alloc_array_resolved##suffix; \
168 qpoints->pAllocArrayResolved8 = art_quick_alloc_array_resolved8##suffix; \
169 qpoints->pAllocArrayResolved16 = art_quick_alloc_array_resolved16##suffix; \
170 qpoints->pAllocArrayResolved32 = art_quick_alloc_array_resolved32##suffix; \
171 qpoints->pAllocArrayResolved64 = art_quick_alloc_array_resolved64##suffix; \
172 qpoints->pAllocObjectResolved = art_quick_alloc_object_resolved##suffix; \
173 qpoints->pAllocObjectInitialized = art_quick_alloc_object_initialized##suffix; \
174 qpoints->pAllocObjectWithChecks = art_quick_alloc_object_with_checks##suffix; \
175 qpoints->pAllocStringFromBytes = art_quick_alloc_string_from_bytes##suffix; \
176 qpoints->pAllocStringFromChars = art_quick_alloc_string_from_chars##suffix; \
177 qpoints->pAllocStringFromString = art_quick_alloc_string_from_string##suffix; \
202 void ResetQuickAllocEntryPoints(QuickEntryPoints* qpoints, bool is_marking) {
206 SetQuickAllocEntryPoints_dlmalloc(qpoints, entry_points_instrumented);
210 SetQuickAllocEntryPoints_rosalloc(qpoints, entry_points_instrumented);
215 SetQuickAllocEntryPoints_bump_pointer(qpoints, entry_points_instrumented);
220 SetQuickAllocEntryPoints_tlab(qpoints, entry_points_instrumented);
225 SetQuickAllocEntryPoints_region(qpoints, entry_points_instrumented);
231 SetQuickAllocEntryPoints_region_tlab(qpoints, entry_points_instrumented);
234 SetQuickAllocEntryPoints_tlab(qpoints, entry_points_instrumented);
242 UNUSED(qpoints);