2010-09-18 18:52:28 +00:00
|
|
|
//===- PTXInstrInfo.td - PTX Instruction defs -----------------*- tblgen-*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file describes the PTX instructions in TableGen format.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Instruction format superclass
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "PTXInstrFormats.td"
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// PTX Specific Node Definitions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def PTXexit
|
|
|
|
: SDNode<"PTXISD::EXIT", SDTNone, [SDNPHasChain]>;
|
2010-09-25 07:46:17 +00:00
|
|
|
def PTXret
|
|
|
|
: SDNode<"PTXISD::RET", SDTNone, [SDNPHasChain]>;
|
2010-09-18 18:52:28 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Instructions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
let isReturn = 1, isTerminator = 1, isBarrier = 1 in {
|
|
|
|
def EXIT : InstPTX<(outs), (ins), "exit", [(PTXexit)]>;
|
2010-09-25 07:46:17 +00:00
|
|
|
def RET : InstPTX<(outs), (ins), "ret", [(PTXret)]>;
|
2010-09-18 18:52:28 +00:00
|
|
|
}
|