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
(Results
1 - 9
of
9
) sorted by relevance
/third_party/node/deps/v8/src/compiler/backend/
H
A
D
jump-threading.cc
232
RpoNumber
rpo
= rpo_immediates[i];
in ApplyForwarding()
local
233
if (
rpo
.IsValid()) {
in ApplyForwarding()
234
RpoNumber fw = result[
rpo
.ToInt()];
in ApplyForwarding()
235
if (fw !=
rpo
) rpo_immediates[i] = fw;
in ApplyForwarding()
H
A
D
instruction-scheduler.cc
91
void InstructionScheduler::StartBlock(RpoNumber
rpo
) {
in StartBlock()
argument
98
sequence()->StartBlock(
rpo
);
in StartBlock()
101
void InstructionScheduler::EndBlock(RpoNumber
rpo
) {
in EndBlock()
argument
107
sequence()->EndBlock(
rpo
);
in EndBlock()
H
A
D
instruction.cc
884
Instruction* InstructionSequence::GetBlockStart(RpoNumber
rpo
) const {
885
const InstructionBlock* block = InstructionBlockAt(
rpo
);
889
void InstructionSequence::StartBlock(RpoNumber
rpo
) {
891
current_block_ = InstructionBlockAt(
rpo
);
896
void InstructionSequence::EndBlock(RpoNumber
rpo
) {
898
DCHECK_EQ(current_block_->rpo_number(),
rpo
);
1016
RpoNumber
rpo
= RpoNumber::FromInt(block_id);
1017
const InstructionBlock* block = InstructionBlockAt(
rpo
);
1018
CHECK(block->rpo_number() ==
rpo
);
1187
std::ostream& operator<<(std::ostream& os, const RpoNumber&
rpo
) {
[all...]
H
A
D
instruction-scheduler.h
39
V8_EXPORT_PRIVATE void StartBlock(RpoNumber
rpo
);
40
V8_EXPORT_PRIVATE void EndBlock(RpoNumber
rpo
);
H
A
D
code-generator.h
148
Label* GetLabel(RpoNumber
rpo
) { return &labels_[
rpo
.ToSize()]; }
in GetLabel()
argument
224
// Compute branch info from given instruction. Returns a valid
rpo
number
225
// if the branch is redundant, the returned
rpo
number point to the target
H
A
D
instruction.h
1123
explicit Constant(RpoNumber
rpo
) : type_(kRpoNumber), value_(
rpo
.ToInt()) {}
in Constant()
argument
1712
Instruction* GetBlockStart(RpoNumber
rpo
) const;
1734
void StartBlock(RpoNumber
rpo
);
1735
void EndBlock(RpoNumber
rpo
);
1764
// immediates vector so that we don't repeatedly push the same
rpo
in AddImmediate()
H
A
D
instruction-selector.h
305
void StartBlock(RpoNumber
rpo
);
306
void EndBlock(RpoNumber
rpo
);
H
A
D
instruction-selector.cc
151
void InstructionSelector::StartBlock(RpoNumber
rpo
) {
in StartBlock()
argument
154
scheduler_->StartBlock(
rpo
);
in StartBlock()
156
sequence()->StartBlock(
rpo
);
in StartBlock()
160
void InstructionSelector::EndBlock(RpoNumber
rpo
) {
in EndBlock()
argument
163
scheduler_->EndBlock(
rpo
);
in EndBlock()
165
sequence()->EndBlock(
rpo
);
in EndBlock()
/third_party/node/deps/v8/src/compiler/
H
A
D
graph-visualizer.cc
570
const BasicBlockVector*
rpo
= schedule->rpo_order();
in PrintSchedule()
local
571
for (size_t i = 0; i <
rpo
->size(); i++) {
in PrintSchedule()
572
BasicBlock* current = (*
rpo
)[i];
in PrintSchedule()
908
const BasicBlockVector*
rpo
= schedule->rpo_order();
in PrintScheduledGraph()
local
909
for (size_t i = 0; i <
rpo
->size(); i++) {
in PrintScheduledGraph()
910
BasicBlock* current = (*
rpo
)[i];
in PrintScheduledGraph()
Completed in 17 milliseconds