blob: 989ecc6c5b4349bb4ddf472d65dfdc20d7314d50 [file] [log] [blame]
Stuart Monteithb95a5342014-03-12 13:32:32 +00001/*
2 * Copyright (C) 2014 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#ifndef ART_RUNTIME_ARCH_ARM64_ASM_SUPPORT_ARM64_H_
18#define ART_RUNTIME_ARCH_ARM64_ASM_SUPPORT_ARM64_H_
19
20#include "asm_support.h"
21
Zheng Xub551fdc2014-07-25 11:49:42 +080022#define FRAME_SIZE_SAVE_ALL_CALLEE_SAVE 176
Serban Constantinescu9bd88b02015-04-22 16:24:46 +010023#define FRAME_SIZE_REFS_ONLY_CALLEE_SAVE 96
Zheng Xub551fdc2014-07-25 11:49:42 +080024#define FRAME_SIZE_REFS_AND_ARGS_CALLEE_SAVE 224
Andreas Gampe5c1e4352014-04-21 19:28:24 -070025
Stuart Monteithb95a5342014-03-12 13:32:32 +000026#endif // ART_RUNTIME_ARCH_ARM64_ASM_SUPPORT_ARM64_H_