54 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C
		
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C
		
	
	
	
| /*
 | |
|  * Copyright (C) 2014 The Android Open Source Project
 | |
|  *
 | |
|  * Licensed under the Apache License, Version 2.0 (the "License");
 | |
|  * you may not use this file except in compliance with the License.
 | |
|  * You may obtain a copy of the License at
 | |
|  *
 | |
|  *      http://www.apache.org/licenses/LICENSE-2.0
 | |
|  *
 | |
|  * Unless required by applicable law or agreed to in writing, software
 | |
|  * distributed under the License is distributed on an "AS IS" BASIS,
 | |
|  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
|  * See the License for the specific language governing permissions and
 | |
|  * limitations under the License.
 | |
|  */
 | |
| 
 | |
| #ifndef ART_RUNTIME_ARCH_ARM64_ASM_SUPPORT_ARM64_H_
 | |
| #define ART_RUNTIME_ARCH_ARM64_ASM_SUPPORT_ARM64_H_
 | |
| 
 | |
| #include "asm_support.h"
 | |
| 
 | |
| #define CALLEE_SAVES_SIZE (12 * 8 + 8 * 8)
 | |
| // +8 for the ArtMethod, +8 for alignment.
 | |
| #define FRAME_SIZE_SAVE_ALL_CALLEE_SAVES (CALLEE_SAVES_SIZE + 16)
 | |
| #define FRAME_SIZE_SAVE_REFS_ONLY 96
 | |
| #define FRAME_SIZE_SAVE_REFS_AND_ARGS 224
 | |
| #define FRAME_SIZE_SAVE_EVERYTHING 512
 | |
| #define FRAME_SIZE_SAVE_EVERYTHING_FOR_CLINIT FRAME_SIZE_SAVE_EVERYTHING
 | |
| #define FRAME_SIZE_SAVE_EVERYTHING_FOR_SUSPEND_CHECK FRAME_SIZE_SAVE_EVERYTHING
 | |
| 
 | |
| // The offset from art_quick_read_barrier_mark_introspection to the array switch cases,
 | |
| // i.e. art_quick_read_barrier_mark_introspection_arrays.
 | |
| #define BAKER_MARK_INTROSPECTION_ARRAY_SWITCH_OFFSET 0x100
 | |
| // The offset from art_quick_read_barrier_mark_introspection to the GC root entrypoint,
 | |
| // i.e. art_quick_read_barrier_mark_introspection_gc_roots.
 | |
| #define BAKER_MARK_INTROSPECTION_GC_ROOT_ENTRYPOINT_OFFSET 0x300
 | |
| 
 | |
| // The offset of the reference load LDR from the return address in LR for field loads.
 | |
| #ifdef USE_HEAP_POISONING
 | |
| #define BAKER_MARK_INTROSPECTION_FIELD_LDR_OFFSET -8
 | |
| #else
 | |
| #define BAKER_MARK_INTROSPECTION_FIELD_LDR_OFFSET -4
 | |
| #endif
 | |
| // The offset of the reference load LDR from the return address in LR for array loads.
 | |
| #ifdef USE_HEAP_POISONING
 | |
| #define BAKER_MARK_INTROSPECTION_ARRAY_LDR_OFFSET -8
 | |
| #else
 | |
| #define BAKER_MARK_INTROSPECTION_ARRAY_LDR_OFFSET -4
 | |
| #endif
 | |
| // The offset of the reference load LDR from the return address in LR for GC root loads.
 | |
| #define BAKER_MARK_INTROSPECTION_GC_ROOT_LDR_OFFSET -8
 | |
| 
 | |
| #endif  // ART_RUNTIME_ARCH_ARM64_ASM_SUPPORT_ARM64_H_
 |