blob: b0285fdd04e76257cf30a695dca90c391d656b3c [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 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 */
Brian Carlstrom3320cf42011-10-04 14:58:28 -070016
17#include "compiled_method.h"
18
19namespace art {
20
Logan Chien598c5132012-04-28 22:00:44 +080021uint32_t CompiledCode::AlignCode(uint32_t offset) const {
22 return AlignCode(offset, instruction_set_);
23}
24
25uint32_t CompiledCode::AlignCode(uint32_t offset, InstructionSet instruction_set) {
26 switch (instruction_set) {
27 case kArm:
28 case kThumb2:
29 return RoundUp(offset, kArmAlignment);
30 case kMips:
31 return RoundUp(offset, kMipsAlignment);
32 case kX86:
33 return RoundUp(offset, kX86Alignment);
34 default:
35 LOG(FATAL) << "Unknown InstructionSet: " << instruction_set;
36 return 0;
37 }
38}
39
40size_t CompiledCode::CodeDelta() const {
41 switch (instruction_set_) {
42 case kArm:
43 case kMips:
44 case kX86:
45 return 0;
46 case kThumb2: {
47 // +1 to set the low-order bit so a BLX will switch to Thumb mode
48 return 1;
49 }
50 default:
51 LOG(FATAL) << "Unknown InstructionSet: " << instruction_set_;
52 return 0;
53 }
54}
55
56const void* CompiledCode::CodePointer(const void* code_pointer,
57 InstructionSet instruction_set) {
58 switch (instruction_set) {
59 case kArm:
60 case kMips:
61 case kX86:
62 return code_pointer;
63 case kThumb2: {
64 uintptr_t address = reinterpret_cast<uintptr_t>(code_pointer);
65 // Set the low-order bit so a BLX will switch to Thumb mode
66 address |= 0x1;
67 return reinterpret_cast<const void*>(address);
68 }
69 default:
70 LOG(FATAL) << "Unknown InstructionSet: " << instruction_set;
71 return NULL;
72 }
73}
74
Brian Carlstrom3320cf42011-10-04 14:58:28 -070075CompiledMethod::CompiledMethod(InstructionSet instruction_set,
Ian Rogersab058bb2012-03-11 22:19:38 -070076 const std::vector<uint8_t>& code,
Brian Carlstrom3320cf42011-10-04 14:58:28 -070077 const size_t frame_size_in_bytes,
Brian Carlstrom3320cf42011-10-04 14:58:28 -070078 const uint32_t core_spill_mask,
79 const uint32_t fp_spill_mask,
Brian Carlstrome7d856b2012-01-11 18:10:55 -080080 const std::vector<uint32_t>& mapping_table,
81 const std::vector<uint16_t>& vmap_table)
Logan Chien598c5132012-04-28 22:00:44 +080082 : CompiledCode(instruction_set), frame_size_in_bytes_(frame_size_in_bytes),
83 core_spill_mask_(core_spill_mask), fp_spill_mask_(fp_spill_mask)
Logan Chien6920bce2012-03-17 21:44:01 +080084{
Ian Rogersab058bb2012-03-11 22:19:38 -070085 CHECK_NE(code.size(), 0U);
Ian Rogersb5d09b22012-03-06 22:14:17 -080086 DCHECK_EQ(vmap_table.size(),
87 static_cast<uint32_t>(__builtin_popcount(core_spill_mask)
88 + __builtin_popcount(fp_spill_mask)));
Brian Carlstrome7d856b2012-01-11 18:10:55 -080089 CHECK_LE(vmap_table.size(), (1U << 16) - 1); // length must fit in 2^16-1
Brian Carlstrom3320cf42011-10-04 14:58:28 -070090
Ian Rogersab058bb2012-03-11 22:19:38 -070091 size_t code_byte_count = code.size() * sizeof(code[0]);
Brian Carlstrom3320cf42011-10-04 14:58:28 -070092 std::vector<uint8_t> byte_code(code_byte_count);
Ian Rogersab058bb2012-03-11 22:19:38 -070093 memcpy(&byte_code[0], &code[0], code_byte_count);
Brian Carlstrom3320cf42011-10-04 14:58:28 -070094
95 std::vector<uint32_t> length_prefixed_mapping_table;
96 length_prefixed_mapping_table.push_back(mapping_table.size());
97 length_prefixed_mapping_table.insert(length_prefixed_mapping_table.end(),
98 mapping_table.begin(),
99 mapping_table.end());
100 DCHECK_EQ(mapping_table.size() + 1, length_prefixed_mapping_table.size());
101
102 std::vector<uint16_t> length_prefixed_vmap_table;
103 length_prefixed_vmap_table.push_back(vmap_table.size());
104 length_prefixed_vmap_table.insert(length_prefixed_vmap_table.end(),
105 vmap_table.begin(),
106 vmap_table.end());
107 DCHECK_EQ(vmap_table.size() + 1, length_prefixed_vmap_table.size());
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700108 DCHECK_EQ(vmap_table.size(), length_prefixed_vmap_table[0]);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700109
Logan Chien598c5132012-04-28 22:00:44 +0800110 SetCode(byte_code);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700111 mapping_table_ = length_prefixed_mapping_table;
112 vmap_table_ = length_prefixed_vmap_table;
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700113 DCHECK_EQ(vmap_table_[0], static_cast<uint32_t>(__builtin_popcount(core_spill_mask) + __builtin_popcount(fp_spill_mask)));
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700114}
115
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800116void CompiledMethod::SetGcMap(const std::vector<uint8_t>& gc_map) {
117 CHECK_NE(gc_map.size(), 0U);
118
Shih-wei Liaoe94d9b22012-05-22 09:01:24 -0700119#if !defined(ART_USE_LLVM_COMPILER) && !defined(ART_USE_GREENLAND_COMPILER)
Elliott Hughes3fa1b7e2012-03-13 17:06:22 -0700120 // Should only be used with CompiledMethods created with the non-LLVM compilers.
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800121 CHECK_NE(mapping_table_.size(), 0U);
Shih-wei Liaod1fec812012-02-13 09:51:10 -0800122#endif
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800123
Brian Carlstrom75412882012-01-18 01:26:54 -0800124 gc_map_ = gc_map;
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800125}
126
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700127CompiledMethod::CompiledMethod(InstructionSet instruction_set,
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800128 const std::vector<uint8_t>& code,
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700129 const size_t frame_size_in_bytes,
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700130 const uint32_t core_spill_mask,
Ian Rogers169c9a72011-11-13 20:13:17 -0800131 const uint32_t fp_spill_mask)
Logan Chien598c5132012-04-28 22:00:44 +0800132 : CompiledCode(instruction_set, code),
133 frame_size_in_bytes_(frame_size_in_bytes),
134 core_spill_mask_(core_spill_mask), fp_spill_mask_(fp_spill_mask) {
Logan Chien6920bce2012-03-17 21:44:01 +0800135}
136
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700137CompiledMethod::~CompiledMethod() {}
138
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700139size_t CompiledMethod::GetFrameSizeInBytes() const {
140 return frame_size_in_bytes_;
141}
142
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700143uint32_t CompiledMethod::GetCoreSpillMask() const {
144 return core_spill_mask_;
145}
146
147uint32_t CompiledMethod::GetFpSpillMask() const {
148 return fp_spill_mask_;
149}
150
151const std::vector<uint32_t>& CompiledMethod::GetMappingTable() const {
152 return mapping_table_;
153}
154
155const std::vector<uint16_t>& CompiledMethod::GetVmapTable() const {
156 return vmap_table_;
157}
158
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800159const std::vector<uint8_t>& CompiledMethod::GetGcMap() const {
160 return gc_map_;
161}
162
Logan Chien598c5132012-04-28 22:00:44 +0800163CompiledInvokeStub::CompiledInvokeStub(InstructionSet instruction_set)
164 : CompiledCode(instruction_set) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700165}
166
Logan Chien598c5132012-04-28 22:00:44 +0800167CompiledInvokeStub::CompiledInvokeStub(InstructionSet instruction_set,
168 const std::vector<uint8_t>& code)
169 : CompiledCode(instruction_set, code) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700170}
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700171
172CompiledInvokeStub::~CompiledInvokeStub() {}
173
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700174} // namespace art