summaryrefslogtreecommitdiffstats
path: root/compiler/compilers.h
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2014-08-05 20:21:05 -0700
committerAndreas Gampe <agampe@google.com>2014-08-06 14:18:59 -0700
commit79273802f2b788bcd3eb76edf4df1bcaa57f886f (patch)
tree44dd09d962cc7a38eb6312296e45e98ae9c469f2 /compiler/compilers.h
parent1b192268f167f603fc372f02f9067f3ce5d82daf (diff)
downloadandroid_art-79273802f2b788bcd3eb76edf4df1bcaa57f886f.tar.gz
android_art-79273802f2b788bcd3eb76edf4df1bcaa57f886f.tar.bz2
android_art-79273802f2b788bcd3eb76edf4df1bcaa57f886f.zip
ART: Rework CFA frame initialization and writing code
Move eh_frame initialization code and CFI writing code to elf_writer_quick to remove hard-wired dependencies on specific Quick-compiler backends. Change-Id: I27ee8ce7245da33a20c90e0086b8d4fd0a2baf4d
Diffstat (limited to 'compiler/compilers.h')
-rw-r--r--compiler/compilers.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/compiler/compilers.h b/compiler/compilers.h
index 2c231e1212..151bf6fa6c 100644
--- a/compiler/compilers.h
+++ b/compiler/compilers.h
@@ -56,17 +56,6 @@ class QuickCompiler : public Compiler {
void InitCompilationUnit(CompilationUnit& cu) const OVERRIDE {}
- /*
- * @brief Generate and return Dwarf CFI initialization, if supported by the
- * backend.
- * @param driver CompilerDriver for this compile.
- * @returns nullptr if not supported by backend or a vector of bytes for CFI DWARF
- * information.
- * @note This is used for backtrace information in generated code.
- */
- std::vector<uint8_t>* GetCallFrameInformationInitialization(const CompilerDriver& driver) const
- OVERRIDE;
-
private:
DISALLOW_COPY_AND_ASSIGN(QuickCompiler);
};