ARMTargetInfo.cpp revision 360784
1//===-- ARMTargetInfo.cpp - ARM Target Implementation ---------------------===//
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 "TargetInfo/ARMTargetInfo.h"
10#include "llvm/Support/TargetRegistry.h"
11using namespace llvm;
12
13Target &llvm::getTheARMLETarget() {
14  static Target TheARMLETarget;
15  return TheARMLETarget;
16}
17Target &llvm::getTheARMBETarget() {
18  static Target TheARMBETarget;
19  return TheARMBETarget;
20}
21Target &llvm::getTheThumbLETarget() {
22  static Target TheThumbLETarget;
23  return TheThumbLETarget;
24}
25Target &llvm::getTheThumbBETarget() {
26  static Target TheThumbBETarget;
27  return TheThumbBETarget;
28}
29
30extern "C" LLVM_EXTERNAL_VISIBILITY void LLVMInitializeARMTargetInfo() {
31  RegisterTarget<Triple::arm, /*HasJIT=*/true> X(getTheARMLETarget(), "arm",
32                                                 "ARM", "ARM");
33  RegisterTarget<Triple::armeb, /*HasJIT=*/true> Y(getTheARMBETarget(), "armeb",
34                                                   "ARM (big endian)", "ARM");
35
36  RegisterTarget<Triple::thumb, /*HasJIT=*/true> A(getTheThumbLETarget(),
37                                                   "thumb", "Thumb", "ARM");
38  RegisterTarget<Triple::thumbeb, /*HasJIT=*/true> B(
39      getTheThumbBETarget(), "thumbeb", "Thumb (big endian)", "ARM");
40}
41