[bpf] add big- and host- endian support
[oota-llvm.git] / lib / Target / BPF / TargetInfo / BPFTargetInfo.cpp
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"
12 using namespace llvm;
13
14 namespace llvm {
15 Target TheBPFleTarget;
16 Target TheBPFbeTarget;
17 Target TheBPFTarget;
18 }
19
20 extern "C" void LLVMInitializeBPFTargetInfo() {
21   TargetRegistry::RegisterTarget(TheBPFTarget, "bpf",
22                                  "BPF (host endian)",
23                                  [](Triple::ArchType) { return false; }, true);
24   RegisterTarget<Triple::bpf_le, /*HasJIT=*/true> X(
25       TheBPFleTarget, "bpf_le", "BPF (little endian)");
26   RegisterTarget<Triple::bpf_be, /*HasJIT=*/true> Y(
27       TheBPFbeTarget, "bpf_be", "BPF (big endian)");
28 }