| /xsrc/external/mit/MesaLib/dist/src/mesa/program/ |
| programopt.c | 26 * \file programopt.c 90 newInst[i].DstReg.File = PROGRAM_OUTPUT; 93 newInst[i].SrcReg[0].File = PROGRAM_STATE_VAR; 96 newInst[i].SrcReg[1].File = PROGRAM_INPUT; 161 newInst[0].DstReg.File = PROGRAM_TEMPORARY; 164 newInst[0].SrcReg[0].File = PROGRAM_INPUT; 167 newInst[0].SrcReg[1].File = PROGRAM_STATE_VAR; 173 newInst[i].DstReg.File = PROGRAM_TEMPORARY; 176 newInst[i].SrcReg[0].File = PROGRAM_INPUT; 179 newInst[i].SrcReg[1].File = PROGRAM_STATE_VAR [all...] |
| prog_opt_constant_fold.c | 39 if (inst->SrcReg[i].File != PROGRAM_CONSTANT) 56 src.File = PROGRAM_CONSTANT; 71 src.File = PROGRAM_CONSTANT; 82 return (a->File == b->File) 152 inst->SrcReg[1].File = PROGRAM_UNDEFINED; 182 inst->SrcReg[1].File = PROGRAM_UNDEFINED; 184 inst->SrcReg[2].File = PROGRAM_UNDEFINED; 213 inst->SrcReg[1].File = PROGRAM_UNDEFINED; 237 inst->SrcReg[1].File = PROGRAM_UNDEFINED [all...] |
| prog_instruction.c | 48 inst[i].SrcReg[0].File = PROGRAM_UNDEFINED; 50 inst[i].SrcReg[1].File = PROGRAM_UNDEFINED; 52 inst[i].SrcReg[2].File = PROGRAM_UNDEFINED; 55 inst[i].DstReg.File = PROGRAM_UNDEFINED; 223 if (inst->SrcReg[i].File == inst->DstReg.File &&
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/program/ |
| programopt.c | 26 * \file programopt.c 90 newInst[i].DstReg.File = PROGRAM_OUTPUT; 93 newInst[i].SrcReg[0].File = PROGRAM_STATE_VAR; 96 newInst[i].SrcReg[1].File = PROGRAM_INPUT; 161 newInst[0].DstReg.File = PROGRAM_TEMPORARY; 164 newInst[0].SrcReg[0].File = PROGRAM_INPUT; 167 newInst[0].SrcReg[1].File = PROGRAM_STATE_VAR; 173 newInst[i].DstReg.File = PROGRAM_TEMPORARY; 176 newInst[i].SrcReg[0].File = PROGRAM_INPUT; 179 newInst[i].SrcReg[1].File = PROGRAM_STATE_VAR [all...] |
| prog_opt_constant_fold.c | 39 if (inst->SrcReg[i].File != PROGRAM_CONSTANT) 56 src.File = PROGRAM_CONSTANT; 71 src.File = PROGRAM_CONSTANT; 82 return (a->File == b->File) 152 inst->SrcReg[1].File = PROGRAM_UNDEFINED; 182 inst->SrcReg[1].File = PROGRAM_UNDEFINED; 184 inst->SrcReg[2].File = PROGRAM_UNDEFINED; 213 inst->SrcReg[1].File = PROGRAM_UNDEFINED; 237 inst->SrcReg[1].File = PROGRAM_UNDEFINED [all...] |
| prog_instruction.c | 46 inst[i].SrcReg[0].File = PROGRAM_UNDEFINED; 48 inst[i].SrcReg[1].File = PROGRAM_UNDEFINED; 50 inst[i].SrcReg[2].File = PROGRAM_UNDEFINED; 53 inst[i].DstReg.File = PROGRAM_UNDEFINED; 221 if (inst->SrcReg[i].File == inst->DstReg.File &&
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r300/compiler/tests/ |
| rc_test_helpers.c | 50 /* This file contains some helper functions for filling out the rc_instruction 118 struct match_info File; 156 tokens.File.String = src_str + matches[3].rm_so; 157 tokens.File.Length = match_length(matches, 3); 173 /* File */ 174 if (!strncmp(tokens.File.String, "temp", tokens.File.Length)) { 175 src_reg->File = RC_FILE_TEMPORARY; 176 } else if (!strncmp(tokens.File.String, "input", tokens.File.Length)) 540 FILE *file; local [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r300/compiler/tests/ |
| rc_test_helpers.c | 50 /* This file contains some helper functions for filling out the rc_instruction 118 struct match_info File; 156 tokens.File.String = src_str + matches[3].rm_so; 157 tokens.File.Length = match_length(matches, 3); 173 /* File */ 174 if (!strncmp(tokens.File.String, "temp", tokens.File.Length)) { 175 src_reg->File = RC_FILE_TEMPORARY; 176 } else if (!strncmp(tokens.File.String, "input", tokens.File.Length)) 540 FILE *file; local [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/tgsi/ |
| tgsi_two_side.c | 77 if (decl->Declaration.File == TGSI_FILE_INPUT) { 89 else if (decl->Declaration.File == TGSI_FILE_TEMPORARY) { 110 decl.Declaration.File = TGSI_FILE_INPUT; 126 decl.Declaration.File = TGSI_FILE_TEMPORARY; 136 decl.Declaration.File = TGSI_FILE_INPUT; 153 inst.Dst[0].Register.File = TGSI_FILE_TEMPORARY; 156 inst.Src[0].Register.File = TGSI_FILE_INPUT; 158 inst.Src[1].Register.File = TGSI_FILE_INPUT; 160 inst.Src[2].Register.File = TGSI_FILE_INPUT; 183 if (inst->Src[i].Register.File == TGSI_FILE_INPUT) [all...] |
| tgsi_scan.c | 48 is_memory_file(unsigned file) 50 return file == TGSI_FILE_SAMPLER || 51 file == TGSI_FILE_SAMPLER_VIEW || 52 file == TGSI_FILE_IMAGE || 53 file == TGSI_FILE_BUFFER || 54 file == TGSI_FILE_HW_ATOMIC; 118 src->Register.File == TGSI_FILE_SYSTEM_VALUE) { 148 if (src->Register.File == TGSI_FILE_INPUT) { 224 src->Register.File == TGSI_FILE_OUTPUT) { 247 info->indirect_files |= (1 << src->Register.File); 607 const uint file = fulldecl->Declaration.File; local 821 uint file = TGSI_FILE_IMMEDIATE; local [all...] |
| tgsi_emulate.c | 53 decl->Declaration.File == TGSI_FILE_INPUT) { 70 decl.Declaration.File = TGSI_FILE_INPUT; 76 decl.Declaration.File = TGSI_FILE_OUTPUT; 88 new_inst.Dst[0].Register.File = TGSI_FILE_OUTPUT; 93 new_inst.Src[0].Register.File = TGSI_FILE_INPUT; 123 if (inst->Dst[i].Register.File != TGSI_FILE_OUTPUT ||
|
| tgsi_dynamic_indexing.c | 71 if (decl->Declaration.File == TGSI_FILE_TEMPORARY) { 79 else if (decl->Declaration.File == TGSI_FILE_CONSTANT) { 117 unsigned file = TGSI_FILE_NULL, index = INVALID_INDEX; local 127 if (reg->Register.File == TGSI_FILE_CONSTANT) { 128 file = reg->DimIndirect.File; 132 else if (reg->Register.File == TGSI_FILE_SAMPLER) { 133 file = reg->Indirect.File; 137 tgsi_transform_src_reg(&inst.Src[0], file, [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/tgsi/ |
| tgsi_two_side.c | 77 if (decl->Declaration.File == TGSI_FILE_INPUT) { 89 else if (decl->Declaration.File == TGSI_FILE_TEMPORARY) { 110 decl.Declaration.File = TGSI_FILE_INPUT; 126 decl.Declaration.File = TGSI_FILE_TEMPORARY; 136 decl.Declaration.File = TGSI_FILE_INPUT; 153 inst.Dst[0].Register.File = TGSI_FILE_TEMPORARY; 156 inst.Src[0].Register.File = TGSI_FILE_INPUT; 158 inst.Src[1].Register.File = TGSI_FILE_INPUT; 160 inst.Src[2].Register.File = TGSI_FILE_INPUT; 183 if (inst->Src[i].Register.File == TGSI_FILE_INPUT) [all...] |
| tgsi_scan.c | 48 is_memory_file(unsigned file) 50 return file == TGSI_FILE_SAMPLER || 51 file == TGSI_FILE_SAMPLER_VIEW || 52 file == TGSI_FILE_IMAGE || 53 file == TGSI_FILE_BUFFER || 54 file == TGSI_FILE_HW_ATOMIC; 118 src->Register.File == TGSI_FILE_SYSTEM_VALUE) { 148 if (src->Register.File == TGSI_FILE_INPUT) { 224 src->Register.File == TGSI_FILE_OUTPUT) { 247 info->indirect_files |= (1 << src->Register.File); 585 const uint file = fulldecl->Declaration.File; local 800 uint file = TGSI_FILE_IMMEDIATE; local [all...] |
| tgsi_emulate.c | 53 decl->Declaration.File == TGSI_FILE_INPUT) { 70 decl.Declaration.File = TGSI_FILE_INPUT; 76 decl.Declaration.File = TGSI_FILE_OUTPUT; 88 new_inst.Dst[0].Register.File = TGSI_FILE_OUTPUT; 93 new_inst.Src[0].Register.File = TGSI_FILE_INPUT; 123 if (inst->Dst[i].Register.File != TGSI_FILE_OUTPUT ||
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r300/compiler/ |
| radeon_compiler.c | 101 int rc_if_fail_helper(struct radeon_compiler * c, const char * file, int line, const char * assertion) 103 rc_error(c, "ICE at %s:%i: assertion failed: %s\n", file, line, assertion); 125 if (inst->U.I.SrcReg[i].File == RC_FILE_INPUT) 130 if (inst->U.I.DstReg.File == RC_FILE_OUTPUT) 151 if (inst->U.I.SrcReg[i].File == RC_FILE_INPUT && inst->U.I.SrcReg[i].Index == input) { 152 inst->U.I.SrcReg[i].File = new_input.File; 182 if (inst->U.I.DstReg.File == RC_FILE_OUTPUT && inst->U.I.DstReg.Index == output) { 205 if (inst->U.I.DstReg.File == RC_FILE_OUTPUT && inst->U.I.DstReg.Index == output) { 206 inst->U.I.DstReg.File = RC_FILE_TEMPORARY [all...] |
| radeon_program_tex.c | 40 reg.File = RC_FILE_NONE; 51 reg.File = RC_FILE_NONE; 68 inst_mov->U.I.DstReg.File = RC_FILE_TEMPORARY; 71 inst_mov->U.I.SrcReg[1].File = RC_FILE_CONSTANT; 77 inst->U.I.SrcReg[0].File = RC_FILE_TEMPORARY; 90 inst_rcp->U.I.DstReg.File = RC_FILE_TEMPORARY; 101 inst_mul->U.I.DstReg.File = RC_FILE_TEMPORARY; 104 inst_mul->U.I.SrcReg[1].File = RC_FILE_TEMPORARY; 110 inst->U.I.SrcReg[0].File = RC_FILE_TEMPORARY; 171 inst->U.I.DstReg.File = RC_FILE_TEMPORARY [all...] |
| radeon_pair_translate.c | 47 inst->SrcReg[1].File = RC_FILE_NONE; 68 inst->SrcReg[1].File = RC_FILE_NONE; 70 inst->SrcReg[2].File = RC_FILE_NONE; 75 inst->SrcReg[2].File = RC_FILE_NONE; 188 if(inst->SrcReg[j].File != RC_FILE_PRESUB) 198 pair->RGB.Src[i].File = 199 inst->PreSub.SrcReg[i].File; 205 pair->Alpha.Src[i].File = 206 inst->PreSub.SrcReg[i].File; 237 inst->SrcReg[i].File, inst->SrcReg[i].Index) [all...] |
| radeon_optimize.c | 40 rc_register_file File; 53 combine.File = inner.File; 71 rc_register_file file = src->File; local 85 if (file == RC_FILE_ADDRESS) { 90 /* These instructions cannot read from the constants file. 93 if(reader_data->Writer->U.I.SrcReg[0].File != RC_FILE_TEMPORARY && 94 reader_data->Writer->U.I.SrcReg[0].File != RC_FILE_INPUT && 113 if (src->File == sc_data->Fil [all...] |
| radeon_program.h | 42 unsigned int File:4; 58 unsigned int File:3;
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r300/compiler/ |
| radeon_compiler.c | 101 int rc_if_fail_helper(struct radeon_compiler * c, const char * file, int line, const char * assertion) 103 rc_error(c, "ICE at %s:%i: assertion failed: %s\n", file, line, assertion); 125 if (inst->U.I.SrcReg[i].File == RC_FILE_INPUT) 130 if (inst->U.I.DstReg.File == RC_FILE_OUTPUT) 151 if (inst->U.I.SrcReg[i].File == RC_FILE_INPUT && inst->U.I.SrcReg[i].Index == input) { 152 inst->U.I.SrcReg[i].File = new_input.File; 182 if (inst->U.I.DstReg.File == RC_FILE_OUTPUT && inst->U.I.DstReg.Index == output) { 205 if (inst->U.I.DstReg.File == RC_FILE_OUTPUT && inst->U.I.DstReg.Index == output) { 206 inst->U.I.DstReg.File = RC_FILE_TEMPORARY [all...] |
| radeon_program_tex.c | 40 reg.File = RC_FILE_NONE; 51 reg.File = RC_FILE_NONE; 68 inst_mov->U.I.DstReg.File = RC_FILE_TEMPORARY; 71 inst_mov->U.I.SrcReg[1].File = RC_FILE_CONSTANT; 77 inst->U.I.SrcReg[0].File = RC_FILE_TEMPORARY; 90 inst_rcp->U.I.DstReg.File = RC_FILE_TEMPORARY; 101 inst_mul->U.I.DstReg.File = RC_FILE_TEMPORARY; 104 inst_mul->U.I.SrcReg[1].File = RC_FILE_TEMPORARY; 110 inst->U.I.SrcReg[0].File = RC_FILE_TEMPORARY; 171 inst->U.I.DstReg.File = RC_FILE_TEMPORARY [all...] |
| radeon_pair_translate.c | 45 inst->SrcReg[1].File = RC_FILE_NONE; 66 inst->SrcReg[1].File = RC_FILE_NONE; 68 inst->SrcReg[2].File = RC_FILE_NONE; 73 inst->SrcReg[2].File = RC_FILE_NONE; 186 if(inst->SrcReg[j].File != RC_FILE_PRESUB) 196 pair->RGB.Src[i].File = 197 inst->PreSub.SrcReg[i].File; 203 pair->Alpha.Src[i].File = 204 inst->PreSub.SrcReg[i].File; 235 inst->SrcReg[i].File, inst->SrcReg[i].Index) [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r300/ |
| r300_vs_draw.c | 27 /* This file contains the vertex shader tranformations for SW TCL needed 83 decl.Declaration.File = TGSI_FILE_TEMPORARY; 96 decl.Declaration.File = TGSI_FILE_OUTPUT; 151 if (decl->Declaration.File == TGSI_FILE_OUTPUT) { 205 } else if (decl->Declaration.File == TGSI_FILE_TEMPORARY) { 214 if (decl->Declaration.File == TGSI_FILE_OUTPUT && 251 new_inst.Dst[0].Register.File = TGSI_FILE_OUTPUT; 255 new_inst.Src[0].Register.File = TGSI_FILE_TEMPORARY; 263 new_inst.Dst[0].Register.File = TGSI_FILE_OUTPUT; 267 new_inst.Src[0].Register.File = TGSI_FILE_TEMPORARY [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r300/ |
| r300_vs_draw.c | 27 /* This file contains the vertex shader tranformations for SW TCL needed 83 decl.Declaration.File = TGSI_FILE_TEMPORARY; 96 decl.Declaration.File = TGSI_FILE_OUTPUT; 151 if (decl->Declaration.File == TGSI_FILE_OUTPUT) { 205 } else if (decl->Declaration.File == TGSI_FILE_TEMPORARY) { 214 if (decl->Declaration.File == TGSI_FILE_OUTPUT && 251 new_inst.Dst[0].Register.File = TGSI_FILE_OUTPUT; 255 new_inst.Src[0].Register.File = TGSI_FILE_TEMPORARY; 263 new_inst.Dst[0].Register.File = TGSI_FILE_OUTPUT; 267 new_inst.Src[0].Register.File = TGSI_FILE_TEMPORARY [all...] |