aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/radeon/R600Defines.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/drivers/radeon/R600Defines.h')
-rw-r--r--src/gallium/drivers/radeon/R600Defines.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/gallium/drivers/radeon/R600Defines.h b/src/gallium/drivers/radeon/R600Defines.h
deleted file mode 100644
index 20c357cc15f..00000000000
--- a/src/gallium/drivers/radeon/R600Defines.h
+++ /dev/null
@@ -1,35 +0,0 @@
-//===-- R600Defines.h - R600 Helper Macros ----------------------*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-
-// Operand Flags
-#define MO_FLAG_CLAMP (1 << 0)
-#define MO_FLAG_NEG (1 << 1)
-#define MO_FLAG_ABS (1 << 2)
-#define MO_FLAG_MASK (1 << 3)
-#define MO_FLAG_PUSH (1 << 4)
-#define MO_FLAG_NOT_LAST (1 << 5)
-#define NUM_MO_FLAGS 6
-
-// Helper for finding getting the operand index for the instruction flags
-// operand.
-#define GET_FLAG_OPERAND_IDX(Flags) (((Flags) >> 7) & 0x3)
-
-namespace R600_InstFlag {
- enum TIF {
- TRANS_ONLY = (1 << 0),
- TEX = (1 << 1),
- REDUCTION = (1 << 2),
- FC = (1 << 3),
- TRIG = (1 << 4),
- OP3 = (1 << 5),
- VECTOR = (1 << 6)
- //FlagOperand bits 7, 8
- };
-}