Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:IsDeferred
(Results
1 - 18
of
18
) sorted by relevance
/third_party/node/deps/v8/src/compiler/backend/
H
A
D
frame-elider.cc
106
(!InstructionBlockAt(pred)->
IsDeferred
() || block->
IsDeferred
())) {
in PropagateIntoBlock()
127
if (!successor_block->
IsDeferred
()) {
in PropagateIntoBlock()
H
A
D
spill-placer.cc
47
range->spilled() || top_start_block->
IsDeferred
() ||
in Add()
269
if (!block->
IsDeferred
()) {
in SetSpillRequired()
307
if (successor->
IsDeferred
()) {
in FirstBackwardPass()
346
if (block->
IsDeferred
()) continue;
in ForwardPass()
360
if (predecessor->
IsDeferred
()) continue;
in ForwardPass()
412
if (successor->
IsDeferred
()) {
in SecondBackwardPass()
435
if (block->
IsDeferred
()) {
in SecondBackwardPass()
H
A
D
register-allocator.cc
1092
const char* deferred_marker = block->
IsDeferred
() ? "(deferred)" : "";
in PrintBlockRow()
1454
->
IsDeferred
()) {
in RangesDefinedInDeferredStayInDeferred()
1463
if (!block->
IsDeferred
()) return false;
in RangesDefinedInDeferredStayInDeferred()
2247
block->
IsDeferred
()
in ProcessInstructions()
2411
if (!predecessor_block->
IsDeferred
()) {
in ProcessPhis()
2981
GetInstructionBlock(code(), range->Start())->
IsDeferred
());
in Spill()
3435
(current_block->
IsDeferred
() ||
in ConsiderBlockForControlFlow()
3436
!code()->InstructionBlockAt(predecessor)->
IsDeferred
());
in ConsiderBlockForControlFlow()
3572
if (block->
IsDeferred
()) return true;
in BlockIsDeferredOrImmediatePredecessorIsNotDeferred()
3577
pred_is_deferred = code()->InstructionBlockAt(pred)->
IsDeferred
();
in BlockIsDeferredOrImmediatePredecessorIsNotDeferred()
[all...]
H
A
D
instruction.cc
689
if (block->
IsDeferred
()) os << " (deferred)";
762
if (!block->
IsDeferred
() || block->SuccessorCount() <= 1) continue;
764
CHECK(InstructionBlockAt(successor_id)->
IsDeferred
());
776
if (!block->
IsDeferred
() || block->PredecessorCount() <= 1) continue;
778
CHECK(InstructionBlockAt(predecessor_id)->
IsDeferred
());
809
if (block->
IsDeferred
()) continue; // skip deferred blocks.
H
A
D
mid-tier-register-allocator.cc
259
DCHECK(data->GetBlock(block)->
IsDeferred
());
in AddBlock()
367
if (HasSpillOperand() && data->GetBlock(instr_index)->
IsDeferred
()) {
in IsSpilledAt()
618
DCHECK(data->GetBlock(instr_index)->
IsDeferred
());
in AddDeferredSpillUse()
626
if (!NeedsSpillAtOutput() && block->
IsDeferred
() &&
in TrySpillOnEntryToDeferred()
1071
if (has_deferred_block_spills() || !current_block->
IsDeferred
()) {
in Spill()
2308
DCHECK(data_->GetBlock(deferred_block)->
IsDeferred
());
in AllocateDeferredBlockSpillOutput()
2781
return blocks.size() == 1 && !data_->GetBlock(blocks[0])->
IsDeferred
();
in IsDeferredBlockBoundary()
2856
if (block->
IsDeferred
() && !block_state.deferred_blocks_region()) {
in InitializeBlockState()
2876
bool is_deferred = block->
IsDeferred
();
in DefineOutputs()
3004
if (is_deferred_block_boundary && !block->
IsDeferred
()) {
in AllocateRegisters()
[all...]
H
A
D
move-optimizer.cc
144
if (!block->
IsDeferred
()) {
in Run()
147
if (!code()->InstructionBlockAt(pred_id)->
IsDeferred
()) {
in Run()
H
A
D
code-generator.cc
270
if (block->
IsDeferred
()) buffer << " (deferred)";
in AssembleCode()
H
A
D
instruction.h
1552
bool
IsDeferred
() const { return deferred_; }
in IsDeferred()
function in v8::internal::compiler::final
H
A
D
register-allocator.h
1278
return block->
IsDeferred
() ? SpillMode::kSpillDeferred
in SpillModeForBlock()
/third_party/node/deps/v8/src/compiler/
H
A
D
graph-assembler.h
178
bool
IsDeferred
() const {
in IsDeferred()
function in v8::internal::compiler::GraphAssemblerLabel
699
if (if_true->
IsDeferred
() != if_false->
IsDeferred
()) {
in Branch()
700
hint = if_false->
IsDeferred
() ? BranchHint::kTrue : BranchHint::kFalse;
in Branch()
773
label->
IsDeferred
() ? BranchHint::kFalse : BranchHint::kNone;
in GotoIf()
781
BranchHint hint = label->
IsDeferred
() ? BranchHint::kTrue : BranchHint::kNone;
in GotoIfNot()
H
A
D
graph-assembler.cc
561
if (if_true->
IsDeferred
() != if_false->
IsDeferred
()) {
in BranchWithCriticalSafetyCheck()
562
hint = if_false->
IsDeferred
() ? BranchHint::kTrue : BranchHint::kFalse;
in BranchWithCriticalSafetyCheck()
H
A
D
graph-visualizer.cc
1293
os << "\"deferred\": " << (block->
IsDeferred
() ? "true" : "false");
in operator <<()
/third_party/node/deps/v8/src/interpreter/
H
A
D
constant-array-builder.h
138
bool
IsDeferred
() const { return tag_ == Tag::kDeferred; }
in IsDeferred()
function in v8::internal::interpreter::final::Entry
H
A
D
constant-array-builder.cc
174
if (!entry.
IsDeferred
()) return entry.ToHandle(isolate);
in At()
/third_party/node/deps/v8/src/torque/
H
A
D
cfg.h
54
bool
IsDeferred
() const { return is_deferred_; }
in IsDeferred()
function in v8::internal::torque::Block
H
A
D
csa-generator.cc
38
<< (block->
IsDeferred
() ? "kDeferred" : "kNonDeferred") << ");\n";
in EmitGraph()
H
A
D
ast.h
1267
inline bool
IsDeferred
(Statement* stmt) {
in IsDeferred()
function
H
A
D
implementation-visitor.cc
1093
IsDeferred
(stmt->if_true));
in Visit()
1096
stmt->if_false &&
IsDeferred
(*stmt->if_false));
in Visit()
1340
IsDeferred
(expr->label_block->body));
in Visit()
Completed in 45 milliseconds