• Home
  • Raw
  • Download

Lines Matching refs:ir_variable

1016    ir_variable *in_var(const glsl_type *type, const char *name);
1017 ir_variable *out_var(const glsl_type *type, const char *name);
1024 ir_dereference_variable *var_ref(ir_variable *var);
1025 ir_dereference_array *array_ref(ir_variable *var, int i);
1026 ir_swizzle *matrix_elt(ir_variable *var, int col, int row);
1027 ir_dereference_record *record_ref(ir_variable *var, const char *field);
1029 ir_expression *asin_expr(ir_variable *x, float p0, float p1);
1030 void do_atan(ir_factory &body, const glsl_type *type, ir_variable *res, operand y_over_x);
1038 ir_call *call(ir_function *f, ir_variable *ret, exec_list params);
5644 ir_variable *
5647 return new(mem_ctx) ir_variable(type, name, ir_var_function_in); in in_var()
5650 ir_variable *
5653 return new(mem_ctx) ir_variable(type, name, ir_var_function_out); in out_var()
5695 builtin_builder::var_ref(ir_variable *var) in var_ref()
5701 builtin_builder::array_ref(ir_variable *var, int idx) in array_ref()
5708 builtin_builder::matrix_elt(ir_variable *var, int column, int row) in matrix_elt()
5714 builtin_builder::record_ref(ir_variable *var, const char *field) in record_ref()
5737 plist.push_tail(va_arg(ap, ir_variable *)); in new_sig()
5762 ir_variable *x = in_var(param_type, "x"); in unop()
5790 ir_variable *x = in_var(param0_type, "x"); in binop()
5791 ir_variable *y = in_var(param1_type, "y"); in binop()
5818 ir_variable *degrees = in_var(type, "degrees"); in _radians()
5827 ir_variable *radians = in_var(type, "radians"); in _degrees()
5839 ir_variable *theta = in_var(type, "theta"); in UNOP()
5846 builtin_builder::asin_expr(ir_variable *x, float p0, float p1) in asin_expr()
5868 builtin_builder::call(ir_function *f, ir_variable *ret, exec_list params) in call()
5878 ir_variable *var = ir->as_variable(); in call()
5898 ir_variable *x = in_var(type, "x"); in _asin()
5909 ir_variable *x = in_var(type, "x"); in _acos()
5920 ir_variable *x = in_var(type, "x"); in _sinh()
5932 ir_variable *x = in_var(type, "x"); in _cosh()
5944 ir_variable *x = in_var(type, "x"); in _tanh()
5952 ir_variable *t = body.make_temp(type, "tmp"); in _tanh()
5965 ir_variable *x = in_var(type, "x"); in _asinh()
5976 ir_variable *x = in_var(type, "x"); in _acosh()
5986 ir_variable *x = in_var(type, "x"); in _atanh()
6035 ir_variable *x = in_var(type, "x"); in _modf()
6036 ir_variable *i = out_var(type, "i"); in _modf()
6039 ir_variable *t = body.make_temp(type, "t"); in _modf()
6065 ir_variable *x = in_var(val_type, "x"); in _clamp()
6066 ir_variable *minVal = in_var(bound_type, "minVal"); in _clamp()
6067 ir_variable *maxVal = in_var(bound_type, "maxVal"); in _clamp()
6078 ir_variable *x = in_var(val_type, "x"); in _mix_lrp()
6079 ir_variable *y = in_var(val_type, "y"); in _mix_lrp()
6080 ir_variable *a = in_var(blend_type, "a"); in _mix_lrp()
6093 ir_variable *x = in_var(val_type, "x"); in _mix_sel()
6094 ir_variable *y = in_var(val_type, "y"); in _mix_sel()
6095 ir_variable *a = in_var(blend_type, "a"); in _mix_sel()
6113 ir_variable *edge = in_var(edge_type, "edge"); in _step()
6114 ir_variable *x = in_var(x_type, "x"); in _step()
6117 ir_variable *t = body.make_temp(x_type, "t"); in _step()
6152 ir_variable *edge0 = in_var(edge_type, "edge0"); in _smoothstep()
6153 ir_variable *edge1 = in_var(edge_type, "edge1"); in _smoothstep()
6154 ir_variable *x = in_var(x_type, "x"); in _smoothstep()
6164 ir_variable *t = body.make_temp(x_type, "t"); in _smoothstep()
6176 ir_variable *x = in_var(type, "x"); in _isnan()
6187 ir_variable *x = in_var(type, "x"); in _isinf()
6218 ir_variable *x = in_var(type, "x"); in _floatBitsToInt()
6227 ir_variable *x = in_var(type, "x"); in _floatBitsToUint()
6236 ir_variable *x = in_var(type, "x"); in _intBitsToFloat()
6245 ir_variable *x = in_var(type, "x"); in _uintBitsToFloat()
6254 ir_variable *x = in_var(type, "x"); in _doubleBitsToInt64()
6263 ir_variable *x = in_var(type, "x"); in _doubleBitsToUint64()
6272 ir_variable *x = in_var(type, "x"); in _int64BitsToDouble()
6281 ir_variable *x = in_var(type, "x"); in _uint64BitsToDouble()
6290 ir_variable *v = in_var(glsl_type::vec2_type, "v"); in _packUnorm2x16()
6299 ir_variable *v = in_var(glsl_type::vec2_type, "v"); in _packSnorm2x16()
6308 ir_variable *v = in_var(glsl_type::vec4_type, "v"); in _packUnorm4x8()
6317 ir_variable *v = in_var(glsl_type::vec4_type, "v"); in _packSnorm4x8()
6326 ir_variable *p = in_var(glsl_type::uint_type, "p"); in _unpackUnorm2x16()
6335 ir_variable *p = in_var(glsl_type::uint_type, "p"); in _unpackSnorm2x16()
6345 ir_variable *p = in_var(glsl_type::uint_type, "p"); in _unpackUnorm4x8()
6354 ir_variable *p = in_var(glsl_type::uint_type, "p"); in _unpackSnorm4x8()
6363 ir_variable *v = in_var(glsl_type::vec2_type, "v"); in _packHalf2x16()
6372 ir_variable *p = in_var(glsl_type::uint_type, "p"); in _unpackHalf2x16()
6381 ir_variable *v = in_var(glsl_type::uvec2_type, "v"); in _packDouble2x32()
6390 ir_variable *p = in_var(glsl_type::double_type, "p"); in _unpackDouble2x32()
6399 ir_variable *v = in_var(glsl_type::ivec2_type, "v"); in _packInt2x32()
6408 ir_variable *p = in_var(glsl_type::int64_t_type, "p"); in _unpackInt2x32()
6417 ir_variable *v = in_var(glsl_type::uvec2_type, "v"); in _packUint2x32()
6426 ir_variable *p = in_var(glsl_type::uint64_t_type, "p"); in _unpackUint2x32()
6435 ir_variable *x = in_var(type, "x"); in _length()
6446 ir_variable *p0 = in_var(type, "p0"); in _distance()
6447 ir_variable *p1 = in_var(type, "p1"); in _distance()
6453 ir_variable *p = body.make_temp(type, "p"); in _distance()
6474 ir_variable *a = in_var(type, "a"); in _cross()
6475 ir_variable *b = in_var(type, "b"); in _cross()
6490 ir_variable *x = in_var(type, "x"); in _normalize()
6517 ir_variable *N = in_var(type, "N"); in _faceforward()
6518 ir_variable *I = in_var(type, "I"); in _faceforward()
6519 ir_variable *Nref = in_var(type, "Nref"); in _faceforward()
6531 ir_variable *I = in_var(type, "I"); in _reflect()
6532 ir_variable *N = in_var(type, "N"); in _reflect()
6544 ir_variable *I = in_var(type, "I"); in _refract()
6545 ir_variable *N = in_var(type, "N"); in _refract()
6546 ir_variable *eta = in_var(type->get_base_type(), "eta"); in _refract()
6549 ir_variable *n_dot_i = body.make_temp(type->get_base_type(), "n_dot_i"); in _refract()
6559 ir_variable *k = body.make_temp(type->get_base_type(), "k"); in _refract()
6574 ir_variable *x = in_var(type, "x"); in _matrixCompMult()
6575 ir_variable *y = in_var(type, "y"); in _matrixCompMult()
6578 ir_variable *z = body.make_temp(type, "z"); in _matrixCompMult()
6590 ir_variable *c; in _outerProduct()
6591 ir_variable *r; in _outerProduct()
6602 ir_variable *m = body.make_temp(type, "m"); in _outerProduct()
6619 ir_variable *m = in_var(orig_type, "m"); in _transpose()
6622 ir_variable *t = body.make_temp(transpose_type, "t"); in _transpose()
6638 ir_variable *m = in_var(type, "m"); in _determinant_mat2()
6650 ir_variable *m = in_var(type, "m"); in _determinant_mat3()
6675 ir_variable *m = in_var(type, "m"); in _determinant_mat4()
6679 ir_variable *SubFactor00 = body.make_temp(btype, "SubFactor00"); in _determinant_mat4()
6680 ir_variable *SubFactor01 = body.make_temp(btype, "SubFactor01"); in _determinant_mat4()
6681 ir_variable *SubFactor02 = body.make_temp(btype, "SubFactor02"); in _determinant_mat4()
6682 ir_variable *SubFactor03 = body.make_temp(btype, "SubFactor03"); in _determinant_mat4()
6683 ir_variable *SubFactor04 = body.make_temp(btype, "SubFactor04"); in _determinant_mat4()
6684 ir_variable *SubFactor05 = body.make_temp(btype, "SubFactor05"); in _determinant_mat4()
6685 ir_variable *SubFactor06 = body.make_temp(btype, "SubFactor06"); in _determinant_mat4()
6686 ir_variable *SubFactor07 = body.make_temp(btype, "SubFactor07"); in _determinant_mat4()
6687 ir_variable *SubFactor08 = body.make_temp(btype, "SubFactor08"); in _determinant_mat4()
6688 ir_variable *SubFactor09 = body.make_temp(btype, "SubFactor09"); in _determinant_mat4()
6689 ir_variable *SubFactor10 = body.make_temp(btype, "SubFactor10"); in _determinant_mat4()
6690 ir_variable *SubFactor11 = body.make_temp(btype, "SubFactor11"); in _determinant_mat4()
6691 ir_variable *SubFactor12 = body.make_temp(btype, "SubFactor12"); in _determinant_mat4()
6692 ir_variable *SubFactor13 = body.make_temp(btype, "SubFactor13"); in _determinant_mat4()
6693 ir_variable *SubFactor14 = body.make_temp(btype, "SubFactor14"); in _determinant_mat4()
6694 ir_variable *SubFactor15 = body.make_temp(btype, "SubFactor15"); in _determinant_mat4()
6695 ir_variable *SubFactor16 = body.make_temp(btype, "SubFactor16"); in _determinant_mat4()
6696 ir_variable *SubFactor17 = body.make_temp(btype, "SubFactor17"); in _determinant_mat4()
6697 ir_variable *SubFactor18 = body.make_temp(btype, "SubFactor18"); in _determinant_mat4()
6719ir_variable *adj_0 = body.make_temp(btype == glsl_type::float_type ? glsl_type::vec4_type : glsl_t… in _determinant_mat4()
6750 ir_variable *m = in_var(type, "m"); in _inverse_mat2()
6753 ir_variable *adj = body.make_temp(type, "adj"); in _inverse_mat2()
6770 ir_variable *m = in_var(type, "m"); in _inverse_mat3()
6774 ir_variable *f11_22_21_12 = body.make_temp(btype, "f11_22_21_12"); in _inverse_mat3()
6775 ir_variable *f10_22_20_12 = body.make_temp(btype, "f10_22_20_12"); in _inverse_mat3()
6776 ir_variable *f10_21_20_11 = body.make_temp(btype, "f10_21_20_11"); in _inverse_mat3()
6788 ir_variable *adj = body.make_temp(type, "adj"); in _inverse_mat3()
6832 ir_variable *m = in_var(type, "m"); in _inverse_mat4()
6836 ir_variable *SubFactor00 = body.make_temp(btype, "SubFactor00"); in _inverse_mat4()
6837 ir_variable *SubFactor01 = body.make_temp(btype, "SubFactor01"); in _inverse_mat4()
6838 ir_variable *SubFactor02 = body.make_temp(btype, "SubFactor02"); in _inverse_mat4()
6839 ir_variable *SubFactor03 = body.make_temp(btype, "SubFactor03"); in _inverse_mat4()
6840 ir_variable *SubFactor04 = body.make_temp(btype, "SubFactor04"); in _inverse_mat4()
6841 ir_variable *SubFactor05 = body.make_temp(btype, "SubFactor05"); in _inverse_mat4()
6842 ir_variable *SubFactor06 = body.make_temp(btype, "SubFactor06"); in _inverse_mat4()
6843 ir_variable *SubFactor07 = body.make_temp(btype, "SubFactor07"); in _inverse_mat4()
6844 ir_variable *SubFactor08 = body.make_temp(btype, "SubFactor08"); in _inverse_mat4()
6845 ir_variable *SubFactor09 = body.make_temp(btype, "SubFactor09"); in _inverse_mat4()
6846 ir_variable *SubFactor10 = body.make_temp(btype, "SubFactor10"); in _inverse_mat4()
6847 ir_variable *SubFactor11 = body.make_temp(btype, "SubFactor11"); in _inverse_mat4()
6848 ir_variable *SubFactor12 = body.make_temp(btype, "SubFactor12"); in _inverse_mat4()
6849 ir_variable *SubFactor13 = body.make_temp(btype, "SubFactor13"); in _inverse_mat4()
6850 ir_variable *SubFactor14 = body.make_temp(btype, "SubFactor14"); in _inverse_mat4()
6851 ir_variable *SubFactor15 = body.make_temp(btype, "SubFactor15"); in _inverse_mat4()
6852 ir_variable *SubFactor16 = body.make_temp(btype, "SubFactor16"); in _inverse_mat4()
6853 ir_variable *SubFactor17 = body.make_temp(btype, "SubFactor17"); in _inverse_mat4()
6854 ir_variable *SubFactor18 = body.make_temp(btype, "SubFactor18"); in _inverse_mat4()
6876ir_variable *adj = body.make_temp(btype == glsl_type::float_type ? glsl_type::mat4_type : glsl_typ… in _inverse_mat4()
7026 ir_variable *v = in_var(type, "v"); in _any()
7038 ir_variable *v = in_var(type, "v"); in _all()
7069 ir_variable *s = in_var(sampler_type, "sampler"); in _textureSize()
7077 ir_variable *lod = in_var(glsl_type::int_type, "lod"); in _textureSize()
7093 ir_variable *s = in_var(sampler_type, "sampler"); in _textureSamples()
7106 ir_variable *code = in_var(glsl_type::int_type, "code"); in _is_sparse_texels_resident()
7109 ir_variable *retval = body.make_temp(glsl_type::bool_type, "retval"); in _is_sparse_texels_resident()
7121 ir_variable *code = in_var(glsl_type::int_type, "code"); in _is_sparse_texels_resident_intrinsic()
7135 ir_variable *s = in_var(sampler_type, "sampler"); in _texture()
7136 ir_variable *P = in_var(coord_type, "P"); in _texture()
7165 ir_variable *refz = in_var(glsl_type::float_type, "refz"); in _texture()
7177 ir_variable *lod = in_var(glsl_type::float_type, "lod"); in _texture()
7182 ir_variable *dPdx = in_var(glsl_type::vec(grad_size), "dPdx"); in _texture()
7183 ir_variable *dPdy = in_var(glsl_type::vec(grad_size), "dPdy"); in _texture()
7192 ir_variable *offset = in _texture()
7193 new(mem_ctx) ir_variable(glsl_type::ivec(offset_size), "offset", in _texture()
7200 ir_variable *offsets = in _texture()
7201 new(mem_ctx) ir_variable(glsl_type::get_array_instance(glsl_type::ivec2_type, 4), in _texture()
7208 ir_variable *clamp = in_var(glsl_type::float_type, "lodClamp"); in _texture()
7213 ir_variable *texel = NULL; in _texture()
7221 ir_variable *component = in _texture()
7222 new(mem_ctx) ir_variable(glsl_type::int_type, "comp", ir_var_const_in); in _texture()
7235 ir_variable *bias = in_var(glsl_type::float_type, "bias"); in _texture()
7241 ir_variable *r = body.make_temp(tex->type, "result"); in _texture()
7257 ir_variable *s = in_var(sampler_type, "sampler"); in _textureCubeArrayShadow()
7258 ir_variable *P = in_var(glsl_type::vec4_type, "P"); in _textureCubeArrayShadow()
7259 ir_variable *compare = in_var(glsl_type::float_type, "compare"); in _textureCubeArrayShadow()
7274 ir_variable *lod = in_var(glsl_type::float_type, "lod"); in _textureCubeArrayShadow()
7280 ir_variable *lod_clamp = in_var(glsl_type::float_type, "lodClamp"); in _textureCubeArrayShadow()
7285 ir_variable *texel = NULL; in _textureCubeArrayShadow()
7292 ir_variable *bias = in_var(glsl_type::float_type, "bias"); in _textureCubeArrayShadow()
7298 ir_variable *r = body.make_temp(tex->type, "result"); in _textureCubeArrayShadow()
7316 ir_variable *s = in_var(sampler_type, "sampler"); in _texelFetch()
7317 ir_variable *P = in_var(coord_type, "P"); in _texelFetch()
7328 ir_variable *sample = in_var(glsl_type::int_type, "sample"); in _texelFetch()
7333 ir_variable *lod = in_var(glsl_type::int_type, "lod"); in _texelFetch()
7341 ir_variable *offset = in _texelFetch()
7342 new(mem_ctx) ir_variable(offset_type, "offset", ir_var_const_in); in _texelFetch()
7348 ir_variable *texel = out_var(return_type, "texel"); in _texelFetch()
7351 ir_variable *r = body.make_temp(tex->type, "result"); in _texelFetch()
7382 ir_variable *stream = in _EmitStreamVertex()
7383 new(mem_ctx) ir_variable(stream_type, "stream", ir_var_const_in); in _EmitStreamVertex()
7413 ir_variable *stream = in _EndStreamPrimitive()
7414 new(mem_ctx) ir_variable(stream_type, "stream", ir_var_const_in); in _EndStreamPrimitive()
7437 ir_variable *s = in_var(sampler_type, "sampler"); in _textureQueryLod()
7438 ir_variable *coord = in_var(coord_type, "coord"); in _textureQueryLod()
7455 ir_variable *s = in_var(sampler_type, "sampler"); in _textureQueryLevels()
7472 ir_variable *s = in_var(sampler_type, "sampler"); in _textureSamplesIdentical()
7473 ir_variable *P = in_var(coord_type, "P"); in _textureSamplesIdentical()
7496 ir_variable *p = in_var(type, "p"); in UNOP()
7507 ir_variable *p = in_var(type, "p"); in _fwidthCoarse()
7519 ir_variable *p = in_var(type, "p"); in _fwidthFine()
7544 ir_variable *p = in_var(type, "p"); in _noise1()
7554 ir_variable *p = in_var(type, "p"); in _noise2()
7564 ir_variable *p = in_var(type, "p"); in _noise3()
7574 ir_variable *p = in_var(type, "p"); in _noise4()
7584 ir_variable *value = in_var(type, "value"); in _bitfieldExtract()
7585 ir_variable *offset = in_var(glsl_type::int_type, "offset"); in _bitfieldExtract()
7586 ir_variable *bits = in_var(glsl_type::int_type, "bits"); in _bitfieldExtract()
7604 ir_variable *base = in_var(type, "base"); in _bitfieldInsert()
7605 ir_variable *insert = in_var(type, "insert"); in _bitfieldInsert()
7606 ir_variable *offset = in_var(glsl_type::int_type, "offset"); in _bitfieldInsert()
7607 ir_variable *bits = in_var(glsl_type::int_type, "bits"); in _bitfieldInsert()
7656 ir_variable *a = in_var(type, "a"); in _countTrailingZeros()
7669 ir_variable *a = in_var(type, "a"); in _fma()
7670 ir_variable *b = in_var(type, "b"); in _fma()
7671 ir_variable *c = in_var(type, "c"); in _fma()
7689 ir_variable *x = in_var(x_type, "x"); in _dfrexp()
7690 ir_variable *exponent = out_var(exp_type, "exp"); in _dfrexp()
7702 ir_variable *x = in_var(x_type, "x"); in _frexp()
7703 ir_variable *exponent = out_var(exp_type, "exp"); in _frexp()
7727 ir_variable *is_not_zero = body.make_temp(bvec, "is_not_zero"); in _frexp()
7737 ir_variable *bits = body.make_temp(uvec, "bits"); in _frexp()
7750 ir_variable *x = in_var(type, "x"); in _uaddCarry()
7751 ir_variable *y = in_var(type, "y"); in _uaddCarry()
7752 ir_variable *carry = out_var(type, "carry"); in _uaddCarry()
7771 ir_variable *x = in_var(type, "x"); in _usubBorrow()
7772 ir_variable *y = in_var(type, "y"); in _usubBorrow()
7773 ir_variable *borrow = out_var(type, "borrow"); in _usubBorrow()
7835 ir_variable *x = in_var(type, "x"); in _mulExtended()
7836 ir_variable *y = in_var(type, "y"); in _mulExtended()
7837 ir_variable *msb = out_var(type, "msb"); in _mulExtended()
7838 ir_variable *lsb = out_var(type, "lsb"); in _mulExtended()
7841 ir_variable *unpack_val = body.make_temp(unpack_type, "_unpack_val"); in _mulExtended()
7872 ir_variable *interpolant = in_var(type, "interpolant"); in _interpolateAtCentroid()
7884 ir_variable *interpolant = in_var(type, "interpolant"); in _interpolateAtOffset()
7886 ir_variable *offset = in_var(glsl_type::vec2_type, "offset"); in _interpolateAtOffset()
7897 ir_variable *interpolant = in_var(type, "interpolant"); in _interpolateAtSample()
7899 ir_variable *sample_num = in_var(glsl_type::int_type, "sample_num"); in _interpolateAtSample()
7911 ir_variable *counter = in_var(glsl_type::atomic_uint_type, "counter"); in _atomic_counter_intrinsic()
7920 ir_variable *counter = in_var(glsl_type::atomic_uint_type, "counter"); in _atomic_counter_intrinsic1()
7921 ir_variable *data = in_var(glsl_type::uint_type, "data"); in _atomic_counter_intrinsic1()
7930 ir_variable *counter = in_var(glsl_type::atomic_uint_type, "counter"); in _atomic_counter_intrinsic2()
7931 ir_variable *compare = in_var(glsl_type::uint_type, "compare"); in _atomic_counter_intrinsic2()
7932 ir_variable *data = in_var(glsl_type::uint_type, "data"); in _atomic_counter_intrinsic2()
7942 ir_variable *atomic = in_var(type, "atomic"); in _atomic_intrinsic2()
7943 ir_variable *data = in_var(type, "data"); in _atomic_intrinsic2()
7953 ir_variable *atomic = in_var(type, "atomic"); in _atomic_intrinsic3()
7954 ir_variable *data1 = in_var(type, "data1"); in _atomic_intrinsic3()
7955 ir_variable *data2 = in_var(type, "data2"); in _atomic_intrinsic3()
7964 ir_variable *counter = in_var(glsl_type::atomic_uint_type, "atomic_counter"); in _atomic_counter_op()
7967 ir_variable *retval = body.make_temp(glsl_type::uint_type, "atomic_retval"); in _atomic_counter_op()
7978 ir_variable *counter = in_var(glsl_type::atomic_uint_type, "atomic_counter"); in _atomic_counter_op1()
7979 ir_variable *data = in_var(glsl_type::uint_type, "data"); in _atomic_counter_op1()
7982 ir_variable *retval = body.make_temp(glsl_type::uint_type, "atomic_retval"); in _atomic_counter_op1()
7988 ir_variable *const neg_data = in _atomic_counter_op1()
8019 ir_variable *counter = in_var(glsl_type::atomic_uint_type, "atomic_counter"); in _atomic_counter_op2()
8020 ir_variable *compare = in_var(glsl_type::uint_type, "compare"); in _atomic_counter_op2()
8021 ir_variable *data = in_var(glsl_type::uint_type, "data"); in _atomic_counter_op2()
8024 ir_variable *retval = body.make_temp(glsl_type::uint_type, "atomic_retval"); in _atomic_counter_op2()
8036 ir_variable *atomic = in_var(type, "atomic_var"); in _atomic_op2()
8037 ir_variable *data = in_var(type, "atomic_data"); in _atomic_op2()
8042 ir_variable *retval = body.make_temp(type, "atomic_retval"); in _atomic_op2()
8054 ir_variable *atomic = in_var(type, "atomic_var"); in _atomic_op3()
8055 ir_variable *data1 = in_var(type, "atomic_data1"); in _atomic_op3()
8056 ir_variable *data2 = in_var(type, "atomic_data2"); in _atomic_op3()
8061 ir_variable *retval = body.make_temp(type, "atomic_retval"); in _atomic_op3()
8071 ir_variable *x = in_var(type, "x"); in _min3()
8072 ir_variable *y = in_var(type, "y"); in _min3()
8073 ir_variable *z = in_var(type, "z"); in _min3()
8085 ir_variable *x = in_var(type, "x"); in _max3()
8086 ir_variable *y = in_var(type, "y"); in _max3()
8087 ir_variable *z = in_var(type, "z"); in _max3()
8099 ir_variable *x = in_var(type, "x"); in _mid3()
8100 ir_variable *y = in_var(type, "y"); in _mid3()
8101 ir_variable *z = in_var(type, "z"); in _mid3()
8164 ir_variable *image = in_var(image_type, "image"); in _image_prototype()
8165 ir_variable *coord = in_var( in _image_prototype()
8220 ir_variable *image = in_var(image_type, "image"); in _image_size_prototype()
8244 ir_variable *image = in_var(image_type, "image"); in _image_samples_prototype()
8286 ir_variable *ret_val = body.make_temp(intr_sig->return_type, "_ret_val"); in _image()
8288 ir_variable *texel = out_var(texel_field->type, "texel"); in _image()
8301 ir_variable *ret_val = in _image()
8337 ir_variable *value = in_var(glsl_type::bool_type, "value"); in _ballot_intrinsic()
8346 ir_variable *value = in_var(glsl_type::bool_type, "value"); in _ballot()
8349 ir_variable *retval = body.make_temp(glsl_type::uint64_t_type, "retval"); in _ballot()
8360 ir_variable *value = in_var(type, "value"); in _read_first_invocation_intrinsic()
8369 ir_variable *value = in_var(type, "value"); in _read_first_invocation()
8372 ir_variable *retval = body.make_temp(type, "retval"); in _read_first_invocation()
8383 ir_variable *value = in_var(type, "value"); in _read_invocation_intrinsic()
8384 ir_variable *invocation = in_var(glsl_type::uint_type, "invocation"); in _read_invocation_intrinsic()
8393 ir_variable *value = in_var(type, "value"); in _read_invocation()
8394 ir_variable *invocation = in_var(glsl_type::uint_type, "invocation"); in _read_invocation()
8397 ir_variable *retval = body.make_temp(type, "retval"); in _read_invocation()
8437 ir_variable *retval = body.make_temp(glsl_type::uvec2_type, "clock_retval"); in _shader_clock()
8455 ir_variable *value = in_var(glsl_type::bool_type, "value"); in _vote_intrinsic()
8464 ir_variable *value = in_var(glsl_type::bool_type, "value"); in _vote()
8468 ir_variable *retval = body.make_temp(glsl_type::bool_type, "retval"); in _vote()
8489 ir_variable *retval = body.make_temp(glsl_type::bool_type, "retval"); in _helper_invocation()