/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | SafeStackColoring.cpp | 47 bool StackColoring::readMarker(Instruction *I, bool *IsStart) { in readMarker() argument 52 *IsStart = II->getIntrinsicID() == Intrinsic::lifetime_start; in readMarker() 85 bool IsStart; in collectMarkers() local 86 if (!readMarker(UI, &IsStart)) in collectMarkers() 88 if (IsStart) in collectMarkers() 90 BBMarkerSet[UI->getParent()][UI] = {AllocaNo, IsStart}; in collectMarkers() 124 << (M.IsStart ? "start " : "end ") << M.AllocaNo in collectMarkers() 131 if (M.IsStart) { in collectMarkers() 228 bool IsStart = It.second.IsStart; in calculateLiveIntervals() local 231 if (IsStart) { in calculateLiveIntervals()
|
D | SafeStackColoring.h | 102 bool IsStart; member 112 bool readMarker(Instruction *I, bool *IsStart);
|
D | StackColoring.cpp | 836 bool IsStart = false; in calculateLiveIntervals() local 837 if (!isLifetimeStartOrEnd(MI, slots, IsStart)) in calculateLiveIntervals() 841 if (IsStart) { in calculateLiveIntervals()
|
/external/llvm/lib/CodeGen/ |
D | SafeStackColoring.cpp | 33 bool StackColoring::readMarker(Instruction *I, bool *IsStart) { in readMarker() argument 39 *IsStart = II->getIntrinsicID() == Intrinsic::lifetime_start; in readMarker() 72 bool IsStart; in collectMarkers() local 73 if (!readMarker(UI, &IsStart)) in collectMarkers() 75 if (IsStart) in collectMarkers() 77 BBMarkerSet[UI->getParent()][UI] = {AllocaNo, IsStart}; in collectMarkers() 111 << (M.IsStart ? "start " : "end ") << M.AllocaNo << ", " in collectMarkers() 118 if (M.IsStart) { in collectMarkers() 213 bool IsStart = It.second.IsStart; in calculateLiveIntervals() local 216 if (IsStart) { in calculateLiveIntervals()
|
D | SafeStackColoring.h | 87 bool IsStart; member 97 bool readMarker(Instruction *I, bool *IsStart);
|
D | StackColoring.cpp | 693 bool IsStart = false; in calculateLiveIntervals() local 694 if (!isLifetimeStartOrEnd(MI, slots, IsStart)) in calculateLiveIntervals() 698 if (IsStart) { in calculateLiveIntervals()
|
/external/llvm-project/llvm/lib/Analysis/ |
D | StackLifetime.cpp | 113 bool IsStart = II->getIntrinsicID() == Intrinsic::lifetime_start; in collectMarkers() local 114 if (IsStart) in collectMarkers() 116 BBMarkerSet[BB][II] = {AllocaNo, IsStart}; in collectMarkers() 145 << (M.IsStart ? "start " : "end ") << M.AllocaNo in collectMarkers() 151 if (M.IsStart) { in collectMarkers() 256 bool IsStart = It.second.IsStart; in calculateLiveIntervals() local 259 if (IsStart) { in calculateLiveIntervals()
|
/external/tensorflow/tensorflow/core/profiler/internal/cpu/ |
D | traceme_recorder.h | 60 bool IsStart() const { return end_time < 0; } in IsStart() function 64 if (IsStart()) return -end_time; in ActivityId()
|
D | traceme_recorder.cc | 58 DCHECK(event.IsStart()); in AddStart() 175 if (event.IsStart()) { in Consume()
|
/external/llvm-project/llvm/include/llvm/Analysis/ |
D | StackLifetime.h | 117 bool IsStart; member
|
/external/llvm-project/llvm/lib/CodeGen/ |
D | StackColoring.cpp | 882 bool IsStart = false; in calculateLiveIntervals() local 883 if (!isLifetimeStartOrEnd(MI, slots, IsStart)) in calculateLiveIntervals() 887 if (IsStart) { in calculateLiveIntervals()
|
/external/llvm-project/llvm/lib/Support/ |
D | YAMLParser.cpp | 442 bool scanDocumentIndicator(bool IsStart); 1133 bool Scanner::scanDocumentIndicator(bool IsStart) { in scanDocumentIndicator() argument 1139 T.Kind = IsStart ? Token::TK_DocumentStart : Token::TK_DocumentEnd; in scanDocumentIndicator()
|
/external/llvm/lib/Support/ |
D | YAMLParser.cpp | 459 bool scanDocumentIndicator(bool IsStart); 1142 bool Scanner::scanDocumentIndicator(bool IsStart) { in scanDocumentIndicator() argument 1148 T.Kind = IsStart ? Token::TK_DocumentStart : Token::TK_DocumentEnd; in scanDocumentIndicator()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | YAMLParser.cpp | 449 bool scanDocumentIndicator(bool IsStart); 1140 bool Scanner::scanDocumentIndicator(bool IsStart) { in scanDocumentIndicator() argument 1146 T.Kind = IsStart ? Token::TK_DocumentStart : Token::TK_DocumentEnd; in scanDocumentIndicator()
|
/external/llvm-project/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCalls.cpp | 599 std::function<bool(const IntrinsicInst &)> IsStart) { in removeTriviallyEmptyRange() argument 609 if (IsStart(*I)) { in removeTriviallyEmptyRange()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | SelectionDAG.h | 1091 SDValue getLifetimeNode(bool IsStart, const SDLoc &dl, SDValue Chain,
|
/external/llvm-project/llvm/include/llvm/CodeGen/ |
D | SelectionDAG.h | 1203 SDValue getLifetimeNode(bool IsStart, const SDLoc &dl, SDValue Chain,
|
/external/clang/lib/CodeGen/ |
D | CodeGenFunction.h | 1865 llvm::Value *EmitVAStartEnd(llvm::Value *ArgValue, bool IsStart);
|
D | CGBuiltin.cpp | 390 Value *CodeGenFunction::EmitVAStartEnd(Value *ArgValue, bool IsStart) { in EmitVAStartEnd() argument 396 Intrinsic::ID inst = IsStart ? Intrinsic::vastart : Intrinsic::vaend; in EmitVAStartEnd()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CodeGenFunction.h | 2657 llvm::Value *EmitVAStartEnd(llvm::Value *ArgValue, bool IsStart);
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 6728 SDValue SelectionDAG::getLifetimeNode(bool IsStart, const SDLoc &dl, in getLifetimeNode() argument 6731 const unsigned Opcode = IsStart ? ISD::LIFETIME_START : ISD::LIFETIME_END; in getLifetimeNode()
|
D | SelectionDAGBuilder.cpp | 6681 bool IsStart = (Intrinsic == Intrinsic::lifetime_start); in visitIntrinsicCall() local 6711 Res = DAG.getLifetimeNode(IsStart, sdl, getRoot(), FrameIndex, ObjectSize, in visitIntrinsicCall()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 5541 bool IsStart = (Intrinsic == Intrinsic::lifetime_start); in visitIntrinsicCall() local 5569 unsigned Opcode = (IsStart ? ISD::LIFETIME_START : ISD::LIFETIME_END); in visitIntrinsicCall()
|
/external/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 6841 SDValue SelectionDAG::getLifetimeNode(bool IsStart, const SDLoc &dl, in getLifetimeNode() argument 6844 const unsigned Opcode = IsStart ? ISD::LIFETIME_START : ISD::LIFETIME_END; in getLifetimeNode()
|
D | SelectionDAGBuilder.cpp | 6586 bool IsStart = (Intrinsic == Intrinsic::lifetime_start); in visitIntrinsicCall() local 6616 Res = DAG.getLifetimeNode(IsStart, sdl, getRoot(), FrameIndex, ObjectSize, in visitIntrinsicCall()
|