Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DMCCodeView.cpp520 MCCVFunctionInfo::LineInfo LastSourceLoc, CurSourceLoc; in encodeInlineLineTable() local
539 CurSourceLoc.File = Loc.getFileNum(); in encodeInlineLineTable()
540 CurSourceLoc.Line = Loc.getLine(); in encodeInlineLineTable()
547 CurSourceLoc = I->second; in encodeInlineLineTable()
565 if (HaveOpenRange && CurSourceLoc.File == LastSourceLoc.File && in encodeInlineLineTable()
566 CurSourceLoc.Line == LastSourceLoc.Line) in encodeInlineLineTable()
571 if (CurSourceLoc.File != LastSourceLoc.File) { in encodeInlineLineTable()
573 Files[CurSourceLoc.File - 1] in encodeInlineLineTable()
580 int LineDelta = CurSourceLoc.Line - LastSourceLoc.Line; in encodeInlineLineTable()
602 LastSourceLoc = CurSourceLoc; in encodeInlineLineTable()