ronnie
2022-10-14 1504bb53e29d3d46222c0b3ea994fc494b48e153
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
 * Copyright 2011 Tom Stellard <tstellar@gmail.com>
 *
 * All Rights Reserved.
 *
 * 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 COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS 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.
 *
 */
 
#ifndef RADEON_VARIABLE_H
#define RADEON_VARIABLE_H
 
#include "radeon_compiler.h"
 
struct radeon_compiler;
struct rc_list;
struct rc_reader_data;
struct rc_readers;
 
struct live_intervals {
   int Start;
   int End;
   int Used;
};
 
struct rc_variable {
   struct radeon_compiler * C;
   struct rc_dst_register Dst;
 
   struct rc_instruction * Inst;
   unsigned int ReaderCount;
   struct rc_reader * Readers;
   struct live_intervals Live[4];
 
   /* A friend is a variable that shares a reader with another variable.
    */
   struct rc_variable * Friend;
};
 
void rc_variable_change_dst(
   struct rc_variable * var,
   unsigned int new_index,
   unsigned int new_writemask);
 
void rc_variable_compute_live_intervals(struct rc_variable * var);
 
void rc_variable_add_friend(
   struct rc_variable * var,
   struct rc_variable * friend);
 
struct rc_variable * rc_variable(
   struct radeon_compiler * c,
   unsigned int DstFile,
   unsigned int DstIndex,
   unsigned int DstWriteMask,
   struct rc_reader_data * reader_data);
 
struct rc_list * rc_get_variables(struct radeon_compiler * c);
 
unsigned int rc_variable_writemask_sum(struct rc_variable * var);
 
struct rc_list * rc_variable_readers_union(struct rc_variable * var);
 
struct rc_list * rc_variable_list_get_writers(
   struct rc_list * var_list,
   unsigned int src_type,
   void * src);
 
struct rc_list * rc_variable_list_get_writers_one_reader(
   struct rc_list * var_list,
   unsigned int src_type,
   void * src);
 
void rc_variable_print(struct rc_variable * var);
 
#endif /* RADEON_VARIABLE_H */