Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/lib/Frontend/
HDTextDiagnostic.cpp420 unsigned NewStart = map.startOfPreviousColumn(SourceStart); in selectInterestingSourceRegion() local
425 while (NewStart && isWhitespace(SourceLine[NewStart])) in selectInterestingSourceRegion()
426 NewStart = map.startOfPreviousColumn(NewStart); in selectInterestingSourceRegion()
429 while (NewStart) { in selectInterestingSourceRegion()
430 unsigned Prev = map.startOfPreviousColumn(NewStart); in selectInterestingSourceRegion()
433 NewStart = Prev; in selectInterestingSourceRegion()
436 assert(map.byteToColumn(NewStart) != -1); in selectInterestingSourceRegion()
438 map.byteToColumn(NewStart); in selectInterestingSourceRegion()
440 SourceStart = NewStart; in selectInterestingSourceRegion()
/NextBSD/contrib/llvm/lib/CodeGen/
HDLiveInterval.cpp139 iterator extendSegmentStartTo(iterator I, SlotIndex NewStart) { in extendSegmentStartTo() argument
148 S->start = NewStart; in extendSegmentStartTo()
154 } while (NewStart <= MergeTo->start); in extendSegmentStartTo()
158 if (MergeTo->end >= NewStart && MergeTo->valno == ValNo) { in extendSegmentStartTo()
164 MergeToSeg->start = NewStart; in extendSegmentStartTo()
HDStackColoring.cpp433 SlotIndex NewStart = Indexes->getMBBStartIdx(&MBB); in calculateLiveIntervals() local
435 Intervals[i]->addSegment(LiveInterval::Segment(NewStart, F, ValNum)); in calculateLiveIntervals()
/NextBSD/contrib/llvm/lib/Transforms/InstCombine/
HDInstCombineCalls.cpp854 unsigned NewStart, NewWidth; in visitCallInst() local
857 NewStart = Start; in visitCallInst()
858 NewWidth = std::max(End, SourceEnd) - NewStart; in visitCallInst()
861 NewStart = SourceStart; in visitCallInst()
862 NewWidth = std::max(SourceEnd, End) - NewStart; in visitCallInst()
870 II->getArgOperand(3)->getType(), NewStart, false); in visitCallInst()
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaOpenMP.cpp2992 auto NewStart = Transform.TransformExpr(Start.get()->IgnoreImplicit()); in BuildCounterInit() local
2993 if (NewStart.isInvalid()) in BuildCounterInit()
2995 NewStart = SemaRef.PerformImplicitConversion( in BuildCounterInit()
2996 NewStart.get(), Start.get()->IgnoreImplicit()->getType(), in BuildCounterInit()
2999 if (NewStart.isInvalid()) in BuildCounterInit()
3001 NewStart = SemaRef.PerformImplicitConversion( in BuildCounterInit()
3002 NewStart.get(), VarRef.get()->getType(), Sema::AA_Converting, in BuildCounterInit()
3004 if (!NewStart.isUsable()) in BuildCounterInit()
3008 SemaRef.BuildBinOp(S, Loc, BO_Assign, VarRef.get(), NewStart.get()); in BuildCounterInit()
3039 auto NewStart = Transform.TransformExpr(Start.get()->IgnoreImplicit()); in BuildCounterUpdate() local
[all …]