/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
H A D | DefineExternalSectionStartAndEndSymbols.h | 28 SectionRangeSymbolDesc(Section &Sec, bool IsStart) in SectionRangeSymbolDesc() 29 : Sec(&Sec), IsStart(IsStart) {} in SectionRangeSymbolDesc() 31 bool IsStart = false; member 53 if (D.IsStart) { in operator()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | StackLifetime.cpp | 107 bool IsStart = II->getIntrinsicID() == Intrinsic::lifetime_start; in collectMarkers() local 108 if (IsStart) in collectMarkers() 110 BBMarkerSet[BB][II] = {AllocaNo, IsStart}; in collectMarkers() 139 << (M.IsStart ? "start " : "end ") << M.AllocaNo in collectMarkers() 145 if (M.IsStart) { in collectMarkers() 267 bool IsStart = It.second.IsStart; in calculateLiveIntervals() local 270 if (IsStart) { in calculateLiveIntervals()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | StackLifetime.h | 117 bool IsStart; member 120 /// List of {InstNo, {AllocaNo, IsStart}} for each BB, ordered by InstNo.
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | StackColoring.cpp | 851 bool IsStart = false; in calculateLiveIntervals() local 852 if (!isLifetimeStartOrEnd(MI, slots, IsStart)) in calculateLiveIntervals() 856 if (IsStart) { in calculateLiveIntervals()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | YAMLParser.cpp | 448 bool scanDocumentIndicator(bool IsStart); 1252 bool Scanner::scanDocumentIndicator(bool IsStart) { in scanFlowCollectionStart() 1259 T.Kind = IsStart ? Token::TK_DocumentStart : Token::TK_DocumentEnd; in scanFlowCollectionStart() 1232 scanDocumentIndicator(bool IsStart) scanDocumentIndicator() argument
|
/freebsd/contrib/llvm-project/clang/lib/Lex/ |
H A D | Lexer.cpp | 1546 bool IsStart, bool &IsExtension) { in isMathematicalExtensionID() argument 1552 (!IsStart && MathContinueChars.contains(C))) { in isMathematicalExtensionID()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineCalls.cpp | 767 std::function<bool(const IntrinsicInst &)> IsStart) { in removeTriviallyEmptyRange() argument 777 if (IsStart(*I)) { in removeTriviallyEmptyRange()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | SelectionDAG.h | 1347 SDValue getLifetimeNode(bool IsStart, const SDLoc &dl, SDValue Chain,
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CodeGenFunction.h | 3021 llvm::Value *EmitVAStartEnd(llvm::Value *ArgValue, bool IsStart);
|
H A D | CGBuiltin.cpp | 801 Value *CodeGenFunction::EmitVAStartEnd(Value *ArgValue, bool IsStart) { in EmitVAStartEnd() argument 802 Intrinsic::ID inst = IsStart ? Intrinsic::vastart : Intrinsic::vaend; in EmitVAStartEnd()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGBuilder.cpp | 7536 bool IsStart = (Intrinsic == Intrinsic::lifetime_start); in visitIntrinsicCall() local 7565 Res = DAG.getLifetimeNode(IsStart, sdl, getRoot(), FrameIndex, ObjectSize, in visitIntrinsicCall()
|
H A D | SelectionDAG.cpp | 8782 SDValue SelectionDAG::getLifetimeNode(bool IsStart, const SDLoc &dl, in getLifetimeNode() argument 8785 const unsigned Opcode = IsStart ? ISD::LIFETIME_START : ISD::LIFETIME_END; in getLifetimeNode()
|