summaryrefslogtreecommitdiff
path: root/hir_field_selection.cpp
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2010-03-24 15:25:23 -0700
committerIan Romanick <ian.d.romanick@intel.com>2010-03-24 15:25:23 -0700
commitafbe26fd61abb3c28c1b0165427b77fd2fed355d (patch)
tree8df090bfc03da8f36af270190e7bb044f5fa0705 /hir_field_selection.cpp
parent2f4240fb0276bd18b86adadd41664ca0c9f10da6 (diff)
Use ir_dereference::set_swizzle
Diffstat (limited to 'hir_field_selection.cpp')
-rw-r--r--hir_field_selection.cpp25
1 files changed, 3 insertions, 22 deletions
diff --git a/hir_field_selection.cpp b/hir_field_selection.cpp
index 8bef094c60..554fdd30d5 100644
--- a/hir_field_selection.cpp
+++ b/hir_field_selection.cpp
@@ -34,7 +34,7 @@
#define I 13
static bool
-generate_swizzle(const char *str, struct ir_swizzle_mask *swiz,
+generate_swizzle(const char *str, ir_dereference *deref,
unsigned vector_length)
{
/* For each possible swizzle character, this table encodes the value in
@@ -75,8 +75,6 @@ generate_swizzle(const char *str, struct ir_swizzle_mask *swiz,
int swiz_idx[4] = { 0, 0, 0, 0 };
unsigned base;
- unsigned dup_mask = 0;
- unsigned seen_mask = 0;
unsigned i;
@@ -90,8 +88,6 @@ generate_swizzle(const char *str, struct ir_swizzle_mask *swiz,
for (i = 0; (i < 4) && (str[i] != '\0'); i++) {
- unsigned bit;
-
/* Validate the next character, and, as described above, convert it to a
* swizzle index.
*/
@@ -101,26 +97,12 @@ generate_swizzle(const char *str, struct ir_swizzle_mask *swiz,
swiz_idx[i] = idx_map[str[0] - 'a'] - base;
if ((swiz_idx[i] < 0) || (swiz_idx[i] >= (int) vector_length))
return false;
-
-
- /* Track a bit-mask of the swizzle index values that have been seen. If
- * a value is seen more than once, set the "duplicate" flag.
- */
- bit = (1U << swiz_idx[i]);
- dup_mask |= seen_mask & bit;
- seen_mask |= bit;
}
if (str[i] != '\0')
return false;
- swiz->x = swiz_idx[0];
- swiz->y = swiz_idx[1];
- swiz->z = swiz_idx[2];
- swiz->w = swiz_idx[3];
- swiz->num_components = i;
- swiz->has_duplicates = (dup_mask != 0);
-
+ deref->set_swizzle(swiz_idx[0], swiz_idx[1], swiz_idx[2], swiz_idx[3], i);
return true;
}
@@ -158,8 +140,7 @@ _mesa_ast_field_selection_to_hir(const ast_expression *expr,
loc = expr->get_location();
if (op->type->is_vector()) {
if (generate_swizzle(expr->primary_expression.identifier,
- & deref->selector.swizzle,
- op->type->vector_elements)) {
+ deref, op->type->vector_elements)) {
/* Based on the number of elements in the swizzle and the base type
* (i.e., float, int, unsigned, or bool) of the vector being swizzled,
* generate the type of the resulting value.