2015-10-17 03:33:04 +02:00
|
|
|
//==- HexagonInstrFormatsV60.td - Hexagon Instruction Formats -*- tablegen -==//
|
|
|
|
//
|
2019-01-19 09:50:56 +01:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2015-10-17 03:33:04 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file describes the Hexagon V60 instruction classes in TableGen format.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------//
|
2016-11-17 20:21:20 +01:00
|
|
|
// Instruction Classes Definitions +
|
2015-10-17 03:33:04 +02:00
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
|
|
|
|
class CVI_VA_Resource<dag outs, dag ins, string asmstr,
|
|
|
|
list<dag> pattern = [], string cstr = "",
|
2015-11-23 15:09:26 +01:00
|
|
|
InstrItinClass itin = CVI_VA>
|
2015-10-17 03:33:04 +02:00
|
|
|
: InstHexagon<outs, ins, asmstr, pattern, cstr, itin, TypeCVI_VA>,
|
2018-06-20 15:56:09 +02:00
|
|
|
OpcodeHexagon, Requires<[HasV60, UseHVX]>;
|