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:newBlock
(Results
1 - 6
of
6
) sorted by relevance
/arkcompiler/runtime_core/static_core/compiler/optimizer/analysis/
H
A
D
rpo.h
57
void AddBasicBlockAfter(BasicBlock *curBlock, BasicBlock *
newBlock
)
in AddBasicBlockAfter()
argument
61
rpoVector_.insert(it + 1,
newBlock
);
in AddBasicBlockAfter()
64
void AddBasicBlockBefore(BasicBlock *curBlock, BasicBlock *
newBlock
)
in AddBasicBlockBefore()
argument
68
rpoVector_.insert(it,
newBlock
);
in AddBasicBlockBefore()
H
A
D
loop_analyzer.h
62
void ReplaceBackEdge(BasicBlock *block, BasicBlock *
newBlock
)
in ReplaceBackEdge()
argument
64
ASSERT(block !=
newBlock
);
in ReplaceBackEdge()
65
ASSERT(std::find(backEdges_.begin(), backEdges_.end(),
newBlock
) == backEdges_.end());
in ReplaceBackEdge()
69
backEdges_[std::distance(backEdges_.begin(), it)] =
newBlock
;
in ReplaceBackEdge()
/arkcompiler/ets_frontend/ets2panda/test/unit/
H
A
D
node_creator.h
71
auto *
newBlock
= alloc_->New<ir::BlockStatement>(alloc_, std::move(tmp));
in CreateBlockWithDeclare()
local
72
varDecl->SetParent(
newBlock
);
in CreateBlockWithDeclare()
73
return
newBlock
;
in CreateBlockWithDeclare()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/
H
A
D
mir_lower.cpp
328
auto *
newBlock
= mirModule.CurFuncCodeMemPool()->New<BlockNode>();
in LowerBlock()
local
331
newBlock
->SetStmtID(block.GetStmtID()); // keep original block stmtid
in LowerBlock()
332
return
newBlock
;
in LowerBlock()
342
newBlock
->AppendStatementsFromBlock(*tmp);
in LowerBlock()
347
newBlock
->AppendStatementsFromBlock(*tmp);
in LowerBlock()
349
newBlock
->AddStatement(stmt);
in LowerBlock()
354
newBlock
->AddStatement(stmt);
in LowerBlock()
359
newBlock
->AppendStatementsFromBlock(*tmp);
in LowerBlock()
362
newBlock
->AddStatement(stmt);
in LowerBlock()
366
newBlock
in LowerBlock()
[all...]
/arkcompiler/runtime_core/static_core/runtime/mem/refstorage/
H
A
D
reference_storage.cpp
240
auto *
newBlock
= CreateBlock();
in PushLocalFrame()
local
241
if (
newBlock
== nullptr) {
in PushLocalFrame()
245
newBlock
->Reset();
in PushLocalFrame()
246
localStorage_->push_back(
newBlock
);
in PushLocalFrame()
401
RefBlock *
newBlock
= cachedBlock_;
in CreateBlock()
local
403
return
newBlock
;
in CreateBlock()
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
H
A
D
escape.cpp
689
if (auto
newBlock
= GetLocalAllocator()->New<BasicBlockState>(GetLocalAllocator())) {
690
blockStates_[block->GetId()] =
newBlock
;
Completed in 6 milliseconds