You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1004 B
39 lines
1004 B
//===-- BPF.td - Describe the BPF Target Machine -----------*- tablegen -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
include "llvm/Target/Target.td"
|
|
|
|
include "BPFRegisterInfo.td"
|
|
include "BPFCallingConv.td"
|
|
include "BPFInstrInfo.td"
|
|
|
|
def BPFInstrInfo : InstrInfo;
|
|
|
|
class Proc<string Name, list<SubtargetFeature> Features>
|
|
: Processor<Name, NoItineraries, Features>;
|
|
|
|
def : Proc<"generic", []>;
|
|
|
|
def BPFInstPrinter : AsmWriter {
|
|
string AsmWriterClassName = "InstPrinter";
|
|
bit isMCAsmWriter = 1;
|
|
}
|
|
|
|
def BPFAsmParserVariant : AsmParserVariant {
|
|
int Variant = 0;
|
|
string Name = "BPF";
|
|
string BreakCharacters = ".";
|
|
}
|
|
|
|
def BPF : Target {
|
|
let InstructionSet = BPFInstrInfo;
|
|
let AssemblyWriters = [BPFInstPrinter];
|
|
let AssemblyParserVariants = [BPFAsmParserVariant];
|
|
}
|