LLVM
20.0.0git
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
:
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
y
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
o
p
r
s
t
u
v
w
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
l
m
o
p
q
r
s
t
u
w
x
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
lib
Target
AVR
MCTargetDesc
AVRMCTargetDesc.h
Go to the documentation of this file.
1
//===-- AVRMCTargetDesc.h - AVR Target Descriptions -------------*- C++ -*-===//
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
// This file provides AVR specific target descriptions.
10
//
11
//===----------------------------------------------------------------------===//
12
13
#ifndef LLVM_AVR_MCTARGET_DESC_H
14
#define LLVM_AVR_MCTARGET_DESC_H
15
16
#include "
llvm/Support/DataTypes.h
"
17
18
#include <memory>
19
20
namespace
llvm
{
21
22
class
MCAsmBackend;
23
class
MCCodeEmitter;
24
class
MCContext;
25
class
MCInstrInfo;
26
class
MCObjectTargetWriter;
27
class
MCRegisterInfo;
28
class
MCSubtargetInfo;
29
class
MCTargetOptions;
30
class
Target
;
31
32
MCInstrInfo *
createAVRMCInstrInfo
();
33
34
/// Creates a machine code emitter for AVR.
35
MCCodeEmitter
*
createAVRMCCodeEmitter
(
const
MCInstrInfo
&MCII,
36
MCContext
&Ctx);
37
38
/// Creates an assembly backend for AVR.
39
MCAsmBackend
*
createAVRAsmBackend
(
const
Target
&
T
,
const
MCSubtargetInfo
&STI,
40
const
MCRegisterInfo
&
MRI
,
41
const
llvm::MCTargetOptions
&TO);
42
43
/// Creates an ELF object writer for AVR.
44
std::unique_ptr<MCObjectTargetWriter>
createAVRELFObjectWriter
(
uint8_t
OSABI);
45
46
}
// end namespace llvm
47
48
#define GET_REGINFO_ENUM
49
#include "AVRGenRegisterInfo.inc"
50
51
#define GET_INSTRINFO_ENUM
52
#define GET_INSTRINFO_MC_HELPER_DECLS
53
#include "AVRGenInstrInfo.inc"
54
55
#define GET_SUBTARGETINFO_ENUM
56
#include "AVRGenSubtargetInfo.inc"
57
58
#endif
// LLVM_AVR_MCTARGET_DESC_H
MRI
unsigned const MachineRegisterInfo * MRI
Definition:
AArch64AdvSIMDScalarPass.cpp:105
T
llvm::MCAsmBackend
Generic interface to target specific assembler backends.
Definition:
MCAsmBackend.h:42
llvm::MCCodeEmitter
MCCodeEmitter - Generic instruction encoding interface.
Definition:
MCCodeEmitter.h:21
llvm::MCContext
Context object for machine code objects.
Definition:
MCContext.h:83
llvm::MCInstrInfo
Interface to description of machine instruction set.
Definition:
MCInstrInfo.h:26
llvm::MCRegisterInfo
MCRegisterInfo base class - We assume that the target defines a static array of MCRegisterDesc object...
Definition:
MCRegisterInfo.h:149
llvm::MCSubtargetInfo
Generic base class for all target subtargets.
Definition:
MCSubtargetInfo.h:76
llvm::MCTargetOptions
Definition:
MCTargetOptions.h:39
llvm::Target
Target - Wrapper for Target specific information.
Definition:
TargetRegistry.h:144
uint8_t
DataTypes.h
llvm::AMDGPU::Exp::Target
Target
Definition:
SIDefines.h:996
llvm
This is an optimization pass for GlobalISel generic memory operations.
Definition:
AddressRanges.h:18
llvm::createAVRMCInstrInfo
MCInstrInfo * createAVRMCInstrInfo()
Definition:
AVRMCTargetDesc.cpp:40
llvm::createAVRMCCodeEmitter
MCCodeEmitter * createAVRMCCodeEmitter(const MCInstrInfo &MCII, MCContext &Ctx)
Creates a machine code emitter for AVR.
llvm::createAVRELFObjectWriter
std::unique_ptr< MCObjectTargetWriter > createAVRELFObjectWriter(uint8_t OSABI)
Creates an ELF object writer for AVR.
Definition:
AVRELFObjectWriter.cpp:155
llvm::createAVRAsmBackend
MCAsmBackend * createAVRAsmBackend(const Target &T, const MCSubtargetInfo &STI, const MCRegisterInfo &MRI, const llvm::MCTargetOptions &TO)
Creates an assembly backend for AVR.
Definition:
AVRAsmBackend.cpp:528
Generated on Tue Feb 18 2025 06:47:33 for LLVM by
1.9.6