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:sgpr_limit
(Results
1 - 8
of
8
) sorted by relevance
/third_party/mesa3d/src/amd/compiler/
H
A
D
aco_live_var_analysis.cpp
351
return std::min(sgprs, program->dev.
sgpr_limit
);
in get_addr_sgpr_from_waves()
411
uint16_t
sgpr_limit
= get_addr_sgpr_from_waves(program, program->min_waves);
in update_vgpr_sgpr_demand()
local
415
if (new_demand.vgpr > vgpr_limit || new_demand.sgpr >
sgpr_limit
) {
in update_vgpr_sgpr_demand()
H
A
D
aco_ir.cpp
106
program->dev.
sgpr_limit
=
in init_program()
115
program->dev.
sgpr_limit
= 102;
in init_program()
121
program->dev.
sgpr_limit
= 104;
in init_program()
H
A
D
aco_spill.cpp
1934
const uint16_t
sgpr_limit
= get_addr_sgpr_from_waves(program, program->min_waves);
1940
if (demand.sgpr >
sgpr_limit
) {
1941
unsigned sgpr_spills = demand.sgpr -
sgpr_limit
;
1950
if (demand.sgpr + extra_sgprs >
sgpr_limit
) {
1952
unsigned sgpr_spills = demand.sgpr + extra_sgprs -
sgpr_limit
;
1957
const RegisterDemand target(vgpr_limit - extra_vgprs,
sgpr_limit
- extra_sgprs);
H
A
D
aco_validate.cpp
999
uint16_t
sgpr_limit
= get_addr_sgpr_from_waves(program, program->num_waves);
in validate_ra()
local
1030
op.physReg() <
sgpr_limit
))
in validate_ra()
1061
def.physReg() <
sgpr_limit
))
in validate_ra()
H
A
D
aco_register_allocation.cpp
83
uint16_t
sgpr_limit
;
member
98
sgpr_limit
= get_addr_sgpr_from_waves(program, program->min_waves);
in ra_ctx()
747
uint16_t max_addressible_sgpr = ctx.
sgpr_limit
;
in adjust_max_used_regs()
1432
} else if (type == RegType::sgpr && ctx.program->max_reg_demand.sgpr < ctx.
sgpr_limit
) {
in increase_register_file()
H
A
D
aco_ir.h
2062
uint16_t
sgpr_limit
;
H
A
D
aco_instruction_selection.cpp
12214
unsigned count = MIN2((bld.program->dev.
sgpr_limit
- dest.reg()) / 4u, max);
/third_party/mesa3d/src/amd/compiler/tests/
H
A
D
test_regalloc.cpp
87
program->dev.
sgpr_limit
= 4;
Completed in 29 milliseconds