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:LabelName
(Results
1 - 4
of
4
) sorted by relevance
/arkcompiler/runtime_core/bytecode_optimizer/
H
A
D
codegen.cpp
46
cb.try_begin_label = BytecodeGen::
LabelName
(try_begin->GetId());
in AppendCatchBlock()
47
cb.try_end_label = "end_" + BytecodeGen::
LabelName
(try_end->GetId());
in AppendCatchBlock()
48
cb.catch_begin_label = BytecodeGen::
LabelName
(catch_begin->GetId());
in AppendCatchBlock()
50
catch_end == nullptr ? cb.catch_begin_label : "end_" + BytecodeGen::
LabelName
(catch_end->GetId());
in AppendCatchBlock()
76
EmitLabel(BytecodeGen::
LabelName
(bb->GetId()));
in RunImpl()
78
auto label = "end_" + BytecodeGen::
LabelName
(bb->GetId());
in RunImpl()
119
result_.push_back(pandasm::Create_JMP(BytecodeGen::
LabelName
(suc_bb->GetId())));
in EmitJump()
134
result_.push_back(pandasm::Create_JMP(BytecodeGen::
LabelName
(suc_bb->GetId())));
in EmitJump()
328
pandasm::Create_ECMA_JTRUE(
LabelName
(inst->GetBasicBlock()->GetTrueSuccessor()->GetId())));
in IfEcma()
331
pandasm::Create_ECMA_JFALSE(
LabelName
(ins
in IfEcma()
[all...]
H
A
D
codegen.h
79
static std::string
LabelName
(uint32_t id)
in LabelName()
function in panda::bytecodeopt::BytecodeGen
/arkcompiler/runtime_core/static_core/bytecode_optimizer/
H
A
D
codegen.cpp
93
cb.tryBeginLabel = BytecodeGen::
LabelName
(tryBegin->GetId());
in AppendCatchBlock()
94
cb.tryEndLabel = "end_" + BytecodeGen::
LabelName
(tryEnd->GetId());
in AppendCatchBlock()
95
cb.catchBeginLabel = BytecodeGen::
LabelName
(catchBegin->GetId());
in AppendCatchBlock()
96
cb.catchEndLabel = catchEnd == nullptr ? cb.catchBeginLabel : "end_" + BytecodeGen::
LabelName
(catchEnd->GetId());
in AppendCatchBlock()
125
EmitLabel(BytecodeGen::
LabelName
(bb->GetId()));
in RunImpl()
127
auto label = "end_" + BytecodeGen::
LabelName
(bb->GetId());
in RunImpl()
166
result_.push_back(pandasm::Create_JMP(BytecodeGen::
LabelName
(sucBb->GetId())));
in EmitJump()
181
result_.push_back(pandasm::Create_JMP(BytecodeGen::
LabelName
(sucBb->GetId())));
in EmitJump()
576
std::string label = BytecodeGen::
LabelName
(inst->GetBasicBlock()->GetTrueSuccessor()->GetId());
in VisitIf32()
622
std::string label = BytecodeGen::
LabelName
(ins
in VisitIf64Signed()
[all...]
H
A
D
codegen.h
89
static std::string
LabelName
(uint32_t id)
in LabelName()
function in ark::bytecodeopt::BytecodeGen
Completed in 4 milliseconds