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:is_subdword
(Results
1 - 9
of
9
) sorted by relevance
/third_party/mesa3d/src/amd/compiler/
H
A
D
aco_validate.cpp
234
instr->operands[i].regClass().
is_subdword
() && !instr->operands[i].isFixed()))
in validate_ir()
237
if (instr->definitions[0].regClass().
is_subdword
() && !instr->definitions[0].isFixed())
in validate_ir()
250
instr->operands[i].regClass().
is_subdword
() && !instr->operands[i].isFixed())
in validate_ir()
278
if (instr->definitions[i].regClass().
is_subdword
())
in validate_ir()
420
!instr->definitions[0].regClass().
is_subdword
() ||
in validate_ir()
437
check(program->gfx_level >= GFX9 || !def.regClass().
is_subdword
(),
in validate_ir()
603
check(d16 || !instr->definitions[0].regClass().
is_subdword
(),
in validate_ir()
646
check(instr->mimg().d16 || !instr->definitions[0].regClass().
is_subdword
(),
in validate_ir()
961
if (def.regClass().
is_subdword
() && def.bytes() < 4) {
in validate_instr_defs()
1036
if (op.regClass().
is_subdword
()
in validate_ra()
[all...]
H
A
D
aco_register_allocation.cpp
215
if (rc.
is_subdword
() && operand >= 0) {
in DefInfo()
218
} else if (rc.
is_subdword
()) {
in DefInfo()
228
if (!rc.
is_subdword
())
in DefInfo()
289
if (rc.
is_subdword
())
in block()
319
if (rc.
is_subdword
())
in clear()
327
if (op.regClass().
is_subdword
())
in fill()
337
if (def.regClass().
is_subdword
())
in fill()
875
uint32_t stride = info.rc.
is_subdword
() ? DIV_ROUND_UP(info.stride, 4) : info.stride;
in get_reg_simple()
963
if (rc.
is_subdword
()) {
in get_reg_simple()
1051
return {reg, info.rc.
is_subdword
() || re
in get_reg_for_create_vector_copy()
[all...]
H
A
D
aco_optimizer_postRA.cpp
130
if (def.regClass().
is_subdword
())
in save_reg_writes()
134
assert(def.size() == dw_size || def.regClass().
is_subdword
());
in save_reg_writes()
173
if (rc.
is_subdword
())
in is_clobbered_since()
H
A
D
aco_lower_phis.cpp
351
else if (phi->definitions[0].regClass().
is_subdword
())
in lower_phis()
H
A
D
aco_lower_to_hw_instr.cpp
1237
} else if (def.regClass().
is_subdword
() && ctx->program->gfx_level < GFX8) {
in do_copy()
1280
} else if (def.regClass().
is_subdword
()) {
in do_copy()
1410
assert(def.regClass().
is_subdword
());
in do_swap()
1619
assert(!it->second.def.regClass().
is_subdword
());
in handle_operands()
2032
RegClass op_rc = def.regClass().
is_subdword
()
in lower_to_hw_instr()
2059
op.regClass().
is_subdword
()
in lower_to_hw_instr()
2074
RegClass rc_op = def.regClass().
is_subdword
()
in lower_to_hw_instr()
H
A
D
aco_ir.h
349
constexpr bool
is_subdword
() const { return rc & (1 << 7); }
in is_subdword()
function
350
constexpr unsigned bytes() const { return ((unsigned)rc & 0x1F) * (
is_subdword
() ? 1 : 4); }
in bytes()
H
A
D
aco_print_ir.cpp
92
if (rc.
is_subdword
()) {
in print_reg_class()
H
A
D
aco_instruction_selection.cpp
362
assert(!dst_rc.
is_subdword
());
in emit_extract_vector()
368
if (dst_rc.
is_subdword
())
in emit_extract_vector()
445
assert(dst.type() == RegType::vgpr || !src_rc.
is_subdword
());
in expand_vector()
1402
if (elems[i].type() == RegType::sgpr && elem_rc.
is_subdword
())
4729
ASSERTED bool
is_subdword
= elem_size_bytes < 4;
4730
assert(!
is_subdword
|| dst_type == RegType::vgpr);
4758
if (
is_subdword
&& src.type() == RegType::sgpr)
H
A
D
aco_optimizer.cpp
552
[](const Definition& def) { return def.regClass().
is_subdword
(); });
in pseudo_propagate_temp()
Completed in 38 milliseconds