HomeSort by: relevance | last modified time | path
    Searched refs:value_id (Results 1 - 7 of 7) sorted by relevancy

  /xsrc/external/mit/MesaLib/dist/src/compiler/spirv/
vtn_private.h 745 vtn_untyped_value(struct vtn_builder *b, uint32_t value_id)
747 vtn_fail_if(value_id >= b->value_id_bound,
748 "SPIR-V id %u is out-of-bounds", value_id);
749 return &b->values[value_id];
756 uint32_t value_id = value - b->values; local
757 vtn_fail_if(value_id >= b->value_id_bound, "vtn_value pointer outside the range of valid values");
758 return value_id;
766 vtn_push_value(struct vtn_builder *b, uint32_t value_id,
769 struct vtn_value *val = vtn_untyped_value(b, value_id);
777 value_id);
    [all...]
spirv_to_nir.c 274 vtn_ssa_value(struct vtn_builder *b, uint32_t value_id)
276 struct vtn_value *val = vtn_untyped_value(b, value_id);
300 vtn_push_ssa_value(struct vtn_builder *b, uint32_t value_id,
303 struct vtn_type *type = vtn_get_value_type(b, value_id);
311 val = vtn_push_pointer(b, value_id, vtn_pointer_from_ssa(b, ssa->def, type));
314 val = vtn_push_value(b, value_id, vtn_value_type_invalid);
323 vtn_get_nir_ssa(struct vtn_builder *b, uint32_t value_id)
325 struct vtn_ssa_value *ssa = vtn_ssa_value(b, value_id);
332 vtn_push_nir_ssa(struct vtn_builder *b, uint32_t value_id, nir_ssa_def *def)
337 struct vtn_type *type = vtn_get_value_type(b, value_id);
3430 const uint32_t value_id = opcode == SpvOpAtomicStore ? w[4] : w[3]; local
    [all...]
vtn_cfg.c 30 vtn_block(struct vtn_builder *b, uint32_t value_id)
32 return vtn_value(b, value_id, vtn_value_type_block)->block;
vtn_variables.c 132 vtn_push_pointer(struct vtn_builder *b, uint32_t value_id,
135 struct vtn_value *val = vtn_push_value(b, value_id, vtn_value_type_pointer);
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/spirv/
vtn_private.h 647 vtn_untyped_value(struct vtn_builder *b, uint32_t value_id)
649 vtn_fail_if(value_id >= b->value_id_bound,
650 "SPIR-V id %u is out-of-bounds", value_id);
651 return &b->values[value_id];
659 vtn_push_value(struct vtn_builder *b, uint32_t value_id,
662 struct vtn_value *val = vtn_untyped_value(b, value_id);
666 value_id);
670 return &b->values[value_id];
674 vtn_value(struct vtn_builder *b, uint32_t value_id,
677 struct vtn_value *val = vtn_untyped_value(b, value_id);
    [all...]
vtn_variables.c 39 vtn_push_value_pointer(struct vtn_builder *b, uint32_t value_id,
42 struct vtn_value *val = vtn_push_value(b, value_id, vtn_value_type_pointer);
65 vtn_push_ssa(struct vtn_builder *b, uint32_t value_id,
70 val = vtn_push_value_pointer(b, value_id, vtn_pointer_from_ssa(b, ssa->def, type));
72 val = vtn_push_value(b, value_id, vtn_value_type_ssa);
spirv_to_nir.c 298 vtn_ssa_value(struct vtn_builder *b, uint32_t value_id)
300 struct vtn_value *val = vtn_untyped_value(b, value_id);
2619 const uint32_t value_id = opcode == SpvOpAtomicStore ? w[4] : w[3]; local
2620 nir_ssa_def *value = vtn_ssa_value(b, value_id)->def;

Completed in 14 milliseconds