Nicolas Geoffray | f5df897 | 2014-02-14 18:37:08 +0000 | [diff] [blame] | 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 | |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame] | 17 | #ifndef ART_COMPILER_COMPILER_H_ |
| 18 | #define ART_COMPILER_COMPILER_H_ |
Nicolas Geoffray | f5df897 | 2014-02-14 18:37:08 +0000 | [diff] [blame] | 19 | |
| 20 | #include "dex_file.h" |
| 21 | #include "os.h" |
| 22 | |
| 23 | namespace art { |
| 24 | |
| 25 | class Backend; |
Ian Rogers | b48b9eb | 2014-02-28 16:20:21 -0800 | [diff] [blame] | 26 | struct CompilationUnit; |
Nicolas Geoffray | f5df897 | 2014-02-14 18:37:08 +0000 | [diff] [blame] | 27 | class CompilerDriver; |
| 28 | class CompiledMethod; |
Nicolas Geoffray | f5df897 | 2014-02-14 18:37:08 +0000 | [diff] [blame] | 29 | class OatWriter; |
| 30 | |
| 31 | namespace mirror { |
| 32 | class ArtMethod; |
| 33 | } |
| 34 | |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 35 | // Base class for compiler-specific thread-local storage for compiler worker threads |
| 36 | class CompilerTls { |
| 37 | public: |
| 38 | CompilerTls() {} |
| 39 | ~CompilerTls() {} |
| 40 | }; |
| 41 | |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame] | 42 | class Compiler { |
Nicolas Geoffray | f5df897 | 2014-02-14 18:37:08 +0000 | [diff] [blame] | 43 | public: |
| 44 | enum Kind { |
| 45 | kQuick, |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame] | 46 | kOptimizing, |
Nicolas Geoffray | f5df897 | 2014-02-14 18:37:08 +0000 | [diff] [blame] | 47 | kPortable |
| 48 | }; |
| 49 | |
Ian Rogers | 72d3262 | 2014-05-06 16:20:11 -0700 | [diff] [blame] | 50 | static Compiler* Create(CompilerDriver* driver, Kind kind); |
Nicolas Geoffray | f5df897 | 2014-02-14 18:37:08 +0000 | [diff] [blame] | 51 | |
Ian Rogers | 72d3262 | 2014-05-06 16:20:11 -0700 | [diff] [blame] | 52 | virtual void Init() const = 0; |
Nicolas Geoffray | f5df897 | 2014-02-14 18:37:08 +0000 | [diff] [blame] | 53 | |
Ian Rogers | 72d3262 | 2014-05-06 16:20:11 -0700 | [diff] [blame] | 54 | virtual void UnInit() const = 0; |
Nicolas Geoffray | f5df897 | 2014-02-14 18:37:08 +0000 | [diff] [blame] | 55 | |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 56 | virtual bool CanCompileMethod(uint32_t method_idx, const DexFile& dex_file, CompilationUnit* cu) |
| 57 | const = 0; |
| 58 | |
Ian Rogers | 72d3262 | 2014-05-06 16:20:11 -0700 | [diff] [blame] | 59 | virtual CompiledMethod* Compile(const DexFile::CodeItem* code_item, |
Nicolas Geoffray | f5df897 | 2014-02-14 18:37:08 +0000 | [diff] [blame] | 60 | uint32_t access_flags, |
| 61 | InvokeType invoke_type, |
| 62 | uint16_t class_def_idx, |
| 63 | uint32_t method_idx, |
| 64 | jobject class_loader, |
| 65 | const DexFile& dex_file) const = 0; |
| 66 | |
Ian Rogers | 72d3262 | 2014-05-06 16:20:11 -0700 | [diff] [blame] | 67 | static CompiledMethod* TryCompileWithSeaIR(const art::DexFile::CodeItem* code_item, |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame] | 68 | uint32_t access_flags, |
| 69 | art::InvokeType invoke_type, |
| 70 | uint16_t class_def_idx, |
| 71 | uint32_t method_idx, |
| 72 | jobject class_loader, |
| 73 | const art::DexFile& dex_file); |
| 74 | |
Ian Rogers | 72d3262 | 2014-05-06 16:20:11 -0700 | [diff] [blame] | 75 | virtual CompiledMethod* JniCompile(uint32_t access_flags, |
Nicolas Geoffray | f5df897 | 2014-02-14 18:37:08 +0000 | [diff] [blame] | 76 | uint32_t method_idx, |
| 77 | const DexFile& dex_file) const = 0; |
| 78 | |
Ian Rogers | b0fa5dc | 2014-04-28 16:47:08 -0700 | [diff] [blame] | 79 | virtual uintptr_t GetEntryPointOf(mirror::ArtMethod* method) const |
| 80 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0; |
Nicolas Geoffray | f5df897 | 2014-02-14 18:37:08 +0000 | [diff] [blame] | 81 | |
| 82 | virtual bool WriteElf(art::File* file, |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 83 | OatWriter* oat_writer, |
Nicolas Geoffray | f5df897 | 2014-02-14 18:37:08 +0000 | [diff] [blame] | 84 | const std::vector<const art::DexFile*>& dex_files, |
| 85 | const std::string& android_root, |
Ian Rogers | 72d3262 | 2014-05-06 16:20:11 -0700 | [diff] [blame] | 86 | bool is_host) const |
Nicolas Geoffray | f5df897 | 2014-02-14 18:37:08 +0000 | [diff] [blame] | 87 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0; |
| 88 | |
Ian Rogers | 72d3262 | 2014-05-06 16:20:11 -0700 | [diff] [blame] | 89 | virtual Backend* GetCodeGenerator(CompilationUnit* cu, void* compilation_unit) const = 0; |
Nicolas Geoffray | f5df897 | 2014-02-14 18:37:08 +0000 | [diff] [blame] | 90 | |
| 91 | uint64_t GetMaximumCompilationTimeBeforeWarning() const { |
| 92 | return maximum_compilation_time_before_warning_; |
| 93 | } |
| 94 | |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 95 | virtual bool IsPortable() const { |
| 96 | return false; |
| 97 | } |
| 98 | |
| 99 | void SetBitcodeFileName(const CompilerDriver& driver, const std::string& filename) { |
| 100 | UNUSED(driver); |
Nicolas Geoffray | f3e2cc4 | 2014-02-18 18:37:26 +0000 | [diff] [blame] | 101 | UNUSED(filename); |
| 102 | } |
Nicolas Geoffray | f5df897 | 2014-02-14 18:37:08 +0000 | [diff] [blame] | 103 | |
| 104 | virtual void InitCompilationUnit(CompilationUnit& cu) const = 0; |
| 105 | |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame] | 106 | virtual ~Compiler() {} |
Nicolas Geoffray | f5df897 | 2014-02-14 18:37:08 +0000 | [diff] [blame] | 107 | |
Mark Mendell | ae9fd93 | 2014-02-10 16:14:35 -0800 | [diff] [blame] | 108 | /* |
| 109 | * @brief Generate and return Dwarf CFI initialization, if supported by the |
| 110 | * backend. |
| 111 | * @param driver CompilerDriver for this compile. |
| 112 | * @returns nullptr if not supported by backend or a vector of bytes for CFI DWARF |
| 113 | * information. |
| 114 | * @note This is used for backtrace information in generated code. |
| 115 | */ |
| 116 | virtual std::vector<uint8_t>* GetCallFrameInformationInitialization(const CompilerDriver& driver) |
| 117 | const { |
| 118 | return nullptr; |
| 119 | } |
| 120 | |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 121 | virtual CompilerTls* CreateNewCompilerTls() { |
| 122 | return nullptr; |
| 123 | } |
| 124 | |
Ian Rogers | 72d3262 | 2014-05-06 16:20:11 -0700 | [diff] [blame] | 125 | protected: |
| 126 | explicit Compiler(CompilerDriver* driver, uint64_t warning) : |
| 127 | driver_(driver), maximum_compilation_time_before_warning_(warning) { |
| 128 | } |
| 129 | |
| 130 | CompilerDriver* GetCompilerDriver() const { |
| 131 | return driver_; |
| 132 | } |
| 133 | |
Nicolas Geoffray | f5df897 | 2014-02-14 18:37:08 +0000 | [diff] [blame] | 134 | private: |
Ian Rogers | 72d3262 | 2014-05-06 16:20:11 -0700 | [diff] [blame] | 135 | CompilerDriver* const driver_; |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 136 | const uint64_t maximum_compilation_time_before_warning_; |
Nicolas Geoffray | f5df897 | 2014-02-14 18:37:08 +0000 | [diff] [blame] | 137 | |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame] | 138 | DISALLOW_COPY_AND_ASSIGN(Compiler); |
Nicolas Geoffray | f5df897 | 2014-02-14 18:37:08 +0000 | [diff] [blame] | 139 | }; |
| 140 | |
| 141 | } // namespace art |
| 142 | |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame] | 143 | #endif // ART_COMPILER_COMPILER_H_ |