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:GetStateCount
(Results
1 - 19
of
19
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/
H
A
D
gate.cpp
97
size_t stateEnd =
GetStateCount
();
in CheckStateInput()
201
size_t dependStart =
GetStateCount
();
in CheckDependInput()
253
auto stateSize =
GetStateCount
();
in GetValueInAndOut()
345
setOfOps[{curOut->GetGateConst()->GetOpCode(), curOut->GetGateConst()->
GetStateCount
()}]++;
in CheckBranchOutput()
352
setOfOps[{curOut->GetGateConst()->GetOpCode(), curOut->GetGateConst()->
GetStateCount
()}]++;
in CheckBranchOutput()
520
return idx_ < GetGateConst()->
GetStateCount
();
in IsStateEdge()
726
size_t Gate::
GetStateCount
() const
in GetStateCount()
function in panda::ecmascript::kungfu::Gate
728
return meta_->
GetStateCount
();
in GetStateCount()
821
auto stateSize =
GetStateCount
();
in DumpInputs()
907
auto stateSize =
GetStateCount
();
in ShortPrint()
[all...]
H
A
D
share_gate_meta_data.cpp
83
if (
GetStateCount
() == 0) {
in IsSchedulable()
87
return (!IsProlog()) && (!IsRoot()) && (
GetStateCount
() == 0);
in IsSchedulable()
94
if (
GetStateCount
() > 0) {
in IsState()
99
return (!IsVirtualState()) && (!IsFixed()) && (
GetStateCount
() > 0);
in IsState()
H
A
D
gate_accessor.cpp
871
ASSERT(idx < circuit_->LoadGatePtr(gate)->
GetStateCount
());
in GetState()
878
for (size_t idx = 0; idx < curGate->
GetStateCount
(); idx++) {
in GetInStates()
1156
size_t dependIndex = gatePtr->
GetStateCount
();
in GetDep()
1174
size_t dependIndex = gatePtr->
GetStateCount
();
in SetDep()
1368
size_t GateAccessor::
GetStateCount
(GateRef gate) const
in GetStateCount()
function in panda::ecmascript::kungfu::GateAccessor
1370
return circuit_->LoadGatePtr(gate)->
GetStateCount
();
in GetStateCount()
1408
ASSERT(index <
GetStateCount
(gate));
in ReplaceStateIn()
1415
size_t stateCount =
GetStateCount
(gate);
in ReplaceDependIn()
1422
size_t stateCount =
GetStateCount
(gate);
in ReplaceOrNewDependIn()
1503
size_t stateEndIndex = stateStartIndex +
GetStateCount
(*useI
in IsStateIn()
[all...]
H
A
D
state_split_linearizer.cpp
170
if (acc_.
GetStateCount
(currentGate) > 0) {
in ProcessStateDepend()
171
ASSERT(acc_.
GetStateCount
(currentGate) == 1);
in ProcessStateDepend()
261
ASSERT(curRegion->preds_.size() == acc_.
GetStateCount
(currentState));
in ConnectStateDepend()
H
A
D
combined_pass_visitor.cpp
71
if (acc_.
GetStateCount
(gate) > 0) {
in ReplaceGate()
72
ASSERT(acc_.
GetStateCount
(gate) == 1 || acc_.GetOpCode(replacement) == OpCode::DEAD); // 1: one state
in ReplaceGate()
H
A
D
value_numbering.cpp
27
if (acc_.
GetStateCount
(gate) > 0 || acc_.GetDependCount(gate) > 0) {
in VisitGate()
H
A
D
share_gate_meta_data.h
88
size_t
GetStateCount
() const
in GetStateCount()
function in panda::ecmascript::kungfu::GateMetaData
115
return
GetStateCount
() + GetDependCount() + GetInValueCount()
in GetNumIns()
121
return
GetStateCount
() + GetDependCount();
in GetInValueStarts()
H
A
D
dead_code_elimination.cpp
191
if (acc_.
GetStateCount
(gate) == 1) {
in EliminateGate()
H
A
D
graph_editor.cpp
89
ASSERT(acc_.
GetStateCount
(gate) == 1);
in PropagateGate()
H
A
D
loop_analysis.cpp
68
} else if (acc_.GetDependCount(nex) == 0 && acc_.
GetStateCount
(nex) == 0) {
in CollectUseGate()
H
A
D
circuit_builder_helper.cpp
241
auto stateCount = GateAccessor(env_->GetCircuit()).
GetStateCount
(predeControl_);
in IsNeedSeal()
H
A
D
gate.h
175
[[nodiscard]] size_t
GetStateCount
() const;
H
A
D
string_builder_optimizer.cpp
283
if (acc_.
GetStateCount
(gate) == 0) {
in LoopContains()
H
A
D
graph_linearizer.cpp
52
auto numStateIn = acc_.
GetStateCount
(rootGate);
in Run()
749
ASSERT(acc_.
GetStateCount
(curGate) == 0);
in ScheduleAllocRegion()
997
ASSERT(acc_.
GetStateCount
(input) == 1); // 1: fall through block
in FindPredRegion()
H
A
D
verifier.cpp
167
if (gateAcc.IsState(*use) && use.GetIndex() < gateAcc.
GetStateCount
(*use)) {
in RunCFGIsDAGCheck()
200
if (use.GetIndex() >= circuit->LoadGatePtrConst(*use)->
GetStateCount
()) {
in RunCFGReducibilityCheck()
H
A
D
async_function_lowering.cpp
272
size_t stateEnd = accessor_.
GetStateCount
(curGate);
in CheckResumeInLoopBody()
H
A
D
gate_accessor.h
477
size_t
GetStateCount
(GateRef gate) const;
H
A
D
scheduler.cpp
67
if (useIt.GetIndex() < acc.
GetStateCount
(*useIt) &&
in CalculateDominatorTree()
H
A
D
array_bounds_check_elimination.cpp
597
ASSERT(acc_.
GetStateCount
(gate) == 1);
in RemoveIndexCheck()
Completed in 19 milliseconds