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:backedges
(Results
1 - 2
of
2
) sorted by relevance
/third_party/node/deps/v8/src/compiler/
H
A
D
loop-peeling.cc
23
// | | (
backedges
)
49
//
backedges
of the loop correspond to edges from the peeled iteration to
50
// the main loop body, with multiple
backedges
requiring a merge.
73
// | | | (
backedges
)
151
int
backedges
= loop_node->InputCount() - 1;
in Peel()
local
152
if (
backedges
> 1) {
in Peel()
153
// Multiple
backedges
from original loop, therefore multiple output edges
in Peel()
160
graph_->NewNode(common_->Merge(
backedges
),
backedges
, &inputs[0]);
in Peel()
166
for (int i = 0; i <
backedges
;
in Peel()
[all...]
H
A
D
scheduler.cc
810
// recording
backedges
that form cycles. O(|B|).
in ComputeAndInsertSpecialRPO()
848
// Otherwise, compute the loop information from the
backedges
in order
in ComputeAndInsertSpecialRPO()
992
// Computes loop membership from the
backedges
of the control flow graph.
994
size_t num_loops, ZoneVector<Backedge>*
backedges
) {
in ComputeLoopInfo()
1004
// Compute loop membership starting from
backedges
.
in ComputeLoopInfo()
1006
for (size_t i = 0; i <
backedges
->size(); i++) {
in ComputeLoopInfo()
1007
BasicBlock* member =
backedges
->at(i).first;
in ComputeLoopInfo()
1008
BasicBlock* header = member->SuccessorAt(
backedges
->at(i).second);
in ComputeLoopInfo()
993
ComputeLoopInfo(ZoneVector<SpecialRPOStackFrame>* queue, size_t num_loops, ZoneVector<Backedge>*
backedges
)
ComputeLoopInfo()
argument
Completed in 5 milliseconds