Elliott Hughes | 2faa5f1 | 2012-01-30 14:42:07 -0800 | [diff] [blame] | 1 | /* |
| 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 Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 16 | |
| 17 | #include "compiled_method.h" |
| 18 | |
| 19 | namespace art { |
| 20 | |
| 21 | CompiledMethod::CompiledMethod(InstructionSet instruction_set, |
Ian Rogers | ab058bb | 2012-03-11 22:19:38 -0700 | [diff] [blame] | 22 | const std::vector<uint8_t>& code, |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 23 | const size_t frame_size_in_bytes, |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 24 | const uint32_t core_spill_mask, |
| 25 | const uint32_t fp_spill_mask, |
Brian Carlstrom | e7d856b | 2012-01-11 18:10:55 -0800 | [diff] [blame] | 26 | const std::vector<uint32_t>& mapping_table, |
| 27 | const std::vector<uint16_t>& vmap_table) |
Ian Rogers | 169c9a7 | 2011-11-13 20:13:17 -0800 | [diff] [blame] | 28 | : instruction_set_(instruction_set), frame_size_in_bytes_(frame_size_in_bytes), |
Logan Chien | 6920bce | 2012-03-17 21:44:01 +0800 | [diff] [blame] | 29 | core_spill_mask_(core_spill_mask), fp_spill_mask_(fp_spill_mask), |
| 30 | elf_idx_(-1) |
| 31 | { |
Ian Rogers | ab058bb | 2012-03-11 22:19:38 -0700 | [diff] [blame] | 32 | CHECK_NE(code.size(), 0U); |
Ian Rogers | b5d09b2 | 2012-03-06 22:14:17 -0800 | [diff] [blame] | 33 | DCHECK_EQ(vmap_table.size(), |
| 34 | static_cast<uint32_t>(__builtin_popcount(core_spill_mask) |
| 35 | + __builtin_popcount(fp_spill_mask))); |
Brian Carlstrom | e7d856b | 2012-01-11 18:10:55 -0800 | [diff] [blame] | 36 | CHECK_LE(vmap_table.size(), (1U << 16) - 1); // length must fit in 2^16-1 |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 37 | |
Ian Rogers | ab058bb | 2012-03-11 22:19:38 -0700 | [diff] [blame] | 38 | size_t code_byte_count = code.size() * sizeof(code[0]); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 39 | std::vector<uint8_t> byte_code(code_byte_count); |
Ian Rogers | ab058bb | 2012-03-11 22:19:38 -0700 | [diff] [blame] | 40 | memcpy(&byte_code[0], &code[0], code_byte_count); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 41 | |
| 42 | std::vector<uint32_t> length_prefixed_mapping_table; |
| 43 | length_prefixed_mapping_table.push_back(mapping_table.size()); |
| 44 | length_prefixed_mapping_table.insert(length_prefixed_mapping_table.end(), |
| 45 | mapping_table.begin(), |
| 46 | mapping_table.end()); |
| 47 | DCHECK_EQ(mapping_table.size() + 1, length_prefixed_mapping_table.size()); |
| 48 | |
| 49 | std::vector<uint16_t> length_prefixed_vmap_table; |
| 50 | length_prefixed_vmap_table.push_back(vmap_table.size()); |
| 51 | length_prefixed_vmap_table.insert(length_prefixed_vmap_table.end(), |
| 52 | vmap_table.begin(), |
| 53 | vmap_table.end()); |
| 54 | DCHECK_EQ(vmap_table.size() + 1, length_prefixed_vmap_table.size()); |
Brian Carlstrom | 0dd7dda | 2011-10-25 15:47:53 -0700 | [diff] [blame] | 55 | DCHECK_EQ(vmap_table.size(), length_prefixed_vmap_table[0]); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 56 | |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 57 | code_ = byte_code; |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 58 | mapping_table_ = length_prefixed_mapping_table; |
| 59 | vmap_table_ = length_prefixed_vmap_table; |
Brian Carlstrom | 0dd7dda | 2011-10-25 15:47:53 -0700 | [diff] [blame] | 60 | DCHECK_EQ(vmap_table_[0], static_cast<uint32_t>(__builtin_popcount(core_spill_mask) + __builtin_popcount(fp_spill_mask))); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 61 | } |
| 62 | |
Brian Carlstrom | e7d856b | 2012-01-11 18:10:55 -0800 | [diff] [blame] | 63 | void CompiledMethod::SetGcMap(const std::vector<uint8_t>& gc_map) { |
| 64 | CHECK_NE(gc_map.size(), 0U); |
| 65 | |
Shih-wei Liao | e94d9b2 | 2012-05-22 09:01:24 -0700 | [diff] [blame] | 66 | #if !defined(ART_USE_LLVM_COMPILER) && !defined(ART_USE_GREENLAND_COMPILER) |
Elliott Hughes | 3fa1b7e | 2012-03-13 17:06:22 -0700 | [diff] [blame] | 67 | // Should only be used with CompiledMethods created with the non-LLVM compilers. |
Brian Carlstrom | e7d856b | 2012-01-11 18:10:55 -0800 | [diff] [blame] | 68 | CHECK_NE(mapping_table_.size(), 0U); |
Shih-wei Liao | d1fec81 | 2012-02-13 09:51:10 -0800 | [diff] [blame] | 69 | #endif |
Brian Carlstrom | e7d856b | 2012-01-11 18:10:55 -0800 | [diff] [blame] | 70 | |
Brian Carlstrom | 7541288 | 2012-01-18 01:26:54 -0800 | [diff] [blame] | 71 | gc_map_ = gc_map; |
Brian Carlstrom | e7d856b | 2012-01-11 18:10:55 -0800 | [diff] [blame] | 72 | } |
| 73 | |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 74 | CompiledMethod::CompiledMethod(InstructionSet instruction_set, |
Brian Carlstrom | e7d856b | 2012-01-11 18:10:55 -0800 | [diff] [blame] | 75 | const std::vector<uint8_t>& code, |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 76 | const size_t frame_size_in_bytes, |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 77 | const uint32_t core_spill_mask, |
Ian Rogers | 169c9a7 | 2011-11-13 20:13:17 -0800 | [diff] [blame] | 78 | const uint32_t fp_spill_mask) |
| 79 | : instruction_set_(instruction_set), code_(code), frame_size_in_bytes_(frame_size_in_bytes), |
Logan Chien | 6920bce | 2012-03-17 21:44:01 +0800 | [diff] [blame] | 80 | core_spill_mask_(core_spill_mask), fp_spill_mask_(fp_spill_mask), |
| 81 | elf_idx_(-1) |
| 82 | { |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 83 | CHECK_NE(code.size(), 0U); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 84 | } |
| 85 | |
Logan Chien | 937105a | 2012-04-02 02:37:37 +0800 | [diff] [blame] | 86 | CompiledMethod::CompiledMethod(InstructionSet instruction_set, |
| 87 | const uint16_t elf_idx, |
| 88 | const uint16_t elf_func_idx) |
Logan Chien | 6920bce | 2012-03-17 21:44:01 +0800 | [diff] [blame] | 89 | : instruction_set_(instruction_set), frame_size_in_bytes_(0), |
Logan Chien | 937105a | 2012-04-02 02:37:37 +0800 | [diff] [blame] | 90 | core_spill_mask_(0), fp_spill_mask_(0), elf_idx_(elf_idx), |
| 91 | elf_func_idx_(elf_func_idx) { |
Logan Chien | 6920bce | 2012-03-17 21:44:01 +0800 | [diff] [blame] | 92 | } |
| 93 | |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 94 | CompiledMethod::~CompiledMethod() {} |
| 95 | |
| 96 | InstructionSet CompiledMethod::GetInstructionSet() const { |
| 97 | return instruction_set_; |
| 98 | } |
| 99 | |
| 100 | const std::vector<uint8_t>& CompiledMethod::GetCode() const { |
| 101 | return code_; |
| 102 | } |
| 103 | |
| 104 | size_t CompiledMethod::GetFrameSizeInBytes() const { |
| 105 | return frame_size_in_bytes_; |
| 106 | } |
| 107 | |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 108 | uint32_t CompiledMethod::GetCoreSpillMask() const { |
| 109 | return core_spill_mask_; |
| 110 | } |
| 111 | |
| 112 | uint32_t CompiledMethod::GetFpSpillMask() const { |
| 113 | return fp_spill_mask_; |
| 114 | } |
| 115 | |
| 116 | const std::vector<uint32_t>& CompiledMethod::GetMappingTable() const { |
| 117 | return mapping_table_; |
| 118 | } |
| 119 | |
| 120 | const std::vector<uint16_t>& CompiledMethod::GetVmapTable() const { |
| 121 | return vmap_table_; |
| 122 | } |
| 123 | |
Brian Carlstrom | e7d856b | 2012-01-11 18:10:55 -0800 | [diff] [blame] | 124 | const std::vector<uint8_t>& CompiledMethod::GetGcMap() const { |
| 125 | return gc_map_; |
| 126 | } |
| 127 | |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 128 | uint32_t CompiledMethod::AlignCode(uint32_t offset) const { |
| 129 | return AlignCode(offset, instruction_set_); |
| 130 | } |
| 131 | |
| 132 | uint32_t CompiledMethod::AlignCode(uint32_t offset, InstructionSet instruction_set) { |
| 133 | switch (instruction_set) { |
| 134 | case kArm: |
| 135 | case kThumb2: |
| 136 | return RoundUp(offset, kArmAlignment); |
Elliott Hughes | 742e25e | 2012-04-24 18:11:08 -0700 | [diff] [blame] | 137 | case kMips: |
| 138 | return RoundUp(offset, kMipsAlignment); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 139 | case kX86: |
Ian Rogers | b41b33b | 2012-03-20 14:22:54 -0700 | [diff] [blame] | 140 | return RoundUp(offset, kX86Alignment); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 141 | default: |
Elliott Hughes | 742e25e | 2012-04-24 18:11:08 -0700 | [diff] [blame] | 142 | LOG(FATAL) << "Unknown InstructionSet: " << instruction_set; |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 143 | return 0; |
| 144 | } |
| 145 | } |
| 146 | |
| 147 | size_t CompiledMethod::CodeDelta() const { |
| 148 | switch (instruction_set_) { |
| 149 | case kArm: |
Elliott Hughes | 742e25e | 2012-04-24 18:11:08 -0700 | [diff] [blame] | 150 | case kMips: |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 151 | case kX86: |
| 152 | return 0; |
| 153 | case kThumb2: { |
| 154 | // +1 to set the low-order bit so a BLX will switch to Thumb mode |
| 155 | return 1; |
| 156 | } |
| 157 | default: |
Elliott Hughes | 742e25e | 2012-04-24 18:11:08 -0700 | [diff] [blame] | 158 | LOG(FATAL) << "Unknown InstructionSet: " << instruction_set_; |
Brian Carlstrom | 413f9e0 | 2012-01-09 22:24:30 -0800 | [diff] [blame] | 159 | return 0; |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 160 | } |
| 161 | } |
| 162 | |
| 163 | const void* CompiledMethod::CodePointer(const void* code_pointer, |
| 164 | InstructionSet instruction_set) { |
| 165 | switch (instruction_set) { |
| 166 | case kArm: |
Elliott Hughes | 742e25e | 2012-04-24 18:11:08 -0700 | [diff] [blame] | 167 | case kMips: |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 168 | case kX86: |
| 169 | return code_pointer; |
| 170 | case kThumb2: { |
| 171 | uintptr_t address = reinterpret_cast<uintptr_t>(code_pointer); |
| 172 | // Set the low-order bit so a BLX will switch to Thumb mode |
| 173 | address |= 0x1; |
| 174 | return reinterpret_cast<const void*>(address); |
| 175 | } |
| 176 | default: |
Elliott Hughes | 742e25e | 2012-04-24 18:11:08 -0700 | [diff] [blame] | 177 | LOG(FATAL) << "Unknown InstructionSet: " << instruction_set; |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 178 | return NULL; |
| 179 | } |
| 180 | } |
| 181 | |
Logan Chien | f04364f | 2012-02-10 12:01:39 +0800 | [diff] [blame] | 182 | #if defined(ART_USE_LLVM_COMPILER) |
Logan Chien | 7a2a23a | 2012-06-06 11:01:00 +0800 | [diff] [blame] | 183 | CompiledInvokeStub::CompiledInvokeStub(uint16_t elf_idx, uint16_t elf_func_idx) |
| 184 | : elf_idx_(elf_idx), elf_func_idx_(elf_func_idx) { |
Logan Chien | f04364f | 2012-02-10 12:01:39 +0800 | [diff] [blame] | 185 | } |
Shih-wei Liao | c4c9881 | 2012-03-10 21:55:51 -0800 | [diff] [blame] | 186 | #endif |
Logan Chien | 6920bce | 2012-03-17 21:44:01 +0800 | [diff] [blame] | 187 | |
| 188 | CompiledInvokeStub::CompiledInvokeStub(std::vector<uint8_t>& code) |
Logan Chien | 7a2a23a | 2012-06-06 11:01:00 +0800 | [diff] [blame] | 189 | : elf_idx_(-1), elf_func_idx_(-1) { |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 190 | CHECK_NE(code.size(), 0U); |
| 191 | code_ = code; |
| 192 | } |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 193 | |
| 194 | CompiledInvokeStub::~CompiledInvokeStub() {} |
| 195 | |
| 196 | const std::vector<uint8_t>& CompiledInvokeStub::GetCode() const { |
| 197 | return code_; |
| 198 | } |
| 199 | |
| 200 | } // namespace art |