diff options
author | Alexey Samsonov <samsonov@google.com> | 2013-10-18 07:03:16 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2013-10-18 07:03:16 +0000 |
commit | 71f6d6ee1a42a39b897f165802716baaad91e21b (patch) | |
tree | 538bd44625616c5ee0ea83275a92c88e44079165 /include | |
parent | ab887bf52c99c2c9a4346b6dea2b8118e18a4282 (diff) | |
download | external_llvm-71f6d6ee1a42a39b897f165802716baaad91e21b.zip external_llvm-71f6d6ee1a42a39b897f165802716baaad91e21b.tar.gz external_llvm-71f6d6ee1a42a39b897f165802716baaad91e21b.tar.bz2 |
[DebugInfo] Remove dead code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192952 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/DebugInfo/DWARFFormValue.h | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/include/llvm/DebugInfo/DWARFFormValue.h b/include/llvm/DebugInfo/DWARFFormValue.h index f92d5a9..c88e42a 100644 --- a/include/llvm/DebugInfo/DWARFFormValue.h +++ b/include/llvm/DebugInfo/DWARFFormValue.h @@ -33,14 +33,6 @@ public: bool IsDWOIndex; }; - enum { - eValueTypeInvalid = 0, - eValueTypeUnsigned, - eValueTypeSigned, - eValueTypeCStr, - eValueTypeBlock - }; - private: uint16_t Form; // Form for this value. ValueType Value; // Contains all data for the form. @@ -55,19 +47,18 @@ public: bool isInlinedCStr() const { return Value.data != NULL && Value.data == (const uint8_t*)Value.cstr; } - const uint8_t *BlockData() const; - uint64_t getReference(const DWARFUnit *U) const; + uint64_t getReference(const DWARFUnit *U) const; uint64_t getUnsigned() const { return Value.uval; } int64_t getSigned() const { return Value.sval; } const char *getAsCString(const DWARFUnit *U) const; uint64_t getAsAddress(const DWARFUnit *U) const; + bool skipValue(DataExtractor debug_info_data, uint32_t *offset_ptr, const DWARFUnit *u) const; static bool skipValue(uint16_t form, DataExtractor debug_info_data, uint32_t *offset_ptr, const DWARFUnit *u); - static bool isBlockForm(uint16_t form); - static bool isDataForm(uint16_t form); + static const uint8_t *getFixedFormSizes(uint8_t AddrSize, uint16_t Version); }; |