/external/llvm/lib/Target/R600/ |
SIInstrInfo.td | 173 i32imm:$omod, i32imm:$neg), 174 opName#"_e64 $dst, $src0, $abs, $clamp, $omod, $neg", [] 199 i32imm:$omod, i32imm:$neg), 200 opName#"_e64 $dst, $src0, $src1, $abs, $clamp, $omod, $neg", [] 227 i32imm:$omod, i32imm:$neg), 228 opName#"_e64 $dst, $src0, $src1, $abs, $clamp, $omod, $neg", [] 251 InstFlag:$omod, InstFlag:$neg), 252 opName#"_e64 $dst, $src0, $src1, $abs, $clamp, $omod, $neg", 272 InstFlag:$abs, InstFlag:$clamp, InstFlag:$omod, InstFlag:$neg), 273 opName#" $dst, $src0, $src1, $src2, $abs, $clamp, $omod, $neg", patter [all...] |
R600InstrFormats.td | 123 bits<2> omod; 130 let Word1{6-5} = omod; 185 let Inst{39-38} = omod; 193 let Inst{38-37} = omod;
|
SIInstrFormats.td | 194 bits<2> omod; 205 let Inst{60-59} = omod; 221 bits<2> omod; 231 let Inst{60-59} = omod;
|
R600Instructions.td | 50 def OMOD : InstFlag <"printOMOD">; 96 (ins WRITE:$write, OMOD:$omod, REL:$dst_rel, CLAMP:$clamp, 101 "$clamp $last $dst$write$dst_rel$omod, " 138 OMOD:$omod, REL:$dst_rel, CLAMP:$clamp, 144 "$clamp $last $update_exec_mask$update_pred$dst$write$dst_rel$omod, " 924 OMOD:$omod_X, REL:$dst_rel_X, CLAMP:$clamp_X, 930 OMOD:$omod_Y, REL:$dst_rel_Y, CLAMP:$clamp_Y, 936 OMOD:$omod_Z, REL:$dst_rel_Z, CLAMP:$clamp_Z [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/ |
r300_fragprog_emit.c | 284 if (inst->RGB.Omod) { 285 if (inst->RGB.Omod == RC_OMOD_DISABLE) { 289 (inst->RGB.Omod << R300_ALU_OUTC_MOD_SHIFT); 291 if (inst->Alpha.Omod) { 292 if (inst->Alpha.Omod == RC_OMOD_DISABLE) { 296 (inst->Alpha.Omod << R300_ALU_OUTC_MOD_SHIFT);
|
radeon_pair_translate.c | 315 pair->RGB.Omod = inst->Omod; 318 pair->Alpha.Omod = inst->Omod;
|
radeon_program_pair.h | 79 unsigned int Omod:3;
|
radeon_compiler.c | 393 if (tmp->U.P.RGB.Omod != RC_OMOD_MUL_1 && 394 tmp->U.P.RGB.Omod != RC_OMOD_DISABLE) { 397 if (tmp->U.P.Alpha.Omod != RC_OMOD_MUL_1 && 398 tmp->U.P.Alpha.Omod != RC_OMOD_DISABLE) { 441 "~%4u OMOD Operations\n"
|
radeon_program_print.c | 301 print_omod_op(f, inst->U.I.Omod); 402 print_omod_op(f, inst->RGB.Omod); 437 print_omod_op(f, inst->Alpha.Omod);
|
radeon_program.h | 125 rc_omod_op Omod;
|
radeon_pair_schedule.c | 662 rgb->Alpha.Omod = alpha->Alpha.Omod; 949 pair_inst->Alpha.Omod = pair_inst->RGB.Omod; [all...] |
r500_fragprog_emit.c | 325 code->inst[ip].inst3 |= inst->RGB.Omod << R500_ALU_RGB_OMOD_SHIFT; 326 code->inst[ip].inst4 |= inst->Alpha.Omod << R500_ALPHA_OMOD_SHIFT;
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
r300_fragprog_emit.c | 284 if (inst->RGB.Omod) { 285 if (inst->RGB.Omod == RC_OMOD_DISABLE) { 289 (inst->RGB.Omod << R300_ALU_OUTC_MOD_SHIFT); 291 if (inst->Alpha.Omod) { 292 if (inst->Alpha.Omod == RC_OMOD_DISABLE) { 296 (inst->Alpha.Omod << R300_ALU_OUTC_MOD_SHIFT);
|
radeon_pair_translate.c | 315 pair->RGB.Omod = inst->Omod; 318 pair->Alpha.Omod = inst->Omod;
|
radeon_program_pair.h | 79 unsigned int Omod:3;
|
radeon_compiler.c | 393 if (tmp->U.P.RGB.Omod != RC_OMOD_MUL_1 && 394 tmp->U.P.RGB.Omod != RC_OMOD_DISABLE) { 397 if (tmp->U.P.Alpha.Omod != RC_OMOD_MUL_1 && 398 tmp->U.P.Alpha.Omod != RC_OMOD_DISABLE) { 441 "~%4u OMOD Operations\n"
|
radeon_program_print.c | 301 print_omod_op(f, inst->U.I.Omod); 402 print_omod_op(f, inst->RGB.Omod); 437 print_omod_op(f, inst->Alpha.Omod);
|
radeon_program.h | 125 rc_omod_op Omod;
|
radeon_pair_schedule.c | 662 rgb->Alpha.Omod = alpha->Alpha.Omod; 949 pair_inst->Alpha.Omod = pair_inst->RGB.Omod; [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/ |
r700_asm.c | 69 S_SQ_ALU_WORD1_OP2_OMOD(alu->omod) |
|
r600_asm.h | 61 unsigned omod; member in struct:r600_bytecode_alu
|
/external/mesa3d/src/gallium/drivers/r600/ |
r700_asm.c | 69 S_SQ_ALU_WORD1_OP2_OMOD(alu->omod) |
|
r600_asm.h | 61 unsigned omod; member in struct:r600_bytecode_alu
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/ |
SIISelLowering.cpp | 91 .addImm(0) // OMOD 106 .addImm(0) // OMOD 121 .addImm(0) // OMOD
|
/external/mesa3d/src/gallium/drivers/radeon/ |
SIISelLowering.cpp | 91 .addImm(0) // OMOD 106 .addImm(0) // OMOD 121 .addImm(0) // OMOD
|