Home
last modified time | relevance | path

Searched refs:CodeViewRecordIO (Results 1 – 7 of 7) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/DebugInfo/CodeView/
H A DCodeViewRecordIO.cpp19 Error CodeViewRecordIO::beginRecord(Optional<uint32_t> MaxLength) { in beginRecord()
27 Error CodeViewRecordIO::endRecord() { in endRecord()
41 uint32_t CodeViewRecordIO::maxFieldLength() const { in maxFieldLength()
60 Error CodeViewRecordIO::padToAlignment(uint32_t Align) { in padToAlignment()
66 Error CodeViewRecordIO::skipPadding() { in skipPadding()
102 Error CodeViewRecordIO::mapInteger(TypeIndex &TypeInd) { in mapInteger()
116 Error CodeViewRecordIO::mapEncodedInteger(int64_t &Value) { in mapEncodedInteger()
135 Error CodeViewRecordIO::mapEncodedInteger(uint64_t &Value) { in mapEncodedInteger()
148 Error CodeViewRecordIO::mapEncodedInteger(APSInt &Value) { in mapEncodedInteger()
158 Error CodeViewRecordIO::mapStringZ(StringRef &Value) { in mapStringZ()
[all …]
H A DTypeRecordMapping.cpp24 Error operator()(CodeViewRecordIO &IO, OneMethodRecord &Method) const { in operator ()()
47 static Error mapNameAndUniqueName(CodeViewRecordIO &IO, StringRef &Name, in mapNameAndUniqueName()
175 [](CodeViewRecordIO &IO, TypeIndex &N) { return IO.mapInteger(N); })); in visitKnownRecord()
184 [](CodeViewRecordIO &IO, TypeIndex &N) { return IO.mapInteger(N); })); in visitKnownRecord()
302 [](CodeViewRecordIO &IO, StringRef &S) { return IO.mapStringZ(S); })); in visitKnownRecord()
354 [](CodeViewRecordIO &IO, TypeIndex &N) { return IO.mapInteger(N); })); in visitKnownRecord()
H A DSymbolRecordMapping.cpp21 Error operator()(CodeViewRecordIO &IO, LocalVariableAddrGap &Gap) const { in operator ()()
29 static Error mapLocalVariableAddrRange(CodeViewRecordIO &IO, in mapLocalVariableAddrRange()
433 [](CodeViewRecordIO &IO, TypeIndex &N) { return IO.mapInteger(N); })); in visitKnownRecord()
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeViewRecordIO.h30 class CodeViewRecordIO {
36 explicit CodeViewRecordIO(BinaryStreamReader &Reader) : Reader(&Reader) {} in CodeViewRecordIO() function
37 explicit CodeViewRecordIO(BinaryStreamWriter &Writer) : Writer(&Writer) {} in CodeViewRecordIO() function
H A DSymbolRecordMapping.h41 CodeViewRecordIO IO;
H A DTypeRecordMapping.h47 CodeViewRecordIO IO;
/freebsd-12.1/lib/clang/libllvm/
H A DMakefile379 SRCS_MIN+= DebugInfo/CodeView/CodeViewRecordIO.cpp