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:IsInlined
(Results
1 - 25
of
30
) sorted by relevance
1
2
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
H
A
D
memory_barriers.cpp
68
if (inst->CastToCallStatic()->
IsInlined
()) {
in VisitCallStatic()
86
if (inst->CastToCallResolvedStatic()->
IsInlined
()) {
in VisitCallResolvedStatic()
94
if (inst->CastToCallVirtual()->
IsInlined
()) {
in VisitCallVirtual()
102
if (inst->CastToCallResolvedVirtual()->
IsInlined
()) {
in VisitCallResolvedVirtual()
110
if (inst->CastToCallLaunchStatic()->
IsInlined
()) {
in VisitCallLaunchStatic()
118
if (inst->CastToCallResolvedLaunchStatic()->
IsInlined
()) {
in VisitCallResolvedLaunchStatic()
126
if (inst->CastToCallLaunchVirtual()->
IsInlined
()) {
in VisitCallLaunchVirtual()
134
if (inst->CastToCallResolvedLaunchVirtual()->
IsInlined
()) {
in VisitCallResolvedLaunchVirtual()
H
A
D
string_builder_utils.cpp
42
if (call->
IsInlined
()) {
in IsMethodStringConcat()
57
if (call->
IsInlined
()) {
in IsMethodStringBuilderConstructorWithStringArg()
72
if (call->
IsInlined
()) {
in IsMethodStringBuilderConstructorWithCharArrayArg()
85
return !callInst->
IsInlined
() && runtime->IsMethodStringBuilderToString(callInst->GetCallMethod());
in IsStringBuilderToString()
101
if (call->
IsInlined
()) {
in IsMethodStringBuilderDefaultConstructor()
H
A
D
locations_builder.cpp
143
if (inst->CastToCallResolvedStatic()->
IsInlined
()) {
in LOCATIONS_BUILDER()
156
if (inst->CastToCallResolvedVirtual()->
IsInlined
()) {
in LOCATIONS_BUILDER()
164
if (inst->CastToCallStatic()->
IsInlined
()) {
in LOCATIONS_BUILDER()
172
if (inst->CastToCallVirtual()->
IsInlined
()) {
in LOCATIONS_BUILDER()
183
if (inst->CastToCallDynamic()->
IsInlined
()) {
in LOCATIONS_BUILDER()
H
A
D
string_builder_utils.h
54
return (ALLOW_INLINED || !callInst->
IsInlined
()) &&
in IsStringBuilderAppend()
H
A
D
savestate_optimization.cpp
62
if (static_cast<CallInst *>(userInst)->
IsInlined
()) {
in RequireRegMap()
H
A
D
loop_peeling.cpp
100
return inst->IsCall() && static_cast<const CallInst *>(inst)->
IsInlined
();
in HeaderHasInlinedCalls()
H
A
D
lse.cpp
626
return !inst->CastToCallVirtual()->
IsInlined
();
in IsHeapInvalidatingInst()
628
return !inst->CastToCallResolvedVirtual()->
IsInlined
();
in IsHeapInvalidatingInst()
630
return !inst->CastToCallStatic()->
IsInlined
();
in IsHeapInvalidatingInst()
632
return !inst->CastToCallDynamic()->
IsInlined
();
in IsHeapInvalidatingInst()
634
return !inst->CastToCallResolvedStatic()->
IsInlined
();
in IsHeapInvalidatingInst()
H
A
D
cleanup.cpp
277
// if caller->
IsInlined
() is false, graph is being inlined and caller is not in the graph
in MarkInlinedCaller()
278
if (caller != nullptr && !caller->IsMarked(liveMrk) && caller->
IsInlined
()) {
in MarkInlinedCaller()
285
if (inst->IsCall() && static_cast<CallInst *>(inst)->
IsInlined
()) {
in IsRemovableCall()
361
if (!LIGHT_MODE && inst->IsCall() && static_cast<CallInst *>(inst)->
IsInlined
()) {
in TryToRemoveNonLiveInst()
H
A
D
loop_unroll.cpp
220
hasCall |= inst->IsCall() && !static_cast<CallInst *>(inst)->
IsInlined
();
in GetUnrollParams()
H
A
D
try_catch_resolving.cpp
185
if (GetGraph()->GetThrowCounter(throwBlock) == 0 || throwInst->
IsInlined
()) {
in ConnectThrowCatch()
H
A
D
inlining.cpp
209
if (callInst->
IsInlined
() || callInst->IsLaunchCall()) {
in IsInstSuitableForInline()
255
ASSERT(!callInst->
IsInlined
());
in TryInline()
997
ASSERT(!callInst->
IsInlined
());
in DoInline()
H
A
D
escape.cpp
1332
if (inst->
IsInlined
()) {
1698
auto isInlined = callInst->
IsInlined
();
1865
ASSERT(!isCall || static_cast<CallInst *>(site)->
IsInlined
());
/arkcompiler/runtime_core/static_core/compiler/tests/
H
A
D
inlining_test.cpp
223
ASSERT_TRUE(static_cast<CallInst *>(callInsts[0U])->
IsInlined
());
in TEST_F()
286
ASSERT_TRUE(static_cast<CallInst *>(instMap.at(Opcode::CallStatic)[0U])->
IsInlined
());
in TEST_F()
324
ASSERT_TRUE(static_cast<CallInst *>(callInsts[0U])->
IsInlined
());
in TEST_F()
375
ASSERT_TRUE(static_cast<CallInst *>(callInsts[0U])->
IsInlined
());
in TEST_F()
376
ASSERT_TRUE(static_cast<CallInst *>(callInsts[1U])->
IsInlined
());
in TEST_F()
H
A
D
graph_comparator.h
194
CHECK_OR_RETURN(CallStatic,
IsInlined
)
in InstAdditionalPropertiesCompare()
195
CHECK_OR_RETURN(CallVirtual,
IsInlined
)
in InstAdditionalPropertiesCompare()
/arkcompiler/runtime_core/static_core/runtime/
H
A
D
stack_walker.cpp
89
if (
IsInlined
()) {
in GetMethod()
361
if (
IsInlined
()) {
in NextFromCFrame()
436
if (
IsInlined
()) {
in GetNextFrame()
589
if (
IsInlined
()) {
in ConvertToIFrame()
806
<< (
IsInlined
() ? ", inlined) " : ") ");
in DumpFrame()
807
if (
IsInlined
()) {
in DumpFrame()
H
A
D
exceptions.cpp
267
if (stack->
IsInlined
()) {
in FindCatchBlockInCFrames()
/arkcompiler/runtime_core/static_core/runtime/include/
H
A
D
stack_walker.h
235
bool
IsInlined
() const
in IsInlined()
function in ark::StackWalker
351
if (
IsInlined
()) {
in GetCFrameBytecodePc()
/arkcompiler/runtime_core/static_core/compiler/optimizer/analysis/
H
A
D
reg_alloc_verifier.cpp
447
if (inst->IsCall() && static_cast<CallInst *>(inst)->
IsInlined
()) {
in ProcessCurrentBlock()
H
A
D
liveness_analyzer.cpp
837
if (inst->IsCall() && !inst->IsLaunchCall() && !static_cast<CallInst *>(inst)->
IsInlined
()) {
in IsCallBlockingRegisters()
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/
H
A
D
codegen.cpp
1634
if (call->GetSaveState() != nullptr && call->
IsInlined
()) {
in EmitCallResolvedVirtual()
1659
if (call->GetSaveState() != nullptr && call->
IsInlined
()) {
in EmitCallVirtual()
1743
if (call->GetSaveState() != nullptr && call->
IsInlined
()) {
in EmitCallStatic()
1783
if (call->GetSaveState() != nullptr && call->
IsInlined
()) {
in EmitCallDynamic()
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
H
A
D
graph_checker.cpp
399
if (inst->IsCall() && static_cast<CallInst *>(inst)->
IsInlined
()) {
in CheckUserOfInt32()
434
} else if (inst->IsCall() && static_cast<CallInst *>(inst)->
IsInlined
()) {
in CheckUserOfInt32()
457
ASSERT(caller->
IsInlined
());
in CheckUserOfInt32()
469
} else if (inst->IsCall() && static_cast<CallInst *>(inst)->
IsInlined
()) {
in CheckUserOfInt32()
H
A
D
graph_cloner.cpp
1024
if (caller != nullptr && caller->
IsInlined
() && HasClone(caller)) {
in UpdateCaller()
H
A
D
basicblock.cpp
1190
while (callInst != nullptr && callInst->
IsInlined
()) {
/arkcompiler/runtime_core/compiler/optimizer/ir/
H
A
D
inst.h
1530
bool
IsInlined
() const
in IsInlined()
function in InlinedInstMixin
2580
return
IsInlined
();
in CanBeInlined()
/arkcompiler/runtime_core/static_core/plugins/ets/compiler/optimizer/optimizations/interop_js/
H
A
D
interop_intrinsic_optimization.cpp
26
return inst->IsCall() && !static_cast<CallInst *>(inst)->
IsInlined
();
in IsForbiddenInst()
Completed in 36 milliseconds
1
2