Lines Matching refs:DIL
194 auto GetOffset = [](const DILocation *DIL) { in extractCallsFromIR() argument
195 return (DIL->getLine() - DIL->getScope()->getSubprogram()->getLine()) & in extractCallsFromIR()
221 for (const DILocation *DIL = I.getDebugLoc(); DIL; in extractCallsFromIR() local
222 DIL = DIL->getInlinedAt()) { in extractCallsFromIR()
223 StringRef CallerName = DIL->getSubprogramLinkageName(); in extractCallsFromIR()
246 LineLocation Loc = {GetOffset(DIL), DIL->getColumn()}; in extractCallsFromIR()
491 auto GetOffset = [](const DILocation *DIL) { in readMemprof() argument
492 return (DIL->getLine() - DIL->getScope()->getSubprogram()->getLine()) & in readMemprof()
522 for (const DILocation *DIL = I.getDebugLoc(); DIL != nullptr; in readMemprof() local
523 DIL = DIL->getInlinedAt()) { in readMemprof()
526 StringRef Name = DIL->getScope()->getSubprogram()->getLinkageName(); in readMemprof()
528 Name = DIL->getScope()->getSubprogram()->getName(); in readMemprof()
530 auto StackId = computeStackId(CalleeGUID, GetOffset(DIL), in readMemprof()
531 ProfileHasColumns ? DIL->getColumn() : 0); in readMemprof()