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:IsAccRead
(Results
1 - 13
of
13
) sorted by relevance
/arkcompiler/runtime_core/bytecode_optimizer/
H
A
D
reg_acc_alloc.cpp
58
if (inst->
IsAccRead
()) {
in IsAccWriteBetween()
85
bool RegAccAlloc::
IsAccRead
(compiler::Inst *inst) const
in IsAccRead()
function in panda::bytecodeopt::RegAccAlloc
87
return UNLIKELY(inst->IsPhi()) ? IsPhiOptimizable(inst) : inst->
IsAccRead
();
in IsAccRead()
110
if (!
IsAccRead
(user) || IsAccWriteBetween(inst, user)) {
in CanUserReadAcc()
177
if (!
IsAccRead
(inst)) {
in SetNeedLda()
H
A
D
common.cpp
26
if (inst->IsIntrinsic() && inst->
IsAccRead
()) {
in AccReadIndex()
H
A
D
reg_acc_alloc.h
47
bool
IsAccRead
(compiler::Inst *inst) const;
H
A
D
reg_encoder.cpp
339
return !inst->IsCall() && inst->
IsAccRead
() && pos == AccReadIndex(inst);
in IsAccReadPosition()
/arkcompiler/runtime_core/static_core/bytecode_optimizer/
H
A
D
reg_acc_alloc.cpp
64
if (!inst->
IsAccRead
()) {
in IsAccReadFromReg()
113
bool RegAccAlloc::
IsAccRead
(compiler::Inst *inst) const
in IsAccRead()
function in ark::bytecodeopt::RegAccAlloc
115
return UNLIKELY(inst->IsPhi()) ? IsPhiOptimizable(inst) : inst->
IsAccRead
();
in IsAccRead()
144
return inst->
IsAccRead
();
in CanIntrinsicReadAcc()
158
if (!
IsAccRead
(user) || IsAccWriteBetween(inst, user)) {
in CanUserReadAcc()
257
if (!
IsAccRead
(inst)) {
in SetNeedLda()
H
A
D
reg_acc_alloc.h
49
bool
IsAccRead
(compiler::Inst *inst) const;
H
A
D
common.cpp
37
if (inst->IsIntrinsic() && inst->
IsAccRead
()) {
in AccReadIndex()
H
A
D
reg_encoder.cpp
382
return inst->
IsAccRead
() && pos == AccReadIndex(inst);
in IsAccReadPosition()
384
return !inst->IsCallOrIntrinsic() && inst->
IsAccRead
() && pos == AccReadIndex(inst);
in IsAccReadPosition()
/arkcompiler/runtime_core/compiler/optimizer/ir/
H
A
D
inst.cpp
497
bool Inst::
IsAccRead
() const
in IsAccRead()
function in Inst
H
A
D
inst.h
820
bool
IsAccRead
() const;
/arkcompiler/runtime_core/compiler/tests/
H
A
D
dump_test.cpp
555
EXPECT_TRUE(inst->
IsAccRead
());
in HWTEST_F()
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
H
A
D
inst.cpp
792
bool Inst::
IsAccRead
() const
in IsAccRead()
function in Inst
H
A
D
inst.h
992
bool
IsAccRead
() const;
Completed in 18 milliseconds