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 | |
Mathieu Chartier | 193bad9 | 2013-08-29 18:46:00 -0700 | [diff] [blame] | 17 | #ifndef ART_COMPILER_COMPILED_METHOD_H_ |
| 18 | #define ART_COMPILER_COMPILED_METHOD_H_ |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 19 | |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 20 | #include <memory> |
Brian Carlstrom | 265091e | 2013-01-30 14:08:26 -0800 | [diff] [blame] | 21 | #include <string> |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 22 | #include <vector> |
| 23 | |
Elliott Hughes | 0f3c553 | 2012-03-30 14:51:51 -0700 | [diff] [blame] | 24 | #include "instruction_set.h" |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 25 | #include "utils.h" |
| 26 | |
Shih-wei Liao | d1fec81 | 2012-02-13 09:51:10 -0800 | [diff] [blame] | 27 | namespace llvm { |
| 28 | class Function; |
Ian Rogers | a182704 | 2013-04-18 16:36:43 -0700 | [diff] [blame] | 29 | } // namespace llvm |
Shih-wei Liao | d1fec81 | 2012-02-13 09:51:10 -0800 | [diff] [blame] | 30 | |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 31 | namespace art { |
| 32 | |
Mathieu Chartier | 193bad9 | 2013-08-29 18:46:00 -0700 | [diff] [blame] | 33 | class CompilerDriver; |
| 34 | |
Logan Chien | 598c513 | 2012-04-28 22:00:44 +0800 | [diff] [blame] | 35 | class CompiledCode { |
| 36 | public: |
Brian Carlstrom | 265091e | 2013-01-30 14:08:26 -0800 | [diff] [blame] | 37 | // For Quick to supply an code blob |
Mathieu Chartier | 193bad9 | 2013-08-29 18:46:00 -0700 | [diff] [blame] | 38 | CompiledCode(CompilerDriver* compiler_driver, InstructionSet instruction_set, |
Dave Allison | d6ed642 | 2014-04-09 23:36:15 +0000 | [diff] [blame] | 39 | const std::vector<uint8_t>& quick_code); |
Logan Chien | 598c513 | 2012-04-28 22:00:44 +0800 | [diff] [blame] | 40 | |
Brian Carlstrom | 265091e | 2013-01-30 14:08:26 -0800 | [diff] [blame] | 41 | // For Portable to supply an ELF object |
Mathieu Chartier | 193bad9 | 2013-08-29 18:46:00 -0700 | [diff] [blame] | 42 | CompiledCode(CompilerDriver* compiler_driver, InstructionSet instruction_set, |
| 43 | const std::string& elf_object, const std::string &symbol); |
Logan Chien | 598c513 | 2012-04-28 22:00:44 +0800 | [diff] [blame] | 44 | |
Logan Chien | 598c513 | 2012-04-28 22:00:44 +0800 | [diff] [blame] | 45 | InstructionSet GetInstructionSet() const { |
| 46 | return instruction_set_; |
| 47 | } |
| 48 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 49 | const std::vector<uint8_t>* GetPortableCode() const { |
| 50 | return portable_code_; |
Logan Chien | 598c513 | 2012-04-28 22:00:44 +0800 | [diff] [blame] | 51 | } |
| 52 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 53 | const std::vector<uint8_t>* GetQuickCode() const { |
| 54 | return quick_code_; |
Logan Chien | 598c513 | 2012-04-28 22:00:44 +0800 | [diff] [blame] | 55 | } |
| 56 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 57 | void SetCode(const std::vector<uint8_t>* quick_code, const std::vector<uint8_t>* portable_code); |
| 58 | |
| 59 | bool operator==(const CompiledCode& rhs) const; |
| 60 | |
Logan Chien | 598c513 | 2012-04-28 22:00:44 +0800 | [diff] [blame] | 61 | // To align an offset from a page-aligned value to make it suitable |
| 62 | // for code storage. For example on ARM, to ensure that PC relative |
| 63 | // valu computations work out as expected. |
| 64 | uint32_t AlignCode(uint32_t offset) const; |
| 65 | static uint32_t AlignCode(uint32_t offset, InstructionSet instruction_set); |
| 66 | |
| 67 | // returns the difference between the code address and a usable PC. |
| 68 | // mainly to cope with kThumb2 where the lower bit must be set. |
| 69 | size_t CodeDelta() const; |
Dave Allison | 50abf0a | 2014-06-23 13:19:59 -0700 | [diff] [blame] | 70 | static size_t CodeDelta(InstructionSet instruction_set); |
Logan Chien | 598c513 | 2012-04-28 22:00:44 +0800 | [diff] [blame] | 71 | |
| 72 | // Returns a pointer suitable for invoking the code at the argument |
| 73 | // code_pointer address. Mainly to cope with kThumb2 where the |
| 74 | // lower bit must be set to indicate Thumb mode. |
| 75 | static const void* CodePointer(const void* code_pointer, |
| 76 | InstructionSet instruction_set); |
| 77 | |
Brian Carlstrom | 265091e | 2013-01-30 14:08:26 -0800 | [diff] [blame] | 78 | const std::string& GetSymbol() const; |
| 79 | const std::vector<uint32_t>& GetOatdataOffsetsToCompliledCodeOffset() const; |
| 80 | void AddOatdataOffsetToCompliledCodeOffset(uint32_t offset); |
Brian Carlstrom | 265091e | 2013-01-30 14:08:26 -0800 | [diff] [blame] | 81 | |
Logan Chien | 598c513 | 2012-04-28 22:00:44 +0800 | [diff] [blame] | 82 | private: |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 83 | CompilerDriver* const compiler_driver_; |
Mathieu Chartier | 193bad9 | 2013-08-29 18:46:00 -0700 | [diff] [blame] | 84 | |
Logan Chien | 598c513 | 2012-04-28 22:00:44 +0800 | [diff] [blame] | 85 | const InstructionSet instruction_set_; |
Brian Carlstrom | 8227cc1 | 2013-03-06 14:26:48 -0800 | [diff] [blame] | 86 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 87 | // The ELF image for portable. |
| 88 | std::vector<uint8_t>* portable_code_; |
| 89 | |
| 90 | // Used to store the PIC code for Quick. |
| 91 | std::vector<uint8_t>* quick_code_; |
Brian Carlstrom | 265091e | 2013-01-30 14:08:26 -0800 | [diff] [blame] | 92 | |
| 93 | // Used for the Portable ELF symbol name. |
Ian Rogers | a182704 | 2013-04-18 16:36:43 -0700 | [diff] [blame] | 94 | const std::string symbol_; |
Brian Carlstrom | 265091e | 2013-01-30 14:08:26 -0800 | [diff] [blame] | 95 | |
| 96 | // There are offsets from the oatdata symbol to where the offset to |
| 97 | // the compiled method will be found. These are computed by the |
| 98 | // OatWriter and then used by the ElfWriter to add relocations so |
| 99 | // that MCLinker can update the values to the location in the linked .so. |
| 100 | std::vector<uint32_t> oatdata_offsets_to_compiled_code_offset_; |
Logan Chien | 598c513 | 2012-04-28 22:00:44 +0800 | [diff] [blame] | 101 | }; |
| 102 | |
Yevgeny Rouban | e3ea838 | 2014-08-08 16:29:38 +0700 | [diff] [blame] | 103 | class SrcMapElem { |
| 104 | public: |
| 105 | uint32_t from_; |
| 106 | int32_t to_; |
| 107 | |
Yevgeny Rouban | 33ac819 | 2014-08-19 18:39:57 +0700 | [diff] [blame] | 108 | explicit operator int64_t() const { |
| 109 | return (static_cast<int64_t>(to_) << 32) | from_; |
Yevgeny Rouban | e3ea838 | 2014-08-08 16:29:38 +0700 | [diff] [blame] | 110 | } |
| 111 | |
Yevgeny Rouban | 33ac819 | 2014-08-19 18:39:57 +0700 | [diff] [blame] | 112 | bool operator<(const SrcMapElem& sme) const { |
| 113 | return int64_t(*this) < int64_t(sme); |
| 114 | } |
| 115 | |
| 116 | bool operator==(const SrcMapElem& sme) const { |
| 117 | return int64_t(*this) == int64_t(sme); |
| 118 | } |
| 119 | |
| 120 | explicit operator uint8_t() const { |
Yevgeny Rouban | e3ea838 | 2014-08-08 16:29:38 +0700 | [diff] [blame] | 121 | return static_cast<uint8_t>(from_ + to_); |
| 122 | } |
| 123 | }; |
| 124 | |
| 125 | class SrcMap FINAL : public std::vector<SrcMapElem> { |
| 126 | public: |
Yevgeny Rouban | e3ea838 | 2014-08-08 16:29:38 +0700 | [diff] [blame] | 127 | void SortByFrom() { |
Yevgeny Rouban | 33ac819 | 2014-08-19 18:39:57 +0700 | [diff] [blame] | 128 | std::sort(begin(), end(), [] (const SrcMapElem& lhs, const SrcMapElem& rhs) -> bool { |
| 129 | return lhs.from_ < rhs.from_; |
| 130 | }); |
Yevgeny Rouban | e3ea838 | 2014-08-08 16:29:38 +0700 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | const_iterator FindByTo(int32_t to) const { |
Yevgeny Rouban | 33ac819 | 2014-08-19 18:39:57 +0700 | [diff] [blame] | 134 | return std::lower_bound(begin(), end(), SrcMapElem({0, to})); |
Yevgeny Rouban | e3ea838 | 2014-08-08 16:29:38 +0700 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | SrcMap& Arrange() { |
Yevgeny Rouban | e3ea838 | 2014-08-08 16:29:38 +0700 | [diff] [blame] | 138 | if (!empty()) { |
Yevgeny Rouban | 33ac819 | 2014-08-19 18:39:57 +0700 | [diff] [blame] | 139 | std::sort(begin(), end()); |
| 140 | resize(std::unique(begin(), end()) - begin()); |
| 141 | shrink_to_fit(); |
Yevgeny Rouban | e3ea838 | 2014-08-08 16:29:38 +0700 | [diff] [blame] | 142 | } |
| 143 | return *this; |
| 144 | } |
| 145 | |
| 146 | void DeltaFormat(const SrcMapElem& start, uint32_t highest_pc) { |
| 147 | // Convert from abs values to deltas. |
| 148 | if (!empty()) { |
| 149 | SortByFrom(); |
| 150 | |
| 151 | // TODO: one PC can be mapped to several Java src lines. |
| 152 | // do we want such a one-to-many correspondence? |
| 153 | |
| 154 | // get rid of the highest values |
| 155 | size_t i = size() - 1; |
| 156 | for (; i > 0 ; i--) { |
| 157 | if ((*this)[i].from_ >= highest_pc) { |
| 158 | break; |
| 159 | } |
| 160 | } |
| 161 | this->resize(i + 1); |
| 162 | |
| 163 | for (size_t i = size(); --i >= 1; ) { |
| 164 | (*this)[i].from_ -= (*this)[i-1].from_; |
| 165 | (*this)[i].to_ -= (*this)[i-1].to_; |
| 166 | } |
| 167 | DCHECK((*this)[0].from_ >= start.from_); |
| 168 | (*this)[0].from_ -= start.from_; |
| 169 | (*this)[0].to_ -= start.to_; |
| 170 | } |
| 171 | } |
| 172 | }; |
| 173 | |
| 174 | class CompiledMethod FINAL : public CompiledCode { |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 175 | public: |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 176 | // Constructs a CompiledMethod for Quick. |
Ian Rogers | 72d3262 | 2014-05-06 16:20:11 -0700 | [diff] [blame] | 177 | CompiledMethod(CompilerDriver* driver, |
Mathieu Chartier | 193bad9 | 2013-08-29 18:46:00 -0700 | [diff] [blame] | 178 | InstructionSet instruction_set, |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 179 | const std::vector<uint8_t>& quick_code, |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 180 | const size_t frame_size_in_bytes, |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 181 | const uint32_t core_spill_mask, |
| 182 | const uint32_t fp_spill_mask, |
Yevgeny Rouban | e3ea838 | 2014-08-08 16:29:38 +0700 | [diff] [blame] | 183 | SrcMap* src_mapping_table, |
Ian Rogers | 96faf5b | 2013-08-09 22:05:32 -0700 | [diff] [blame] | 184 | const std::vector<uint8_t>& mapping_table, |
| 185 | const std::vector<uint8_t>& vmap_table, |
Mark Mendell | ae9fd93 | 2014-02-10 16:14:35 -0800 | [diff] [blame] | 186 | const std::vector<uint8_t>& native_gc_map, |
Dave Allison | d6ed642 | 2014-04-09 23:36:15 +0000 | [diff] [blame] | 187 | const std::vector<uint8_t>* cfi_info); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 188 | |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 189 | // Constructs a CompiledMethod for Optimizing. |
| 190 | CompiledMethod(CompilerDriver* driver, |
| 191 | InstructionSet instruction_set, |
| 192 | const std::vector<uint8_t>& quick_code, |
| 193 | const size_t frame_size_in_bytes, |
| 194 | const uint32_t core_spill_mask, |
| 195 | const uint32_t fp_spill_mask, |
| 196 | const std::vector<uint8_t>& mapping_table, |
| 197 | const std::vector<uint8_t>& vmap_table); |
| 198 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 199 | // Constructs a CompiledMethod for the QuickJniCompiler. |
Ian Rogers | 72d3262 | 2014-05-06 16:20:11 -0700 | [diff] [blame] | 200 | CompiledMethod(CompilerDriver* driver, |
Mathieu Chartier | 193bad9 | 2013-08-29 18:46:00 -0700 | [diff] [blame] | 201 | InstructionSet instruction_set, |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 202 | const std::vector<uint8_t>& quick_code, |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 203 | const size_t frame_size_in_bytes, |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 204 | const uint32_t core_spill_mask, |
Tong Shen | 547cdfd | 2014-08-05 01:54:19 -0700 | [diff] [blame] | 205 | const uint32_t fp_spill_mask, |
| 206 | const std::vector<uint8_t>* cfi_info); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 207 | |
Brian Carlstrom | 265091e | 2013-01-30 14:08:26 -0800 | [diff] [blame] | 208 | // Constructs a CompiledMethod for the Portable compiler. |
Ian Rogers | 72d3262 | 2014-05-06 16:20:11 -0700 | [diff] [blame] | 209 | CompiledMethod(CompilerDriver* driver, InstructionSet instruction_set, const std::string& code, |
Mathieu Chartier | 193bad9 | 2013-08-29 18:46:00 -0700 | [diff] [blame] | 210 | const std::vector<uint8_t>& gc_map, const std::string& symbol); |
TDYa127 | ce4cc0d | 2012-11-18 16:59:53 -0800 | [diff] [blame] | 211 | |
Brian Carlstrom | 265091e | 2013-01-30 14:08:26 -0800 | [diff] [blame] | 212 | // Constructs a CompiledMethod for the Portable JniCompiler. |
Ian Rogers | 72d3262 | 2014-05-06 16:20:11 -0700 | [diff] [blame] | 213 | CompiledMethod(CompilerDriver* driver, InstructionSet instruction_set, const std::string& code, |
Mathieu Chartier | 193bad9 | 2013-08-29 18:46:00 -0700 | [diff] [blame] | 214 | const std::string& symbol); |
Logan Chien | 6920bce | 2012-03-17 21:44:01 +0800 | [diff] [blame] | 215 | |
Ian Rogers | 0c7abda | 2012-09-19 13:33:42 -0700 | [diff] [blame] | 216 | ~CompiledMethod() {} |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 217 | |
Ian Rogers | 0c7abda | 2012-09-19 13:33:42 -0700 | [diff] [blame] | 218 | size_t GetFrameSizeInBytes() const { |
| 219 | return frame_size_in_bytes_; |
Logan Chien | 110bcba | 2012-04-16 19:11:28 +0800 | [diff] [blame] | 220 | } |
Ian Rogers | 0c7abda | 2012-09-19 13:33:42 -0700 | [diff] [blame] | 221 | |
| 222 | uint32_t GetCoreSpillMask() const { |
| 223 | return core_spill_mask_; |
| 224 | } |
| 225 | |
| 226 | uint32_t GetFpSpillMask() const { |
| 227 | return fp_spill_mask_; |
| 228 | } |
| 229 | |
Yevgeny Rouban | e3ea838 | 2014-08-08 16:29:38 +0700 | [diff] [blame] | 230 | const SrcMap& GetSrcMappingTable() const { |
| 231 | DCHECK(src_mapping_table_ != nullptr); |
| 232 | return *src_mapping_table_; |
| 233 | } |
| 234 | |
Ian Rogers | 96faf5b | 2013-08-09 22:05:32 -0700 | [diff] [blame] | 235 | const std::vector<uint8_t>& GetMappingTable() const { |
Mathieu Chartier | 193bad9 | 2013-08-29 18:46:00 -0700 | [diff] [blame] | 236 | DCHECK(mapping_table_ != nullptr); |
| 237 | return *mapping_table_; |
Ian Rogers | 0c7abda | 2012-09-19 13:33:42 -0700 | [diff] [blame] | 238 | } |
| 239 | |
Ian Rogers | 96faf5b | 2013-08-09 22:05:32 -0700 | [diff] [blame] | 240 | const std::vector<uint8_t>& GetVmapTable() const { |
Mathieu Chartier | 193bad9 | 2013-08-29 18:46:00 -0700 | [diff] [blame] | 241 | DCHECK(vmap_table_ != nullptr); |
| 242 | return *vmap_table_; |
Ian Rogers | 0c7abda | 2012-09-19 13:33:42 -0700 | [diff] [blame] | 243 | } |
| 244 | |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 245 | std::vector<uint8_t> const* GetGcMap() const { |
| 246 | return gc_map_; |
Ian Rogers | 0c7abda | 2012-09-19 13:33:42 -0700 | [diff] [blame] | 247 | } |
Logan Chien | 110bcba | 2012-04-16 19:11:28 +0800 | [diff] [blame] | 248 | |
Mark Mendell | ae9fd93 | 2014-02-10 16:14:35 -0800 | [diff] [blame] | 249 | const std::vector<uint8_t>* GetCFIInfo() const { |
| 250 | return cfi_info_; |
| 251 | } |
| 252 | |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 253 | private: |
Ian Rogers | a182704 | 2013-04-18 16:36:43 -0700 | [diff] [blame] | 254 | // For quick code, the size of the activation used by the code. |
Ian Rogers | 0c7abda | 2012-09-19 13:33:42 -0700 | [diff] [blame] | 255 | const size_t frame_size_in_bytes_; |
Ian Rogers | a182704 | 2013-04-18 16:36:43 -0700 | [diff] [blame] | 256 | // For quick code, a bit mask describing spilled GPR callee-save registers. |
Ian Rogers | 169c9a7 | 2011-11-13 20:13:17 -0800 | [diff] [blame] | 257 | const uint32_t core_spill_mask_; |
Ian Rogers | a182704 | 2013-04-18 16:36:43 -0700 | [diff] [blame] | 258 | // For quick code, a bit mask describing spilled FPR callee-save registers. |
Ian Rogers | 169c9a7 | 2011-11-13 20:13:17 -0800 | [diff] [blame] | 259 | const uint32_t fp_spill_mask_; |
Yevgeny Rouban | e3ea838 | 2014-08-08 16:29:38 +0700 | [diff] [blame] | 260 | // For quick code, a set of pairs (PC, Line) mapping from native PC offset to Java line |
| 261 | SrcMap* src_mapping_table_; |
Ian Rogers | 96faf5b | 2013-08-09 22:05:32 -0700 | [diff] [blame] | 262 | // For quick code, a uleb128 encoded map from native PC offset to dex PC aswell as dex PC to |
| 263 | // native PC offset. Size prefixed. |
Mathieu Chartier | 193bad9 | 2013-08-29 18:46:00 -0700 | [diff] [blame] | 264 | std::vector<uint8_t>* mapping_table_; |
Ian Rogers | 96faf5b | 2013-08-09 22:05:32 -0700 | [diff] [blame] | 265 | // For quick code, a uleb128 encoded map from GPR/FPR register to dex register. Size prefixed. |
Mathieu Chartier | 193bad9 | 2013-08-29 18:46:00 -0700 | [diff] [blame] | 266 | std::vector<uint8_t>* vmap_table_; |
Ian Rogers | a182704 | 2013-04-18 16:36:43 -0700 | [diff] [blame] | 267 | // For quick code, a map keyed by native PC indices to bitmaps describing what dalvik registers |
| 268 | // are live. For portable code, the key is a dalvik PC. |
Mathieu Chartier | 193bad9 | 2013-08-29 18:46:00 -0700 | [diff] [blame] | 269 | std::vector<uint8_t>* gc_map_; |
Mark Mendell | ae9fd93 | 2014-02-10 16:14:35 -0800 | [diff] [blame] | 270 | // For quick code, a FDE entry for the debug_frame section. |
| 271 | std::vector<uint8_t>* cfi_info_; |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 272 | }; |
| 273 | |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 274 | } // namespace art |
| 275 | |
Mathieu Chartier | 193bad9 | 2013-08-29 18:46:00 -0700 | [diff] [blame] | 276 | #endif // ART_COMPILER_COMPILED_METHOD_H_ |