LLVM 19.0.0git
SparcTargetInfo.cpp
Go to the documentation of this file.
1//===-- SparcTargetInfo.cpp - Sparc 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
11using namespace llvm;
12
14 static Target TheSparcTarget;
15 return TheSparcTarget;
16}
18 static Target TheSparcV9Target;
19 return TheSparcV9Target;
20}
22 static Target TheSparcelTarget;
23 return TheSparcelTarget;
24}
25
28 "sparc", "Sparc", "Sparc");
29 RegisterTarget<Triple::sparcv9, /*HasJIT=*/false> Y(
30 getTheSparcV9Target(), "sparcv9", "Sparc V9", "Sparc");
31 RegisterTarget<Triple::sparcel, /*HasJIT=*/false> Z(
32 getTheSparcelTarget(), "sparcel", "Sparc LE", "Sparc");
33}
#define LLVM_EXTERNAL_VISIBILITY
Definition: Compiler.h:135
static GCMetadataPrinterRegistry::Add< ErlangGCPrinter > X("erlang", "erlang-compatible garbage collector")
static GCMetadataPrinterRegistry::Add< OcamlGCMetadataPrinter > Y("ocaml", "ocaml 3.10-compatible collector")
LLVM_EXTERNAL_VISIBILITY void LLVMInitializeSparcTargetInfo()
Target - Wrapper for Target specific information.
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
Target & getTheSparcTarget()
Target & getTheSparcV9Target()
Target & getTheSparcelTarget()
RegisterTarget - Helper template for registering a target, for use in the target's initialization fun...