From 79273802f2b788bcd3eb76edf4df1bcaa57f886f Mon Sep 17 00:00:00 2001 From: Andreas Gampe Date: Tue, 5 Aug 2014 20:21:05 -0700 Subject: 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 --- compiler/compilers.h | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'compiler/compilers.h') 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* GetCallFrameInformationInitialization(const CompilerDriver& driver) const - OVERRIDE; - private: DISALLOW_COPY_AND_ASSIGN(QuickCompiler); }; -- cgit v1.2.3-59-g8ed1b