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:vgpr_limit
(Results
1 - 6
of
6
) sorted by relevance
/third_party/mesa3d/src/amd/compiler/tests/
H
A
D
test_regalloc.cpp
215
program->dev.
vgpr_limit
= 3;
246
program->dev.
vgpr_limit
= 6;
271
program->dev.
vgpr_limit
= 4;
/third_party/mesa3d/src/amd/compiler/
H
A
D
aco_live_var_analysis.cpp
333
assert(addressable_vgprs <= program->dev.
vgpr_limit
);
in get_vgpr_alloc()
359
return std::min(vgprs, program->dev.
vgpr_limit
);
in get_addr_vgpr_from_waves()
412
uint16_t
vgpr_limit
= get_addr_vgpr_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_spill.cpp
1935
const uint16_t
vgpr_limit
= get_addr_vgpr_from_waves(program, program->min_waves);
1945
if (demand.vgpr + extra_vgprs >
vgpr_limit
) {
1957
const RegisterDemand target(
vgpr_limit
- extra_vgprs, sgpr_limit - extra_sgprs);
H
A
D
aco_ir.cpp
98
program->dev.
vgpr_limit
= 256;
in init_program()
H
A
D
aco_register_allocation.cpp
84
uint16_t
vgpr_limit
;
member
99
vgpr_limit
= get_addr_vgpr_from_waves(program, program->min_waves);
in ra_ctx()
1429
if (type == RegType::vgpr && ctx.program->max_reg_demand.vgpr < ctx.
vgpr_limit
) {
in increase_register_file()
H
A
D
aco_ir.h
2061
uint16_t
vgpr_limit
;
Completed in 14 milliseconds