• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
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_X86_64_QUICK_METHOD_FRAME_INFO_X86_64_H_
18 #define ART_RUNTIME_ARCH_X86_64_QUICK_METHOD_FRAME_INFO_X86_64_H_
19 
20 #include "arch/instruction_set.h"
21 #include "base/bit_utils.h"
22 #include "base/callee_save_type.h"
23 #include "base/enums.h"
24 #include "quick/quick_method_frame_info.h"
25 #include "registers_x86_64.h"
26 
27 namespace art {
28 namespace x86_64 {
29 
30 static constexpr uint32_t kX86_64CalleeSaveAlwaysSpills =
31     (1 << art::x86_64::kNumberOfCpuRegisters);  // Fake return address callee save.
32 static constexpr uint32_t kX86_64CalleeSaveRefSpills =
33     (1 << art::x86_64::RBX) | (1 << art::x86_64::RBP) | (1 << art::x86_64::R12) |
34     (1 << art::x86_64::R13) | (1 << art::x86_64::R14) | (1 << art::x86_64::R15);
35 static constexpr uint32_t kX86_64CalleeSaveArgSpills =
36     (1 << art::x86_64::RSI) | (1 << art::x86_64::RDX) | (1 << art::x86_64::RCX) |
37     (1 << art::x86_64::R8) | (1 << art::x86_64::R9);
38 static constexpr uint32_t kX86_64CalleeSaveEverythingSpills =
39     (1 << art::x86_64::RAX) | (1 << art::x86_64::RCX) | (1 << art::x86_64::RDX) |
40     (1 << art::x86_64::RSI) | (1 << art::x86_64::RDI) | (1 << art::x86_64::R8) |
41     (1 << art::x86_64::R9) | (1 << art::x86_64::R10) | (1 << art::x86_64::R11);
42 
43 static constexpr uint32_t kX86_64CalleeSaveFpArgSpills =
44     (1 << art::x86_64::XMM0) | (1 << art::x86_64::XMM1) | (1 << art::x86_64::XMM2) |
45     (1 << art::x86_64::XMM3) | (1 << art::x86_64::XMM4) | (1 << art::x86_64::XMM5) |
46     (1 << art::x86_64::XMM6) | (1 << art::x86_64::XMM7);
47 static constexpr uint32_t kX86_64CalleeSaveFpSpills =
48     (1 << art::x86_64::XMM12) | (1 << art::x86_64::XMM13) |
49     (1 << art::x86_64::XMM14) | (1 << art::x86_64::XMM15);
50 static constexpr uint32_t kX86_64CalleeSaveFpEverythingSpills =
51     (1 << art::x86_64::XMM0) | (1 << art::x86_64::XMM1) |
52     (1 << art::x86_64::XMM2) | (1 << art::x86_64::XMM3) |
53     (1 << art::x86_64::XMM4) | (1 << art::x86_64::XMM5) |
54     (1 << art::x86_64::XMM6) | (1 << art::x86_64::XMM7) |
55     (1 << art::x86_64::XMM8) | (1 << art::x86_64::XMM9) |
56     (1 << art::x86_64::XMM10) | (1 << art::x86_64::XMM11);
57 
X86_64CalleeSaveCoreSpills(CalleeSaveType type)58 constexpr uint32_t X86_64CalleeSaveCoreSpills(CalleeSaveType type) {
59   return kX86_64CalleeSaveAlwaysSpills | kX86_64CalleeSaveRefSpills |
60       (type == CalleeSaveType::kSaveRefsAndArgs ? kX86_64CalleeSaveArgSpills : 0) |
61       (type == CalleeSaveType::kSaveEverything ? kX86_64CalleeSaveEverythingSpills : 0);
62 }
63 
X86_64CalleeSaveFpSpills(CalleeSaveType type)64 constexpr uint32_t X86_64CalleeSaveFpSpills(CalleeSaveType type) {
65   return kX86_64CalleeSaveFpSpills |
66       (type == CalleeSaveType::kSaveRefsAndArgs ? kX86_64CalleeSaveFpArgSpills : 0) |
67       (type == CalleeSaveType::kSaveEverything ? kX86_64CalleeSaveFpEverythingSpills : 0);
68 }
69 
X86_64CalleeSaveFrameSize(CalleeSaveType type)70 constexpr uint32_t X86_64CalleeSaveFrameSize(CalleeSaveType type) {
71   return RoundUp((POPCOUNT(X86_64CalleeSaveCoreSpills(type)) /* gprs */ +
72                   POPCOUNT(X86_64CalleeSaveFpSpills(type)) /* fprs */ +
73                   1 /* Method* */) * static_cast<size_t>(kX86_64PointerSize), kStackAlignment);
74 }
75 
X86_64CalleeSaveMethodFrameInfo(CalleeSaveType type)76 constexpr QuickMethodFrameInfo X86_64CalleeSaveMethodFrameInfo(CalleeSaveType type) {
77   return QuickMethodFrameInfo(X86_64CalleeSaveFrameSize(type),
78                               X86_64CalleeSaveCoreSpills(type),
79                               X86_64CalleeSaveFpSpills(type));
80 }
81 
82 }  // namespace x86_64
83 }  // namespace art
84 
85 #endif  // ART_RUNTIME_ARCH_X86_64_QUICK_METHOD_FRAME_INFO_X86_64_H_
86