Lines Matching refs:Address

35 DILineInfo PDBContext::getLineInfoForAddress(object::SectionedAddress Address,  in getLineInfoForAddress()  argument
38 Result.FunctionName = getFunctionName(Address.Address, Specifier.FNKind); in getLineInfoForAddress()
42 Session->findSymbolByAddress(Address.Address, PDB_SymType::None); in getLineInfoForAddress()
51 auto LineNumbers = Session->findLineNumbersByAddress(Address.Address, Length); in getLineInfoForAddress()
68 PDBContext::getLineInfoForDataAddress(object::SectionedAddress Address) { in getLineInfoForDataAddress() argument
75 PDBContext::getLineInfoForAddressRange(object::SectionedAddress Address, in getLineInfoForAddressRange() argument
82 auto LineNumbers = Session->findLineNumbersByAddress(Address.Address, Size); in getLineInfoForAddressRange()
88 {LineInfo->getVirtualAddress(), Address.SectionIndex}, Specifier); in getLineInfoForAddressRange()
95 PDBContext::getInliningInfoForAddress(object::SectionedAddress Address, in getInliningInfoForAddress() argument
98 DILineInfo CurrentLine = getLineInfoForAddress(Address, Specifier); in getInliningInfoForAddress()
102 Session->findSymbolByAddress(Address.Address, PDB_SymType::Function); in getInliningInfoForAddress()
108 auto Frames = ParentFunc->findInlineFramesByVA(Address.Address); in getInliningInfoForAddress()
116 auto LineNumbers = Frame->findInlineeLinesByVA(Address.Address, Length); in getInliningInfoForAddress()
139 PDBContext::getLocalsForAddress(object::SectionedAddress Address) { in getLocalsForAddress() argument
143 std::string PDBContext::getFunctionName(uint64_t Address, in getFunctionName() argument
149 Session->findSymbolByAddress(Address, PDB_SymType::Function); in getFunctionName()
157 Session->findSymbolByAddress(Address, PDB_SymType::PublicSymbol); in getFunctionName()