1/* 2 * Copyright (C) 2013 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17.macro GENERATE_ALLOC_ENTRYPOINTS c_suffix, cxx_suffix 18// Called by managed code to allocate an object. 19TWO_ARG_DOWNCALL art_quick_alloc_object\c_suffix, artAllocObjectFromCode\cxx_suffix, RETURN_IF_RESULT_IS_NON_ZERO_OR_DELIVER 20// Called by managed code to allocate an object of a resolved class. 21TWO_ARG_DOWNCALL art_quick_alloc_object_resolved\c_suffix, artAllocObjectFromCodeResolved\cxx_suffix, RETURN_IF_RESULT_IS_NON_ZERO_OR_DELIVER 22// Called by managed code to allocate an object of an initialized class. 23TWO_ARG_DOWNCALL art_quick_alloc_object_initialized\c_suffix, artAllocObjectFromCodeInitialized\cxx_suffix, RETURN_IF_RESULT_IS_NON_ZERO_OR_DELIVER 24// Called by managed code to allocate an object when the caller doesn't know whether it has access 25// to the created type. 26TWO_ARG_DOWNCALL art_quick_alloc_object_with_access_check\c_suffix, artAllocObjectFromCodeWithAccessCheck\cxx_suffix, RETURN_IF_RESULT_IS_NON_ZERO_OR_DELIVER 27// Called by managed code to allocate an array. 28THREE_ARG_DOWNCALL art_quick_alloc_array\c_suffix, artAllocArrayFromCode\cxx_suffix, RETURN_IF_RESULT_IS_NON_ZERO_OR_DELIVER 29// Called by managed code to allocate an array of a resolve class. 30THREE_ARG_DOWNCALL art_quick_alloc_array_resolved\c_suffix, artAllocArrayFromCodeResolved\cxx_suffix, RETURN_IF_RESULT_IS_NON_ZERO_OR_DELIVER 31// Called by managed code to allocate an array when the caller doesn't know whether it has access 32// to the created type. 33THREE_ARG_DOWNCALL art_quick_alloc_array_with_access_check\c_suffix, artAllocArrayFromCodeWithAccessCheck\cxx_suffix, RETURN_IF_RESULT_IS_NON_ZERO_OR_DELIVER 34// Called by managed code to allocate an array in a special case for FILLED_NEW_ARRAY. 35THREE_ARG_DOWNCALL art_quick_check_and_alloc_array\c_suffix, artCheckAndAllocArrayFromCode\cxx_suffix, RETURN_IF_RESULT_IS_NON_ZERO_OR_DELIVER 36// Called by managed code to allocate an array in a special case for FILLED_NEW_ARRAY. 37THREE_ARG_DOWNCALL art_quick_check_and_alloc_array_with_access_check\c_suffix, artCheckAndAllocArrayFromCodeWithAccessCheck\cxx_suffix, RETURN_IF_RESULT_IS_NON_ZERO_OR_DELIVER 38// Called by managed code to allocate a string from bytes 39FOUR_ARG_DOWNCALL art_quick_alloc_string_from_bytes\c_suffix, artAllocStringFromBytesFromCode\cxx_suffix, RETURN_IF_RESULT_IS_NON_ZERO_OR_DELIVER 40// Called by managed code to allocate a string from chars 41THREE_ARG_DOWNCALL art_quick_alloc_string_from_chars\c_suffix, artAllocStringFromCharsFromCode\cxx_suffix, RETURN_IF_RESULT_IS_NON_ZERO_OR_DELIVER 42// Called by managed code to allocate a string from string 43ONE_ARG_DOWNCALL art_quick_alloc_string_from_string\c_suffix, artAllocStringFromStringFromCode\cxx_suffix, RETURN_IF_RESULT_IS_NON_ZERO_OR_DELIVER 44.endm 45 46.macro GENERATE_ALL_ALLOC_ENTRYPOINTS 47GENERATE_ALLOC_ENTRYPOINTS _dlmalloc, DlMalloc 48GENERATE_ALLOC_ENTRYPOINTS _dlmalloc_instrumented, DlMallocInstrumented 49GENERATE_ALLOC_ENTRYPOINTS _rosalloc, RosAlloc 50GENERATE_ALLOC_ENTRYPOINTS _rosalloc_instrumented, RosAllocInstrumented 51GENERATE_ALLOC_ENTRYPOINTS _bump_pointer, BumpPointer 52GENERATE_ALLOC_ENTRYPOINTS _bump_pointer_instrumented, BumpPointerInstrumented 53GENERATE_ALLOC_ENTRYPOINTS _tlab, TLAB 54GENERATE_ALLOC_ENTRYPOINTS _tlab_instrumented, TLABInstrumented 55GENERATE_ALLOC_ENTRYPOINTS _region, Region 56GENERATE_ALLOC_ENTRYPOINTS _region_instrumented, RegionInstrumented 57GENERATE_ALLOC_ENTRYPOINTS _region_tlab, RegionTLAB 58GENERATE_ALLOC_ENTRYPOINTS _region_tlab_instrumented, RegionTLABInstrumented 59.endm 60