Searched refs:IsStart (Results 1 – 10 of 10) sorted by relevance
/third_party/skia/third_party/externals/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()
|
/third_party/node/deps/v8/src/strings/ |
D | unicode.cc | 43 static inline bool IsStart(int32_t entry) { return (entry & kStartBit) != 0; } in IsStart() function 81 bool is_start = IsStart(field); in LookupPredicate() 135 bool is_start = IsStart(field); in LookupMapping()
|
/third_party/skia/third_party/externals/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()
|
/third_party/node/deps/v8/src/compiler/backend/ |
D | register-allocator.h | 72 bool IsStart() const { return (value_ & (kHalfStep - 1)) == 0; } in IsStart() function 432 if (end_.IsGapPosition() && end_.IsStart()) { in LastGapIndex()
|
D | register-allocator.cc | 285 if (pos.IsStart()) { in operator <<() 2651 end = end.IsStart() ? end.PrevStart().End() : end.Start(); in NextIntervalStartsInDifferentBlocks() 2867 DCHECK(pos.IsStart() || pos.IsGapPosition() || in SplitRangeAt() 5045 gap_pos = pos.IsStart() ? Instruction::START : Instruction::END; in ConnectRanges() 5047 if (pos.IsStart()) { in ConnectRanges()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | SelectionDAG.h | 1091 SDValue getLifetimeNode(bool IsStart, const SDLoc &dl, SDValue Chain,
|
/third_party/skia/third_party/externals/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()
|