diff options
author | Andreas Gampe <agampe@google.com> | 2014-08-06 21:20:31 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-08-06 17:20:04 +0000 |
commit | 0f56c9cae0f570483a1d420172377b1754331025 (patch) | |
tree | 18d413d0bd027c4a6ea6d491cab21ebca58e0283 /compiler/driver/compiler_driver.h | |
parent | e564bded1862fb97b64517fb78a8c5c5df467850 (diff) | |
parent | 79273802f2b788bcd3eb76edf4df1bcaa57f886f (diff) | |
download | art-0f56c9cae0f570483a1d420172377b1754331025.zip art-0f56c9cae0f570483a1d420172377b1754331025.tar.gz art-0f56c9cae0f570483a1d420172377b1754331025.tar.bz2 |
Merge "ART: Rework CFA frame initialization and writing code"
Diffstat (limited to 'compiler/driver/compiler_driver.h')
-rw-r--r-- | compiler/driver/compiler_driver.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/compiler/driver/compiler_driver.h b/compiler/driver/compiler_driver.h index efedabf..e6927d1 100644 --- a/compiler/driver/compiler_driver.h +++ b/compiler/driver/compiler_driver.h @@ -402,10 +402,6 @@ class CompilerDriver { return dump_passes_; } - bool DidIncludeDebugSymbols() const { - return compiler_options_->GetIncludeDebugSymbols(); - } - CumulativeLogger* GetTimingsLogger() const { return timings_logger_; } @@ -599,14 +595,6 @@ class CompilerDriver { std::vector<uint8_t>* DeduplicateGCMap(const std::vector<uint8_t>& code); std::vector<uint8_t>* DeduplicateCFIInfo(const std::vector<uint8_t>* cfi_info); - /* - * @brief return the pointer to the Call Frame Information. - * @return pointer to call frame information for this compilation. - */ - std::vector<uint8_t>* GetCallFrameInformation() const { - return cfi_info_.get(); - } - ProfileFile profile_file_; bool profile_present_; @@ -770,9 +758,6 @@ class CompilerDriver { bool support_boot_image_fixup_; - // Call Frame Information, which might be generated to help stack tracebacks. - std::unique_ptr<std::vector<uint8_t>> cfi_info_; - // DeDuplication data structures, these own the corresponding byte arrays. class DedupeHashFunc { public: |