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:rpo_order
(Results
1 - 10
of
10
) sorted by relevance
/third_party/node/deps/v8/src/compiler/
H
A
D
verifier.cc
1969
BasicBlockVector*
rpo_order
= schedule->
rpo_order
();
in Run()
local
1972
CHECK_GE(count,
rpo_order
->size());
in Run()
1973
for (BasicBlockVector::iterator b =
rpo_order
->begin(); b !=
rpo_order
->end();
in Run()
1988
CHECK_EQ(start,
rpo_order
->at(0)); // Start should be first.
in Run()
1989
for (size_t b = 0; b <
rpo_order
->size(); b++) {
in Run()
1990
BasicBlock* block =
rpo_order
->at(b);
in Run()
2026
CHECK_EQ(block,
rpo_order
->at(block->rpo_number()));
in Run()
2030
for (size_t b = 0; b <
rpo_order
in Run()
[all...]
H
A
D
schedule.h
272
BasicBlockVector*
rpo_order
() { return &rpo_order_; }
in rpo_order()
function in v8::internal::compiler::final
273
const BasicBlockVector*
rpo_order
() const { return &rpo_order_; }
in rpo_order()
function in v8::internal::compiler::final
H
A
D
basic-block-instrumentor.cc
97
BasicBlockVector* blocks = schedule->
rpo_order
();
in Instrument()
H
A
D
raw-machine-assembler.cc
91
DCHECK(schedule_->
rpo_order
()->empty());
in ExportForTest()
113
DCHECK(schedule_->
rpo_order
()->empty());
in ExportForOptimization()
239
for (BasicBlock* block : *schedule_->
rpo_order
()) {
in MakeReschedulable()
H
A
D
scheduler.cc
710
schedule_->
rpo_order
()->push_back(b);
in SerializeRPOIntoSchedule()
803
CHECK_EQ(0, static_cast<int>(schedule_->
rpo_order
()->size()));
in ComputeAndInsertSpecialRPO()
1082
BasicBlockVector* order = schedule_->
rpo_order
();
in VerifySpecialRPO()
1161
return schedule->
rpo_order
();
in ComputeSpecialRPO()
H
A
D
graph-visualizer.cc
570
const BasicBlockVector* rpo = schedule->
rpo_order
();
in PrintSchedule()
908
const BasicBlockVector* rpo = schedule->
rpo_order
();
in PrintScheduledGraph()
H
A
D
schedule.cc
465
((s.RpoBlockCount() == 0) ? *s.all_blocks() : *s.
rpo_order
())) {
in operator <<()
H
A
D
effect-control-linearizer.cc
618
// TODO(rmcilroy) We should not depend on having
rpo_order
on schedule, and
in Run()
620
for (BasicBlock* block : *(schedule()->
rpo_order
())) {
in Run()
812
schedule_->
rpo_order
()->clear();
in Run()
/third_party/node/deps/v8/src/compiler/backend/
H
A
D
instruction.cc
732
static_cast<int>(schedule->
rpo_order
()->size()), nullptr, zone);
734
for (BasicBlockVector::const_iterator it = schedule->
rpo_order
()->begin();
735
it != schedule->
rpo_order
()->end(); ++it, ++rpo_number) {
H
A
D
instruction-selector.cc
100
BasicBlockVector* blocks = schedule()->
rpo_order
();
in SelectInstructions()
Completed in 29 milliseconds