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:num_locals
(Results
1 - 2
of
2
) sorted by relevance
/arkcompiler/runtime_core/bytecode_optimizer/
H
A
D
reg_encoder.h
68
* *
num_locals
+ num_temps + num_max_range_input is stored to graph with SetStackSlotsCount
154
auto
num_locals
= GetGraph()->GetStackSlotsCount();
in GetNumLocalsFromGraph()
local
155
ASSERT(
num_locals
<= compiler::VIRTUAL_FRAME_SIZE);
in GetNumLocalsFromGraph()
156
return
num_locals
;
in GetNumLocalsFromGraph()
166
void SaveNumLocalsToGraph(uint32_t
num_locals
) const
in SaveNumLocalsToGraph()
168
ASSERT(
num_locals
<= compiler::VIRTUAL_FRAME_SIZE);
in SaveNumLocalsToGraph()
169
GetGraph()->SetStackSlotsCount(
num_locals
);
in SaveNumLocalsToGraph()
H
A
D
reg_encoder.cpp
220
compiler::Register
num_locals
= 0;
in RenumberArgRegs()
local
222
while (
num_locals
!= num_non_args && usage_mask->at(
num_locals
)) {
in RenumberArgRegs()
223
++
num_locals
;
in RenumberArgRegs()
228
if (
num_locals
!= num_non_args) {
in RenumberArgRegs()
236
if (
num_locals
+ num_temps > num_non_args - num_max_range_input_) {
in RenumberArgRegs()
241
range_temps_start_ =
num_locals
;
in RenumberArgRegs()
250
if (
num_locals
+ num_temps + num_max_range_input_ == num_non_args) {
in RenumberArgRegs()
268
for (compiler::Register r =
num_locals
; r < min_reg; r++) {
in RenumberArgRegs()
272
auto delta = static_cast<compiler::Register>(
num_locals
in RenumberArgRegs()
[all...]
Completed in 1 milliseconds