[ARM] VQADD instructions
[llvm-complete.git] / lib / Target / ARC / ARC.td
blob846f1bb6735e19088022665aec957cc646da4953
1 //===- ARC.td - Describe the ARC Target Machine ------------*- tablegen -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 include "llvm/Target/Target.td"
11 include "ARCRegisterInfo.td"
12 include "ARCInstrInfo.td"
13 include "ARCCallingConv.td"
15 def ARCInstrInfo : InstrInfo;
17 class Proc<string Name, list<SubtargetFeature> Features>
18  : Processor<Name, NoItineraries, Features>;
20 def : Proc<"generic", []>;
22 def ARC : Target {
23   let InstructionSet = ARCInstrInfo;