OSDN Git Service

radeonsi: initial WIP SI code
[android-x86/external-mesa.git] / src / gallium / drivers / radeon / AMDILOperands.td
1 //===- AMDILOperands.td - AMD IL Operands ------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //==-----------------------------------------------------------------------===//
9 //===----------------------------------------------------------------------===//
10 // Custom memory operand
11 //===----------------------------------------------------------------------===//
12
13 def MEMI32  : Operand<i32> {
14     let PrintMethod = "printMemOperand";
15     let MIOperandInfo = (ops GPRI32, GPRI32);
16 }
17
18 def MEMI64 : Operand<i64> {
19   let PrintMethod = "printMemOperand";
20   let MIOperandInfo = (ops GPRI64, GPRI64);
21 }
22
23 // Call target types
24 def calltarget   : Operand<i32>;
25 def brtarget   : Operand<OtherVT>;
26
27 // def v2i8imm : Operand<v2i8>;
28 // def v4i8imm : Operand<v4i8>;
29 // def v2i16imm : Operand<v2i16>;
30 // def v4i16imm : Operand<v4i16>;
31 // def v2i32imm : Operand<v2i32>;
32 // def v4i32imm : Operand<v4i32>;
33 // def v2i64imm : Operand<v2i64>;
34 // def v2f32imm : Operand<v2f32>;
35 // def v4f32imm : Operand<v4f32>;
36 // def v2f64imm : Operand<v2f64>;
37