OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:return_opcode
(Results
1 - 2
of
2
) sorted by null
/external/mesa3d/src/mesa/program/
program_lexer.l
63
#define
return_opcode
(condition, token, opcode, len) \
183
ABS{sat} {
return_opcode
( 1, VECTOR_OP, ABS, 3); }
184
ADD{sat} {
return_opcode
( 1, BIN_OP, ADD, 3); }
185
ARL {
return_opcode
(require_ARB_vp, ARL, ARL, 3); }
187
CMP{sat} {
return_opcode
(require_ARB_fp, TRI_OP, CMP, 3); }
188
COS{sat} {
return_opcode
(require_ARB_fp, SCALAR_OP, COS, 3); }
190
DP3{sat} {
return_opcode
( 1, BIN_OP, DP3, 3); }
191
DP4{sat} {
return_opcode
( 1, BIN_OP, DP4, 3); }
192
DPH{sat} {
return_opcode
( 1, BIN_OP, DPH, 3); }
193
DST{sat} {
return_opcode
( 1, BIN_OP, DST, 3);
[
all
...]
/art/compiler/dex/
inline_method_analyser.cc
525
Instruction::Code
return_opcode
= return_instruction->Opcode();
local
529
DCHECK_LT((
return_opcode
== Instruction::RETURN_WIDE) ? reg + 1 : reg,
536
data->is_wide = (
return_opcode
== Instruction::RETURN_WIDE) ? 1u : 0u;
537
data->is_object = (
return_opcode
== Instruction::RETURN_OBJECT) ? 1u : 0u;
548
Instruction::Code
return_opcode
= return_instruction->Opcode();
local
549
if (
return_opcode
!= Instruction::RETURN &&
550
return_opcode
!= Instruction::RETURN_OBJECT) {
565
if (
return_opcode
== Instruction::RETURN_OBJECT && const_value != 0) {
585
Instruction::Code
return_opcode
= return_instruction->Opcode();
local
586
if (!(
return_opcode
== Instruction::RETURN_WIDE && opcode == Instruction::IGET_WIDE) &
649
Instruction::Code
return_opcode
= return_instruction->Opcode();
local
[
all
...]
Completed in 246 milliseconds