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:startGate
(Results
1 - 4
of
4
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/
H
A
D
induction_variable_analysis.cpp
35
GateRef
startGate
= acc_.GetValueIn(gate, 0);
in IsInductionVariable()
local
37
if (!IsIntConstant(
startGate
)) {
in IsInductionVariable()
53
for (size_t i = 2; i < numValueIn; i++) { // 2: skip
startGate
and valueGate
in IsInductionVariable()
76
GateRef
startGate
= acc_.GetValueIn(gate, 0);
in GetStartAndStride()
local
77
ASSERT(IsIntConstant(
startGate
));
in GetStartAndStride()
78
auto start = GetIntFromTaggedConstant(
startGate
);
in GetStartAndStride()
H
A
D
verifier.cpp
304
for (const auto &
startGate
: startGateList) {
in RunFlowCyclesFind()
305
if (!gateAcc.IsNotMarked(
startGate
)) {
in RunFlowCyclesFind()
309
size_t startNumIns = gateAcc.GetNumIns(
startGate
);
in RunFlowCyclesFind()
310
dfsStack.push({
startGate
, startNumIns, 0});
in RunFlowCyclesFind()
311
gateAcc.SetVisited(
startGate
);
in RunFlowCyclesFind()
312
schedulableGatesListPtr->push_back(
startGate
);
in RunFlowCyclesFind()
H
A
D
scheduler.cpp
56
auto
startGate
= acc.GetStateRoot();
in CalculateDominatorTree()
local
57
acc.SetMark(
startGate
, MarkCode::VISITED);
in CalculateDominatorTree()
58
pendingList.push_back(
startGate
);
in CalculateDominatorTree()
H
A
D
graph_linearizer.cpp
72
auto
startGate
= acc_.GetStateRoot();
in VisitStateGates()
local
73
acc_.SetMark(
startGate
, MarkCode::VISITED);
in VisitStateGates()
74
pendingList_.emplace_back(
startGate
);
in VisitStateGates()
Completed in 5 milliseconds