LLVM
15.0.0git
lib
Target
AVR
TargetInfo
AVRTargetInfo.cpp
Go to the documentation of this file.
1
//===-- AVRTargetInfo.cpp - AVR 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/AVRTargetInfo.h
"
10
#include "
llvm/MC/TargetRegistry.h
"
11
namespace
llvm
{
12
Target
&
getTheAVRTarget
() {
13
static
Target
TheAVRTarget;
14
return
TheAVRTarget;
15
}
16
}
// namespace llvm
17
18
extern
"C"
LLVM_EXTERNAL_VISIBILITY
void
LLVMInitializeAVRTargetInfo
() {
19
llvm::RegisterTarget<llvm::Triple::avr>
X
(
llvm::getTheAVRTarget
(),
"avr"
,
20
"Atmel AVR Microcontroller"
,
"AVR"
);
21
}
llvm
This is an optimization pass for GlobalISel generic memory operations.
Definition:
AddressRanges.h:17
llvm::Target
Target - Wrapper for Target specific information.
Definition:
TargetRegistry.h:140
llvm::getTheAVRTarget
Target & getTheAVRTarget()
Definition:
AVRTargetInfo.cpp:12
AVRTargetInfo.h
X
static GCMetadataPrinterRegistry::Add< ErlangGCPrinter > X("erlang", "erlang-compatible garbage collector")
LLVM_EXTERNAL_VISIBILITY
#define LLVM_EXTERNAL_VISIBILITY
Definition:
Compiler.h:126
llvm::RegisterTarget
RegisterTarget - Helper template for registering a target, for use in the target's initialization fun...
Definition:
TargetRegistry.h:1078
LLVMInitializeAVRTargetInfo
LLVM_EXTERNAL_VISIBILITY void LLVMInitializeAVRTargetInfo()
Definition:
AVRTargetInfo.cpp:18
TargetRegistry.h
Generated on Thu May 19 2022 15:31:07 for LLVM by
1.8.17