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:loopBodys
(Results
1 - 9
of
9
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/
H
A
D
loop_analysis.h
27
: loopHead(head), loopBacks(chunk), loopExits(chunk),
loopBodys
(chunk) {}
in LoopInfo()
31
ChunkVector<GateRef>
loopBodys
;
member
H
A
D
loop_analysis.cpp
30
for (auto gate : loopInfo->
loopBodys
) {
in PrintLoop()
154
loopInfo->
loopBodys
.emplace_back(frameState);
in UpdateLoopInfo()
155
loopInfo->
loopBodys
.emplace_back(acc_.GetValueIn(frameState, 1));
in UpdateLoopInfo()
158
loopInfo->
loopBodys
.emplace_back(gate);
in UpdateLoopInfo()
H
A
D
frame_states.cpp
798
if (currentLoop != nullptr && !currentLoop->
loopBodys
->TestBit(bbNext.id)) {
in TryInsertLoopExit()
802
while (currentLoop != nullptr && !currentLoop->
loopBodys
->TestBit(bbNext.id)) {
in TryInsertLoopExit()
889
return loopInfo.
loopBodys
->TestBit(bb.id);
in IsLoopBackEdge()
912
ASSERT(loopInfo.
loopBodys
->TestBit(bb.id));
in GetLoopInfoByLoopBody()
1056
if (bbId != loopInfo.loopHeadId && !loopInfo.
loopBodys
->TestBit(bbId)) {
in CountLoopBody()
1057
loopInfo.
loopBodys
->SetBit(bbId);
in CountLoopBody()
1086
loopInfo.
loopBodys
= chunk_->New<BitSet>(chunk_, size);
in InitLoopInfo()
1089
loopInfo.
loopBodys
->SetBit(loopInfo.loopHeadId);
in InitLoopInfo()
1093
loopInfo.
loopBodys
->SetBit(backId);
in InitLoopInfo()
1095
if (!loopInfo.
loopBodys
in InitLoopInfo()
[all...]
H
A
D
loop_peeling.cpp
59
for (auto gate : loopInfo_->
loopBodys
) {
in CopyLoopBody()
138
for (auto gate : loopInfo_->
loopBodys
) {
in Peel()
H
A
D
graph_linearizer.cpp
379
if (loopInfo.
loopBodys
->TestBit(i)) {
in PrintLoop()
410
loopInfo.
loopBodys
= chunk_->New<BitSet>(chunk_, size);
in ComputeLoopInfo()
415
loopInfo.
loopBodys
->SetBit(curRegion->GetId());
in ComputeLoopInfo()
429
if (!loopInfo.
loopBodys
->TestBit(pred->GetId())) {
in PropagateLoopBody()
430
loopInfo.
loopBodys
->SetBit(pred->GetId());
in PropagateLoopBody()
505
if (loopInfo != nullptr && !loopInfo->
loopBodys
->TestBit(succ->GetId())) {
in ComputeLoopTree()
H
A
D
frame_states.h
185
BitSet*
loopBodys
{nullptr};
H
A
D
induction_variable_analysis.cpp
218
if (!loop.
loopBodys
->TestBit(region->GetId()) && loop.loopHead != region) {
in TryReplaceOutOfLoopUses()
H
A
D
graph_linearizer.h
255
BitSet*
loopBodys
{nullptr};
/arkcompiler/ets_runtime/ecmascript/compiler/tests/
H
A
D
loop_optimization_test.cpp
109
for (auto gate : beforeOpt.
loopBodys
) {
in HWTEST_F_L0()
124
EXPECT_TRUE(beforeOpt.
loopBodys
.size() > afterOpt.
loopBodys
.size());
in HWTEST_F_L0()
126
for (auto gate : afterOpt.
loopBodys
) {
in HWTEST_F_L0()
Completed in 9 milliseconds