1 //===- ARC.td - Describe the ARC Target Machine ------------*- tablegen -*-===//
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
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", []>;
23 let InstructionSet = ARCInstrInfo;