HomeSort by relevance Sort by last modified time
    Searched refs:DataExtractor (Results 1 - 20 of 20) sorted by null

  /external/llvm/lib/Support/
DataExtractor.cpp 1 //===-- DataExtractor.cpp -------------------------------------------------===//
10 #include "llvm/Support/DataExtractor.h"
17 static T getU(uint32_t *offset_ptr, const DataExtractor *de,
34 const DataExtractor *de, bool isLittleEndian, const char *Data){
50 uint8_t DataExtractor::getU8(uint32_t *offset_ptr) const {
55 DataExtractor::getU8(uint32_t *offset_ptr, uint8_t *dst, uint32_t count) const {
61 uint16_t DataExtractor::getU16(uint32_t *offset_ptr) const {
65 uint16_t *DataExtractor::getU16(uint32_t *offset_ptr, uint16_t *dst,
71 uint32_t DataExtractor::getU32(uint32_t *offset_ptr) const {
75 uint32_t *DataExtractor::getU32(uint32_t *offset_ptr, uint32_t *dst
    [all...]
CMakeLists.txt 18 DataExtractor.cpp
  /external/llvm/lib/DebugInfo/
DWARFFormValue.h 13 #include "llvm/Support/DataExtractor.h"
52 bool extractValue(DataExtractor data, uint32_t *offset_ptr,
66 const char *getAsCString(const DataExtractor *debug_str_data_ptr) const;
67 bool skipValue(DataExtractor debug_info_data, uint32_t *offset_ptr,
69 static bool skipValue(uint16_t form, DataExtractor debug_info_data,
DWARFAbbreviationDeclaration.h 15 #include "llvm/Support/DataExtractor.h"
43 bool extract(DataExtractor data, uint32_t* offset_ptr);
44 bool extract(DataExtractor data, uint32_t* offset_ptr, uint32_t code);
DWARFContext.cpp 27 DataExtractor arangesData(getARangeSection(), isLittleEndian(), 0);
40 DataExtractor lineData(getLineSection(), isLittleEndian(),
48 DataExtractor strData(getStringSection(), isLittleEndian(), 0);
61 DataExtractor abbrData(getAbbrevSection(), isLittleEndian(), 0);
72 DataExtractor arangesData(getARangeSection(), isLittleEndian(), 0);
97 DataExtractor lineData(getLineSection(), isLittleEndian(),
104 const DataExtractor &debug_info_data = DataExtractor(getInfoSection(),
DWARFCompileUnit.h 39 DataExtractor getDebugInfoExtractor() const;
41 bool extract(DataExtractor debug_info, uint32_t* offset_ptr);
42 uint32_t extract(uint32_t offset, DataExtractor debug_info_data,
DWARFDebugAbbrev.h 44 bool extract(DataExtractor data, uint32_t* offset_ptr);
68 void parse(DataExtractor data);
DWARFDebugLine.h 13 #include "llvm/Support/DataExtractor.h"
170 static bool parsePrologue(DataExtractor debug_line_data, uint32_t *offset_ptr,
173 static bool parseStatementTable(DataExtractor debug_line_data,
177 const LineTable *getOrParseLineTable(DataExtractor debug_line_data,
DWARFCompileUnit.cpp 19 DataExtractor DWARFCompileUnit::getDebugInfoExtractor() const {
20 return DataExtractor(Context.getInfoSection(),
24 bool DWARFCompileUnit::extract(DataExtractor debug_info, uint32_t *offset_ptr) {
55 DWARFCompileUnit::extract(uint32_t offset, DataExtractor debug_info_data,
DWARFAbbreviationDeclaration.cpp 18 DWARFAbbreviationDeclaration::extract(DataExtractor data, uint32_t* offset_ptr){
23 DWARFAbbreviationDeclaration::extract(DataExtractor data, uint32_t* offset_ptr,
DWARFFormValue.cpp 82 DWARFFormValue::extractValue(DataExtractor data, uint32_t *offset_ptr,
168 DWARFFormValue::skipValue(DataExtractor debug_info_data, uint32_t* offset_ptr,
174 DWARFFormValue::skipValue(uint16_t form, DataExtractor debug_info_data,
261 DataExtractor debug_str_data(cu->getContext().getStringSection(), true, 0);
355 DWARFFormValue::getAsCString(const DataExtractor *debug_str_data_ptr) const {
DWARFDebugAbbrev.cpp 15 bool DWARFAbbreviationDeclarationSet::extract(DataExtractor data,
63 void DWARFDebugAbbrev::parse(DataExtractor data) {
DWARFDebugArangeSet.h 13 #include "llvm/Support/DataExtractor.h"
58 bool extract(DataExtractor data, uint32_t *offset_ptr);
DWARFDebugInfoEntry.cpp 25 DataExtractor debug_info_data = cu->getDebugInfoExtractor();
101 DataExtractor debug_info_data = cu->getDebugInfoExtractor();
213 DataExtractor debug_info_data = cu->getDebugInfoExtractor();
353 DataExtractor debug_info_data = cu->getDebugInfoExtractor();
383 DataExtractor stringExtractor(cu->getContext().getStringSection(),
DWARFDebugAranges.h 66 bool extract(DataExtractor debug_aranges_data);
DWARFDebugLine.cpp 117 DWARFDebugLine::getOrParseLineTable(DataExtractor debug_line_data,
132 DWARFDebugLine::parsePrologue(DataExtractor debug_line_data,
187 DWARFDebugLine::parseStatementTable(DataExtractor debug_line_data,
DWARFDebugArangeSet.cpp 50 DWARFDebugArangeSet::extract(DataExtractor data, uint32_t *offset_ptr) {
DWARFDebugAranges.cpp 60 bool DWARFDebugAranges::extract(DataExtractor debug_aranges_data) {
  /external/llvm/unittests/Support/
DataExtractorTest.cpp 1 //===- llvm/unittest/Support/DataExtractorTest.cpp - DataExtractor tests --===//
11 #include "llvm/Support/DataExtractor.h"
21 DataExtractor DE(StringRef(numberData, sizeof(numberData)-1), false, 8);
26 DataExtractor DE(StringRef(numberData, sizeof(numberData)-1), false, 8);
53 DE = DataExtractor(StringRef(numberData, sizeof(numberData)-1), true, 4);
74 DataExtractor DE(StringRef(numberData, sizeof(numberData)-1), false, 8);
91 DataExtractor DE(StringRef(stringData, sizeof(stringData)-1), false, 8);
101 DataExtractor DE(StringRef(leb128data, sizeof(leb128data)-1), false, 8);
  /external/llvm/include/llvm/Support/
DataExtractor.h 1 //===-- DataExtractor.h -----------------------------------------*- C++ -*-===//
17 class DataExtractor {
27 DataExtractor(StringRef Data, bool IsLittleEndian, uint8_t PointerSize)

Completed in 269 milliseconds