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

/external/llvm/lib/CodeGen/
H A DSafeStackColoring.cpp33 bool StackColoring::readMarker(Instruction *I, bool *IsStart) { argument
39 *IsStart = II->getIntrinsicID() == Intrinsic::lifetime_start;
72 bool IsStart; local
73 if (!readMarker(UI, &IsStart))
75 if (IsStart)
77 BBMarkerSet[UI->getParent()][UI] = {AllocaNo, IsStart};
111 << (M.IsStart ? "start " : "end ") << M.AllocaNo << ", "
118 if (M.IsStart) {
213 bool IsStart = It.second.IsStart; local
[all...]
H A DSafeStackColoring.h87 bool IsStart; member in struct:llvm::safestack::StackColoring::Marker
90 /// List of {InstNo, {AllocaNo, IsStart}} for each BB, ordered by InstNo.
97 bool readMarker(Instruction *I, bool *IsStart);
H A DStackColoring.cpp693 bool IsStart = false; local
694 if (!isLifetimeStartOrEnd(MI, slots, IsStart))
698 if (IsStart) {
/external/v8/src/
H A Dunicode.cc40 static inline bool IsStart(int32_t entry) { function in namespace:unibrow
81 bool is_start = IsStart(field);
137 bool is_start = IsStart(field);
/external/v8/src/compiler/
H A Dregister-allocator.h66 bool IsStart() const { return (value_ & (kHalfStep - 1)) == 0; } function in class:v8::internal::compiler::final
217 if (end_.IsGapPosition() && end_.IsStart()) {
H A Dregister-allocator.cc395 if (pos.IsStart()) {
2526 end = end.IsStart() ? end.PrevStart().End() : end.Start();
2617 DCHECK(pos.IsStart() || pos.IsGapPosition() ||
3884 gap_pos = pos.IsStart() ? Instruction::START : Instruction::END;
3886 if (pos.IsStart()) {
/external/llvm/lib/Support/
H A DYAMLParser.cpp459 bool scanDocumentIndicator(bool IsStart);
1142 bool Scanner::scanDocumentIndicator(bool IsStart) { argument
1148 T.Kind = IsStart ? Token::TK_DocumentStart : Token::TK_DocumentEnd;
/external/clang/lib/CodeGen/
H A DCodeGenFunction.h1863 /// \param IsStart If \c true, emits a call to \c llvm.va_start; otherwise,
1865 llvm::Value *EmitVAStartEnd(llvm::Value *ArgValue, bool IsStart);
H A DCGBuiltin.cpp390 Value *CodeGenFunction::EmitVAStartEnd(Value *ArgValue, bool IsStart) { argument
396 Intrinsic::ID inst = IsStart ? Intrinsic::vastart : Intrinsic::vaend;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp5541 bool IsStart = (Intrinsic == Intrinsic::lifetime_start);
5569 unsigned Opcode = (IsStart ? ISD::LIFETIME_START : ISD::LIFETIME_END);

Completed in 362 milliseconds