Lines Matching refs:chipset
38 nv30_fp(int chipset, struct tgsi_token tokens[], in nv30_fp() argument
44 _nvfx_fragprog_translate(chipset >= 0x40 ? 0x4097 : 0x3097, &fp); in nv30_fp()
51 nv30_vp(int chipset, struct tgsi_token tokens[], in nv30_vp() argument
58 _nvfx_vertprog_translate(chipset >= 0x40 ? 0x4097 : 0x3097, &vp); in nv30_vp()
65 nv30_codegen(int chipset, int type, struct tgsi_token tokens[], in nv30_codegen() argument
69 return nv30_fp(chipset, tokens, size, code); in nv30_codegen()
71 return nv30_vp(chipset, tokens, size, code); in nv30_codegen()
105 nouveau_codegen(int chipset, int type, struct tgsi_token tokens[], in nouveau_codegen() argument
111 info.target = chipset; in nouveau_codegen()
142 int i, chipset = 0, type = -1; in main() local
150 chipset = strtol(argv[++i], NULL, 16); in main()
155 if (!chipset) { in main()
182 _debug_printf("Compiling for NV%X\n", chipset); in main()
206 if (chipset >= 0x50) { in main()
207 i = nouveau_codegen(chipset, type, tokens, &size, &code); in main()
208 } else if (chipset >= 0x30) { in main()
209 i = nv30_codegen(chipset, type, tokens, &size, &code); in main()
211 _debug_printf("chipset NV%02X not supported\n", chipset); in main()