Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/
DSafeStackColoring.cpp33 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()
DSafeStackColoring.h87 bool IsStart; member
97 bool readMarker(Instruction *I, bool *IsStart);
DStackColoring.cpp693 bool IsStart = false; in calculateLiveIntervals() local
694 if (!isLifetimeStartOrEnd(MI, slots, IsStart)) in calculateLiveIntervals()
698 if (IsStart) { in calculateLiveIntervals()
/external/v8/src/
Dunicode.cc40 static inline bool IsStart(int32_t entry) { in IsStart() function
81 bool is_start = IsStart(field); in LookupPredicate()
137 bool is_start = IsStart(field); in LookupMapping()
/external/v8/src/compiler/
Dregister-allocator.h66 bool IsStart() const { return (value_ & (kHalfStep - 1)) == 0; } in IsStart() function
217 if (end_.IsGapPosition() && end_.IsStart()) { in LastGapIndex()
Dregister-allocator.cc391 if (pos.IsStart()) { in operator <<()
2522 end = end.IsStart() ? end.PrevStart().End() : end.Start(); in NextIntervalStartsInDifferentBlocks()
2613 DCHECK(pos.IsStart() || pos.IsGapPosition() || in SplitRangeAt()
3852 gap_pos = pos.IsStart() ? Instruction::START : Instruction::END; in ConnectRanges()
3854 if (pos.IsStart()) { in ConnectRanges()
/external/llvm/lib/Support/
DYAMLParser.cpp459 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/clang/lib/CodeGen/
DCodeGenFunction.h1865 llvm::Value *EmitVAStartEnd(llvm::Value *ArgValue, bool IsStart);
DCGBuiltin.cpp390 Value *CodeGenFunction::EmitVAStartEnd(Value *ArgValue, bool IsStart) { in EmitVAStartEnd() argument
396 Intrinsic::ID inst = IsStart ? Intrinsic::vastart : Intrinsic::vaend; in EmitVAStartEnd()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp5541 bool IsStart = (Intrinsic == Intrinsic::lifetime_start); in visitIntrinsicCall() local
5569 unsigned Opcode = (IsStart ? ISD::LIFETIME_START : ISD::LIFETIME_END); in visitIntrinsicCall()