//===-- MipsTargetInfo.cpp - Mips Target Implementation -------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "TargetInfo/MipsTargetInfo.h" #include "llvm/Support/TargetRegistry.h" using namespace llvm; Target &llvm::getTheMipsTarget() { static Target TheMipsTarget; return TheMipsTarget; } Target &llvm::getTheMipselTarget() { static Target TheMipselTarget; return TheMipselTarget; } Target &llvm::getTheMips64Target() { static Target TheMips64Target; return TheMips64Target; } Target &llvm::getTheMips64elTarget() { static Target TheMips64elTarget; return TheMips64elTarget; } extern "C" LLVM_EXTERNAL_VISIBILITY void LLVMInitializeMipsTargetInfo() { RegisterTarget X(getTheMipsTarget(), "mips", "MIPS (32-bit big endian)", "Mips"); RegisterTarget Y(getTheMipselTarget(), "mipsel", "MIPS (32-bit little endian)", "Mips"); RegisterTarget A(getTheMips64Target(), "mips64", "MIPS (64-bit big endian)", "Mips"); RegisterTarget B(getTheMips64elTarget(), "mips64el", "MIPS (64-bit little endian)", "Mips"); }