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:xmov
(Results
1 - 6
of
6
) sorted by relevance
/third_party/mesa3d/src/freedreno/afuc/
H
A
D
asm.c
188
if (ai->
xmov
) {
in emit_instructions()
190
"ALU instruction cannot have immediate and
xmov
\n");
in emit_instructions()
202
instr.alu.
xmov
= ai->
xmov
;
in emit_instructions()
210
if ((ai->has_immed || ai->label) && ai->
xmov
) {
in emit_instructions()
211
fprintf(stderr, "ALU instruction cannot have immediate and
xmov
\n");
in emit_instructions()
234
instr.alu.
xmov
= ai->
xmov
;
in emit_instructions()
H
A
D
disasm.c
457
if (instr->alu.
xmov
)
in disasm_instr()
458
printf("(
xmov
%d)", instr->alu.
xmov
);
in disasm_instr()
489
/*
xmov
is a modifier that makes the processor execute up to 3
in disasm_instr()
522
if (verbose && instr->alu.
xmov
) {
in disasm_instr()
523
for (int i = 0; i < instr->alu.
xmov
; i++) {
in disasm_instr()
527
else if (instr->alu.
xmov
== 3 && i == 1)
in disasm_instr()
H
A
D
asm.h
47
int
xmov
;
member
H
A
D
afuc.h
161
uint32_t
xmov
: 2; /* execute eXtra mov's based on $rem */
member
H
A
D
emu.c
152
if (instr->alu.
xmov
) {
in emu_instr()
153
unsigned m = MIN2(instr->alu.
xmov
, rem);
in emu_instr()
H
A
D
parser.y
186
| T_XMOV alu_instr { instr->
xmov
= $1; }
Completed in 5 milliseconds