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:HasUsers
(Results
1 - 25
of
40
) sorted by relevance
1
2
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
H
A
D
move_constants.cpp
37
if (constInst->
HasUsers
()) {
in RunImpl()
45
if (nullPtr->
HasUsers
()) {
in RunImpl()
52
if (undefined->
HasUsers
()) {
in RunImpl()
132
ASSERT(inst->
HasUsers
());
in GetUsersDominatingBlocks()
H
A
D
savestate_optimization.cpp
129
if (!inst->
HasUsers
()) {
in TryToRemoveRedundantSaveState()
H
A
D
loop_peeling.cpp
91
if (!phi->
HasUsers
()) {
in CleanDeadPhis()
H
A
D
code_sink.cpp
104
if (inst->IsCatchPhi() || !inst->
HasUsers
()) {
in ProcessBlock()
H
A
D
simplify_string_builder.cpp
470
return inst->GetOpcode() == Opcode::CheckCast && !inst->
HasUsers
();
709
auto hasUsers = userInst->
HasUsers
();
734
ASSERT(!instance->
HasUsers
());
1077
if (!saveState->
HasUsers
()) {
1312
bool hasUsers = userInst->
HasUsers
();
1480
if (userInst->IsPhi() && !userInst->
HasUsers
()) {
1484
if (userInst->IsPhi() && !userInst->
HasUsers
()) {
1506
if (userInst->IsPhi() && userInst->
HasUsers
()) {
H
A
D
object_type_check_elimination.cpp
73
if (!inst->
HasUsers
()) {
in TryEliminateIsInstance()
H
A
D
cse.h
173
if (inst->IsNotCseApplicable() || !inst->
HasUsers
()) {
in IsLegalExp()
H
A
D
if_conversion.cpp
224
total += static_cast<uint32_t>(inst->
HasUsers
());
in IsConvertable()
H
A
D
memory_barriers.cpp
226
if (!inst->
HasUsers
()) {
in GetMemInstForImplicitNullCheck()
H
A
D
lse.cpp
859
if (!phi->
HasUsers
()) {
in FixupPhisInBlock()
953
if (inst->GetType() != value->GetType() && inst->
HasUsers
()) {
in DeleteInstruction()
974
if (block == nullptr || frontInst->
HasUsers
()) {
in DeleteInstruction()
/arkcompiler/runtime_core/static_core/compiler/tests/
H
A
D
lowering_test.cpp
59
EXPECT_FALSE(cnst->
HasUsers
());
in ReturnTest()
159
ASSERT_FALSE(INS(4U).
HasUsers
());
in TEST_F()
160
ASSERT_FALSE(INS(5U).
HasUsers
());
in TEST_F()
161
ASSERT_TRUE(INS(6U).
HasUsers
());
in TEST_F()
162
ASSERT_FALSE(INS(7U).
HasUsers
());
in TEST_F()
163
ASSERT_FALSE(INS(8U).
HasUsers
());
in TEST_F()
164
ASSERT_TRUE(INS(9U).
HasUsers
());
in TEST_F()
165
ASSERT_TRUE(INS(13U).
HasUsers
());
in TEST_F()
166
ASSERT_TRUE(INS(14U).
HasUsers
());
in TEST_F()
167
ASSERT_TRUE(INS(15U).
HasUsers
());
in TEST_F()
[all...]
H
A
D
branch_elimination_test.cpp
236
EXPECT_FALSE(INS(17U).
HasUsers
());
in TEST_F()
248
EXPECT_TRUE(phi->
HasUsers
());
in TEST_F()
282
EXPECT_TRUE(phi->
HasUsers
());
in TEST_F()
295
EXPECT_FALSE(INS(17U).
HasUsers
());
in TEST_F()
327
EXPECT_TRUE(phi->
HasUsers
());
in TEST_F()
361
EXPECT_TRUE(phi->
HasUsers
());
in TEST_F()
397
EXPECT_TRUE(phi->
HasUsers
());
in TEST_F()
432
EXPECT_TRUE(phi->
HasUsers
());
in TEST_F()
481
EXPECT_FALSE(phi->
HasUsers
());
in TEST_F()
658
EXPECT_FALSE(INS(5U).
HasUsers
());
in TEST_F()
[all...]
/arkcompiler/runtime_core/compiler/optimizer/optimizations/
H
A
D
move_constants.cpp
37
if (const_inst->
HasUsers
()) {
in RunImpl()
106
ASSERT(inst->
HasUsers
());
in GetUsersDominatingBlocks()
/arkcompiler/runtime_core/compiler/tests/
H
A
D
split_resolver_new_test.cpp
143
FindInstWithInterval(la, start_bb, [](Inst *inst) { return inst->IsParameter() && inst->
HasUsers
(); });
in HWTEST_F()
207
la, graph->GetStartBlock(), [](Inst *inst) { return inst->IsParameter() && inst->
HasUsers
(); });
in HWTEST_F()
258
la, graph->GetStartBlock(), [](Inst *inst) { return inst->IsParameter() && inst->
HasUsers
(); });
in HWTEST_F()
H
A
D
branch_elimination_test.cpp
230
EXPECT_FALSE(INS(17).
HasUsers
());
in TEST_F()
242
EXPECT_TRUE(phi->
HasUsers
());
in TEST_F()
276
EXPECT_TRUE(phi->
HasUsers
());
in TEST_F()
289
EXPECT_FALSE(INS(17).
HasUsers
());
in TEST_F()
321
EXPECT_TRUE(phi->
HasUsers
());
in TEST_F()
355
EXPECT_TRUE(phi->
HasUsers
());
in TEST_F()
391
EXPECT_TRUE(phi->
HasUsers
());
in TEST_F()
426
EXPECT_TRUE(phi->
HasUsers
());
in TEST_F()
475
EXPECT_FALSE(phi->
HasUsers
());
in TEST_F()
646
EXPECT_FALSE(INS(5).
HasUsers
());
in TEST_F()
[all...]
/arkcompiler/runtime_core/static_core/bytecode_optimizer/
H
A
D
check_resolver.cpp
36
bool noDce = !inst->
HasUsers
();
in MarkLenArray()
H
A
D
bytecodeopt_peepholes.cpp
151
ASSERT(!callInit->
HasUsers
());
in VisitNewObject()
/arkcompiler/runtime_core/static_core/irtoc/backend/compiler/
H
A
D
codegen_fastpath.cpp
208
ASSERT(!inst->
HasUsers
());
in IntrinsicSaveTlabStatsSafe()
239
if (!inst->
HasUsers
()) {
in IntrinsicSaveRegisters()
258
if (!inst->
HasUsers
()) {
in IntrinsicRestoreRegisters()
/arkcompiler/runtime_core/compiler/optimizer/ir/
H
A
D
inst.cpp
122
if (curr_input->GetBasicBlock() != nullptr && curr_input->
HasUsers
()) {
in Remove()
131
if (last_input->
HasUsers
()) {
in Remove()
H
A
D
graph_cloner.cpp
552
if (resolver_phi->
HasUsers
()) {
in BuildClonedLoopHeaderDataFlow()
638
if (!inst->
HasUsers
()) {
in UpdateUsersForClonedLoopHeader()
669
if (phi_in->
HasUsers
()) {
in UpdateUsersForClonedLoopHeader()
684
if (phi_out->
HasUsers
()) {
in UpdateUsersForClonedLoopHeader()
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
H
A
D
graph_cloner.cpp
586
if (resolverPhi->
HasUsers
()) {
in BuildClonedLoopHeaderDataFlow()
673
if (!inst->
HasUsers
()) {
in UpdateUsersForClonedLoopHeader()
704
if (phiIn->
HasUsers
()) {
in UpdateUsersForClonedLoopHeader()
719
if (phiOut->
HasUsers
()) {
in UpdateUsersForClonedLoopHeader()
H
A
D
inst.cpp
286
if (currInput->GetBasicBlock() != nullptr && currInput->
HasUsers
()) {
in Remove()
295
if (lastInput->
HasUsers
()) {
in Remove()
H
A
D
basicblock.cpp
914
ASSERT(select->
HasUsers
());
1274
ASSERT(!inst->
HasUsers
());
/arkcompiler/runtime_core/compiler/optimizer/ir_builder/
H
A
D
inst_builder.cpp
295
if (const_inst->GetType() != DataType::INT64 || !const_inst->
HasUsers
()) {
in SplitConstant()
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/regalloc/
H
A
D
reg_alloc_resolver.cpp
308
bool handledAllUsers = inst->HasSingleUser() || !inst->
HasUsers
();
in ResolveSaveState()
Completed in 21 milliseconds
1
2