Lines Matching defs:compiler
48 struct ir3_compiler *compiler = rzalloc(NULL, struct ir3_compiler);
52 compiler->dev = dev;
53 compiler->gpu_id = gpu_id;
54 compiler->set = ir3_ra_alloc_reg_set(compiler);
56 if (compiler->gpu_id >= 600) {
57 compiler->samgq_workaround = true;
60 if (compiler->gpu_id >= 400) {
62 compiler->flat_bypass = true;
63 compiler->levels_add_one = false;
64 compiler->unminify_coords = false;
65 compiler->txf_ms_with_isaml = false;
66 compiler->array_index_add_half = true;
69 compiler->flat_bypass = false;
70 compiler->levels_add_one = true;
71 compiler->unminify_coords = true;
72 compiler->txf_ms_with_isaml = true;
73 compiler->array_index_add_half = false;
76 return compiler;