diff options
author | David Srbecky <dsrbecky@google.com> | 2015-04-08 12:30:18 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-04-08 12:30:19 +0000 |
commit | cde8e5da3e774a2494b051043130c0495eca09ef (patch) | |
tree | 634d8ae50583df30fd743ee1e1e6c97591e95484 /compiler/utils/x86/assembler_x86.h | |
parent | 8635e1886f3624154c076cf40cbf182c74e2e0e3 (diff) | |
parent | 8c57831b2b07185ee1986b9af68a351e1ca584c3 (diff) | |
download | android_art-cde8e5da3e774a2494b051043130c0495eca09ef.tar.gz android_art-cde8e5da3e774a2494b051043130c0495eca09ef.tar.bz2 android_art-cde8e5da3e774a2494b051043130c0495eca09ef.zip |
Merge "Remove the old CFI infrastructure."
Diffstat (limited to 'compiler/utils/x86/assembler_x86.h')
-rw-r--r-- | compiler/utils/x86/assembler_x86.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/compiler/utils/x86/assembler_x86.h b/compiler/utils/x86/assembler_x86.h index bdf88435a4..046df02b94 100644 --- a/compiler/utils/x86/assembler_x86.h +++ b/compiler/utils/x86/assembler_x86.h @@ -205,7 +205,7 @@ class Address : public Operand { class X86Assembler FINAL : public Assembler { public: - explicit X86Assembler() : cfi_cfa_offset_(0), cfi_pc_(0) {} + explicit X86Assembler() {} virtual ~X86Assembler() {} /* @@ -599,12 +599,6 @@ class X86Assembler FINAL : public Assembler { // and branch to a ExceptionSlowPath if it is. void ExceptionPoll(ManagedRegister scratch, size_t stack_adjust) OVERRIDE; - void InitializeFrameDescriptionEntry() OVERRIDE; - void FinalizeFrameDescriptionEntry() OVERRIDE; - std::vector<uint8_t>* GetFrameDescriptionEntry() OVERRIDE { - return &cfi_info_; - } - private: inline void EmitUint8(uint8_t value); inline void EmitInt32(int32_t value); @@ -623,9 +617,6 @@ class X86Assembler FINAL : public Assembler { void EmitGenericShift(int rm, Register reg, const Immediate& imm); void EmitGenericShift(int rm, Register operand, Register shifter); - std::vector<uint8_t> cfi_info_; - uint32_t cfi_cfa_offset_, cfi_pc_; - DISALLOW_COPY_AND_ASSIGN(X86Assembler); }; |