1//===-- BPFTargetInfo.cpp - BPF Target Implementation ---------------------===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "BPF.h"
11#include "llvm/Support/TargetRegistry.h"
12using namespace llvm;
13
14namespace llvm {
15Target TheBPFleTarget;
16Target TheBPFbeTarget;
17Target TheBPFTarget;
18}
19
20extern "C" void LLVMInitializeBPFTargetInfo() {
21  TargetRegistry::RegisterTarget(TheBPFTarget, "bpf",
22                                 "BPF (host endian)",
23                                 [](Triple::ArchType) { return false; }, true);
24  RegisterTarget<Triple::bpfel, /*HasJIT=*/true> X(
25      TheBPFleTarget, "bpfel", "BPF (little endian)");
26  RegisterTarget<Triple::bpfeb, /*HasJIT=*/true> Y(
27      TheBPFbeTarget, "bpfeb", "BPF (big endian)");
28}
29