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:IsCall
(Results
1 - 25
of
47
) sorted by relevance
1
2
/arkcompiler/runtime_core/static_core/bytecode_optimizer/
H
A
D
common.cpp
26
ASSERT(!inst->IsCallOrIntrinsic() || (inst->GetBasicBlock()->GetGraph()->IsAbcKit() && !inst->
IsCall
()));
in AccReadIndex()
112
bool
IsCall
(compiler::Inst *inst)
in IsCall()
function
115
if (inst->
IsCall
()) {
in IsCall()
H
A
D
common.h
40
bool
IsCall
(compiler::Inst *inst);
H
A
D
reg_acc_alloc.cpp
199
if (user->
IsCall
()) {
in CanUserReadAcc()
260
if (
IsCall
(inst)) {
in SetNeedLda()
391
if (
IsCall
(inst)) {
in MarkInstructions()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
H
A
D
insn.h
173
DEBUG_ASSERT(
IsCall
(), "Insn should be a call.");
179
DEBUG_ASSERT(
IsCall
(), "Insn should be a call.");
213
bool
IsCall
() const;
554
DEBUG_ASSERT(
IsCall
(), "Insn should be a call.");
in SetIsCallReturnUnsigned()
560
DEBUG_ASSERT(
IsCall
(), "Insn should be a call.");
in GetIsCallReturnUnsigned()
566
DEBUG_ASSERT(
IsCall
(), "Insn should be a call.");
in GetIsCallReturnSigned()
/arkcompiler/runtime_core/static_core/irtoc/lang/
H
A
D
instruction.rb
161
if IsIntrinsic? || IsCallIndirect? ||
IsCall
? || IsCallDynamic?
257
if
IsCall
?
291
need_save_state =
IsCall
?
320
next if
IsCall
?
H
A
D
ir_generator.rb
103
if inst.
IsCall
?
140
need_save_state = inst.
IsCall
?
/arkcompiler/runtime_core/bytecode_optimizer/
H
A
D
reg_acc_alloc.cpp
132
if (user->
IsCall
()) {
in CanUserReadAcc()
180
if (inst->
IsCall
()) { // we never need lda for calls
in SetNeedLda()
269
if (inst->
IsCall
()) {
in UpdateInstructionsAfterMark()
H
A
D
reg_encoder.cpp
339
return !inst->
IsCall
() && inst->IsAccRead() && pos == AccReadIndex(inst);
in IsAccReadPosition()
/arkcompiler/runtime_core/compiler/tests/
H
A
D
call_input_types_test.cpp
25
if (inst->
IsCall
()) {
in GetCallInstruction()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
H
A
D
insn.cpp
75
bool Insn::
IsCall
() const
in IsCall()
function in maplebe::Insn
78
return md->
IsCall
();
in IsCall()
221
DEBUG_ASSERT(
IsCall
() || IsTailCall(), "should be call");
in GetCallTargetOperand()
H
A
D
live.cpp
202
if (insn->
IsCall
() && !cgFunc->IsStackMapComputed()) {
in GetBBDefUse()
208
if (insn->
IsCall
() || insn->IsTailCall()) {
in GetBBDefUse()
H
A
D
reg_alloc_lsra.cpp
813
if (insn->
IsCall
()) {
in ComputeLiveInterval()
825
if (insn->
IsCall
()) {
in ComputeLiveInterval()
1682
if (insn.
IsCall
()) {
in CollectCallerNoNeedReloadByInsn()
1822
if (!insn.
IsCall
()) {
in FinalizeFreeReferenceSpillStack()
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/
H
A
D
method_properties.cpp
43
if (inst->
IsCall
() || inst->IsIntrinsic()) {
in MethodProperties()
/arkcompiler/runtime_core/static_core/compiler/tests/
H
A
D
call_input_types_test.cpp
25
if (inst->
IsCall
()) {
in GetCallInstruction()
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
H
A
D
memory_barriers.h
64
ASSERT_DO(!inst->
IsCall
() && !inst->IsStore(),
H
A
D
loop_peeling.cpp
100
return inst->
IsCall
() && static_cast<const CallInst *>(inst)->IsInlined();
in HeaderHasInlinedCalls()
H
A
D
licm.cpp
143
return inst->IsClassInst() || inst->IsResolver() || inst->
IsCall
();
in IsUnsafeForResolver()
H
A
D
cleanup.cpp
285
if (inst->
IsCall
() && static_cast<CallInst *>(inst)->IsInlined()) {
in IsRemovableCall()
361
if (!LIGHT_MODE && inst->
IsCall
() && static_cast<CallInst *>(inst)->IsInlined()) {
in TryToRemoveNonLiveInst()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
H
A
D
opcode_info.h
114
bool
IsCall
(Opcode o) const
/arkcompiler/ets_runtime/ecmascript/compiler/
H
A
D
bytecodes.h
223
bool
IsCall
() const
in IsCall()
function in panda::ecmascript::kungfu::BytecodeMetaData
804
bool
IsCall
() const
in IsCall()
function in panda::ecmascript::kungfu::BytecodeInfo
806
return metaData_.
IsCall
();
in IsCall()
/arkcompiler/runtime_core/compiler/optimizer/ir/
H
A
D
ir_constructor.h
190
ASSERT(!CurrentInst()->
IsCall
() && !CurrentInst()->IsIntrinsic());
in Inputs()
204
ASSERT(CurrentInst()->IsPhi() || CurrentInst()->
IsCall
() || CurrentInst()->IsInitObject() ||
in Inputs()
228
ASSERT(CurrentInst()->
IsCall
());
in Inputs()
248
ASSERT(CurrentInst()->
IsCall
());
in InputsAutoType()
/arkcompiler/runtime_core/assembler/
H
A
D
assembly-ins.h
147
bool
IsCall
() const
in IsCall()
function
/arkcompiler/runtime_core/static_core/assembler/
H
A
D
assembly-ins.h
161
bool
IsCall
() const
in IsCall()
function
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
H
A
D
ir_constructor.h
217
ASSERT(!CurrentInst()->
IsCall
() && !CurrentInst()->IsIntrinsic());
in Inputs()
234
ASSERT(CurrentInst()->IsPhi() || CurrentInst()->
IsCall
() || CurrentInst()->IsInitObject() ||
in Inputs()
259
ASSERT(CurrentInst()->
IsCall
());
in Inputs()
291
ASSERT(CurrentInst()->
IsCall
());
in InputsAutoType()
/arkcompiler/runtime_core/assembler/tests/
H
A
D
assembler_ins_test.cpp
66
EXPECT_EQ(func_value[3].
IsCall
(), false);
in HWTEST_F()
Completed in 18 milliseconds
1
2