2014-07-10 18:18:17 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2014 Intel Corporation
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
|
* Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
|
*
|
|
|
|
|
* Authors:
|
|
|
|
|
* Connor Abbott (cwabbott0@gmail.com)
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2016-05-09 14:35:58 -07:00
|
|
|
#include "glsl_to_nir.h"
|
2016-05-25 16:00:38 -07:00
|
|
|
#include "ir_visitor.h"
|
|
|
|
|
#include "ir_hierarchical_visitor.h"
|
|
|
|
|
#include "ir.h"
|
|
|
|
|
#include "compiler/nir/nir_control_flow.h"
|
|
|
|
|
#include "compiler/nir/nir_builder.h"
|
2015-11-06 12:23:17 +00:00
|
|
|
#include "main/imports.h"
|
2014-07-10 18:18:17 -07:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* pass to lower GLSL IR to NIR
|
|
|
|
|
*
|
|
|
|
|
* This will lower variable dereferences to loads/stores of corresponding
|
|
|
|
|
* variables in NIR - the variables will be converted to registers in a later
|
|
|
|
|
* pass.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
class nir_visitor : public ir_visitor
|
|
|
|
|
{
|
|
|
|
|
public:
|
2015-08-18 01:53:29 -07:00
|
|
|
nir_visitor(nir_shader *shader);
|
2014-07-10 18:18:17 -07:00
|
|
|
~nir_visitor();
|
|
|
|
|
|
|
|
|
|
virtual void visit(ir_variable *);
|
|
|
|
|
virtual void visit(ir_function *);
|
|
|
|
|
virtual void visit(ir_function_signature *);
|
|
|
|
|
virtual void visit(ir_loop *);
|
|
|
|
|
virtual void visit(ir_if *);
|
|
|
|
|
virtual void visit(ir_discard *);
|
|
|
|
|
virtual void visit(ir_loop_jump *);
|
|
|
|
|
virtual void visit(ir_return *);
|
|
|
|
|
virtual void visit(ir_call *);
|
|
|
|
|
virtual void visit(ir_assignment *);
|
|
|
|
|
virtual void visit(ir_emit_vertex *);
|
|
|
|
|
virtual void visit(ir_end_primitive *);
|
|
|
|
|
virtual void visit(ir_expression *);
|
|
|
|
|
virtual void visit(ir_swizzle *);
|
|
|
|
|
virtual void visit(ir_texture *);
|
|
|
|
|
virtual void visit(ir_constant *);
|
|
|
|
|
virtual void visit(ir_dereference_variable *);
|
|
|
|
|
virtual void visit(ir_dereference_record *);
|
|
|
|
|
virtual void visit(ir_dereference_array *);
|
2014-09-07 19:24:15 +12:00
|
|
|
virtual void visit(ir_barrier *);
|
2014-07-10 18:18:17 -07:00
|
|
|
|
2015-12-26 10:00:47 -08:00
|
|
|
void create_function(ir_function_signature *ir);
|
2014-07-10 18:18:17 -07:00
|
|
|
|
|
|
|
|
private:
|
2016-04-04 10:16:11 +02:00
|
|
|
void add_instr(nir_instr *instr, unsigned num_components, unsigned bit_size);
|
2015-10-30 23:32:50 -04:00
|
|
|
nir_ssa_def *evaluate_rvalue(ir_rvalue *ir);
|
2014-07-10 18:18:17 -07:00
|
|
|
|
2015-10-30 23:56:49 -04:00
|
|
|
nir_alu_instr *emit(nir_op op, unsigned dest_size, nir_ssa_def **srcs);
|
|
|
|
|
nir_alu_instr *emit(nir_op op, unsigned dest_size, nir_ssa_def *src1);
|
|
|
|
|
nir_alu_instr *emit(nir_op op, unsigned dest_size, nir_ssa_def *src1,
|
|
|
|
|
nir_ssa_def *src2);
|
|
|
|
|
nir_alu_instr *emit(nir_op op, unsigned dest_size, nir_ssa_def *src1,
|
|
|
|
|
nir_ssa_def *src2, nir_ssa_def *src3);
|
2014-07-10 18:18:17 -07:00
|
|
|
|
|
|
|
|
bool supports_ints;
|
|
|
|
|
|
|
|
|
|
nir_shader *shader;
|
|
|
|
|
nir_function_impl *impl;
|
2015-10-31 16:31:59 -04:00
|
|
|
nir_builder b;
|
2015-10-30 23:47:46 -04:00
|
|
|
nir_ssa_def *result; /* result of the expression tree last visited */
|
2014-07-10 18:18:17 -07:00
|
|
|
|
2015-04-02 21:24:38 -07:00
|
|
|
nir_deref_var *evaluate_deref(nir_instr *mem_ctx, ir_instruction *ir);
|
|
|
|
|
|
2014-07-10 18:18:17 -07:00
|
|
|
/* the head of the dereference chain we're creating */
|
|
|
|
|
nir_deref_var *deref_head;
|
|
|
|
|
/* the tail of the dereference chain we're creating */
|
|
|
|
|
nir_deref *deref_tail;
|
|
|
|
|
|
|
|
|
|
nir_variable *var; /* variable created by ir_variable visitor */
|
|
|
|
|
|
|
|
|
|
/* whether the IR we're operating on is per-function or global */
|
|
|
|
|
bool is_global;
|
|
|
|
|
|
|
|
|
|
/* map of ir_variable -> nir_variable */
|
|
|
|
|
struct hash_table *var_table;
|
|
|
|
|
|
|
|
|
|
/* map of ir_function_signature -> nir_function_overload */
|
|
|
|
|
struct hash_table *overload_table;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* This visitor runs before the main visitor, calling create_function() for
|
|
|
|
|
* each function so that the main visitor can resolve forward references in
|
|
|
|
|
* calls.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
class nir_function_visitor : public ir_hierarchical_visitor
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
nir_function_visitor(nir_visitor *v) : visitor(v)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
virtual ir_visitor_status visit_enter(ir_function *);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
nir_visitor *visitor;
|
|
|
|
|
};
|
|
|
|
|
|
2016-04-28 12:18:34 +01:00
|
|
|
} /* end of anonymous namespace */
|
2014-07-10 18:18:17 -07:00
|
|
|
|
|
|
|
|
nir_shader *
|
2015-08-05 16:39:32 -07:00
|
|
|
glsl_to_nir(const struct gl_shader_program *shader_prog,
|
|
|
|
|
gl_shader_stage stage,
|
|
|
|
|
const nir_shader_compiler_options *options)
|
2014-07-10 18:18:17 -07:00
|
|
|
{
|
2015-08-05 16:39:32 -07:00
|
|
|
struct gl_shader *sh = shader_prog->_LinkedShaders[stage];
|
|
|
|
|
|
|
|
|
|
nir_shader *shader = nir_shader_create(NULL, stage, options);
|
2014-07-10 18:18:17 -07:00
|
|
|
|
2015-08-18 01:53:29 -07:00
|
|
|
nir_visitor v1(shader);
|
2014-07-10 18:18:17 -07:00
|
|
|
nir_function_visitor v2(&v1);
|
2015-03-06 01:22:49 -08:00
|
|
|
v2.run(sh->ir);
|
|
|
|
|
visit_exec_list(sh->ir, &v1);
|
2014-07-10 18:18:17 -07:00
|
|
|
|
2015-10-08 18:36:27 -07:00
|
|
|
shader->info.name = ralloc_asprintf(shader, "GLSL%d", shader_prog->Name);
|
2015-10-05 16:54:36 -07:00
|
|
|
if (shader_prog->Label)
|
|
|
|
|
shader->info.label = ralloc_strdup(shader, shader_prog->Label);
|
2015-11-06 12:23:17 +00:00
|
|
|
shader->info.num_textures = _mesa_fls(sh->Program->SamplersUsed);
|
2015-10-15 08:47:09 +02:00
|
|
|
shader->info.num_ubos = sh->NumUniformBlocks;
|
2015-08-05 17:14:59 -07:00
|
|
|
shader->info.num_abos = shader_prog->NumAtomicBuffers;
|
2015-10-15 08:47:09 +02:00
|
|
|
shader->info.num_ssbos = sh->NumShaderStorageBlocks;
|
2015-08-05 17:14:59 -07:00
|
|
|
shader->info.num_images = sh->NumImages;
|
|
|
|
|
shader->info.inputs_read = sh->Program->InputsRead;
|
2016-04-15 12:30:54 +02:00
|
|
|
shader->info.double_inputs_read = sh->Program->DoubleInputsRead;
|
2015-08-05 17:14:59 -07:00
|
|
|
shader->info.outputs_written = sh->Program->OutputsWritten;
|
2015-10-09 15:49:49 -07:00
|
|
|
shader->info.patch_inputs_read = sh->Program->PatchInputsRead;
|
|
|
|
|
shader->info.patch_outputs_written = sh->Program->PatchOutputsWritten;
|
2015-08-05 17:14:59 -07:00
|
|
|
shader->info.system_values_read = sh->Program->SystemValuesRead;
|
|
|
|
|
shader->info.uses_texture_gather = sh->Program->UsesGather;
|
2015-10-17 22:50:11 +02:00
|
|
|
shader->info.uses_clip_distance_out =
|
|
|
|
|
sh->Program->ClipDistanceArraySize != 0;
|
2015-08-05 17:14:59 -07:00
|
|
|
shader->info.separate_shader = shader_prog->SeparateShader;
|
2015-10-02 15:55:05 -07:00
|
|
|
shader->info.has_transform_feedback_varyings =
|
|
|
|
|
shader_prog->TransformFeedback.NumVarying > 0;
|
nir: Store some geometry shader data in nir_shader.
This makes it possible for NIR shaders to know the number of output
vertices and the number of invocations. Drivers could also access
these directly without going through gl_program.
We should probably add InputType and OutputType here too, but currently
those are stored as GL_* enums, and I wanted to avoid using those in
NIR, as I suspect Vulkan/SPIR-V will use different enums. (We should
probably make our own.)
We could add VerticesIn, but it's easily computable from the input
topology, so I'm not sure whether it's worth it. It's also currently
not stored in gl_shader (only gl_shader_program), which would require
changes to the glsl_to_nir interface or require us to store it there.
This is a bit of duplication of data...ideally, we would factor these
substructs out of gl_program, gl_shader_program, and nir_shader, creating
a gl_geometry_info class...but it would need to go in a new place (in
src/glsl?) that isn't mtypes.h nor nir.h.
Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Jason Ekstrand <jason.ekstrand@intel.com>
2015-08-18 02:07:47 -07:00
|
|
|
|
2015-10-08 15:36:51 -07:00
|
|
|
switch (stage) {
|
2015-11-17 14:56:32 -08:00
|
|
|
case MESA_SHADER_TESS_CTRL:
|
2016-06-22 12:41:28 +10:00
|
|
|
shader->info.tcs.vertices_out = sh->TessCtrl.VerticesOut;
|
2015-11-17 14:56:32 -08:00
|
|
|
break;
|
|
|
|
|
|
2015-10-08 15:36:51 -07:00
|
|
|
case MESA_SHADER_GEOMETRY:
|
2015-10-20 16:35:44 -07:00
|
|
|
shader->info.gs.vertices_in = shader_prog->Geom.VerticesIn;
|
|
|
|
|
shader->info.gs.output_primitive = sh->Geom.OutputType;
|
2015-10-08 15:36:51 -07:00
|
|
|
shader->info.gs.vertices_out = sh->Geom.VerticesOut;
|
|
|
|
|
shader->info.gs.invocations = sh->Geom.Invocations;
|
2015-10-20 16:35:44 -07:00
|
|
|
shader->info.gs.uses_end_primitive = shader_prog->Geom.UsesEndPrimitive;
|
|
|
|
|
shader->info.gs.uses_streams = shader_prog->Geom.UsesStreams;
|
2015-10-08 15:36:51 -07:00
|
|
|
break;
|
|
|
|
|
|
2015-10-08 15:47:09 -07:00
|
|
|
case MESA_SHADER_FRAGMENT: {
|
|
|
|
|
struct gl_fragment_program *fp =
|
|
|
|
|
(struct gl_fragment_program *)sh->Program;
|
|
|
|
|
|
|
|
|
|
shader->info.fs.uses_discard = fp->UsesKill;
|
2016-05-09 17:15:21 -07:00
|
|
|
shader->info.fs.uses_sample_qualifier = fp->IsSample != 0;
|
2015-10-08 15:47:09 -07:00
|
|
|
shader->info.fs.early_fragment_tests = sh->EarlyFragmentTests;
|
|
|
|
|
shader->info.fs.depth_layout = fp->FragDepthLayout;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-08 15:02:25 -07:00
|
|
|
case MESA_SHADER_COMPUTE: {
|
|
|
|
|
struct gl_compute_program *cp = (struct gl_compute_program *)sh->Program;
|
|
|
|
|
shader->info.cs.local_size[0] = cp->LocalSize[0];
|
|
|
|
|
shader->info.cs.local_size[1] = cp->LocalSize[1];
|
|
|
|
|
shader->info.cs.local_size[2] = cp->LocalSize[2];
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-08 15:36:51 -07:00
|
|
|
default:
|
|
|
|
|
break; /* No stage-specific info */
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-10 18:18:17 -07:00
|
|
|
return shader;
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-18 01:53:29 -07:00
|
|
|
nir_visitor::nir_visitor(nir_shader *shader)
|
2014-07-10 18:18:17 -07:00
|
|
|
{
|
2015-03-06 01:17:22 -08:00
|
|
|
this->supports_ints = shader->options->native_integers;
|
2014-07-10 18:18:17 -07:00
|
|
|
this->shader = shader;
|
|
|
|
|
this->is_global = true;
|
|
|
|
|
this->var_table = _mesa_hash_table_create(NULL, _mesa_hash_pointer,
|
|
|
|
|
_mesa_key_pointer_equal);
|
|
|
|
|
this->overload_table = _mesa_hash_table_create(NULL, _mesa_hash_pointer,
|
|
|
|
|
_mesa_key_pointer_equal);
|
2016-05-18 10:58:29 -04:00
|
|
|
this->result = NULL;
|
|
|
|
|
this->impl = NULL;
|
|
|
|
|
this->var = NULL;
|
|
|
|
|
this->deref_head = NULL;
|
|
|
|
|
this->deref_tail = NULL;
|
|
|
|
|
memset(&this->b, 0, sizeof(this->b));
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nir_visitor::~nir_visitor()
|
|
|
|
|
{
|
|
|
|
|
_mesa_hash_table_destroy(this->var_table, NULL);
|
|
|
|
|
_mesa_hash_table_destroy(this->overload_table, NULL);
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-02 21:24:38 -07:00
|
|
|
nir_deref_var *
|
|
|
|
|
nir_visitor::evaluate_deref(nir_instr *mem_ctx, ir_instruction *ir)
|
|
|
|
|
{
|
|
|
|
|
ir->accept(this);
|
|
|
|
|
ralloc_steal(mem_ctx, this->deref_head);
|
|
|
|
|
return this->deref_head;
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-10 18:18:17 -07:00
|
|
|
static nir_constant *
|
|
|
|
|
constant_copy(ir_constant *ir, void *mem_ctx)
|
|
|
|
|
{
|
|
|
|
|
if (ir == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
nir_constant *ret = ralloc(mem_ctx, nir_constant);
|
|
|
|
|
|
|
|
|
|
unsigned total_elems = ir->type->components();
|
|
|
|
|
unsigned i;
|
2015-11-06 11:35:21 -05:00
|
|
|
|
|
|
|
|
ret->num_elements = 0;
|
2014-07-10 18:18:17 -07:00
|
|
|
switch (ir->type->base_type) {
|
|
|
|
|
case GLSL_TYPE_UINT:
|
|
|
|
|
for (i = 0; i < total_elems; i++)
|
|
|
|
|
ret->value.u[i] = ir->value.u[i];
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GLSL_TYPE_INT:
|
|
|
|
|
for (i = 0; i < total_elems; i++)
|
|
|
|
|
ret->value.i[i] = ir->value.i[i];
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GLSL_TYPE_FLOAT:
|
|
|
|
|
for (i = 0; i < total_elems; i++)
|
|
|
|
|
ret->value.f[i] = ir->value.f[i];
|
|
|
|
|
break;
|
|
|
|
|
|
2015-11-12 11:18:50 +01:00
|
|
|
case GLSL_TYPE_DOUBLE:
|
|
|
|
|
for (i = 0; i < total_elems; i++)
|
|
|
|
|
ret->value.d[i] = ir->value.d[i];
|
|
|
|
|
break;
|
|
|
|
|
|
2014-07-10 18:18:17 -07:00
|
|
|
case GLSL_TYPE_BOOL:
|
|
|
|
|
for (i = 0; i < total_elems; i++)
|
|
|
|
|
ret->value.b[i] = ir->value.b[i];
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GLSL_TYPE_STRUCT:
|
|
|
|
|
ret->elements = ralloc_array(mem_ctx, nir_constant *,
|
|
|
|
|
ir->type->length);
|
2015-11-06 11:35:21 -05:00
|
|
|
ret->num_elements = ir->type->length;
|
|
|
|
|
|
2014-07-10 18:18:17 -07:00
|
|
|
i = 0;
|
|
|
|
|
foreach_in_list(ir_constant, field, &ir->components) {
|
|
|
|
|
ret->elements[i] = constant_copy(field, mem_ctx);
|
|
|
|
|
i++;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GLSL_TYPE_ARRAY:
|
|
|
|
|
ret->elements = ralloc_array(mem_ctx, nir_constant *,
|
|
|
|
|
ir->type->length);
|
2015-11-06 11:35:21 -05:00
|
|
|
ret->num_elements = ir->type->length;
|
2014-07-10 18:18:17 -07:00
|
|
|
|
|
|
|
|
for (i = 0; i < ir->type->length; i++)
|
|
|
|
|
ret->elements[i] = constant_copy(ir->array_elements[i], mem_ctx);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
2015-01-21 20:22:18 -08:00
|
|
|
unreachable("not reached");
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
nir_visitor::visit(ir_variable *ir)
|
|
|
|
|
{
|
|
|
|
|
nir_variable *var = ralloc(shader, nir_variable);
|
|
|
|
|
var->type = ir->type;
|
|
|
|
|
var->name = ralloc_strdup(var, ir->name);
|
|
|
|
|
|
|
|
|
|
var->data.read_only = ir->data.read_only;
|
|
|
|
|
var->data.centroid = ir->data.centroid;
|
|
|
|
|
var->data.sample = ir->data.sample;
|
2015-10-02 00:01:23 -07:00
|
|
|
var->data.patch = ir->data.patch;
|
2014-07-10 18:18:17 -07:00
|
|
|
var->data.invariant = ir->data.invariant;
|
2015-02-14 12:10:32 -08:00
|
|
|
var->data.location = ir->data.location;
|
2014-07-10 18:18:17 -07:00
|
|
|
|
|
|
|
|
switch(ir->data.mode) {
|
|
|
|
|
case ir_var_auto:
|
|
|
|
|
case ir_var_temporary:
|
|
|
|
|
if (is_global)
|
|
|
|
|
var->data.mode = nir_var_global;
|
|
|
|
|
else
|
|
|
|
|
var->data.mode = nir_var_local;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_var_function_in:
|
|
|
|
|
case ir_var_function_out:
|
|
|
|
|
case ir_var_function_inout:
|
|
|
|
|
case ir_var_const_in:
|
|
|
|
|
var->data.mode = nir_var_local;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_var_shader_in:
|
2015-08-18 01:53:29 -07:00
|
|
|
if (shader->stage == MESA_SHADER_FRAGMENT &&
|
2015-03-06 01:24:30 -08:00
|
|
|
ir->data.location == VARYING_SLOT_FACE) {
|
2015-02-14 12:10:32 -08:00
|
|
|
/* For whatever reason, GLSL IR makes gl_FrontFacing an input */
|
|
|
|
|
var->data.location = SYSTEM_VALUE_FRONT_FACE;
|
|
|
|
|
var->data.mode = nir_var_system_value;
|
2015-09-23 15:40:33 -07:00
|
|
|
} else if (shader->stage == MESA_SHADER_GEOMETRY &&
|
|
|
|
|
ir->data.location == VARYING_SLOT_PRIMITIVE_ID) {
|
|
|
|
|
/* For whatever reason, GLSL IR makes gl_PrimitiveIDIn an input */
|
|
|
|
|
var->data.location = SYSTEM_VALUE_PRIMITIVE_ID;
|
|
|
|
|
var->data.mode = nir_var_system_value;
|
2015-02-14 12:10:32 -08:00
|
|
|
} else {
|
|
|
|
|
var->data.mode = nir_var_shader_in;
|
|
|
|
|
}
|
2014-07-10 18:18:17 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_var_shader_out:
|
|
|
|
|
var->data.mode = nir_var_shader_out;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_var_uniform:
|
|
|
|
|
var->data.mode = nir_var_uniform;
|
|
|
|
|
break;
|
|
|
|
|
|
2015-05-18 15:47:18 +02:00
|
|
|
case ir_var_shader_storage:
|
|
|
|
|
var->data.mode = nir_var_shader_storage;
|
|
|
|
|
break;
|
2014-07-10 18:18:17 -07:00
|
|
|
|
|
|
|
|
case ir_var_system_value:
|
|
|
|
|
var->data.mode = nir_var_system_value;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
2015-01-21 20:22:18 -08:00
|
|
|
unreachable("not reached");
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var->data.interpolation = ir->data.interpolation;
|
|
|
|
|
var->data.origin_upper_left = ir->data.origin_upper_left;
|
|
|
|
|
var->data.pixel_center_integer = ir->data.pixel_center_integer;
|
|
|
|
|
var->data.explicit_location = ir->data.explicit_location;
|
|
|
|
|
var->data.explicit_index = ir->data.explicit_index;
|
|
|
|
|
var->data.explicit_binding = ir->data.explicit_binding;
|
|
|
|
|
var->data.has_initializer = ir->data.has_initializer;
|
|
|
|
|
var->data.location_frac = ir->data.location_frac;
|
|
|
|
|
|
|
|
|
|
switch (ir->data.depth_layout) {
|
|
|
|
|
case ir_depth_layout_none:
|
|
|
|
|
var->data.depth_layout = nir_depth_layout_none;
|
|
|
|
|
break;
|
|
|
|
|
case ir_depth_layout_any:
|
|
|
|
|
var->data.depth_layout = nir_depth_layout_any;
|
|
|
|
|
break;
|
|
|
|
|
case ir_depth_layout_greater:
|
|
|
|
|
var->data.depth_layout = nir_depth_layout_greater;
|
|
|
|
|
break;
|
|
|
|
|
case ir_depth_layout_less:
|
|
|
|
|
var->data.depth_layout = nir_depth_layout_less;
|
|
|
|
|
break;
|
|
|
|
|
case ir_depth_layout_unchanged:
|
|
|
|
|
var->data.depth_layout = nir_depth_layout_unchanged;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
2015-01-21 20:22:18 -08:00
|
|
|
unreachable("not reached");
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var->data.index = ir->data.index;
|
|
|
|
|
var->data.binding = ir->data.binding;
|
2015-12-29 21:02:56 +11:00
|
|
|
var->data.offset = ir->data.offset;
|
2014-07-10 18:18:17 -07:00
|
|
|
var->data.image.read_only = ir->data.image_read_only;
|
|
|
|
|
var->data.image.write_only = ir->data.image_write_only;
|
|
|
|
|
var->data.image.coherent = ir->data.image_coherent;
|
|
|
|
|
var->data.image._volatile = ir->data.image_volatile;
|
|
|
|
|
var->data.image.restrict_flag = ir->data.image_restrict;
|
|
|
|
|
var->data.image.format = ir->data.image_format;
|
|
|
|
|
var->data.max_array_access = ir->data.max_array_access;
|
|
|
|
|
|
|
|
|
|
var->num_state_slots = ir->get_num_state_slots();
|
2014-12-02 18:07:13 -08:00
|
|
|
if (var->num_state_slots > 0) {
|
|
|
|
|
var->state_slots = ralloc_array(var, nir_state_slot,
|
|
|
|
|
var->num_state_slots);
|
|
|
|
|
|
|
|
|
|
ir_state_slot *state_slots = ir->get_state_slots();
|
|
|
|
|
for (unsigned i = 0; i < var->num_state_slots; i++) {
|
|
|
|
|
for (unsigned j = 0; j < 5; j++)
|
|
|
|
|
var->state_slots[i].tokens[j] = state_slots[i].tokens[j];
|
|
|
|
|
var->state_slots[i].swizzle = state_slots[i].swizzle;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
var->state_slots = NULL;
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var->constant_initializer = constant_copy(ir->constant_initializer, var);
|
|
|
|
|
|
|
|
|
|
var->interface_type = ir->get_interface_type();
|
|
|
|
|
|
2015-10-09 07:05:11 -07:00
|
|
|
if (var->data.mode == nir_var_local)
|
|
|
|
|
nir_function_impl_add_variable(impl, var);
|
|
|
|
|
else
|
|
|
|
|
nir_shader_add_variable(shader, var);
|
2014-07-10 18:18:17 -07:00
|
|
|
|
|
|
|
|
_mesa_hash_table_insert(var_table, ir, var);
|
|
|
|
|
this->var = var;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ir_visitor_status
|
|
|
|
|
nir_function_visitor::visit_enter(ir_function *ir)
|
|
|
|
|
{
|
|
|
|
|
foreach_in_list(ir_function_signature, sig, &ir->signatures) {
|
2015-12-26 10:00:47 -08:00
|
|
|
visitor->create_function(sig);
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
2015-12-26 10:00:47 -08:00
|
|
|
return visit_continue_with_parent;
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2015-12-26 10:00:47 -08:00
|
|
|
nir_visitor::create_function(ir_function_signature *ir)
|
2014-07-10 18:18:17 -07:00
|
|
|
{
|
|
|
|
|
if (ir->is_intrinsic)
|
|
|
|
|
return;
|
|
|
|
|
|
2015-12-26 10:00:47 -08:00
|
|
|
nir_function *func = nir_function_create(shader, ir->function_name());
|
2014-07-10 18:18:17 -07:00
|
|
|
|
2016-02-12 10:50:56 -08:00
|
|
|
assert(ir->parameters.is_empty());
|
|
|
|
|
assert(ir->return_type == glsl_type::void_type);
|
2014-07-10 18:18:17 -07:00
|
|
|
|
2015-12-26 10:00:47 -08:00
|
|
|
_mesa_hash_table_insert(this->overload_table, ir, func);
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
nir_visitor::visit(ir_function *ir)
|
|
|
|
|
{
|
|
|
|
|
foreach_in_list(ir_function_signature, sig, &ir->signatures)
|
|
|
|
|
sig->accept(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
nir_visitor::visit(ir_function_signature *ir)
|
|
|
|
|
{
|
|
|
|
|
if (ir->is_intrinsic)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
struct hash_entry *entry =
|
|
|
|
|
_mesa_hash_table_search(this->overload_table, ir);
|
|
|
|
|
|
|
|
|
|
assert(entry);
|
2015-12-26 10:00:47 -08:00
|
|
|
nir_function *func = (nir_function *) entry->data;
|
2014-07-10 18:18:17 -07:00
|
|
|
|
|
|
|
|
if (ir->is_defined) {
|
2015-12-26 10:00:47 -08:00
|
|
|
nir_function_impl *impl = nir_function_impl_create(func);
|
2014-07-10 18:18:17 -07:00
|
|
|
this->impl = impl;
|
|
|
|
|
|
2016-02-12 10:50:56 -08:00
|
|
|
assert(strcmp(func->name, "main") == 0);
|
|
|
|
|
assert(ir->parameters.is_empty());
|
|
|
|
|
assert(func->return_type == glsl_type::void_type);
|
2014-07-10 18:18:17 -07:00
|
|
|
|
|
|
|
|
this->is_global = false;
|
|
|
|
|
|
2015-10-31 16:31:59 -04:00
|
|
|
nir_builder_init(&b, impl);
|
|
|
|
|
b.cursor = nir_after_cf_list(&impl->body);
|
2014-07-10 18:18:17 -07:00
|
|
|
visit_exec_list(&ir->body, this);
|
|
|
|
|
|
|
|
|
|
this->is_global = true;
|
|
|
|
|
} else {
|
2015-12-26 10:00:47 -08:00
|
|
|
func->impl = NULL;
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
nir_visitor::visit(ir_loop *ir)
|
|
|
|
|
{
|
|
|
|
|
nir_loop *loop = nir_loop_create(this->shader);
|
2015-10-31 16:31:59 -04:00
|
|
|
nir_builder_cf_insert(&b, &loop->cf_node);
|
2014-07-10 18:18:17 -07:00
|
|
|
|
2015-10-31 16:31:59 -04:00
|
|
|
b.cursor = nir_after_cf_list(&loop->body);
|
|
|
|
|
visit_exec_list(&ir->body_instructions, this);
|
|
|
|
|
b.cursor = nir_after_cf_node(&loop->cf_node);
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
nir_visitor::visit(ir_if *ir)
|
|
|
|
|
{
|
2015-10-30 23:32:50 -04:00
|
|
|
nir_src condition =
|
|
|
|
|
nir_src_for_ssa(evaluate_rvalue(ir->condition));
|
2014-07-10 18:18:17 -07:00
|
|
|
|
|
|
|
|
nir_if *if_stmt = nir_if_create(this->shader);
|
|
|
|
|
if_stmt->condition = condition;
|
2015-10-31 16:31:59 -04:00
|
|
|
nir_builder_cf_insert(&b, &if_stmt->cf_node);
|
2014-07-10 18:18:17 -07:00
|
|
|
|
2015-10-31 16:31:59 -04:00
|
|
|
b.cursor = nir_after_cf_list(&if_stmt->then_list);
|
2014-07-10 18:18:17 -07:00
|
|
|
visit_exec_list(&ir->then_instructions, this);
|
|
|
|
|
|
2015-10-31 16:31:59 -04:00
|
|
|
b.cursor = nir_after_cf_list(&if_stmt->else_list);
|
2014-07-10 18:18:17 -07:00
|
|
|
visit_exec_list(&ir->else_instructions, this);
|
|
|
|
|
|
2015-10-31 16:31:59 -04:00
|
|
|
b.cursor = nir_after_cf_node(&if_stmt->cf_node);
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
nir_visitor::visit(ir_discard *ir)
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* discards aren't treated as control flow, because before we lower them
|
|
|
|
|
* they can appear anywhere in the shader and the stuff after them may still
|
|
|
|
|
* be executed (yay, crazy GLSL rules!). However, after lowering, all the
|
|
|
|
|
* discards will be immediately followed by a return.
|
|
|
|
|
*/
|
|
|
|
|
|
2015-02-23 23:47:00 -08:00
|
|
|
nir_intrinsic_instr *discard;
|
|
|
|
|
if (ir->condition) {
|
|
|
|
|
discard = nir_intrinsic_instr_create(this->shader,
|
|
|
|
|
nir_intrinsic_discard_if);
|
2015-10-30 23:32:50 -04:00
|
|
|
discard->src[0] =
|
|
|
|
|
nir_src_for_ssa(evaluate_rvalue(ir->condition));
|
2015-02-23 23:47:00 -08:00
|
|
|
} else {
|
|
|
|
|
discard = nir_intrinsic_instr_create(this->shader, nir_intrinsic_discard);
|
|
|
|
|
}
|
2015-10-31 16:31:59 -04:00
|
|
|
|
|
|
|
|
nir_builder_instr_insert(&b, &discard->instr);
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
nir_visitor::visit(ir_emit_vertex *ir)
|
|
|
|
|
{
|
|
|
|
|
nir_intrinsic_instr *instr =
|
|
|
|
|
nir_intrinsic_instr_create(this->shader, nir_intrinsic_emit_vertex);
|
2016-01-21 13:32:09 -05:00
|
|
|
nir_intrinsic_set_stream_id(instr, ir->stream_id());
|
2015-10-31 16:31:59 -04:00
|
|
|
nir_builder_instr_insert(&b, &instr->instr);
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
nir_visitor::visit(ir_end_primitive *ir)
|
|
|
|
|
{
|
|
|
|
|
nir_intrinsic_instr *instr =
|
|
|
|
|
nir_intrinsic_instr_create(this->shader, nir_intrinsic_end_primitive);
|
2016-01-21 13:32:09 -05:00
|
|
|
nir_intrinsic_set_stream_id(instr, ir->stream_id());
|
2015-10-31 16:31:59 -04:00
|
|
|
nir_builder_instr_insert(&b, &instr->instr);
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
nir_visitor::visit(ir_loop_jump *ir)
|
|
|
|
|
{
|
|
|
|
|
nir_jump_type type;
|
|
|
|
|
switch (ir->mode) {
|
|
|
|
|
case ir_loop_jump::jump_break:
|
|
|
|
|
type = nir_jump_break;
|
|
|
|
|
break;
|
|
|
|
|
case ir_loop_jump::jump_continue:
|
|
|
|
|
type = nir_jump_continue;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
2015-01-21 20:22:18 -08:00
|
|
|
unreachable("not reached");
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nir_jump_instr *instr = nir_jump_instr_create(this->shader, type);
|
2015-10-31 16:31:59 -04:00
|
|
|
nir_builder_instr_insert(&b, &instr->instr);
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
nir_visitor::visit(ir_return *ir)
|
|
|
|
|
{
|
|
|
|
|
if (ir->value != NULL) {
|
|
|
|
|
nir_intrinsic_instr *copy =
|
|
|
|
|
nir_intrinsic_instr_create(this->shader, nir_intrinsic_copy_var);
|
|
|
|
|
|
2015-04-02 21:24:38 -07:00
|
|
|
copy->variables[0] = nir_deref_var_create(copy, this->impl->return_var);
|
|
|
|
|
copy->variables[1] = evaluate_deref(©->instr, ir->value);
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nir_jump_instr *instr = nir_jump_instr_create(this->shader, nir_jump_return);
|
2015-10-31 16:31:59 -04:00
|
|
|
nir_builder_instr_insert(&b, &instr->instr);
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
nir_visitor::visit(ir_call *ir)
|
|
|
|
|
{
|
|
|
|
|
if (ir->callee->is_intrinsic) {
|
|
|
|
|
nir_intrinsic_op op;
|
|
|
|
|
if (strcmp(ir->callee_name(), "__intrinsic_atomic_read") == 0) {
|
|
|
|
|
op = nir_intrinsic_atomic_counter_read_var;
|
|
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_atomic_increment") == 0) {
|
|
|
|
|
op = nir_intrinsic_atomic_counter_inc_var;
|
|
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_atomic_predecrement") == 0) {
|
|
|
|
|
op = nir_intrinsic_atomic_counter_dec_var;
|
2015-05-05 23:04:46 +03:00
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_image_load") == 0) {
|
|
|
|
|
op = nir_intrinsic_image_load;
|
|
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_image_store") == 0) {
|
|
|
|
|
op = nir_intrinsic_image_store;
|
|
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_image_atomic_add") == 0) {
|
|
|
|
|
op = nir_intrinsic_image_atomic_add;
|
|
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_image_atomic_min") == 0) {
|
|
|
|
|
op = nir_intrinsic_image_atomic_min;
|
|
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_image_atomic_max") == 0) {
|
|
|
|
|
op = nir_intrinsic_image_atomic_max;
|
|
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_image_atomic_and") == 0) {
|
|
|
|
|
op = nir_intrinsic_image_atomic_and;
|
|
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_image_atomic_or") == 0) {
|
|
|
|
|
op = nir_intrinsic_image_atomic_or;
|
|
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_image_atomic_xor") == 0) {
|
|
|
|
|
op = nir_intrinsic_image_atomic_xor;
|
|
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_image_atomic_exchange") == 0) {
|
|
|
|
|
op = nir_intrinsic_image_atomic_exchange;
|
|
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_image_atomic_comp_swap") == 0) {
|
|
|
|
|
op = nir_intrinsic_image_atomic_comp_swap;
|
2015-05-05 23:10:56 +03:00
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_memory_barrier") == 0) {
|
|
|
|
|
op = nir_intrinsic_memory_barrier;
|
2015-08-11 17:42:12 +03:00
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_image_size") == 0) {
|
|
|
|
|
op = nir_intrinsic_image_size;
|
2015-08-27 23:27:50 -04:00
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_image_samples") == 0) {
|
|
|
|
|
op = nir_intrinsic_image_samples;
|
2015-07-09 10:26:42 +02:00
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_store_ssbo") == 0) {
|
|
|
|
|
op = nir_intrinsic_store_ssbo;
|
2015-07-09 10:29:18 +02:00
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_load_ssbo") == 0) {
|
|
|
|
|
op = nir_intrinsic_load_ssbo;
|
2015-10-09 15:55:34 -07:00
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_atomic_add_ssbo") == 0) {
|
2015-06-01 09:40:39 +02:00
|
|
|
op = nir_intrinsic_ssbo_atomic_add;
|
2015-10-09 15:55:34 -07:00
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_atomic_and_ssbo") == 0) {
|
2015-06-01 09:40:39 +02:00
|
|
|
op = nir_intrinsic_ssbo_atomic_and;
|
2015-10-09 15:55:34 -07:00
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_atomic_or_ssbo") == 0) {
|
2015-06-01 09:40:39 +02:00
|
|
|
op = nir_intrinsic_ssbo_atomic_or;
|
2015-10-09 15:55:34 -07:00
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_atomic_xor_ssbo") == 0) {
|
2015-06-01 09:40:39 +02:00
|
|
|
op = nir_intrinsic_ssbo_atomic_xor;
|
2015-10-09 15:55:34 -07:00
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_atomic_min_ssbo") == 0) {
|
2015-09-28 10:47:22 +02:00
|
|
|
assert(ir->return_deref);
|
|
|
|
|
if (ir->return_deref->type == glsl_type::int_type)
|
|
|
|
|
op = nir_intrinsic_ssbo_atomic_imin;
|
|
|
|
|
else if (ir->return_deref->type == glsl_type::uint_type)
|
|
|
|
|
op = nir_intrinsic_ssbo_atomic_umin;
|
|
|
|
|
else
|
|
|
|
|
unreachable("Invalid type");
|
2015-10-09 15:55:34 -07:00
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_atomic_max_ssbo") == 0) {
|
2015-09-28 10:47:22 +02:00
|
|
|
assert(ir->return_deref);
|
|
|
|
|
if (ir->return_deref->type == glsl_type::int_type)
|
|
|
|
|
op = nir_intrinsic_ssbo_atomic_imax;
|
|
|
|
|
else if (ir->return_deref->type == glsl_type::uint_type)
|
|
|
|
|
op = nir_intrinsic_ssbo_atomic_umax;
|
|
|
|
|
else
|
|
|
|
|
unreachable("Invalid type");
|
2015-10-09 15:55:34 -07:00
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_atomic_exchange_ssbo") == 0) {
|
2015-06-01 09:40:39 +02:00
|
|
|
op = nir_intrinsic_ssbo_atomic_exchange;
|
2015-10-09 15:55:34 -07:00
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_atomic_comp_swap_ssbo") == 0) {
|
2015-06-01 09:40:39 +02:00
|
|
|
op = nir_intrinsic_ssbo_atomic_comp_swap;
|
2015-10-07 11:59:26 +01:00
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_shader_clock") == 0) {
|
|
|
|
|
op = nir_intrinsic_shader_clock;
|
2015-10-10 08:59:42 -07:00
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_group_memory_barrier") == 0) {
|
|
|
|
|
op = nir_intrinsic_group_memory_barrier;
|
|
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_memory_barrier_atomic_counter") == 0) {
|
|
|
|
|
op = nir_intrinsic_memory_barrier_atomic_counter;
|
|
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_memory_barrier_buffer") == 0) {
|
|
|
|
|
op = nir_intrinsic_memory_barrier_buffer;
|
|
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_memory_barrier_image") == 0) {
|
|
|
|
|
op = nir_intrinsic_memory_barrier_image;
|
|
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_memory_barrier_shared") == 0) {
|
|
|
|
|
op = nir_intrinsic_memory_barrier_shared;
|
2015-07-28 15:11:37 -07:00
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_load_shared") == 0) {
|
|
|
|
|
op = nir_intrinsic_load_shared;
|
2015-07-28 15:17:34 -07:00
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_store_shared") == 0) {
|
|
|
|
|
op = nir_intrinsic_store_shared;
|
2015-10-10 12:25:39 -07:00
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_atomic_add_shared") == 0) {
|
|
|
|
|
op = nir_intrinsic_shared_atomic_add;
|
|
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_atomic_and_shared") == 0) {
|
|
|
|
|
op = nir_intrinsic_shared_atomic_and;
|
|
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_atomic_or_shared") == 0) {
|
|
|
|
|
op = nir_intrinsic_shared_atomic_or;
|
|
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_atomic_xor_shared") == 0) {
|
|
|
|
|
op = nir_intrinsic_shared_atomic_xor;
|
|
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_atomic_min_shared") == 0) {
|
|
|
|
|
assert(ir->return_deref);
|
|
|
|
|
if (ir->return_deref->type == glsl_type::int_type)
|
|
|
|
|
op = nir_intrinsic_shared_atomic_imin;
|
|
|
|
|
else if (ir->return_deref->type == glsl_type::uint_type)
|
|
|
|
|
op = nir_intrinsic_shared_atomic_umin;
|
|
|
|
|
else
|
|
|
|
|
unreachable("Invalid type");
|
|
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_atomic_max_shared") == 0) {
|
|
|
|
|
assert(ir->return_deref);
|
|
|
|
|
if (ir->return_deref->type == glsl_type::int_type)
|
|
|
|
|
op = nir_intrinsic_shared_atomic_imax;
|
|
|
|
|
else if (ir->return_deref->type == glsl_type::uint_type)
|
|
|
|
|
op = nir_intrinsic_shared_atomic_umax;
|
|
|
|
|
else
|
|
|
|
|
unreachable("Invalid type");
|
|
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_atomic_exchange_shared") == 0) {
|
|
|
|
|
op = nir_intrinsic_shared_atomic_exchange;
|
|
|
|
|
} else if (strcmp(ir->callee_name(), "__intrinsic_atomic_comp_swap_shared") == 0) {
|
|
|
|
|
op = nir_intrinsic_shared_atomic_comp_swap;
|
2014-07-10 18:18:17 -07:00
|
|
|
} else {
|
2015-02-10 11:21:47 -08:00
|
|
|
unreachable("not reached");
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nir_intrinsic_instr *instr = nir_intrinsic_instr_create(shader, op);
|
2015-09-23 08:48:21 +02:00
|
|
|
nir_dest *dest = &instr->dest;
|
2015-05-05 23:04:46 +03:00
|
|
|
|
|
|
|
|
switch (op) {
|
|
|
|
|
case nir_intrinsic_atomic_counter_read_var:
|
|
|
|
|
case nir_intrinsic_atomic_counter_inc_var:
|
|
|
|
|
case nir_intrinsic_atomic_counter_dec_var: {
|
|
|
|
|
ir_dereference *param =
|
|
|
|
|
(ir_dereference *) ir->actual_parameters.get_head();
|
|
|
|
|
instr->variables[0] = evaluate_deref(&instr->instr, param);
|
2015-11-17 13:57:54 +01:00
|
|
|
nir_ssa_dest_init(&instr->instr, &instr->dest, 1, 32, NULL);
|
2015-10-31 16:31:59 -04:00
|
|
|
nir_builder_instr_insert(&b, &instr->instr);
|
2015-05-05 23:04:46 +03:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case nir_intrinsic_image_load:
|
|
|
|
|
case nir_intrinsic_image_store:
|
|
|
|
|
case nir_intrinsic_image_atomic_add:
|
|
|
|
|
case nir_intrinsic_image_atomic_min:
|
|
|
|
|
case nir_intrinsic_image_atomic_max:
|
|
|
|
|
case nir_intrinsic_image_atomic_and:
|
|
|
|
|
case nir_intrinsic_image_atomic_or:
|
|
|
|
|
case nir_intrinsic_image_atomic_xor:
|
|
|
|
|
case nir_intrinsic_image_atomic_exchange:
|
2015-08-11 17:42:12 +03:00
|
|
|
case nir_intrinsic_image_atomic_comp_swap:
|
2015-08-27 23:27:50 -04:00
|
|
|
case nir_intrinsic_image_samples:
|
2015-08-11 17:42:12 +03:00
|
|
|
case nir_intrinsic_image_size: {
|
2015-05-05 23:04:46 +03:00
|
|
|
nir_ssa_undef_instr *instr_undef =
|
2016-03-23 08:04:09 +01:00
|
|
|
nir_ssa_undef_instr_create(shader, 1, 32);
|
2015-10-31 16:31:59 -04:00
|
|
|
nir_builder_instr_insert(&b, &instr_undef->instr);
|
2015-05-05 23:04:46 +03:00
|
|
|
|
|
|
|
|
/* Set the image variable dereference. */
|
|
|
|
|
exec_node *param = ir->actual_parameters.get_head();
|
|
|
|
|
ir_dereference *image = (ir_dereference *)param;
|
|
|
|
|
const glsl_type *type =
|
|
|
|
|
image->variable_referenced()->type->without_array();
|
|
|
|
|
|
|
|
|
|
instr->variables[0] = evaluate_deref(&instr->instr, image);
|
|
|
|
|
param = param->get_next();
|
|
|
|
|
|
2015-08-11 17:42:12 +03:00
|
|
|
/* Set the intrinsic destination. */
|
|
|
|
|
if (ir->return_deref) {
|
|
|
|
|
const nir_intrinsic_info *info =
|
|
|
|
|
&nir_intrinsic_infos[instr->intrinsic];
|
|
|
|
|
nir_ssa_dest_init(&instr->instr, &instr->dest,
|
2015-11-17 13:57:54 +01:00
|
|
|
info->dest_components, 32, NULL);
|
2015-08-11 17:42:12 +03:00
|
|
|
}
|
|
|
|
|
|
2015-08-27 23:27:50 -04:00
|
|
|
if (op == nir_intrinsic_image_size ||
|
2015-09-23 08:48:21 +02:00
|
|
|
op == nir_intrinsic_image_samples) {
|
2015-10-31 16:31:59 -04:00
|
|
|
nir_builder_instr_insert(&b, &instr->instr);
|
2015-08-11 17:42:12 +03:00
|
|
|
break;
|
2015-09-23 08:48:21 +02:00
|
|
|
}
|
2015-08-11 17:42:12 +03:00
|
|
|
|
2015-05-05 23:04:46 +03:00
|
|
|
/* Set the address argument, extending the coordinate vector to four
|
|
|
|
|
* components.
|
|
|
|
|
*/
|
2015-10-31 16:31:59 -04:00
|
|
|
nir_ssa_def *src_addr =
|
|
|
|
|
evaluate_rvalue((ir_dereference *)param);
|
|
|
|
|
nir_ssa_def *srcs[4];
|
2015-05-05 23:04:46 +03:00
|
|
|
|
|
|
|
|
for (int i = 0; i < 4; i++) {
|
2015-10-31 16:31:59 -04:00
|
|
|
if (i < type->coordinate_components())
|
|
|
|
|
srcs[i] = nir_channel(&b, src_addr, i);
|
|
|
|
|
else
|
|
|
|
|
srcs[i] = &instr_undef->def;
|
2015-05-05 23:04:46 +03:00
|
|
|
}
|
|
|
|
|
|
2015-10-31 16:31:59 -04:00
|
|
|
instr->src[0] = nir_src_for_ssa(nir_vec(&b, srcs, 4));
|
2015-05-05 23:04:46 +03:00
|
|
|
param = param->get_next();
|
|
|
|
|
|
|
|
|
|
/* Set the sample argument, which is undefined for single-sample
|
|
|
|
|
* images.
|
|
|
|
|
*/
|
|
|
|
|
if (type->sampler_dimensionality == GLSL_SAMPLER_DIM_MS) {
|
2015-10-30 23:32:50 -04:00
|
|
|
instr->src[1] =
|
|
|
|
|
nir_src_for_ssa(evaluate_rvalue((ir_dereference *)param));
|
2015-05-05 23:04:46 +03:00
|
|
|
param = param->get_next();
|
|
|
|
|
} else {
|
|
|
|
|
instr->src[1] = nir_src_for_ssa(&instr_undef->def);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Set the intrinsic parameters. */
|
|
|
|
|
if (!param->is_tail_sentinel()) {
|
2015-10-30 23:32:50 -04:00
|
|
|
instr->src[2] =
|
|
|
|
|
nir_src_for_ssa(evaluate_rvalue((ir_dereference *)param));
|
2015-05-05 23:04:46 +03:00
|
|
|
param = param->get_next();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!param->is_tail_sentinel()) {
|
2015-10-30 23:32:50 -04:00
|
|
|
instr->src[3] =
|
|
|
|
|
nir_src_for_ssa(evaluate_rvalue((ir_dereference *)param));
|
2015-05-05 23:04:46 +03:00
|
|
|
param = param->get_next();
|
|
|
|
|
}
|
2015-10-31 16:31:59 -04:00
|
|
|
nir_builder_instr_insert(&b, &instr->instr);
|
2015-05-05 23:04:46 +03:00
|
|
|
break;
|
|
|
|
|
}
|
2015-05-05 23:10:56 +03:00
|
|
|
case nir_intrinsic_memory_barrier:
|
2015-10-10 08:59:42 -07:00
|
|
|
case nir_intrinsic_group_memory_barrier:
|
|
|
|
|
case nir_intrinsic_memory_barrier_atomic_counter:
|
|
|
|
|
case nir_intrinsic_memory_barrier_buffer:
|
|
|
|
|
case nir_intrinsic_memory_barrier_image:
|
|
|
|
|
case nir_intrinsic_memory_barrier_shared:
|
2015-10-31 16:31:59 -04:00
|
|
|
nir_builder_instr_insert(&b, &instr->instr);
|
2015-05-05 23:10:56 +03:00
|
|
|
break;
|
2015-10-07 11:59:26 +01:00
|
|
|
case nir_intrinsic_shader_clock:
|
2015-11-17 13:57:54 +01:00
|
|
|
nir_ssa_dest_init(&instr->instr, &instr->dest, 1, 32, NULL);
|
2015-10-31 16:31:59 -04:00
|
|
|
nir_builder_instr_insert(&b, &instr->instr);
|
2015-10-07 11:59:26 +01:00
|
|
|
break;
|
2015-07-09 10:26:42 +02:00
|
|
|
case nir_intrinsic_store_ssbo: {
|
|
|
|
|
exec_node *param = ir->actual_parameters.get_head();
|
|
|
|
|
ir_rvalue *block = ((ir_instruction *)param)->as_rvalue();
|
|
|
|
|
|
|
|
|
|
param = param->get_next();
|
|
|
|
|
ir_rvalue *offset = ((ir_instruction *)param)->as_rvalue();
|
|
|
|
|
|
|
|
|
|
param = param->get_next();
|
|
|
|
|
ir_rvalue *val = ((ir_instruction *)param)->as_rvalue();
|
|
|
|
|
|
|
|
|
|
param = param->get_next();
|
|
|
|
|
ir_constant *write_mask = ((ir_instruction *)param)->as_constant();
|
|
|
|
|
assert(write_mask);
|
|
|
|
|
|
2015-10-30 23:32:50 -04:00
|
|
|
instr->src[0] = nir_src_for_ssa(evaluate_rvalue(val));
|
2015-11-25 14:14:05 -08:00
|
|
|
instr->src[1] = nir_src_for_ssa(evaluate_rvalue(block));
|
|
|
|
|
instr->src[2] = nir_src_for_ssa(evaluate_rvalue(offset));
|
2016-01-21 13:32:09 -05:00
|
|
|
nir_intrinsic_set_write_mask(instr, write_mask->value.u[0]);
|
2015-07-09 10:26:42 +02:00
|
|
|
instr->num_components = val->type->vector_elements;
|
|
|
|
|
|
2015-10-31 16:31:59 -04:00
|
|
|
nir_builder_instr_insert(&b, &instr->instr);
|
2015-07-09 10:26:42 +02:00
|
|
|
break;
|
|
|
|
|
}
|
2015-07-09 10:29:18 +02:00
|
|
|
case nir_intrinsic_load_ssbo: {
|
|
|
|
|
exec_node *param = ir->actual_parameters.get_head();
|
|
|
|
|
ir_rvalue *block = ((ir_instruction *)param)->as_rvalue();
|
|
|
|
|
|
|
|
|
|
param = param->get_next();
|
|
|
|
|
ir_rvalue *offset = ((ir_instruction *)param)->as_rvalue();
|
|
|
|
|
|
2015-10-30 23:32:50 -04:00
|
|
|
instr->src[0] = nir_src_for_ssa(evaluate_rvalue(block));
|
2015-11-25 14:14:05 -08:00
|
|
|
instr->src[1] = nir_src_for_ssa(evaluate_rvalue(offset));
|
2015-07-09 10:29:18 +02:00
|
|
|
|
|
|
|
|
const glsl_type *type = ir->return_deref->var->type;
|
|
|
|
|
instr->num_components = type->vector_elements;
|
|
|
|
|
|
|
|
|
|
/* Setup destination register */
|
2016-05-11 15:05:09 -04:00
|
|
|
unsigned bit_size = glsl_get_bit_size(type);
|
2015-07-09 10:29:18 +02:00
|
|
|
nir_ssa_dest_init(&instr->instr, &instr->dest,
|
2016-01-21 13:23:55 +01:00
|
|
|
type->vector_elements, bit_size, NULL);
|
2015-07-09 10:29:18 +02:00
|
|
|
|
|
|
|
|
/* Insert the created nir instruction now since in the case of boolean
|
|
|
|
|
* result we will need to emit another instruction after it
|
|
|
|
|
*/
|
2015-10-31 16:31:59 -04:00
|
|
|
nir_builder_instr_insert(&b, &instr->instr);
|
2015-07-09 10:29:18 +02:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* In SSBO/UBO's, a true boolean value is any non-zero value, but we
|
|
|
|
|
* consider a true boolean to be ~0. Fix this up with a != 0
|
|
|
|
|
* comparison.
|
|
|
|
|
*/
|
|
|
|
|
if (type->base_type == GLSL_TYPE_BOOL) {
|
|
|
|
|
nir_alu_instr *load_ssbo_compare =
|
|
|
|
|
nir_alu_instr_create(shader, nir_op_ine);
|
|
|
|
|
load_ssbo_compare->src[0].src.is_ssa = true;
|
|
|
|
|
load_ssbo_compare->src[0].src.ssa = &instr->dest.ssa;
|
2015-10-31 16:31:59 -04:00
|
|
|
load_ssbo_compare->src[1].src =
|
|
|
|
|
nir_src_for_ssa(nir_imm_int(&b, 0));
|
2015-07-09 10:29:18 +02:00
|
|
|
for (unsigned i = 0; i < type->vector_elements; i++)
|
|
|
|
|
load_ssbo_compare->src[1].swizzle[i] = 0;
|
|
|
|
|
nir_ssa_dest_init(&load_ssbo_compare->instr,
|
|
|
|
|
&load_ssbo_compare->dest.dest,
|
2016-01-21 13:23:55 +01:00
|
|
|
type->vector_elements, bit_size, NULL);
|
2015-07-09 10:29:18 +02:00
|
|
|
load_ssbo_compare->dest.write_mask = (1 << type->vector_elements) - 1;
|
2015-10-31 16:31:59 -04:00
|
|
|
nir_builder_instr_insert(&b, &load_ssbo_compare->instr);
|
2015-07-09 10:29:18 +02:00
|
|
|
dest = &load_ssbo_compare->dest.dest;
|
|
|
|
|
}
|
2015-06-01 09:40:39 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case nir_intrinsic_ssbo_atomic_add:
|
2015-09-28 10:47:22 +02:00
|
|
|
case nir_intrinsic_ssbo_atomic_imin:
|
|
|
|
|
case nir_intrinsic_ssbo_atomic_umin:
|
|
|
|
|
case nir_intrinsic_ssbo_atomic_imax:
|
|
|
|
|
case nir_intrinsic_ssbo_atomic_umax:
|
2015-06-01 09:40:39 +02:00
|
|
|
case nir_intrinsic_ssbo_atomic_and:
|
|
|
|
|
case nir_intrinsic_ssbo_atomic_or:
|
|
|
|
|
case nir_intrinsic_ssbo_atomic_xor:
|
|
|
|
|
case nir_intrinsic_ssbo_atomic_exchange:
|
|
|
|
|
case nir_intrinsic_ssbo_atomic_comp_swap: {
|
|
|
|
|
int param_count = ir->actual_parameters.length();
|
|
|
|
|
assert(param_count == 3 || param_count == 4);
|
|
|
|
|
|
|
|
|
|
/* Block index */
|
|
|
|
|
exec_node *param = ir->actual_parameters.get_head();
|
|
|
|
|
ir_instruction *inst = (ir_instruction *) param;
|
2015-10-30 23:32:50 -04:00
|
|
|
instr->src[0] = nir_src_for_ssa(evaluate_rvalue(inst->as_rvalue()));
|
2015-06-01 09:40:39 +02:00
|
|
|
|
|
|
|
|
/* Offset */
|
|
|
|
|
param = param->get_next();
|
|
|
|
|
inst = (ir_instruction *) param;
|
2015-10-30 23:32:50 -04:00
|
|
|
instr->src[1] = nir_src_for_ssa(evaluate_rvalue(inst->as_rvalue()));
|
2015-06-01 09:40:39 +02:00
|
|
|
|
|
|
|
|
/* data1 parameter (this is always present) */
|
|
|
|
|
param = param->get_next();
|
|
|
|
|
inst = (ir_instruction *) param;
|
2015-10-30 23:32:50 -04:00
|
|
|
instr->src[2] = nir_src_for_ssa(evaluate_rvalue(inst->as_rvalue()));
|
2015-06-01 09:40:39 +02:00
|
|
|
|
|
|
|
|
/* data2 parameter (only with atomic_comp_swap) */
|
|
|
|
|
if (param_count == 4) {
|
|
|
|
|
assert(op == nir_intrinsic_ssbo_atomic_comp_swap);
|
|
|
|
|
param = param->get_next();
|
|
|
|
|
inst = (ir_instruction *) param;
|
2015-10-30 23:32:50 -04:00
|
|
|
instr->src[3] = nir_src_for_ssa(evaluate_rvalue(inst->as_rvalue()));
|
2015-06-01 09:40:39 +02:00
|
|
|
}
|
2015-07-09 10:29:18 +02:00
|
|
|
|
2015-06-01 09:40:39 +02:00
|
|
|
/* Atomic result */
|
|
|
|
|
assert(ir->return_deref);
|
|
|
|
|
nir_ssa_dest_init(&instr->instr, &instr->dest,
|
2015-11-17 13:57:54 +01:00
|
|
|
ir->return_deref->type->vector_elements, 32, NULL);
|
2015-10-31 16:31:59 -04:00
|
|
|
nir_builder_instr_insert(&b, &instr->instr);
|
2015-07-09 10:29:18 +02:00
|
|
|
break;
|
|
|
|
|
}
|
2015-07-28 15:11:37 -07:00
|
|
|
case nir_intrinsic_load_shared: {
|
|
|
|
|
exec_node *param = ir->actual_parameters.get_head();
|
|
|
|
|
ir_rvalue *offset = ((ir_instruction *)param)->as_rvalue();
|
|
|
|
|
|
2016-01-21 13:32:09 -05:00
|
|
|
nir_intrinsic_set_base(instr, 0);
|
2015-11-25 14:14:05 -08:00
|
|
|
instr->src[0] = nir_src_for_ssa(evaluate_rvalue(offset));
|
2015-07-28 15:11:37 -07:00
|
|
|
|
|
|
|
|
const glsl_type *type = ir->return_deref->var->type;
|
|
|
|
|
instr->num_components = type->vector_elements;
|
|
|
|
|
|
|
|
|
|
/* Setup destination register */
|
2016-05-11 15:05:09 -04:00
|
|
|
unsigned bit_size = glsl_get_bit_size(type);
|
2015-07-28 15:11:37 -07:00
|
|
|
nir_ssa_dest_init(&instr->instr, &instr->dest,
|
2015-11-17 13:57:54 +01:00
|
|
|
type->vector_elements, bit_size, NULL);
|
2015-07-28 15:11:37 -07:00
|
|
|
|
|
|
|
|
nir_builder_instr_insert(&b, &instr->instr);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2015-07-28 15:17:34 -07:00
|
|
|
case nir_intrinsic_store_shared: {
|
|
|
|
|
exec_node *param = ir->actual_parameters.get_head();
|
|
|
|
|
ir_rvalue *offset = ((ir_instruction *)param)->as_rvalue();
|
|
|
|
|
|
|
|
|
|
param = param->get_next();
|
|
|
|
|
ir_rvalue *val = ((ir_instruction *)param)->as_rvalue();
|
|
|
|
|
|
|
|
|
|
param = param->get_next();
|
|
|
|
|
ir_constant *write_mask = ((ir_instruction *)param)->as_constant();
|
|
|
|
|
assert(write_mask);
|
|
|
|
|
|
2016-01-21 13:32:09 -05:00
|
|
|
nir_intrinsic_set_base(instr, 0);
|
2015-11-25 14:14:05 -08:00
|
|
|
instr->src[1] = nir_src_for_ssa(evaluate_rvalue(offset));
|
2015-07-28 15:17:34 -07:00
|
|
|
|
2016-01-21 13:32:09 -05:00
|
|
|
nir_intrinsic_set_write_mask(instr, write_mask->value.u[0]);
|
2015-07-28 15:17:34 -07:00
|
|
|
|
|
|
|
|
instr->src[0] = nir_src_for_ssa(evaluate_rvalue(val));
|
|
|
|
|
instr->num_components = val->type->vector_elements;
|
|
|
|
|
|
|
|
|
|
nir_builder_instr_insert(&b, &instr->instr);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2015-10-10 12:25:39 -07:00
|
|
|
case nir_intrinsic_shared_atomic_add:
|
|
|
|
|
case nir_intrinsic_shared_atomic_imin:
|
|
|
|
|
case nir_intrinsic_shared_atomic_umin:
|
|
|
|
|
case nir_intrinsic_shared_atomic_imax:
|
|
|
|
|
case nir_intrinsic_shared_atomic_umax:
|
|
|
|
|
case nir_intrinsic_shared_atomic_and:
|
|
|
|
|
case nir_intrinsic_shared_atomic_or:
|
|
|
|
|
case nir_intrinsic_shared_atomic_xor:
|
|
|
|
|
case nir_intrinsic_shared_atomic_exchange:
|
|
|
|
|
case nir_intrinsic_shared_atomic_comp_swap: {
|
|
|
|
|
int param_count = ir->actual_parameters.length();
|
|
|
|
|
assert(param_count == 2 || param_count == 3);
|
|
|
|
|
|
|
|
|
|
/* Offset */
|
|
|
|
|
exec_node *param = ir->actual_parameters.get_head();
|
|
|
|
|
ir_instruction *inst = (ir_instruction *) param;
|
|
|
|
|
instr->src[0] = nir_src_for_ssa(evaluate_rvalue(inst->as_rvalue()));
|
|
|
|
|
|
|
|
|
|
/* data1 parameter (this is always present) */
|
|
|
|
|
param = param->get_next();
|
|
|
|
|
inst = (ir_instruction *) param;
|
|
|
|
|
instr->src[1] = nir_src_for_ssa(evaluate_rvalue(inst->as_rvalue()));
|
|
|
|
|
|
|
|
|
|
/* data2 parameter (only with atomic_comp_swap) */
|
|
|
|
|
if (param_count == 3) {
|
|
|
|
|
assert(op == nir_intrinsic_shared_atomic_comp_swap);
|
|
|
|
|
param = param->get_next();
|
|
|
|
|
inst = (ir_instruction *) param;
|
|
|
|
|
instr->src[2] =
|
|
|
|
|
nir_src_for_ssa(evaluate_rvalue(inst->as_rvalue()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Atomic result */
|
|
|
|
|
assert(ir->return_deref);
|
2016-05-11 15:05:09 -04:00
|
|
|
unsigned bit_size = glsl_get_bit_size(ir->return_deref->type);
|
2015-10-10 12:25:39 -07:00
|
|
|
nir_ssa_dest_init(&instr->instr, &instr->dest,
|
2015-11-17 13:57:54 +01:00
|
|
|
ir->return_deref->type->vector_elements,
|
|
|
|
|
bit_size, NULL);
|
2015-10-10 12:25:39 -07:00
|
|
|
nir_builder_instr_insert(&b, &instr->instr);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2015-05-05 23:04:46 +03:00
|
|
|
default:
|
|
|
|
|
unreachable("not reached");
|
|
|
|
|
}
|
2014-07-10 18:18:17 -07:00
|
|
|
|
2015-05-05 23:04:46 +03:00
|
|
|
if (ir->return_deref) {
|
|
|
|
|
nir_intrinsic_instr *store_instr =
|
|
|
|
|
nir_intrinsic_instr_create(shader, nir_intrinsic_store_var);
|
|
|
|
|
store_instr->num_components = ir->return_deref->type->vector_elements;
|
2016-01-21 13:32:09 -05:00
|
|
|
nir_intrinsic_set_write_mask(store_instr,
|
|
|
|
|
(1 << store_instr->num_components) - 1);
|
2014-07-10 18:18:17 -07:00
|
|
|
|
2015-05-05 23:04:46 +03:00
|
|
|
store_instr->variables[0] =
|
|
|
|
|
evaluate_deref(&store_instr->instr, ir->return_deref);
|
2015-09-23 08:48:21 +02:00
|
|
|
store_instr->src[0] = nir_src_for_ssa(&dest->ssa);
|
2014-07-10 18:18:17 -07:00
|
|
|
|
2015-10-31 16:31:59 -04:00
|
|
|
nir_builder_instr_insert(&b, &store_instr->instr);
|
2015-05-05 23:04:46 +03:00
|
|
|
}
|
2014-07-10 18:18:17 -07:00
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct hash_entry *entry =
|
|
|
|
|
_mesa_hash_table_search(this->overload_table, ir->callee);
|
|
|
|
|
assert(entry);
|
2015-12-26 10:00:47 -08:00
|
|
|
nir_function *callee = (nir_function *) entry->data;
|
2014-07-10 18:18:17 -07:00
|
|
|
|
|
|
|
|
nir_call_instr *instr = nir_call_instr_create(this->shader, callee);
|
|
|
|
|
|
|
|
|
|
unsigned i = 0;
|
|
|
|
|
foreach_in_list(ir_dereference, param, &ir->actual_parameters) {
|
2015-04-02 21:24:38 -07:00
|
|
|
instr->params[i] = evaluate_deref(&instr->instr, param);
|
2014-07-10 18:18:17 -07:00
|
|
|
i++;
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-02 21:24:38 -07:00
|
|
|
instr->return_deref = evaluate_deref(&instr->instr, ir->return_deref);
|
2015-10-31 16:31:59 -04:00
|
|
|
nir_builder_instr_insert(&b, &instr->instr);
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
nir_visitor::visit(ir_assignment *ir)
|
|
|
|
|
{
|
2014-12-01 14:11:04 -08:00
|
|
|
unsigned num_components = ir->lhs->type->vector_elements;
|
|
|
|
|
|
2016-03-17 15:20:20 -07:00
|
|
|
b.exact = ir->lhs->variable_referenced()->data.invariant ||
|
|
|
|
|
ir->lhs->variable_referenced()->data.precise;
|
|
|
|
|
|
2014-12-01 14:11:04 -08:00
|
|
|
if ((ir->rhs->as_dereference() || ir->rhs->as_constant()) &&
|
|
|
|
|
(ir->write_mask == (1 << num_components) - 1 || ir->write_mask == 0)) {
|
|
|
|
|
/* We're doing a plain-as-can-be copy, so emit a copy_var */
|
|
|
|
|
nir_intrinsic_instr *copy =
|
|
|
|
|
nir_intrinsic_instr_create(this->shader, nir_intrinsic_copy_var);
|
2014-07-10 18:18:17 -07:00
|
|
|
|
2015-04-02 21:24:38 -07:00
|
|
|
copy->variables[0] = evaluate_deref(©->instr, ir->lhs);
|
|
|
|
|
copy->variables[1] = evaluate_deref(©->instr, ir->rhs);
|
2014-12-01 14:11:04 -08:00
|
|
|
|
|
|
|
|
if (ir->condition) {
|
|
|
|
|
nir_if *if_stmt = nir_if_create(this->shader);
|
2015-10-30 23:32:50 -04:00
|
|
|
if_stmt->condition = nir_src_for_ssa(evaluate_rvalue(ir->condition));
|
2015-10-31 16:31:59 -04:00
|
|
|
nir_builder_cf_insert(&b, &if_stmt->cf_node);
|
2014-12-01 14:11:04 -08:00
|
|
|
nir_instr_insert_after_cf_list(&if_stmt->then_list, ©->instr);
|
2015-10-31 16:31:59 -04:00
|
|
|
b.cursor = nir_after_cf_node(&if_stmt->cf_node);
|
2014-12-01 14:11:04 -08:00
|
|
|
} else {
|
2015-10-31 16:31:59 -04:00
|
|
|
nir_builder_instr_insert(&b, ©->instr);
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
2014-12-01 14:11:04 -08:00
|
|
|
return;
|
|
|
|
|
}
|
2014-07-10 18:18:17 -07:00
|
|
|
|
2014-12-01 14:11:04 -08:00
|
|
|
assert(ir->rhs->type->is_scalar() || ir->rhs->type->is_vector());
|
2014-07-10 18:18:17 -07:00
|
|
|
|
2014-12-01 14:11:04 -08:00
|
|
|
ir->lhs->accept(this);
|
|
|
|
|
nir_deref_var *lhs_deref = this->deref_head;
|
2015-10-31 16:31:59 -04:00
|
|
|
nir_ssa_def *src = evaluate_rvalue(ir->rhs);
|
2014-07-10 18:18:17 -07:00
|
|
|
|
2014-12-01 14:11:04 -08:00
|
|
|
if (ir->write_mask != (1 << num_components) - 1 && ir->write_mask != 0) {
|
2015-11-29 23:23:44 -08:00
|
|
|
/* GLSL IR will give us the input to the write-masked assignment in a
|
|
|
|
|
* single packed vector. So, for example, if the writemask is xzw, then
|
|
|
|
|
* we have to swizzle x -> x, y -> z, and z -> w and get the y component
|
|
|
|
|
* from the load.
|
2014-07-10 18:18:17 -07:00
|
|
|
*/
|
2015-11-29 23:23:44 -08:00
|
|
|
unsigned swiz[4];
|
2014-12-01 14:11:04 -08:00
|
|
|
unsigned component = 0;
|
2015-11-29 23:23:44 -08:00
|
|
|
for (unsigned i = 0; i < 4; i++) {
|
|
|
|
|
swiz[i] = ir->write_mask & (1 << i) ? component++ : 0;
|
2014-12-01 14:11:04 -08:00
|
|
|
}
|
2015-11-29 23:23:44 -08:00
|
|
|
src = nir_swizzle(&b, src, swiz, num_components, !supports_ints);
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
2014-12-03 17:03:19 -08:00
|
|
|
nir_intrinsic_instr *store =
|
|
|
|
|
nir_intrinsic_instr_create(this->shader, nir_intrinsic_store_var);
|
|
|
|
|
store->num_components = ir->lhs->type->vector_elements;
|
2016-01-21 13:32:09 -05:00
|
|
|
nir_intrinsic_set_write_mask(store, ir->write_mask);
|
2015-04-02 21:24:38 -07:00
|
|
|
nir_deref *store_deref = nir_copy_deref(store, &lhs_deref->deref);
|
2014-12-01 14:11:04 -08:00
|
|
|
store->variables[0] = nir_deref_as_var(store_deref);
|
2015-10-31 16:31:59 -04:00
|
|
|
store->src[0] = nir_src_for_ssa(src);
|
2014-12-01 14:11:04 -08:00
|
|
|
|
|
|
|
|
if (ir->condition) {
|
|
|
|
|
nir_if *if_stmt = nir_if_create(this->shader);
|
2015-10-30 23:32:50 -04:00
|
|
|
if_stmt->condition = nir_src_for_ssa(evaluate_rvalue(ir->condition));
|
2015-10-31 16:31:59 -04:00
|
|
|
nir_builder_cf_insert(&b, &if_stmt->cf_node);
|
2014-12-01 14:11:04 -08:00
|
|
|
nir_instr_insert_after_cf_list(&if_stmt->then_list, &store->instr);
|
2015-10-31 16:31:59 -04:00
|
|
|
b.cursor = nir_after_cf_node(&if_stmt->cf_node);
|
2014-12-01 14:11:04 -08:00
|
|
|
} else {
|
2015-10-31 16:31:59 -04:00
|
|
|
nir_builder_instr_insert(&b, &store->instr);
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Given an instruction, returns a pointer to its destination or NULL if there
|
|
|
|
|
* is no destination.
|
|
|
|
|
*
|
|
|
|
|
* Note that this only handles instructions we generate at this level.
|
|
|
|
|
*/
|
|
|
|
|
static nir_dest *
|
|
|
|
|
get_instr_dest(nir_instr *instr)
|
|
|
|
|
{
|
|
|
|
|
nir_alu_instr *alu_instr;
|
|
|
|
|
nir_intrinsic_instr *intrinsic_instr;
|
|
|
|
|
nir_tex_instr *tex_instr;
|
|
|
|
|
|
|
|
|
|
switch (instr->type) {
|
|
|
|
|
case nir_instr_type_alu:
|
|
|
|
|
alu_instr = nir_instr_as_alu(instr);
|
|
|
|
|
return &alu_instr->dest.dest;
|
|
|
|
|
|
|
|
|
|
case nir_instr_type_intrinsic:
|
|
|
|
|
intrinsic_instr = nir_instr_as_intrinsic(instr);
|
|
|
|
|
if (nir_intrinsic_infos[intrinsic_instr->intrinsic].has_dest)
|
|
|
|
|
return &intrinsic_instr->dest;
|
|
|
|
|
else
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2014-12-05 11:03:06 -08:00
|
|
|
case nir_instr_type_tex:
|
|
|
|
|
tex_instr = nir_instr_as_tex(instr);
|
2014-07-10 18:18:17 -07:00
|
|
|
return &tex_instr->dest;
|
|
|
|
|
|
|
|
|
|
default:
|
2015-01-21 20:22:18 -08:00
|
|
|
unreachable("not reached");
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2016-04-04 10:16:11 +02:00
|
|
|
nir_visitor::add_instr(nir_instr *instr, unsigned num_components,
|
|
|
|
|
unsigned bit_size)
|
2014-07-10 18:18:17 -07:00
|
|
|
{
|
|
|
|
|
nir_dest *dest = get_instr_dest(instr);
|
|
|
|
|
|
2015-05-19 09:02:06 +02:00
|
|
|
if (dest)
|
2016-04-04 10:16:11 +02:00
|
|
|
nir_ssa_dest_init(instr, dest, num_components, bit_size, NULL);
|
2014-07-10 18:18:17 -07:00
|
|
|
|
2015-10-31 16:31:59 -04:00
|
|
|
nir_builder_instr_insert(&b, instr);
|
2015-10-30 23:47:46 -04:00
|
|
|
|
|
|
|
|
if (dest) {
|
|
|
|
|
assert(dest->is_ssa);
|
|
|
|
|
this->result = &dest->ssa;
|
|
|
|
|
}
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
2015-10-30 23:32:50 -04:00
|
|
|
nir_ssa_def *
|
2014-07-10 18:18:17 -07:00
|
|
|
nir_visitor::evaluate_rvalue(ir_rvalue* ir)
|
|
|
|
|
{
|
|
|
|
|
ir->accept(this);
|
|
|
|
|
if (ir->as_dereference() || ir->as_constant()) {
|
|
|
|
|
/*
|
|
|
|
|
* A dereference is being used on the right hand side, which means we
|
|
|
|
|
* must emit a variable load.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
nir_intrinsic_instr *load_instr =
|
2014-12-03 17:03:19 -08:00
|
|
|
nir_intrinsic_instr_create(this->shader, nir_intrinsic_load_var);
|
|
|
|
|
load_instr->num_components = ir->type->vector_elements;
|
2014-07-10 18:18:17 -07:00
|
|
|
load_instr->variables[0] = this->deref_head;
|
2015-04-02 21:24:38 -07:00
|
|
|
ralloc_steal(load_instr, load_instr->variables[0]);
|
2016-05-11 15:05:09 -04:00
|
|
|
unsigned bit_size = glsl_get_bit_size(ir->type);
|
2016-04-04 10:16:11 +02:00
|
|
|
add_instr(&load_instr->instr, ir->type->vector_elements, bit_size);
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
2015-10-30 23:47:46 -04:00
|
|
|
return this->result;
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
2015-11-12 11:18:50 +01:00
|
|
|
static bool
|
|
|
|
|
type_is_float(glsl_base_type type)
|
|
|
|
|
{
|
|
|
|
|
return type == GLSL_TYPE_FLOAT || type == GLSL_TYPE_DOUBLE;
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-10 18:18:17 -07:00
|
|
|
void
|
|
|
|
|
nir_visitor::visit(ir_expression *ir)
|
|
|
|
|
{
|
2014-12-04 12:16:33 -08:00
|
|
|
/* Some special cases */
|
|
|
|
|
switch (ir->operation) {
|
|
|
|
|
case ir_binop_ubo_load: {
|
2015-11-25 14:14:05 -08:00
|
|
|
nir_intrinsic_instr *load =
|
|
|
|
|
nir_intrinsic_instr_create(this->shader, nir_intrinsic_load_ubo);
|
2016-05-11 15:05:09 -04:00
|
|
|
unsigned bit_size = glsl_get_bit_size(ir->type);
|
2014-12-03 17:03:19 -08:00
|
|
|
load->num_components = ir->type->vector_elements;
|
2015-10-30 23:32:50 -04:00
|
|
|
load->src[0] = nir_src_for_ssa(evaluate_rvalue(ir->operands[0]));
|
2015-11-25 14:14:05 -08:00
|
|
|
load->src[1] = nir_src_for_ssa(evaluate_rvalue(ir->operands[1]));
|
2016-04-04 10:16:11 +02:00
|
|
|
add_instr(&load->instr, ir->type->vector_elements, bit_size);
|
2014-07-10 18:18:17 -07:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* In UBO's, a true boolean value is any non-zero value, but we consider
|
|
|
|
|
* a true boolean to be ~0. Fix this up with a != 0 comparison.
|
|
|
|
|
*/
|
|
|
|
|
|
2015-10-31 16:31:59 -04:00
|
|
|
if (ir->type->base_type == GLSL_TYPE_BOOL)
|
|
|
|
|
this->result = nir_ine(&b, &load->dest.ssa, nir_imm_int(&b, 0));
|
2014-07-10 18:18:17 -07:00
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-04 12:16:33 -08:00
|
|
|
case ir_unop_interpolate_at_centroid:
|
|
|
|
|
case ir_binop_interpolate_at_offset:
|
|
|
|
|
case ir_binop_interpolate_at_sample: {
|
|
|
|
|
ir_dereference *deref = ir->operands[0]->as_dereference();
|
|
|
|
|
ir_swizzle *swizzle = NULL;
|
|
|
|
|
if (!deref) {
|
|
|
|
|
/* the api does not allow a swizzle here, but the varying packing code
|
|
|
|
|
* may have pushed one into here.
|
|
|
|
|
*/
|
|
|
|
|
swizzle = ir->operands[0]->as_swizzle();
|
|
|
|
|
assert(swizzle);
|
|
|
|
|
deref = swizzle->val->as_dereference();
|
|
|
|
|
assert(deref);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
deref->accept(this);
|
|
|
|
|
|
|
|
|
|
nir_intrinsic_op op;
|
|
|
|
|
if (this->deref_head->var->data.mode == nir_var_shader_in) {
|
|
|
|
|
switch (ir->operation) {
|
|
|
|
|
case ir_unop_interpolate_at_centroid:
|
|
|
|
|
op = nir_intrinsic_interp_var_at_centroid;
|
|
|
|
|
break;
|
|
|
|
|
case ir_binop_interpolate_at_offset:
|
|
|
|
|
op = nir_intrinsic_interp_var_at_offset;
|
|
|
|
|
break;
|
|
|
|
|
case ir_binop_interpolate_at_sample:
|
|
|
|
|
op = nir_intrinsic_interp_var_at_sample;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
unreachable("Invalid interpolation intrinsic");
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
/* This case can happen if the vertex shader does not write the
|
|
|
|
|
* given varying. In this case, the linker will lower it to a
|
|
|
|
|
* global variable. Since interpolating a variable makes no
|
|
|
|
|
* sense, we'll just turn it into a load which will probably
|
|
|
|
|
* eventually end up as an SSA definition.
|
|
|
|
|
*/
|
|
|
|
|
assert(this->deref_head->var->data.mode == nir_var_global);
|
|
|
|
|
op = nir_intrinsic_load_var;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nir_intrinsic_instr *intrin = nir_intrinsic_instr_create(shader, op);
|
|
|
|
|
intrin->num_components = deref->type->vector_elements;
|
|
|
|
|
intrin->variables[0] = this->deref_head;
|
2015-04-02 21:24:38 -07:00
|
|
|
ralloc_steal(intrin, intrin->variables[0]);
|
2014-12-04 12:16:33 -08:00
|
|
|
|
|
|
|
|
if (intrin->intrinsic == nir_intrinsic_interp_var_at_offset ||
|
|
|
|
|
intrin->intrinsic == nir_intrinsic_interp_var_at_sample)
|
2015-10-30 23:32:50 -04:00
|
|
|
intrin->src[0] = nir_src_for_ssa(evaluate_rvalue(ir->operands[1]));
|
2014-12-04 12:16:33 -08:00
|
|
|
|
2016-05-11 15:05:09 -04:00
|
|
|
unsigned bit_size = glsl_get_bit_size(deref->type);
|
2016-04-04 10:16:11 +02:00
|
|
|
add_instr(&intrin->instr, deref->type->vector_elements, bit_size);
|
2014-12-04 12:16:33 -08:00
|
|
|
|
|
|
|
|
if (swizzle) {
|
2015-10-31 16:31:59 -04:00
|
|
|
unsigned swiz[4] = {
|
|
|
|
|
swizzle->mask.x, swizzle->mask.y, swizzle->mask.z, swizzle->mask.w
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
result = nir_swizzle(&b, result, swiz,
|
|
|
|
|
swizzle->type->vector_elements, false);
|
2014-12-04 12:16:33 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-30 23:56:49 -04:00
|
|
|
nir_ssa_def *srcs[4];
|
2014-07-10 18:18:17 -07:00
|
|
|
for (unsigned i = 0; i < ir->get_num_operands(); i++)
|
2015-10-30 23:56:49 -04:00
|
|
|
srcs[i] = evaluate_rvalue(ir->operands[i]);
|
2014-07-10 18:18:17 -07:00
|
|
|
|
|
|
|
|
glsl_base_type types[4];
|
|
|
|
|
for (unsigned i = 0; i < ir->get_num_operands(); i++)
|
|
|
|
|
if (supports_ints)
|
|
|
|
|
types[i] = ir->operands[i]->type->base_type;
|
|
|
|
|
else
|
|
|
|
|
types[i] = GLSL_TYPE_FLOAT;
|
|
|
|
|
|
|
|
|
|
glsl_base_type out_type;
|
|
|
|
|
if (supports_ints)
|
|
|
|
|
out_type = ir->type->base_type;
|
|
|
|
|
else
|
|
|
|
|
out_type = GLSL_TYPE_FLOAT;
|
|
|
|
|
|
|
|
|
|
switch (ir->operation) {
|
2015-10-31 16:31:59 -04:00
|
|
|
case ir_unop_bit_not: result = nir_inot(&b, srcs[0]); break;
|
2014-07-10 18:18:17 -07:00
|
|
|
case ir_unop_logic_not:
|
2015-10-31 16:31:59 -04:00
|
|
|
result = supports_ints ? nir_inot(&b, srcs[0]) : nir_fnot(&b, srcs[0]);
|
2014-07-10 18:18:17 -07:00
|
|
|
break;
|
|
|
|
|
case ir_unop_neg:
|
2015-11-12 11:18:50 +01:00
|
|
|
result = type_is_float(types[0]) ? nir_fneg(&b, srcs[0])
|
|
|
|
|
: nir_ineg(&b, srcs[0]);
|
2014-07-10 18:18:17 -07:00
|
|
|
break;
|
|
|
|
|
case ir_unop_abs:
|
2015-11-12 11:18:50 +01:00
|
|
|
result = type_is_float(types[0]) ? nir_fabs(&b, srcs[0])
|
|
|
|
|
: nir_iabs(&b, srcs[0]);
|
2014-07-10 18:18:17 -07:00
|
|
|
break;
|
2014-10-15 16:19:26 -07:00
|
|
|
case ir_unop_saturate:
|
2015-11-12 11:18:50 +01:00
|
|
|
assert(type_is_float(types[0]));
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_fsat(&b, srcs[0]);
|
2014-10-15 16:19:26 -07:00
|
|
|
break;
|
2014-07-10 18:18:17 -07:00
|
|
|
case ir_unop_sign:
|
2015-11-12 11:18:50 +01:00
|
|
|
result = type_is_float(types[0]) ? nir_fsign(&b, srcs[0])
|
|
|
|
|
: nir_isign(&b, srcs[0]);
|
2014-07-10 18:18:17 -07:00
|
|
|
break;
|
2015-10-31 16:31:59 -04:00
|
|
|
case ir_unop_rcp: result = nir_frcp(&b, srcs[0]); break;
|
|
|
|
|
case ir_unop_rsq: result = nir_frsq(&b, srcs[0]); break;
|
|
|
|
|
case ir_unop_sqrt: result = nir_fsqrt(&b, srcs[0]); break;
|
2015-05-06 16:57:22 -07:00
|
|
|
case ir_unop_exp: unreachable("ir_unop_exp should have been lowered");
|
2015-05-06 17:01:37 -07:00
|
|
|
case ir_unop_log: unreachable("ir_unop_log should have been lowered");
|
2015-10-31 16:31:59 -04:00
|
|
|
case ir_unop_exp2: result = nir_fexp2(&b, srcs[0]); break;
|
|
|
|
|
case ir_unop_log2: result = nir_flog2(&b, srcs[0]); break;
|
2014-07-10 18:18:17 -07:00
|
|
|
case ir_unop_i2f:
|
2015-10-31 16:31:59 -04:00
|
|
|
result = supports_ints ? nir_i2f(&b, srcs[0]) : nir_fmov(&b, srcs[0]);
|
2014-07-10 18:18:17 -07:00
|
|
|
break;
|
|
|
|
|
case ir_unop_u2f:
|
2015-10-31 16:31:59 -04:00
|
|
|
result = supports_ints ? nir_u2f(&b, srcs[0]) : nir_fmov(&b, srcs[0]);
|
2014-07-10 18:18:17 -07:00
|
|
|
break;
|
|
|
|
|
case ir_unop_b2f:
|
2015-10-31 16:31:59 -04:00
|
|
|
result = supports_ints ? nir_b2f(&b, srcs[0]) : nir_fmov(&b, srcs[0]);
|
2014-07-10 18:18:17 -07:00
|
|
|
break;
|
2015-10-31 16:31:59 -04:00
|
|
|
case ir_unop_f2i: result = nir_f2i(&b, srcs[0]); break;
|
|
|
|
|
case ir_unop_f2u: result = nir_f2u(&b, srcs[0]); break;
|
|
|
|
|
case ir_unop_f2b: result = nir_f2b(&b, srcs[0]); break;
|
|
|
|
|
case ir_unop_i2b: result = nir_i2b(&b, srcs[0]); break;
|
|
|
|
|
case ir_unop_b2i: result = nir_b2i(&b, srcs[0]); break;
|
2015-07-29 23:46:20 -07:00
|
|
|
case ir_unop_d2f: result = nir_d2f(&b, srcs[0]); break;
|
|
|
|
|
case ir_unop_f2d: result = nir_f2d(&b, srcs[0]); break;
|
2016-01-12 12:39:58 +01:00
|
|
|
case ir_unop_d2i: result = nir_d2i(&b, srcs[0]); break;
|
|
|
|
|
case ir_unop_d2u: result = nir_d2u(&b, srcs[0]); break;
|
|
|
|
|
case ir_unop_d2b: result = nir_d2b(&b, srcs[0]); break;
|
2016-01-12 14:03:08 +01:00
|
|
|
case ir_unop_i2d:
|
|
|
|
|
assert(supports_ints);
|
|
|
|
|
result = nir_i2d(&b, srcs[0]);
|
|
|
|
|
break;
|
|
|
|
|
case ir_unop_u2d:
|
|
|
|
|
assert(supports_ints);
|
|
|
|
|
result = nir_u2d(&b, srcs[0]);
|
|
|
|
|
break;
|
2014-07-10 18:18:17 -07:00
|
|
|
case ir_unop_i2u:
|
|
|
|
|
case ir_unop_u2i:
|
|
|
|
|
case ir_unop_bitcast_i2f:
|
|
|
|
|
case ir_unop_bitcast_f2i:
|
|
|
|
|
case ir_unop_bitcast_u2f:
|
|
|
|
|
case ir_unop_bitcast_f2u:
|
2015-07-21 14:22:11 +10:00
|
|
|
case ir_unop_subroutine_to_int:
|
2014-07-10 18:18:17 -07:00
|
|
|
/* no-op */
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_imov(&b, srcs[0]);
|
2014-07-10 18:18:17 -07:00
|
|
|
break;
|
2015-10-31 16:31:59 -04:00
|
|
|
case ir_unop_trunc: result = nir_ftrunc(&b, srcs[0]); break;
|
|
|
|
|
case ir_unop_ceil: result = nir_fceil(&b, srcs[0]); break;
|
|
|
|
|
case ir_unop_floor: result = nir_ffloor(&b, srcs[0]); break;
|
|
|
|
|
case ir_unop_fract: result = nir_ffract(&b, srcs[0]); break;
|
|
|
|
|
case ir_unop_round_even: result = nir_fround_even(&b, srcs[0]); break;
|
|
|
|
|
case ir_unop_sin: result = nir_fsin(&b, srcs[0]); break;
|
|
|
|
|
case ir_unop_cos: result = nir_fcos(&b, srcs[0]); break;
|
|
|
|
|
case ir_unop_dFdx: result = nir_fddx(&b, srcs[0]); break;
|
|
|
|
|
case ir_unop_dFdy: result = nir_fddy(&b, srcs[0]); break;
|
|
|
|
|
case ir_unop_dFdx_fine: result = nir_fddx_fine(&b, srcs[0]); break;
|
|
|
|
|
case ir_unop_dFdy_fine: result = nir_fddy_fine(&b, srcs[0]); break;
|
|
|
|
|
case ir_unop_dFdx_coarse: result = nir_fddx_coarse(&b, srcs[0]); break;
|
|
|
|
|
case ir_unop_dFdy_coarse: result = nir_fddy_coarse(&b, srcs[0]); break;
|
2014-07-10 18:18:17 -07:00
|
|
|
case ir_unop_pack_snorm_2x16:
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_pack_snorm_2x16(&b, srcs[0]);
|
2014-07-10 18:18:17 -07:00
|
|
|
break;
|
|
|
|
|
case ir_unop_pack_snorm_4x8:
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_pack_snorm_4x8(&b, srcs[0]);
|
2014-07-10 18:18:17 -07:00
|
|
|
break;
|
|
|
|
|
case ir_unop_pack_unorm_2x16:
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_pack_unorm_2x16(&b, srcs[0]);
|
2014-07-10 18:18:17 -07:00
|
|
|
break;
|
|
|
|
|
case ir_unop_pack_unorm_4x8:
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_pack_unorm_4x8(&b, srcs[0]);
|
2014-07-10 18:18:17 -07:00
|
|
|
break;
|
|
|
|
|
case ir_unop_pack_half_2x16:
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_pack_half_2x16(&b, srcs[0]);
|
2014-07-10 18:18:17 -07:00
|
|
|
break;
|
|
|
|
|
case ir_unop_unpack_snorm_2x16:
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_unpack_snorm_2x16(&b, srcs[0]);
|
2014-07-10 18:18:17 -07:00
|
|
|
break;
|
|
|
|
|
case ir_unop_unpack_snorm_4x8:
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_unpack_snorm_4x8(&b, srcs[0]);
|
2014-07-10 18:18:17 -07:00
|
|
|
break;
|
|
|
|
|
case ir_unop_unpack_unorm_2x16:
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_unpack_unorm_2x16(&b, srcs[0]);
|
2014-07-10 18:18:17 -07:00
|
|
|
break;
|
|
|
|
|
case ir_unop_unpack_unorm_4x8:
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_unpack_unorm_4x8(&b, srcs[0]);
|
2014-07-10 18:18:17 -07:00
|
|
|
break;
|
|
|
|
|
case ir_unop_unpack_half_2x16:
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_unpack_half_2x16(&b, srcs[0]);
|
2014-07-10 18:18:17 -07:00
|
|
|
break;
|
2015-08-14 12:20:37 -07:00
|
|
|
case ir_unop_pack_double_2x32:
|
|
|
|
|
result = nir_pack_double_2x32(&b, srcs[0]);
|
|
|
|
|
break;
|
|
|
|
|
case ir_unop_unpack_double_2x32:
|
|
|
|
|
result = nir_unpack_double_2x32(&b, srcs[0]);
|
|
|
|
|
break;
|
2014-07-10 18:18:17 -07:00
|
|
|
case ir_unop_bitfield_reverse:
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_bitfield_reverse(&b, srcs[0]);
|
2014-07-10 18:18:17 -07:00
|
|
|
break;
|
2014-11-07 10:59:16 -08:00
|
|
|
case ir_unop_bit_count:
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_bit_count(&b, srcs[0]);
|
2014-11-07 10:59:16 -08:00
|
|
|
break;
|
|
|
|
|
case ir_unop_find_msb:
|
|
|
|
|
switch (types[0]) {
|
|
|
|
|
case GLSL_TYPE_UINT:
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_ufind_msb(&b, srcs[0]);
|
2014-11-07 10:59:16 -08:00
|
|
|
break;
|
|
|
|
|
case GLSL_TYPE_INT:
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_ifind_msb(&b, srcs[0]);
|
2014-11-07 10:59:16 -08:00
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
unreachable("Invalid type for findMSB()");
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case ir_unop_find_lsb:
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_find_lsb(&b, srcs[0]);
|
2014-11-07 10:59:16 -08:00
|
|
|
break;
|
|
|
|
|
|
2014-07-10 18:18:17 -07:00
|
|
|
case ir_unop_noise:
|
|
|
|
|
switch (ir->type->vector_elements) {
|
|
|
|
|
case 1:
|
|
|
|
|
switch (ir->operands[0]->type->vector_elements) {
|
2015-10-31 16:31:59 -04:00
|
|
|
case 1: result = nir_fnoise1_1(&b, srcs[0]); break;
|
|
|
|
|
case 2: result = nir_fnoise1_2(&b, srcs[0]); break;
|
|
|
|
|
case 3: result = nir_fnoise1_3(&b, srcs[0]); break;
|
|
|
|
|
case 4: result = nir_fnoise1_4(&b, srcs[0]); break;
|
2015-02-10 11:21:47 -08:00
|
|
|
default: unreachable("not reached");
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 2:
|
|
|
|
|
switch (ir->operands[0]->type->vector_elements) {
|
2015-10-31 16:31:59 -04:00
|
|
|
case 1: result = nir_fnoise2_1(&b, srcs[0]); break;
|
|
|
|
|
case 2: result = nir_fnoise2_2(&b, srcs[0]); break;
|
|
|
|
|
case 3: result = nir_fnoise2_3(&b, srcs[0]); break;
|
|
|
|
|
case 4: result = nir_fnoise2_4(&b, srcs[0]); break;
|
2015-02-10 11:21:47 -08:00
|
|
|
default: unreachable("not reached");
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 3:
|
|
|
|
|
switch (ir->operands[0]->type->vector_elements) {
|
2015-10-31 16:31:59 -04:00
|
|
|
case 1: result = nir_fnoise3_1(&b, srcs[0]); break;
|
|
|
|
|
case 2: result = nir_fnoise3_2(&b, srcs[0]); break;
|
|
|
|
|
case 3: result = nir_fnoise3_3(&b, srcs[0]); break;
|
|
|
|
|
case 4: result = nir_fnoise3_4(&b, srcs[0]); break;
|
2015-02-10 11:21:47 -08:00
|
|
|
default: unreachable("not reached");
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 4:
|
|
|
|
|
switch (ir->operands[0]->type->vector_elements) {
|
2015-10-31 16:31:59 -04:00
|
|
|
case 1: result = nir_fnoise4_1(&b, srcs[0]); break;
|
|
|
|
|
case 2: result = nir_fnoise4_2(&b, srcs[0]); break;
|
|
|
|
|
case 3: result = nir_fnoise4_3(&b, srcs[0]); break;
|
|
|
|
|
case 4: result = nir_fnoise4_4(&b, srcs[0]); break;
|
2015-02-10 11:21:47 -08:00
|
|
|
default: unreachable("not reached");
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default:
|
2015-01-21 20:22:18 -08:00
|
|
|
unreachable("not reached");
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
break;
|
2015-06-01 09:44:55 +02:00
|
|
|
case ir_unop_get_buffer_size: {
|
|
|
|
|
nir_intrinsic_instr *load = nir_intrinsic_instr_create(
|
|
|
|
|
this->shader,
|
|
|
|
|
nir_intrinsic_get_buffer_size);
|
|
|
|
|
load->num_components = ir->type->vector_elements;
|
2015-10-30 23:32:50 -04:00
|
|
|
load->src[0] = nir_src_for_ssa(evaluate_rvalue(ir->operands[0]));
|
2016-05-11 15:05:09 -04:00
|
|
|
unsigned bit_size = glsl_get_bit_size(ir->type);
|
2016-04-04 10:16:11 +02:00
|
|
|
add_instr(&load->instr, ir->type->vector_elements, bit_size);
|
2015-06-01 09:44:55 +02:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-10 18:18:17 -07:00
|
|
|
case ir_binop_add:
|
2015-11-12 11:18:50 +01:00
|
|
|
result = type_is_float(out_type) ? nir_fadd(&b, srcs[0], srcs[1])
|
|
|
|
|
: nir_iadd(&b, srcs[0], srcs[1]);
|
2015-10-31 16:31:59 -04:00
|
|
|
break;
|
2014-07-10 18:18:17 -07:00
|
|
|
case ir_binop_sub:
|
2015-11-12 11:18:50 +01:00
|
|
|
result = type_is_float(out_type) ? nir_fsub(&b, srcs[0], srcs[1])
|
|
|
|
|
: nir_isub(&b, srcs[0], srcs[1]);
|
2015-10-31 16:31:59 -04:00
|
|
|
break;
|
2014-07-10 18:18:17 -07:00
|
|
|
case ir_binop_mul:
|
2015-11-12 11:18:50 +01:00
|
|
|
result = type_is_float(out_type) ? nir_fmul(&b, srcs[0], srcs[1])
|
|
|
|
|
: nir_imul(&b, srcs[0], srcs[1]);
|
2015-10-31 16:31:59 -04:00
|
|
|
break;
|
2014-07-10 18:18:17 -07:00
|
|
|
case ir_binop_div:
|
2015-11-12 11:18:50 +01:00
|
|
|
if (type_is_float(out_type))
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_fdiv(&b, srcs[0], srcs[1]);
|
|
|
|
|
else if (out_type == GLSL_TYPE_INT)
|
|
|
|
|
result = nir_idiv(&b, srcs[0], srcs[1]);
|
|
|
|
|
else
|
|
|
|
|
result = nir_udiv(&b, srcs[0], srcs[1]);
|
|
|
|
|
break;
|
2014-07-10 18:18:17 -07:00
|
|
|
case ir_binop_mod:
|
2015-11-12 11:18:50 +01:00
|
|
|
result = type_is_float(out_type) ? nir_fmod(&b, srcs[0], srcs[1])
|
|
|
|
|
: nir_umod(&b, srcs[0], srcs[1]);
|
2015-10-31 16:31:59 -04:00
|
|
|
break;
|
2014-07-10 18:18:17 -07:00
|
|
|
case ir_binop_min:
|
2015-11-12 11:18:50 +01:00
|
|
|
if (type_is_float(out_type))
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_fmin(&b, srcs[0], srcs[1]);
|
|
|
|
|
else if (out_type == GLSL_TYPE_INT)
|
|
|
|
|
result = nir_imin(&b, srcs[0], srcs[1]);
|
|
|
|
|
else
|
|
|
|
|
result = nir_umin(&b, srcs[0], srcs[1]);
|
|
|
|
|
break;
|
2014-07-10 18:18:17 -07:00
|
|
|
case ir_binop_max:
|
2015-11-12 11:18:50 +01:00
|
|
|
if (type_is_float(out_type))
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_fmax(&b, srcs[0], srcs[1]);
|
|
|
|
|
else if (out_type == GLSL_TYPE_INT)
|
|
|
|
|
result = nir_imax(&b, srcs[0], srcs[1]);
|
|
|
|
|
else
|
|
|
|
|
result = nir_umax(&b, srcs[0], srcs[1]);
|
|
|
|
|
break;
|
|
|
|
|
case ir_binop_pow: result = nir_fpow(&b, srcs[0], srcs[1]); break;
|
|
|
|
|
case ir_binop_bit_and: result = nir_iand(&b, srcs[0], srcs[1]); break;
|
|
|
|
|
case ir_binop_bit_or: result = nir_ior(&b, srcs[0], srcs[1]); break;
|
|
|
|
|
case ir_binop_bit_xor: result = nir_ixor(&b, srcs[0], srcs[1]); break;
|
2015-03-23 16:04:41 -07:00
|
|
|
case ir_binop_logic_and:
|
2015-10-31 16:31:59 -04:00
|
|
|
result = supports_ints ? nir_iand(&b, srcs[0], srcs[1])
|
|
|
|
|
: nir_fand(&b, srcs[0], srcs[1]);
|
|
|
|
|
break;
|
2015-03-23 16:04:41 -07:00
|
|
|
case ir_binop_logic_or:
|
2015-10-31 16:31:59 -04:00
|
|
|
result = supports_ints ? nir_ior(&b, srcs[0], srcs[1])
|
|
|
|
|
: nir_for(&b, srcs[0], srcs[1]);
|
|
|
|
|
break;
|
2015-11-14 17:47:33 -08:00
|
|
|
case ir_binop_logic_xor:
|
|
|
|
|
result = supports_ints ? nir_ixor(&b, srcs[0], srcs[1])
|
|
|
|
|
: nir_fxor(&b, srcs[0], srcs[1]);
|
2015-10-31 16:31:59 -04:00
|
|
|
break;
|
|
|
|
|
case ir_binop_lshift: result = nir_ishl(&b, srcs[0], srcs[1]); break;
|
2014-07-10 18:18:17 -07:00
|
|
|
case ir_binop_rshift:
|
2015-10-31 16:31:59 -04:00
|
|
|
result = (out_type == GLSL_TYPE_INT) ? nir_ishr(&b, srcs[0], srcs[1])
|
|
|
|
|
: nir_ushr(&b, srcs[0], srcs[1]);
|
2014-07-10 18:18:17 -07:00
|
|
|
break;
|
|
|
|
|
case ir_binop_imul_high:
|
2015-10-31 16:31:59 -04:00
|
|
|
result = (out_type == GLSL_TYPE_INT) ? nir_imul_high(&b, srcs[0], srcs[1])
|
|
|
|
|
: nir_umul_high(&b, srcs[0], srcs[1]);
|
2014-07-10 18:18:17 -07:00
|
|
|
break;
|
2015-10-31 16:31:59 -04:00
|
|
|
case ir_binop_carry: result = nir_uadd_carry(&b, srcs[0], srcs[1]); break;
|
|
|
|
|
case ir_binop_borrow: result = nir_usub_borrow(&b, srcs[0], srcs[1]); break;
|
2014-07-10 18:18:17 -07:00
|
|
|
case ir_binop_less:
|
|
|
|
|
if (supports_ints) {
|
2015-11-12 11:18:50 +01:00
|
|
|
if (type_is_float(types[0]))
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_flt(&b, srcs[0], srcs[1]);
|
2014-07-10 18:18:17 -07:00
|
|
|
else if (types[0] == GLSL_TYPE_INT)
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_ilt(&b, srcs[0], srcs[1]);
|
2014-07-10 18:18:17 -07:00
|
|
|
else
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_ult(&b, srcs[0], srcs[1]);
|
2014-07-10 18:18:17 -07:00
|
|
|
} else {
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_slt(&b, srcs[0], srcs[1]);
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case ir_binop_greater:
|
|
|
|
|
if (supports_ints) {
|
2015-11-12 11:18:50 +01:00
|
|
|
if (type_is_float(types[0]))
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_flt(&b, srcs[1], srcs[0]);
|
2014-07-10 18:18:17 -07:00
|
|
|
else if (types[0] == GLSL_TYPE_INT)
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_ilt(&b, srcs[1], srcs[0]);
|
2014-07-10 18:18:17 -07:00
|
|
|
else
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_ult(&b, srcs[1], srcs[0]);
|
2014-07-10 18:18:17 -07:00
|
|
|
} else {
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_slt(&b, srcs[1], srcs[0]);
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case ir_binop_lequal:
|
|
|
|
|
if (supports_ints) {
|
2015-11-12 11:18:50 +01:00
|
|
|
if (type_is_float(types[0]))
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_fge(&b, srcs[1], srcs[0]);
|
2014-07-10 18:18:17 -07:00
|
|
|
else if (types[0] == GLSL_TYPE_INT)
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_ige(&b, srcs[1], srcs[0]);
|
2014-07-10 18:18:17 -07:00
|
|
|
else
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_uge(&b, srcs[1], srcs[0]);
|
2014-07-10 18:18:17 -07:00
|
|
|
} else {
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_slt(&b, srcs[1], srcs[0]);
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case ir_binop_gequal:
|
|
|
|
|
if (supports_ints) {
|
2015-11-12 11:18:50 +01:00
|
|
|
if (type_is_float(types[0]))
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_fge(&b, srcs[0], srcs[1]);
|
2014-07-10 18:18:17 -07:00
|
|
|
else if (types[0] == GLSL_TYPE_INT)
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_ige(&b, srcs[0], srcs[1]);
|
2014-07-10 18:18:17 -07:00
|
|
|
else
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_uge(&b, srcs[0], srcs[1]);
|
2014-07-10 18:18:17 -07:00
|
|
|
} else {
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_slt(&b, srcs[0], srcs[1]);
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case ir_binop_equal:
|
|
|
|
|
if (supports_ints) {
|
2015-11-12 11:18:50 +01:00
|
|
|
if (type_is_float(types[0]))
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_feq(&b, srcs[0], srcs[1]);
|
2014-07-10 18:18:17 -07:00
|
|
|
else
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_ieq(&b, srcs[0], srcs[1]);
|
2014-07-10 18:18:17 -07:00
|
|
|
} else {
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_seq(&b, srcs[0], srcs[1]);
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case ir_binop_nequal:
|
|
|
|
|
if (supports_ints) {
|
2015-11-12 11:18:50 +01:00
|
|
|
if (type_is_float(types[0]))
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_fne(&b, srcs[0], srcs[1]);
|
2014-07-10 18:18:17 -07:00
|
|
|
else
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_ine(&b, srcs[0], srcs[1]);
|
2014-07-10 18:18:17 -07:00
|
|
|
} else {
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_sne(&b, srcs[0], srcs[1]);
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case ir_binop_all_equal:
|
|
|
|
|
if (supports_ints) {
|
2015-11-12 11:18:50 +01:00
|
|
|
if (type_is_float(types[0])) {
|
2014-07-10 18:18:17 -07:00
|
|
|
switch (ir->operands[0]->type->vector_elements) {
|
2015-10-31 16:31:59 -04:00
|
|
|
case 1: result = nir_feq(&b, srcs[0], srcs[1]); break;
|
|
|
|
|
case 2: result = nir_ball_fequal2(&b, srcs[0], srcs[1]); break;
|
|
|
|
|
case 3: result = nir_ball_fequal3(&b, srcs[0], srcs[1]); break;
|
|
|
|
|
case 4: result = nir_ball_fequal4(&b, srcs[0], srcs[1]); break;
|
2014-07-10 18:18:17 -07:00
|
|
|
default:
|
2015-01-21 20:22:18 -08:00
|
|
|
unreachable("not reached");
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
switch (ir->operands[0]->type->vector_elements) {
|
2015-10-31 16:31:59 -04:00
|
|
|
case 1: result = nir_ieq(&b, srcs[0], srcs[1]); break;
|
|
|
|
|
case 2: result = nir_ball_iequal2(&b, srcs[0], srcs[1]); break;
|
|
|
|
|
case 3: result = nir_ball_iequal3(&b, srcs[0], srcs[1]); break;
|
|
|
|
|
case 4: result = nir_ball_iequal4(&b, srcs[0], srcs[1]); break;
|
2014-07-10 18:18:17 -07:00
|
|
|
default:
|
2015-01-21 20:22:18 -08:00
|
|
|
unreachable("not reached");
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
switch (ir->operands[0]->type->vector_elements) {
|
2015-10-31 16:31:59 -04:00
|
|
|
case 1: result = nir_seq(&b, srcs[0], srcs[1]); break;
|
|
|
|
|
case 2: result = nir_fall_equal2(&b, srcs[0], srcs[1]); break;
|
|
|
|
|
case 3: result = nir_fall_equal3(&b, srcs[0], srcs[1]); break;
|
|
|
|
|
case 4: result = nir_fall_equal4(&b, srcs[0], srcs[1]); break;
|
2014-07-10 18:18:17 -07:00
|
|
|
default:
|
2015-01-21 20:22:18 -08:00
|
|
|
unreachable("not reached");
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case ir_binop_any_nequal:
|
|
|
|
|
if (supports_ints) {
|
2015-11-12 11:18:50 +01:00
|
|
|
if (type_is_float(types[0])) {
|
2014-07-10 18:18:17 -07:00
|
|
|
switch (ir->operands[0]->type->vector_elements) {
|
2015-10-31 16:31:59 -04:00
|
|
|
case 1: result = nir_fne(&b, srcs[0], srcs[1]); break;
|
|
|
|
|
case 2: result = nir_bany_fnequal2(&b, srcs[0], srcs[1]); break;
|
|
|
|
|
case 3: result = nir_bany_fnequal3(&b, srcs[0], srcs[1]); break;
|
|
|
|
|
case 4: result = nir_bany_fnequal4(&b, srcs[0], srcs[1]); break;
|
2014-07-10 18:18:17 -07:00
|
|
|
default:
|
2015-01-21 20:22:18 -08:00
|
|
|
unreachable("not reached");
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
switch (ir->operands[0]->type->vector_elements) {
|
2015-10-31 16:31:59 -04:00
|
|
|
case 1: result = nir_ine(&b, srcs[0], srcs[1]); break;
|
|
|
|
|
case 2: result = nir_bany_inequal2(&b, srcs[0], srcs[1]); break;
|
|
|
|
|
case 3: result = nir_bany_inequal3(&b, srcs[0], srcs[1]); break;
|
|
|
|
|
case 4: result = nir_bany_inequal4(&b, srcs[0], srcs[1]); break;
|
2014-07-10 18:18:17 -07:00
|
|
|
default:
|
2015-01-21 20:22:18 -08:00
|
|
|
unreachable("not reached");
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
switch (ir->operands[0]->type->vector_elements) {
|
2015-10-31 16:31:59 -04:00
|
|
|
case 1: result = nir_sne(&b, srcs[0], srcs[1]); break;
|
|
|
|
|
case 2: result = nir_fany_nequal2(&b, srcs[0], srcs[1]); break;
|
|
|
|
|
case 3: result = nir_fany_nequal3(&b, srcs[0], srcs[1]); break;
|
|
|
|
|
case 4: result = nir_fany_nequal4(&b, srcs[0], srcs[1]); break;
|
2014-07-10 18:18:17 -07:00
|
|
|
default:
|
2015-01-21 20:22:18 -08:00
|
|
|
unreachable("not reached");
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case ir_binop_dot:
|
|
|
|
|
switch (ir->operands[0]->type->vector_elements) {
|
2015-10-31 16:31:59 -04:00
|
|
|
case 2: result = nir_fdot2(&b, srcs[0], srcs[1]); break;
|
|
|
|
|
case 3: result = nir_fdot3(&b, srcs[0], srcs[1]); break;
|
|
|
|
|
case 4: result = nir_fdot4(&b, srcs[0], srcs[1]); break;
|
2014-07-10 18:18:17 -07:00
|
|
|
default:
|
2015-01-21 20:22:18 -08:00
|
|
|
unreachable("not reached");
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2015-10-31 16:31:59 -04:00
|
|
|
case ir_binop_ldexp: result = nir_ldexp(&b, srcs[0], srcs[1]); break;
|
|
|
|
|
case ir_triop_fma:
|
|
|
|
|
result = nir_ffma(&b, srcs[0], srcs[1], srcs[2]);
|
|
|
|
|
break;
|
2014-07-10 18:18:17 -07:00
|
|
|
case ir_triop_lrp:
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_flrp(&b, srcs[0], srcs[1], srcs[2]);
|
2014-07-10 18:18:17 -07:00
|
|
|
break;
|
|
|
|
|
case ir_triop_csel:
|
|
|
|
|
if (supports_ints)
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_bcsel(&b, srcs[0], srcs[1], srcs[2]);
|
2014-07-10 18:18:17 -07:00
|
|
|
else
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_fcsel(&b, srcs[0], srcs[1], srcs[2]);
|
2014-07-10 18:18:17 -07:00
|
|
|
break;
|
|
|
|
|
case ir_triop_bitfield_extract:
|
2015-10-31 16:31:59 -04:00
|
|
|
result = (out_type == GLSL_TYPE_INT) ?
|
|
|
|
|
nir_ibitfield_extract(&b, srcs[0], srcs[1], srcs[2]) :
|
|
|
|
|
nir_ubitfield_extract(&b, srcs[0], srcs[1], srcs[2]);
|
2014-07-10 18:18:17 -07:00
|
|
|
break;
|
|
|
|
|
case ir_quadop_bitfield_insert:
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_bitfield_insert(&b, srcs[0], srcs[1], srcs[2], srcs[3]);
|
2014-07-10 18:18:17 -07:00
|
|
|
break;
|
|
|
|
|
case ir_quadop_vector:
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_vec(&b, srcs, ir->type->vector_elements);
|
2014-07-10 18:18:17 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
2015-01-21 20:22:18 -08:00
|
|
|
unreachable("not reached");
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
nir_visitor::visit(ir_swizzle *ir)
|
|
|
|
|
{
|
|
|
|
|
unsigned swizzle[4] = { ir->mask.x, ir->mask.y, ir->mask.z, ir->mask.w };
|
2015-10-31 16:31:59 -04:00
|
|
|
result = nir_swizzle(&b, evaluate_rvalue(ir->val), swizzle,
|
|
|
|
|
ir->type->vector_elements, !supports_ints);
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
nir_visitor::visit(ir_texture *ir)
|
|
|
|
|
{
|
|
|
|
|
unsigned num_srcs;
|
|
|
|
|
nir_texop op;
|
|
|
|
|
switch (ir->op) {
|
|
|
|
|
case ir_tex:
|
|
|
|
|
op = nir_texop_tex;
|
|
|
|
|
num_srcs = 1; /* coordinate */
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_txb:
|
|
|
|
|
case ir_txl:
|
|
|
|
|
op = (ir->op == ir_txb) ? nir_texop_txb : nir_texop_txl;
|
|
|
|
|
num_srcs = 2; /* coordinate, bias/lod */
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_txd:
|
|
|
|
|
op = nir_texop_txd; /* coordinate, dPdx, dPdy */
|
|
|
|
|
num_srcs = 3;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_txf:
|
|
|
|
|
op = nir_texop_txf;
|
|
|
|
|
if (ir->lod_info.lod != NULL)
|
|
|
|
|
num_srcs = 2; /* coordinate, lod */
|
|
|
|
|
else
|
|
|
|
|
num_srcs = 1; /* coordinate */
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_txf_ms:
|
|
|
|
|
op = nir_texop_txf_ms;
|
|
|
|
|
num_srcs = 2; /* coordinate, sample_index */
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_txs:
|
|
|
|
|
op = nir_texop_txs;
|
|
|
|
|
if (ir->lod_info.lod != NULL)
|
|
|
|
|
num_srcs = 1; /* lod */
|
|
|
|
|
else
|
|
|
|
|
num_srcs = 0;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_lod:
|
|
|
|
|
op = nir_texop_lod;
|
|
|
|
|
num_srcs = 1; /* coordinate */
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_tg4:
|
|
|
|
|
op = nir_texop_tg4;
|
|
|
|
|
num_srcs = 1; /* coordinate */
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_query_levels:
|
|
|
|
|
op = nir_texop_query_levels;
|
|
|
|
|
num_srcs = 0;
|
|
|
|
|
break;
|
|
|
|
|
|
2015-08-27 23:05:03 -04:00
|
|
|
case ir_texture_samples:
|
|
|
|
|
op = nir_texop_texture_samples;
|
|
|
|
|
num_srcs = 0;
|
|
|
|
|
break;
|
|
|
|
|
|
2015-11-17 17:09:09 -08:00
|
|
|
case ir_samples_identical:
|
|
|
|
|
op = nir_texop_samples_identical;
|
|
|
|
|
num_srcs = 1; /* coordinate */
|
|
|
|
|
break;
|
|
|
|
|
|
2014-07-10 18:18:17 -07:00
|
|
|
default:
|
2015-01-21 20:22:18 -08:00
|
|
|
unreachable("not reached");
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ir->projector != NULL)
|
|
|
|
|
num_srcs++;
|
|
|
|
|
if (ir->shadow_comparitor != NULL)
|
|
|
|
|
num_srcs++;
|
2016-02-09 14:51:28 -08:00
|
|
|
if (ir->offset != NULL)
|
2014-07-10 18:18:17 -07:00
|
|
|
num_srcs++;
|
|
|
|
|
|
|
|
|
|
nir_tex_instr *instr = nir_tex_instr_create(this->shader, num_srcs);
|
|
|
|
|
|
|
|
|
|
instr->op = op;
|
|
|
|
|
instr->sampler_dim =
|
|
|
|
|
(glsl_sampler_dim) ir->sampler->type->sampler_dimensionality;
|
|
|
|
|
instr->is_array = ir->sampler->type->sampler_array;
|
|
|
|
|
instr->is_shadow = ir->sampler->type->sampler_shadow;
|
|
|
|
|
if (instr->is_shadow)
|
|
|
|
|
instr->is_new_style_shadow = (ir->type->vector_elements == 1);
|
|
|
|
|
switch (ir->type->base_type) {
|
|
|
|
|
case GLSL_TYPE_FLOAT:
|
|
|
|
|
instr->dest_type = nir_type_float;
|
|
|
|
|
break;
|
|
|
|
|
case GLSL_TYPE_INT:
|
|
|
|
|
instr->dest_type = nir_type_int;
|
|
|
|
|
break;
|
2015-11-17 17:09:09 -08:00
|
|
|
case GLSL_TYPE_BOOL:
|
2014-07-10 18:18:17 -07:00
|
|
|
case GLSL_TYPE_UINT:
|
2015-05-15 09:14:47 -07:00
|
|
|
instr->dest_type = nir_type_uint;
|
2014-07-10 18:18:17 -07:00
|
|
|
break;
|
|
|
|
|
default:
|
2015-02-10 11:21:47 -08:00
|
|
|
unreachable("not reached");
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
2016-02-06 09:05:10 -08:00
|
|
|
instr->texture = evaluate_deref(&instr->instr, ir->sampler);
|
2014-07-10 18:18:17 -07:00
|
|
|
|
|
|
|
|
unsigned src_number = 0;
|
|
|
|
|
|
|
|
|
|
if (ir->coordinate != NULL) {
|
|
|
|
|
instr->coord_components = ir->coordinate->type->vector_elements;
|
2015-10-30 23:32:50 -04:00
|
|
|
instr->src[src_number].src =
|
|
|
|
|
nir_src_for_ssa(evaluate_rvalue(ir->coordinate));
|
2015-01-09 20:01:13 -08:00
|
|
|
instr->src[src_number].src_type = nir_tex_src_coord;
|
2014-07-10 18:18:17 -07:00
|
|
|
src_number++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ir->projector != NULL) {
|
2015-10-30 23:32:50 -04:00
|
|
|
instr->src[src_number].src =
|
|
|
|
|
nir_src_for_ssa(evaluate_rvalue(ir->projector));
|
2015-01-09 20:01:13 -08:00
|
|
|
instr->src[src_number].src_type = nir_tex_src_projector;
|
2014-07-10 18:18:17 -07:00
|
|
|
src_number++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ir->shadow_comparitor != NULL) {
|
2015-10-30 23:32:50 -04:00
|
|
|
instr->src[src_number].src =
|
|
|
|
|
nir_src_for_ssa(evaluate_rvalue(ir->shadow_comparitor));
|
2015-01-09 20:01:13 -08:00
|
|
|
instr->src[src_number].src_type = nir_tex_src_comparitor;
|
2014-07-10 18:18:17 -07:00
|
|
|
src_number++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ir->offset != NULL) {
|
|
|
|
|
/* we don't support multiple offsets yet */
|
|
|
|
|
assert(ir->offset->type->is_vector() || ir->offset->type->is_scalar());
|
|
|
|
|
|
2016-02-09 14:51:28 -08:00
|
|
|
instr->src[src_number].src =
|
|
|
|
|
nir_src_for_ssa(evaluate_rvalue(ir->offset));
|
|
|
|
|
instr->src[src_number].src_type = nir_tex_src_offset;
|
|
|
|
|
src_number++;
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (ir->op) {
|
|
|
|
|
case ir_txb:
|
2015-10-30 23:32:50 -04:00
|
|
|
instr->src[src_number].src =
|
|
|
|
|
nir_src_for_ssa(evaluate_rvalue(ir->lod_info.bias));
|
2015-01-09 20:01:13 -08:00
|
|
|
instr->src[src_number].src_type = nir_tex_src_bias;
|
2014-07-10 18:18:17 -07:00
|
|
|
src_number++;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_txl:
|
|
|
|
|
case ir_txf:
|
|
|
|
|
case ir_txs:
|
|
|
|
|
if (ir->lod_info.lod != NULL) {
|
2015-10-30 23:32:50 -04:00
|
|
|
instr->src[src_number].src =
|
|
|
|
|
nir_src_for_ssa(evaluate_rvalue(ir->lod_info.lod));
|
2015-01-09 20:01:13 -08:00
|
|
|
instr->src[src_number].src_type = nir_tex_src_lod;
|
2014-07-10 18:18:17 -07:00
|
|
|
src_number++;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_txd:
|
2015-10-30 23:32:50 -04:00
|
|
|
instr->src[src_number].src =
|
|
|
|
|
nir_src_for_ssa(evaluate_rvalue(ir->lod_info.grad.dPdx));
|
2015-01-09 20:01:13 -08:00
|
|
|
instr->src[src_number].src_type = nir_tex_src_ddx;
|
2014-07-10 18:18:17 -07:00
|
|
|
src_number++;
|
2015-10-30 23:32:50 -04:00
|
|
|
instr->src[src_number].src =
|
|
|
|
|
nir_src_for_ssa(evaluate_rvalue(ir->lod_info.grad.dPdy));
|
2015-01-09 20:01:13 -08:00
|
|
|
instr->src[src_number].src_type = nir_tex_src_ddy;
|
2014-07-10 18:18:17 -07:00
|
|
|
src_number++;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_txf_ms:
|
2015-10-30 23:32:50 -04:00
|
|
|
instr->src[src_number].src =
|
|
|
|
|
nir_src_for_ssa(evaluate_rvalue(ir->lod_info.sample_index));
|
2015-01-09 20:01:13 -08:00
|
|
|
instr->src[src_number].src_type = nir_tex_src_ms_index;
|
2014-07-10 18:18:17 -07:00
|
|
|
src_number++;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ir_tg4:
|
|
|
|
|
instr->component = ir->lod_info.component->as_constant()->value.u[0];
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert(src_number == num_srcs);
|
|
|
|
|
|
2016-05-11 15:05:09 -04:00
|
|
|
unsigned bit_size = glsl_get_bit_size(ir->type);
|
2016-04-04 10:16:11 +02:00
|
|
|
add_instr(&instr->instr, nir_tex_instr_dest_size(instr), bit_size);
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
nir_visitor::visit(ir_constant *ir)
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* We don't know if this variable is an an array or struct that gets
|
2014-12-19 14:55:45 -08:00
|
|
|
* dereferenced, so do the safe thing an make it a variable with a
|
|
|
|
|
* constant initializer and return a dereference.
|
2014-07-10 18:18:17 -07:00
|
|
|
*/
|
|
|
|
|
|
2015-10-09 07:05:11 -07:00
|
|
|
nir_variable *var =
|
|
|
|
|
nir_local_variable_create(this->impl, ir->type, "const_temp");
|
2014-07-10 18:18:17 -07:00
|
|
|
var->data.read_only = true;
|
|
|
|
|
var->constant_initializer = constant_copy(ir, var);
|
|
|
|
|
|
|
|
|
|
this->deref_head = nir_deref_var_create(this->shader, var);
|
|
|
|
|
this->deref_tail = &this->deref_head->deref;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
nir_visitor::visit(ir_dereference_variable *ir)
|
|
|
|
|
{
|
|
|
|
|
struct hash_entry *entry =
|
|
|
|
|
_mesa_hash_table_search(this->var_table, ir->var);
|
|
|
|
|
assert(entry);
|
|
|
|
|
nir_variable *var = (nir_variable *) entry->data;
|
|
|
|
|
|
|
|
|
|
nir_deref_var *deref = nir_deref_var_create(this->shader, var);
|
|
|
|
|
this->deref_head = deref;
|
|
|
|
|
this->deref_tail = &deref->deref;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
nir_visitor::visit(ir_dereference_record *ir)
|
|
|
|
|
{
|
|
|
|
|
ir->record->accept(this);
|
|
|
|
|
|
2014-11-25 21:36:25 -08:00
|
|
|
int field_index = this->deref_tail->type->field_index(ir->field);
|
|
|
|
|
assert(field_index >= 0);
|
|
|
|
|
|
2015-04-02 21:24:38 -07:00
|
|
|
nir_deref_struct *deref = nir_deref_struct_create(this->deref_tail, field_index);
|
2014-07-10 18:18:17 -07:00
|
|
|
deref->deref.type = ir->type;
|
|
|
|
|
this->deref_tail->child = &deref->deref;
|
|
|
|
|
this->deref_tail = &deref->deref;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
nir_visitor::visit(ir_dereference_array *ir)
|
|
|
|
|
{
|
|
|
|
|
nir_deref_array *deref = nir_deref_array_create(this->shader);
|
|
|
|
|
deref->deref.type = ir->type;
|
|
|
|
|
|
|
|
|
|
ir_constant *const_index = ir->array_index->as_constant();
|
|
|
|
|
if (const_index != NULL) {
|
2014-11-19 12:53:08 -08:00
|
|
|
deref->deref_array_type = nir_deref_array_type_direct;
|
2014-07-10 18:18:17 -07:00
|
|
|
deref->base_offset = const_index->value.u[0];
|
|
|
|
|
} else {
|
2014-11-19 12:53:08 -08:00
|
|
|
deref->deref_array_type = nir_deref_array_type_indirect;
|
2015-10-30 23:32:50 -04:00
|
|
|
deref->indirect =
|
|
|
|
|
nir_src_for_ssa(evaluate_rvalue(ir->array_index));
|
2014-07-10 18:18:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ir->array->accept(this);
|
|
|
|
|
|
|
|
|
|
this->deref_tail->child = &deref->deref;
|
2015-04-02 21:24:38 -07:00
|
|
|
ralloc_steal(this->deref_tail, deref);
|
2014-07-10 18:18:17 -07:00
|
|
|
this->deref_tail = &deref->deref;
|
|
|
|
|
}
|
2014-09-07 19:24:15 +12:00
|
|
|
|
|
|
|
|
void
|
2015-08-25 18:19:12 +01:00
|
|
|
nir_visitor::visit(ir_barrier *)
|
2014-09-07 19:24:15 +12:00
|
|
|
{
|
2015-03-13 12:03:15 -07:00
|
|
|
nir_intrinsic_instr *instr =
|
|
|
|
|
nir_intrinsic_instr_create(this->shader, nir_intrinsic_barrier);
|
2015-10-31 16:31:59 -04:00
|
|
|
nir_builder_instr_insert(&b, &instr->instr);
|
2014-09-07 19:24:15 +12:00
|
|
|
}
|