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:IsParameter
(Results
1 - 24
of
24
) sorted by relevance
/arkcompiler/runtime_core/static_core/irtoc/lang/
H
A
D
instruction.rb
56
raise "Trying to set argument index for non Parameter instruction" unless
IsParameter
?
73
return IsConstant? || IsLiveIn? || IsElse? ||
IsParameter
?
150
elsif
IsParameter
?()
283
IsParameter
? ? "p_#{@index}" : "l_#{@index}"
H
A
D
ir_generator.rb
150
input_name = input.
IsParameter
? ? "p_#{input.index}" : input.local_var_name
177
inst.
IsParameter
? ? "p_#{inst.index}" : inst.local_var_name
/arkcompiler/ets_frontend/ets2panda/compiler/core/
H
A
D
vReg.h
57
return (idx_ >= REG_MAX - limit) && (limit == REG_MAX || !
IsParameter
());
60
[[nodiscard]] constexpr bool
IsParameter
() const noexcept
/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
reg_alloc_graph_coloring_test.cpp
29
ASSERT(param->
IsParameter
());
in GetParameterSpillFilll()
H
A
D
reg_alloc_graph_coloring_new_test.cpp
255
return input.GetInst()->
IsParameter
();
in HWTEST_F()
303
return input.GetInst()->
IsParameter
();
in HWTEST_F()
H
A
D
compiler_graph_test.cpp
341
EXPECT_TRUE(inst->
IsParameter
());
in HWTEST_F()
/arkcompiler/runtime_core/libark_defect_scan_aux/
H
A
D
graph.cpp
70
ASSERT(inst_->
IsParameter
());
in GetArgIndex()
/arkcompiler/runtime_core/static_core/assembler/
H
A
D
assembly-function.h
172
bool
IsParameter
(uint32_t regNumber) const
in IsParameter()
function
H
A
D
assembly-emitter.cpp
1135
if (func.
IsParameter
(v.reg)) {
in HandleFunctionLocalVariables()
1290
if (func.
IsParameter
(v.reg)) {
in SetCodeAndDebugInfo()
1683
if (
IsParameter
(v.reg)) {
in EmitLocalVariable()
/arkcompiler/runtime_core/assembler/
H
A
D
assembly-function.h
199
bool
IsParameter
(uint32_t reg_number) const
in IsParameter()
function
H
A
D
assembly-emitter.cpp
986
if (func.
IsParameter
(v.reg)) {
in HandleFunctionLocalVariables()
1166
if (func.
IsParameter
(v.reg)) {
in SetCodeAndDebugInfo()
1639
ASSERT(!
IsParameter
(v.reg));
in EmitLocalVariable()
1711
if (
IsParameter
(v.reg)) {
in CollectLocalVariable()
/arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/
H
A
D
reg_alloc_resolver.cpp
245
ASSERT(inst->IsConst() || inst->IsPhi() || inst->
IsParameter
());
in ResolveOutput()
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/regalloc/
H
A
D
reg_alloc_resolver.cpp
390
ASSERT(inst->IsConst() || inst->IsPhi() || inst->
IsParameter
());
in ResolveOutput()
H
A
D
reg_alloc_linear_scan.cpp
205
ASSERT(currentInterval->GetInst()->
IsParameter
());
in WalkIntervals()
/arkcompiler/runtime_core/static_core/compiler/tests/
H
A
D
reg_alloc_graph_coloring_test.cpp
30
ASSERT(param->
IsParameter
());
in GetParameterSpillFilll()
/arkcompiler/runtime_core/static_core/compiler/optimizer/analysis/
H
A
D
reg_alloc_verifier.cpp
452
if (inst->
IsParameter
()) {
in ProcessCurrentBlock()
H
A
D
liveness_analyzer.cpp
768
if (inst->
IsParameter
()) {
in BlockFixedRegisters()
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
H
A
D
graph.cpp
101
if (!inst->
IsParameter
()) {
in FindParameter()
H
A
D
analysis.cpp
451
if (inst->
IsParameter
() && inst->CastToParameter()->GetArgNumber() == 0) {
in IsInstNotNull()
H
A
D
inst.h
1562
bool
IsParameter
() const
in IsParameter()
function
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
H
A
D
peepholes.cpp
1923
bool check = !input0->IsConst() && !input0->
IsParameter
() && !input0->IsDominate(input1);
in CanReassociateShlShlAddSub()
2672
if (func->
IsParameter
() && func->CastToParameter()->GetArgNumber() == 0) {
in VisitLoadConstantPool()
H
A
D
inlining.cpp
744
if (oldDef->
IsParameter
()) {
in GetNewDefAndCorrectDF()
/arkcompiler/runtime_core/compiler/optimizer/ir/
H
A
D
inst.h
1264
bool
IsParameter
() const
in IsParameter()
function
Completed in 36 milliseconds