mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-29 10:32:47 +00:00
[DebugInfo] Remove dead code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192952 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ab887bf52c
commit
71f6d6ee1a
@ -33,14 +33,6 @@ public:
|
|||||||
bool IsDWOIndex;
|
bool IsDWOIndex;
|
||||||
};
|
};
|
||||||
|
|
||||||
enum {
|
|
||||||
eValueTypeInvalid = 0,
|
|
||||||
eValueTypeUnsigned,
|
|
||||||
eValueTypeSigned,
|
|
||||||
eValueTypeCStr,
|
|
||||||
eValueTypeBlock
|
|
||||||
};
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
uint16_t Form; // Form for this value.
|
uint16_t Form; // Form for this value.
|
||||||
ValueType Value; // Contains all data for the form.
|
ValueType Value; // Contains all data for the form.
|
||||||
@ -55,19 +47,18 @@ public:
|
|||||||
bool isInlinedCStr() const {
|
bool isInlinedCStr() const {
|
||||||
return Value.data != NULL && Value.data == (const uint8_t*)Value.cstr;
|
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; }
|
uint64_t getUnsigned() const { return Value.uval; }
|
||||||
int64_t getSigned() const { return Value.sval; }
|
int64_t getSigned() const { return Value.sval; }
|
||||||
const char *getAsCString(const DWARFUnit *U) const;
|
const char *getAsCString(const DWARFUnit *U) const;
|
||||||
uint64_t getAsAddress(const DWARFUnit *U) const;
|
uint64_t getAsAddress(const DWARFUnit *U) const;
|
||||||
|
|
||||||
bool skipValue(DataExtractor debug_info_data, uint32_t *offset_ptr,
|
bool skipValue(DataExtractor debug_info_data, uint32_t *offset_ptr,
|
||||||
const DWARFUnit *u) const;
|
const DWARFUnit *u) const;
|
||||||
static bool skipValue(uint16_t form, DataExtractor debug_info_data,
|
static bool skipValue(uint16_t form, DataExtractor debug_info_data,
|
||||||
uint32_t *offset_ptr, const DWARFUnit *u);
|
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);
|
static const uint8_t *getFixedFormSizes(uint8_t AddrSize, uint16_t Version);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -479,34 +479,3 @@ uint64_t DWARFFormValue::getReference(const DWARFUnit *cu) const {
|
|||||||
|
|
||||||
return die_offset;
|
return die_offset;
|
||||||
}
|
}
|
||||||
|
|
||||||
const uint8_t *DWARFFormValue::BlockData() const {
|
|
||||||
if (!isInlinedCStr())
|
|
||||||
return Value.data;
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool DWARFFormValue::isBlockForm(uint16_t form) {
|
|
||||||
switch (form) {
|
|
||||||
case DW_FORM_exprloc:
|
|
||||||
case DW_FORM_block:
|
|
||||||
case DW_FORM_block1:
|
|
||||||
case DW_FORM_block2:
|
|
||||||
case DW_FORM_block4:
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool DWARFFormValue::isDataForm(uint16_t form) {
|
|
||||||
switch (form) {
|
|
||||||
case DW_FORM_sdata:
|
|
||||||
case DW_FORM_udata:
|
|
||||||
case DW_FORM_data1:
|
|
||||||
case DW_FORM_data2:
|
|
||||||
case DW_FORM_data4:
|
|
||||||
case DW_FORM_data8:
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user