Lines Matching refs:Address

33 DILineInfo PDBContext::getLineInfoForAddress(object::SectionedAddress Address,  in getLineInfoForAddress()  argument
36 Result.FunctionName = getFunctionName(Address.Address, Specifier.FNKind); in getLineInfoForAddress()
40 Session->findSymbolByAddress(Address.Address, PDB_SymType::None); in getLineInfoForAddress()
49 auto LineNumbers = Session->findLineNumbersByAddress(Address.Address, Length); in getLineInfoForAddress()
66 PDBContext::getLineInfoForAddressRange(object::SectionedAddress Address, in getLineInfoForAddressRange() argument
73 auto LineNumbers = Session->findLineNumbersByAddress(Address.Address, Size); in getLineInfoForAddressRange()
79 {LineInfo->getVirtualAddress(), Address.SectionIndex}, Specifier); in getLineInfoForAddressRange()
86 PDBContext::getInliningInfoForAddress(object::SectionedAddress Address, in getInliningInfoForAddress() argument
89 DILineInfo CurrentLine = getLineInfoForAddress(Address, Specifier); in getInliningInfoForAddress()
93 Session->findSymbolByAddress(Address.Address, PDB_SymType::Function); in getInliningInfoForAddress()
99 auto Frames = ParentFunc->findInlineFramesByVA(Address.Address); in getInliningInfoForAddress()
107 auto LineNumbers = Frame->findInlineeLinesByVA(Address.Address, Length); in getInliningInfoForAddress()
130 PDBContext::getLocalsForAddress(object::SectionedAddress Address) { in getLocalsForAddress() argument
134 std::string PDBContext::getFunctionName(uint64_t Address, in getFunctionName() argument
140 Session->findSymbolByAddress(Address, PDB_SymType::Function); in getFunctionName()
148 Session->findSymbolByAddress(Address, PDB_SymType::PublicSymbol); in getFunctionName()