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:try_inst
(Results
1 - 7
of
7
) sorted by relevance
/arkcompiler/runtime_core/compiler/tests/
H
A
D
compiler_inst_test.cpp
578
TryInst *
try_inst
= inst->CastToTry();
in HWTEST_F()
579
try_inst
->AppendCatchTypeId(id, catchIndex);
in HWTEST_F()
580
EXPECT_EQ(
try_inst
->Clone(graph)->GetOpcode(), Opcode::Try);
in HWTEST_F()
610
auto
try_inst
= inst->CastToTry();
in HWTEST_F()
611
try_inst
->AppendCatchTypeId(1, 1);
in HWTEST_F()
612
auto catch_type_id =
try_inst
->GetCatchTypeIds();
in HWTEST_F()
944
auto
try_inst
= GetTryBeginInst(bb);
in HWTEST_F()
945
EXPECT_NE(
try_inst
, nullptr);
in HWTEST_F()
946
EXPECT_FALSE(
try_inst
->RequireRegMap());
in HWTEST_F()
/arkcompiler/runtime_core/compiler/optimizer/optimizations/
H
A
D
try_catch_resolving.h
39
void VisitTry(TryInst *
try_inst
);
/arkcompiler/runtime_core/compiler/optimizer/ir_builder/
H
A
D
ir_builder.cpp
490
auto
try_inst
= GetGraph()->CreateInstTry();
in ConnectTryCodeBlock()
local
491
try_inst
->SetTryEndBlock(try_end);
in ConnectTryCodeBlock()
492
try_begin->AppendInst(
try_inst
);
in ConnectTryCodeBlock()
505
try_inst
->AppendCatchTypeId(catch_block.type_id, try_begin->GetSuccBlockIndex(catch_begin));
in ConnectTryCodeBlock()
/arkcompiler/runtime_core/compiler/optimizer/ir/
H
A
D
basicblock.h
526
auto
try_inst
= GetTryBeginInst(this);
527
auto type_ids =
try_inst
->GetCatchTypeIds();
528
auto catch_indexes =
try_inst
->GetCatchEdgeIndexes();
H
A
D
graph_checker.cpp
553
[[maybe_unused]] auto
try_inst
= (*try_inst_it)->CastToTry();
in CheckTryBeginBlock()
local
554
for ([[maybe_unused]] auto succ_index : *
try_inst
->GetCatchEdgeIndexes()) {
in CheckTryBeginBlock()
H
A
D
ir_constructor.h
764
auto
try_inst
= inst->CastToTry();
in CatchTypeIds()
local
766
try_inst
->AppendCatchTypeId(id, 0);
in CatchTypeIds()
/arkcompiler/runtime_core/bytecode_optimizer/
H
A
D
codegen.cpp
57
auto
try_inst
= GetTryBeginInst(bb);
in VisitTryBegin()
local
58
auto try_end =
try_inst
->GetTryEndBlock();
in VisitTryBegin()
Completed in 8 milliseconds