mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-22 13:29:44 +00:00
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160270 91177308-0d34-0410-b5e6-96231b3b80d8
33 lines
1.0 KiB
TableGen
33 lines
1.0 KiB
TableGen
//===- AMDILOperands.td - AMD IL Operands ------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//==-----------------------------------------------------------------------===//
|
|
//===----------------------------------------------------------------------===//
|
|
// Custom memory operand
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
def MEMI32 : Operand<i32> {
|
|
let PrintMethod = "printMemOperand";
|
|
let MIOperandInfo = (ops GPRI32, GPRI32);
|
|
}
|
|
|
|
// Call target types
|
|
def calltarget : Operand<i32>;
|
|
def brtarget : Operand<OtherVT>;
|
|
|
|
// def v2i8imm : Operand<v2i8>;
|
|
// def v4i8imm : Operand<v4i8>;
|
|
// def v2i16imm : Operand<v2i16>;
|
|
// def v4i16imm : Operand<v4i16>;
|
|
// def v2i32imm : Operand<v2i32>;
|
|
// def v4i32imm : Operand<v4i32>;
|
|
// def v2i64imm : Operand<v2i64>;
|
|
// def v2f32imm : Operand<v2f32>;
|
|
// def v4f32imm : Operand<v4f32>;
|
|
// def v2f64imm : Operand<v2f64>;
|
|
|