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:IsOsrMode
(Results
1 - 25
of
30
) sorted by relevance
1
2
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/
H
A
D
method_properties.cpp
73
SetCompactPrologueAllowed(graph->GetArch() == Arch::AARCH64 && !graph->
IsOsrMode
() &&
in MethodProperties()
76
SetRequireFrameSetup(!IsLeaf() || graph->
IsOsrMode
());
in MethodProperties()
H
A
D
callconv.h
277
bool
IsOsrMode
() const
in IsOsrMode()
function in ark::compiler::CallingConvention
H
A
D
disassembly.cpp
85
<< codegen_->GetRuntime()->GetMethodName(graph->GetMethod()) << (graph->
IsOsrMode
() ? "_osr" : "") << ".txt";
in Init()
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
H
A
D
deoptimize_elimination.cpp
32
if (IsLoopDeleted() && GetGraph()->
IsOsrMode
()) {
in RunImpl()
70
!(graph->
IsOsrMode
() && block->GetLoop() != userInst->GetBasicBlock()->GetLoop()) &&
in VisitDeoptimizeIf()
199
// in case (IsLoopDeleted() && GetGraph()->
IsOsrMode
())
in InvalidateAnalyses()
200
if (!(IsLoopDeleted() && GetGraph()->
IsOsrMode
())) {
in InvalidateAnalyses()
H
A
D
inline_intrinsics.cpp
57
bool isReplaceOnDeopt = !GetGraph()->IsAotMode() && !GetGraph()->
IsOsrMode
();
in RunImpl()
91
if (GetGraph()->
IsOsrMode
()) {
in RunImpl()
H
A
D
phi_type_resolving.cpp
67
if (GetGraph()->
IsOsrMode
()) {
in CheckInputsAnyTypesRec()
81
if (GetGraph()->
IsOsrMode
()) {
in CheckInputsAnyTypesRec()
H
A
D
branch_elimination.cpp
69
if (isApplied_ && GetGraph()->
IsOsrMode
()) {
in RunImpl()
96
// in case (is_applied_ && GetGraph()->
IsOsrMode
())
in InvalidateAnalyses()
97
if (!(isApplied_ && GetGraph()->
IsOsrMode
())) {
in InvalidateAnalyses()
H
A
D
cse.cpp
187
if (GetGraph()->
IsOsrMode
()) {
in GlobalCse()
H
A
D
memory_barriers.cpp
259
if (!g_options.IsCompilerImplicitNullCheck() || graph->
IsOsrMode
() || graph->IsBytecodeOptimizer()) {
in VisitNullCheck()
H
A
D
checks_elimination.cpp
38
if (!GetGraph()->
IsOsrMode
()) {
in RunImpl()
46
if (IsLoopDeleted() && GetGraph()->
IsOsrMode
()) {
in RunImpl()
58
// in case (IsLoopDeleted() && GetGraph()->
IsOsrMode
())
in InvalidateAnalyses()
59
if (!(IsLoopDeleted() && GetGraph()->
IsOsrMode
())) {
in InvalidateAnalyses()
H
A
D
peepholes.cpp
1432
if (graph->IsBytecodeOptimizer() || graph->
IsOsrMode
()) {
in VisitCastValueToAnyType()
1600
if (phi1->GetBasicBlock()->GetGraph()->
IsOsrMode
()) {
in IsPhiUnionPossible()
2585
auto osr = inst->GetBasicBlock()->GetGraph()->
IsOsrMode
();
in SkipThisPeepholeInOSR()
/arkcompiler/runtime_core/compiler/optimizer/
H
A
D
pass_manager.cpp
71
if (GetGraph()->
IsOsrMode
()) {
in GetFileName()
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir_builder/
H
A
D
ir_builder.cpp
193
if (GetGraph()->GetEndBlock() != bb && !GetGraph()->
IsOsrMode
() &&
in CreateSaveStateForLoopBlocks()
205
if (GetGraph()->
IsOsrMode
()) {
in CreateSaveStateForLoopBlocks()
244
if ((bb->IsTryBegin() || bb->IsTryEnd()) && GetGraph()->
IsOsrMode
()) {
in BuildBasicBlock()
255
if (bb->IsLoopPreHeader() && !GetGraph()->
IsOsrMode
()) {
in BuildBasicBlock()
260
if (bb->IsLoopPreHeader() && !GetGraph()->
IsOsrMode
()) {
in BuildBasicBlock()
/arkcompiler/runtime_core/static_core/compiler/optimizer/
H
A
D
pipeline.cpp
185
if (!graph->
IsOsrMode
()) {
in RunOptimizations()
H
A
D
pass_manager.cpp
92
if (GetGraph()->
IsOsrMode
()) {
in GetFileName()
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/amd64/
H
A
D
callconv.cpp
214
ASSERT(!
IsOsrMode
());
in GenerateEpilogue()
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
H
A
D
graph.h
408
return FlagInliningComplete::Get(bitFields_) ||
IsOsrMode
();
in IsInliningComplete()
1134
bool
IsOsrMode
() const
in IsOsrMode()
function
1141
return !
IsOsrMode
() && IsJitOrOsrMode();
in IsJitMode()
H
A
D
analysis.cpp
134
if (!graph->
IsOsrMode
() && dominateBb->GetLoop() != bb->GetLoop()) {
in HasOsrEntryBetween()
842
ASSERT(graph->
IsOsrMode
());
in CleanupGraphSaveStateOSR()
H
A
D
graph.cpp
490
mode_.SupportManagedCode(),
IsOsrMode
(),
in GetCallingConvention()
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/aarch64/
H
A
D
callconv.cpp
303
if (
IsOsrMode
()) {
in GenerateEpilogueImpl()
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/aarch32/
H
A
D
callconv.cpp
339
ASSERT(!
IsOsrMode
());
in GenerateEpilogue()
/arkcompiler/runtime_core/static_core/plugins/ets/compiler/optimizer/optimizations/interop_js/
H
A
D
interop_intrinsic_optimization.cpp
749
ASSERT(!GetGraph()->
IsOsrMode
() || inst->GetBasicBlock() == newInput->GetBasicBlock());
in TryRemoveUnwrapAndWrap()
1176
if (!GetGraph()->
IsOsrMode
()) {
in RunImpl()
/arkcompiler/runtime_core/compiler/optimizer/ir/
H
A
D
dump.cpp
530
if (
IsOsrMode
()) {
in Dump()
H
A
D
graph.h
885
bool
IsOsrMode
() const
in IsOsrMode()
function
H
A
D
graph_checker.cpp
727
ASSERT(GetGraph()->
IsOsrMode
());
in CheckSaveStateOsrRec()
Completed in 27 milliseconds
1
2