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:maxRegCount
(Results
1 - 4
of
4
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
H
A
D
live.h
53
SparseDataInfo *NewLiveIn(uint32
maxRegCount
) const
in NewLiveIn()
55
return memPool->New<SparseDataInfo>(
maxRegCount
, alloc);
in NewLiveIn()
58
SparseDataInfo *NewLiveOut(uint32
maxRegCount
) const
in NewLiveOut()
60
return memPool->New<SparseDataInfo>(
maxRegCount
, alloc);
in NewLiveOut()
63
SparseDataInfo *NewDef(uint32
maxRegCount
) const
in NewDef()
65
return memPool->New<SparseDataInfo>(
maxRegCount
, alloc);
in NewDef()
73
SparseDataInfo *NewUse(uint32
maxRegCount
) const
in NewUse()
75
return memPool->New<SparseDataInfo>(
maxRegCount
, alloc);
in NewUse()
H
A
D
reg_info.h
61
static uint32
maxRegCount
;
member in maplebe::VregInfo
74
maxRegCount
= kBaseVirtualRegNO;
in VregInfo()
83
/* when vReg reach to
maxRegCount
,
maxRegCount
limit adds 80 every time */
in GetNextVregNO()
85
if (virtualRegCount >=
maxRegCount
) {
in GetNextVregNO()
86
DEBUG_ASSERT(virtualRegCount <
maxRegCount
+ 1, "MAINTAIN FAILED");
in GetNextVregNO()
87
maxRegCount
+= kRegIncrStepLen;
in GetNextVregNO()
88
VRegTableResize(
maxRegCount
);
in GetNextVregNO()
124
/*
maxRegCount
related stuff */
127
return
maxRegCount
;
[all...]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
H
A
D
live.cpp
398
const uint32
maxRegCount
= cgFunc->GetMaxVReg();
in InitBB()
local
399
bb.SetLiveIn(*NewLiveIn(
maxRegCount
));
in InitBB()
400
bb.SetLiveOut(*NewLiveOut(
maxRegCount
));
in InitBB()
401
bb.SetDef(*NewDef(
maxRegCount
));
in InitBB()
402
bb.SetUse(*NewUse(
maxRegCount
));
in InitBB()
H
A
D
cg.cpp
23
uint32 VregInfo::
maxRegCount
= 0;
member in maplebe::VregInfo
Completed in 3 milliseconds