]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/lib/Target/ARC/ARC.td
Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
[FreeBSD/FreeBSD.git] / contrib / llvm / lib / Target / ARC / ARC.td
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 //===----------------------------------------------------------------------===//
8
9 include "llvm/Target/Target.td"
10
11 include "ARCRegisterInfo.td"
12 include "ARCInstrInfo.td"
13 include "ARCCallingConv.td"
14
15 def ARCInstrInfo : InstrInfo;
16
17 class Proc<string Name, list<SubtargetFeature> Features>
18  : Processor<Name, NoItineraries, Features>;
19
20 def : Proc<"generic", []>;
21
22 def ARC : Target {
23   let InstructionSet = ARCInstrInfo;
24 }