Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/DebugInfo/CodeView/
H A DSymbolRecordMapping.cpp438 RegRelativeSym &RegRel) { in visitKnownRecord() argument
440 error(IO.mapInteger(RegRel.Offset)); in visitKnownRecord()
441 error(IO.mapInteger(RegRel.Type)); in visitKnownRecord()
442 error(IO.mapEnum(RegRel.Register)); in visitKnownRecord()
443 error(IO.mapStringZ(RegRel.Name)); in visitKnownRecord()
H A DSymbolDumper.cpp600 RegRelativeSym &RegRel) { in visitKnownRecord() argument
601 W.printHex("Offset", RegRel.Offset); in visitKnownRecord()
602 printTypeIndex("Type", RegRel.Type); in visitKnownRecord()
603 W.printEnum("Register", uint16_t(RegRel.Register), getRegisterNames()); in visitKnownRecord()
604 W.printString("VarName", RegRel.Name); in visitKnownRecord()
/freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.cpp753 RegRelativeSym &RegRel) { in visitKnownRecord() argument
754 P.format(" `{0}`", RegRel.Name); in visitKnownRecord()
757 typeIndex(RegRel.Type), formatRegisterId(RegRel.Register), in visitKnownRecord()
758 RegRel.Offset); in visitKnownRecord()
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/PDB/
H A DPDBTypes.h236 RegRel, enumerator
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBLocationToDWARFExpression.cpp533 case PDB_LocType::RegRel: { in ConvertPDBLocationToDWARFExpression()
H A DSymbolFilePDB.cpp908 case PDB_LocType::RegRel: { in ParseVariableForPDBData()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/
H A DPDBExtras.cpp135 CASE_OUTPUT_ENUM_CLASS_STR(PDB_LocType, RegRel, "regrel", OS) in operator <<()