summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_cfg.h
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2014-05-12 09:54:15 -0700
committerMatt Turner <mattst88@gmail.com>2014-05-15 15:45:40 -0700
commita77023c992fa37c609be56869c1bb5c00ec294b9 (patch)
treed40d4273c702d55880a75c57991bf3328d0d35ea /src/mesa/drivers/dri/i965/brw_cfg.h
parentd4d843e02f11ef1174adba541df16a75759c3512 (diff)
downloadexternal_mesa3d-a77023c992fa37c609be56869c1bb5c00ec294b9.tar.gz
external_mesa3d-a77023c992fa37c609be56869c1bb5c00ec294b9.tar.bz2
external_mesa3d-a77023c992fa37c609be56869c1bb5c00ec294b9.zip
i965/cfg: Make brw_cfg.h closer to C-includable.
Only bblock_link's inheritance left. Acked-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_cfg.h')
-rw-r--r--src/mesa/drivers/dri/i965/brw_cfg.h36
1 files changed, 23 insertions, 13 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_cfg.h b/src/mesa/drivers/dri/i965/brw_cfg.h
index 5911107f17..0a88d25d66 100644
--- a/src/mesa/drivers/dri/i965/brw_cfg.h
+++ b/src/mesa/drivers/dri/i965/brw_cfg.h
@@ -31,35 +31,43 @@
#include "brw_shader.h"
-class bblock_t;
+struct bblock_t;
+
+struct bblock_link : public exec_node {
+#ifdef __cplusplus
+ DECLARE_RALLOC_CXX_OPERATORS(bblock_link)
-class bblock_link : public exec_node {
-public:
bblock_link(bblock_t *block)
: block(block)
{
}
+#endif
- bblock_t *block;
+ struct bblock_t *block;
};
-class bblock_t {
-public:
+#ifndef __cplusplus
+struct backend_instruction;
+#endif
+
+struct bblock_t {
+#ifdef __cplusplus
DECLARE_RALLOC_CXX_OPERATORS(bblock_t)
bblock_t();
void add_successor(void *mem_ctx, bblock_t *successor);
void dump(backend_visitor *v);
+#endif
- backend_instruction *start;
- backend_instruction *end;
+ struct backend_instruction *start;
+ struct backend_instruction *end;
int start_ip;
int end_ip;
- exec_list parents;
- exec_list children;
+ struct exec_list parents;
+ struct exec_list children;
int block_num;
/* If the current basic block ends in an IF, ELSE, or ENDIF instruction,
@@ -68,11 +76,12 @@ public:
*
* Otherwise they are NULL.
*/
- backend_instruction *if_inst;
- backend_instruction *else_inst;
- backend_instruction *endif_inst;
+ struct backend_instruction *if_inst;
+ struct backend_instruction *else_inst;
+ struct backend_instruction *endif_inst;
};
+#ifdef __cplusplus
class cfg_t {
public:
DECLARE_RALLOC_CXX_OPERATORS(cfg_t)
@@ -93,5 +102,6 @@ public:
bblock_t **blocks;
int num_blocks;
};
+#endif
#endif /* BRW_CFG_H */