Searched refs:MCCVLoc (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCCodeView.h | 38 class MCCVLoc { 49 MCCVLoc(const MCSymbol *Label, unsigned functionid, unsigned fileNum, in MCCVLoc() function 180 void addLineEntry(const MCCVLoc &LineEntry); 182 std::vector<MCCVLoc> getFunctionLineEntries(unsigned FuncId); 187 ArrayRef<MCCVLoc> getLinesForExtent(size_t L, size_t R); 264 std::vector<MCCVLoc> MCCVLines;
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCCodeView.cpp | 132 addLineEntry(MCCVLoc{ in recordCVLoc() 263 void CodeViewContext::addLineEntry(const MCCVLoc &LineEntry) { in addLineEntry() 272 std::vector<MCCVLoc> 274 std::vector<MCCVLoc> FilteredLines; in getFunctionLineEntries() 301 FilteredLines.push_back(MCCVLoc(MCCVLines[Idx].getLabel(), FuncId, in getFunctionLineEntries() 339 ArrayRef<MCCVLoc> CodeViewContext::getLinesForExtent(size_t L, size_t R) { in getLinesForExtent() 362 std::vector<MCCVLoc> Locs = getFunctionLineEntries(FuncId); in emitLineTableForFunction() 363 bool HaveColumns = any_of(Locs, [](const MCCVLoc &LineEntry) { in emitLineTableForFunction() 373 std::find_if(I, E, [CurFileNum](const MCCVLoc &Loc) { in emitLineTableForFunction() 492 ArrayRef<MCCVLoc> Locs = getLinesForExtent(LocBegin, LocEnd); in encodeInlineLineTable() [all …]
|