Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DSafeStackColoring.cpp48 bool StackColoring::readMarker(Instruction *I, bool *IsStart) { in readMarker() argument
53 *IsStart = II->getIntrinsicID() == Intrinsic::lifetime_start; in readMarker()
86 bool IsStart; in collectMarkers() local
87 if (!readMarker(UI, &IsStart)) in collectMarkers()
89 if (IsStart) in collectMarkers()
91 BBMarkerSet[UI->getParent()][UI] = {AllocaNo, IsStart}; in collectMarkers()
125 << (M.IsStart ? "start " : "end ") << M.AllocaNo in collectMarkers()
132 if (M.IsStart) { in collectMarkers()
229 bool IsStart = It.second.IsStart; in calculateLiveIntervals() local
232 if (IsStart) { in calculateLiveIntervals()
H A DSafeStackColoring.h103 bool IsStart; member
113 bool readMarker(Instruction *I, bool *IsStart);
H A DStackColoring.cpp836 bool IsStart = false; in calculateLiveIntervals() local
837 if (!isLifetimeStartOrEnd(MI, slots, IsStart)) in calculateLiveIntervals()
841 if (IsStart) { in calculateLiveIntervals()
/freebsd-12.1/contrib/llvm/lib/Support/
H A DYAMLParser.cpp450 bool scanDocumentIndicator(bool IsStart);
1136 bool Scanner::scanDocumentIndicator(bool IsStart) { in scanDocumentIndicator() argument
1142 T.Kind = IsStart ? Token::TK_DocumentStart : Token::TK_DocumentEnd; in scanDocumentIndicator()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenFunction.h2383 llvm::Value *EmitVAStartEnd(llvm::Value *ArgValue, bool IsStart);
H A DCGBuiltin.cpp472 Value *CodeGenFunction::EmitVAStartEnd(Value *ArgValue, bool IsStart) { in EmitVAStartEnd() argument
478 Intrinsic::ID inst = IsStart ? Intrinsic::vastart : Intrinsic::vaend; in EmitVAStartEnd()
/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp6095 bool IsStart = (Intrinsic == Intrinsic::lifetime_start); in visitIntrinsicCall() local
6123 unsigned Opcode = (IsStart ? ISD::LIFETIME_START : ISD::LIFETIME_END); in visitIntrinsicCall()