Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-07-05 | radeonsi: make get_indirect_index globally visible | Nicolai Hähnle | 2 | -10/+13 | |
2017-07-05 | ac/nir: load buffer descriptors via ac_shader_abi::load_ssbo | Nicolai Hähnle | 2 | -8/+30 | |
2017-07-05 | ac/nir: pass ac_nir_context to emit_discard_if | Nicolai Hähnle | 1 | -8/+8 | |
2017-07-05 | ac/nir: extract shader_info->fs.can_discard from NIR shader info | Nicolai Hähnle | 1 | -2/+2 | |
2017-07-05 | radeonsi/nir: perform radeonsi-specific lowering and optimization passes | Nicolai Hähnle | 1 | -0/+41 | |
2017-07-05 | radeonsi/nir: perform lowering of input/output driver locations | Nicolai Hähnle | 3 | -0/+29 | |
2017-07-05 | ac/nir: handle old-style shadow tex instructions correctly | Nicolai Hähnle | 1 | -1/+3 | |
The first element is only extracted for new-style shadow tex. | |||||
2017-07-05 | ac/nir: whitespace fixes | Nicolai Hähnle | 1 | -1/+1 | |
2017-07-05 | ac/nir: use shader_info pass to determine whether instance_id is used | Nicolai Hähnle | 3 | -2/+9 | |
This improves the separation of ABI and NIR translation. | |||||
2017-07-05 | ac/nir: move setting shader_info->fs.writes_memory to radv-specific code | Nicolai Hähnle | 1 | -6/+3 | |
2017-07-05 | radeonsi/nir: add image descriptor loading | Nicolai Hähnle | 3 | -8/+32 | |
2017-07-05 | ac/nir: add image and write parameter to ac_shader_abi::load_sampler_desc | Nicolai Hähnle | 3 | -20/+30 | |
2017-07-05 | ac/nir: add support for arrays-of-arrays to get_sampler_desc | Nicolai Hähnle | 1 | -5/+20 | |
2017-07-05 | radeonsi/nir: set si_shader_context::num_{sampler,images} | Nicolai Hähnle | 1 | -0/+5 | |
2017-07-05 | radeonsi/nir: implement ac_shader_abi::load_sampler_desc | Nicolai Hähnle | 3 | -13/+49 | |
2017-07-05 | ac/nir: pass ac_nir_context to tex_fetch_ptrs and related functions | Nicolai Hähnle | 1 | -74/+81 | |
2017-07-05 | ac/nir: add and use ac_shader_abi::load_sampler_desc | Nicolai Hähnle | 2 | -48/+84 | |
2017-07-05 | ac/nir: pass ac_nir_context to visit_tex and various related functions | Nicolai Hähnle | 1 | -117/+118 | |
Get most of the churn out of the way before actually loading samplers via the ABI. | |||||
2017-07-05 | ac/nir,radeonsi: add ac_shader_abi::chip_class | Nicolai Hähnle | 3 | -0/+5 | |
2017-07-05 | radeonsi/nir: emit FS outputs | Nicolai Hähnle | 1 | -10/+14 | |
2017-07-05 | radeonsi/nir: load FS inputs | Nicolai Hähnle | 3 | -11/+52 | |
2017-07-05 | radeonsi/nir: load VS inputs | Nicolai Hähnle | 3 | -2/+40 | |
2017-07-05 | ac/nir,radeonsi: add ac_shader_abi::load_ubo | Nicolai Hähnle | 3 | -0/+19 | |
2017-07-05 | ac/nir: pass ac_nir_context to visit_load_ubo_buffer | Nicolai Hähnle | 1 | -8/+8 | |
2017-07-05 | ac/nir: pass ac_nir_context to visit_{load,store}_var and get_deref_offset ↵ | Nicolai Hähnle | 1 | -76/+76 | |
helper | |||||
2017-07-05 | ac/nir: pass ac_llvm_context to some helper functions | Nicolai Hähnle | 1 | -20/+20 | |
2017-07-05 | ac/nir: pass ac_nir_context to visit_intrinsic | Nicolai Hähnle | 1 | -52/+52 | |
2017-07-05 | ac/nir: add ac_nir_context::main_function | Nicolai Hähnle | 1 | -0/+3 | |
2017-07-05 | ac/nir: split scanning outputs from setting up output allocas | Nicolai Hähnle | 1 | -8/+43 | |
The scanning phase sets the driver_location, because it is part of the ABI: radeonsi does the assignment differently. | |||||
2017-07-05 | ac/nir: pass ac_llvm_context to *build_alloca* helpers | Nicolai Hähnle | 1 | -9/+9 | |
2017-07-05 | ac/nir: use ac_shader_abi::emit_outputs | Nicolai Hähnle | 1 | -2/+14 | |
2017-07-05 | ac,radeonsi: add ac_shader_abi::emit_outputs for hardware VS shaders | Nicolai Hähnle | 3 | -11/+37 | |
2017-07-05 | radeonsi: pass si_shader_context to get_primitive_id | Nicolai Hähnle | 1 | -6/+5 | |
2017-07-05 | radeonsi: translate NIR to LLVM | Nicolai Hähnle | 4 | -4/+22 | |
2017-07-05 | radeonsi: dump NIR instead of TGSI when appropriate | Nicolai Hähnle | 1 | -1/+5 | |
2017-07-05 | radeonsi: bypass the shader cache for NIR shaders | Nicolai Hähnle | 1 | -2/+3 | |
2017-07-05 | radeonsi: scan NIR shaders to obtain required info | Nicolai Hähnle | 5 | -6/+335 | |
2017-07-05 | ac/nir: add ac_shader_abi::inputs | Nicolai Hähnle | 2 | -0/+9 | |
2017-07-05 | ac/nir: begin splitting off ac_nir_context | Nicolai Hähnle | 2 | -201/+254 | |
The eventual goal is to hide all radv-specific details behind ac_nir_context::abi, so that the NIR->LLVM code can be re-used by radeonsi. During development, we live with a partial split, where some of the NIR->LLVM code still relies on linking back to the nir_to_llvm_context (which should ultimately be renamed to reflect that it's radv-specific). The idea is to get rid of these backlinks over time. | |||||
2017-07-05 | radeonsi: add si_shader_selector::nir | Nicolai Hähnle | 1 | -0/+3 | |
2017-07-05 | radeonsi: implement pipe_screen::get_compiler_options for NIR | Nicolai Hähnle | 1 | -0/+33 | |
2017-07-05 | radeonsi: add nir include paths | Nicolai Hähnle | 1 | -0/+1 | |
2017-07-05 | ac/nir: start using ac_shader_abi | Nicolai Hähnle | 1 | -20/+18 | |
v2: update for LLVMValueRefs in ac_shader_abi | |||||
2017-07-05 | ac,radeonsi: move some VS input descriptions to ac_shader_abi | Nicolai Hähnle | 3 | -31/+77 | |
v2: use LLVM values instead of function parameter indices Reviewed-by: Marek Olšák <marek.olsak@amd.com> (v1) | |||||
2017-07-05 | radeonsi: store shader function arguments in a structure | Nicolai Hähnle | 1 | -298/+320 | |
Aligns the code a bit more with ac/nir, and simplifies the setup of ac_shader_abi. | |||||
2017-07-05 | gallium/targets: link against NIR when building radeonsi | Nicolai Hähnle | 6 | -0/+8 | |
Reviewed-by: Marek Olšák <marek.olsak@amd.com> | |||||
2017-07-05 | st/glsl_to_nir: move nir_lower_io to drivers | Nicolai Hähnle | 3 | -2/+10 | |
This allows drivers more freedom in how exactly they want to lower I/O, e.g. first lowering I/O to temporaries. | |||||
2017-07-05 | st/mesa: get rid of st_glsl_types | Nicolai Hähnle | 10 | -173/+42 | |
It's a duplicate of glsl_type::count_attribute_slots. | |||||
2017-07-05 | st/glsl_to_nir: use nir_lower_samplers_as_deref when requested by the driver | Nicolai Hähnle | 1 | -1/+6 | |
Reviewed-by: Marek Olšák <marek.olsak@amd.com> | |||||
2017-07-05 | st/glsl_to_nir: fix the case where NIR clone testing is enabled | Nicolai Hähnle | 1 | -1/+2 | |
In that case, prog->nir must be assigned at the end. |