Home
last modified time | relevance | path

Searched refs:IsDeferred (Results 1 – 13 of 13) sorted by relevance

/external/v8/src/compiler/
Dframe-elider.cc112 (!InstructionBlockAt(pred)->IsDeferred() || block->IsDeferred())) { in PropagateIntoBlock()
133 if (!successor_block->IsDeferred()) { in PropagateIntoBlock()
Dlive-range-separator.cc89 if (current_block->IsDeferred()) { in SplinterLiveRange()
130 if (!data()->code()->GetInstructionBlock(first_instr)->IsDeferred()) { in Splinter()
Dgraph-assembler.cc232 if (if_true->IsDeferred() != if_false->IsDeferred()) { in Branch()
233 hint = if_false->IsDeferred() ? BranchHint::kTrue : BranchHint::kFalse; in Branch()
Dinstruction.cc702 if (block->IsDeferred()) os << " (deferred)"; in operator <<()
779 if (!block->IsDeferred() || block->SuccessorCount() <= 1) continue; in ValidateDeferredBlockExitPaths()
781 CHECK(InstructionBlockAt(successor_id)->IsDeferred()); in ValidateDeferredBlockExitPaths()
793 if (!block->IsDeferred() || block->PredecessorCount() <= 1) continue; in ValidateDeferredBlockEntryPaths()
795 CHECK(InstructionBlockAt(predecessor_id)->IsDeferred()); in ValidateDeferredBlockEntryPaths()
818 if (!block->IsDeferred()) { in ComputeAssemblyOrder()
823 if (block->IsDeferred()) { in ComputeAssemblyOrder()
Djump-threading.cc203 if (!block->IsDeferred()) { in ApplyForwarding()
209 if (block->IsDeferred()) { in ApplyForwarding()
Dgraph-assembler.h130 bool IsDeferred() const { in IsDeferred() function
400 label->IsDeferred() ? BranchHint::kFalse : BranchHint::kNone; in GotoIf()
414 BranchHint hint = label->IsDeferred() ? BranchHint::kTrue : BranchHint::kNone; in GotoIfNot()
Dmove-optimizer.cc147 if (!block->IsDeferred()) { in Run()
150 if (!code()->InstructionBlockAt(pred_id)->IsDeferred()) { in Run()
Dregister-allocator.cc1508 ->IsDeferred()) { in RangesDefinedInDeferredStayInDeferred()
1517 if (!block->IsDeferred()) return false; in RangesDefinedInDeferredStayInDeferred()
2301 if (!predecessor_block->IsDeferred()) { in ProcessPhis()
3781 pred_block->IsDeferred()) { in ResolveControlFlow()
3793 code()->GetInstructionBlock(move_loc)->IsDeferred()); in ResolveControlFlow()
3865 DCHECK(block->IsDeferred()); in ConnectRanges()
3887 code()->GetInstructionBlock(gap_index)->IsDeferred()); in ConnectRanges()
3980 if (pred_block->IsDeferred()) { in CommitSpillsInDeferredBlocks()
Dcode-generator.cc188 if (block->IsDeferred() == (deferred == 0)) { in AssembleCode()
209 block->IsDeferred() ? " (deferred)" : "", in AssembleCode()
Dinstruction.h1398 bool IsDeferred() const { return deferred_; } in NON_EXPORTED_BASE()
/external/libcxx/test/std/thread/futures/futures.async/
Dasync.pass.cpp80 void test(CheckLamdba&& getAndCheckFn, bool IsDeferred, Args&&... args) { in test() argument
89 assert(invoked == !IsDeferred); in test()
99 if (IsDeferred) { in test()
/external/v8/src/interpreter/
Dconstant-array-builder.h133 bool IsDeferred() const { return tag_ == Tag::kDeferred; } in IsDeferred() function
Dconstant-array-builder.cc175 if (!entry.IsDeferred()) return entry.ToHandle(isolate); in At()