Index: llvm/trunk/include/llvm/Target/GenericOpcodes.td =================================================================== --- llvm/trunk/include/llvm/Target/GenericOpcodes.td +++ llvm/trunk/include/llvm/Target/GenericOpcodes.td @@ -0,0 +1,23 @@ +//===-- GenericOpcodes.td - Opcodes used with GlobalISel ---*- tablegen -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This file defines the generic opcodes used with GlobalISel. +// After instruction selection, these opcodes should not appear. +// +//===----------------------------------------------------------------------===// + +// Generic addition. +def G_ADD : Instruction { + let OutOperandList = (outs unknown:$dst); + let InOperandList = (ins unknown:$src1, unknown:$src2); + let AsmString = ""; + let hasSideEffects = 0; + let isCommutable = 1; +} +// TODO: Add the other generic opcodes. Index: llvm/trunk/include/llvm/Target/Target.td =================================================================== --- llvm/trunk/include/llvm/Target/Target.td +++ llvm/trunk/include/llvm/Target/Target.td @@ -914,16 +914,9 @@ let mayLoad = 1; } -// Generic opcode used by the IRTranslator. -// After ISel, this opcode should not appear. -def G_ADD : Instruction { - let OutOperandList = (outs unknown:$dst); - let InOperandList = (ins unknown:$src1, unknown:$src2); - let AsmString = ""; - let hasSideEffects = 0; - let isCommutable = 1; -} -// TODO: Add the other generic opcodes. +// Generic opcodes used in GlobalISel. +include "llvm/Target/GenericOpcodes.td" + } //===----------------------------------------------------------------------===//