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
MSP430
MCTargetDesc
MSP430FixupKinds.h
Go to the documentation of this file.
1
//===-- MSP430FixupKinds.h - MSP430 Specific Fixup Entries ------*- 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
#ifndef LLVM_LIB_TARGET_MSP430_MCTARGETDESC_MSP430FIXUPKINDS_H
10
#define LLVM_LIB_TARGET_MSP430_MCTARGETDESC_MSP430FIXUPKINDS_H
11
12
#include "
llvm/MC/MCFixup.h
"
13
14
#undef MSP430
15
16
namespace
llvm
{
17
namespace
MSP430 {
18
19
// This table must be in the same order of
20
// MCFixupKindInfo Infos[MSP430::NumTargetFixupKinds]
21
// in MSP430AsmBackend.cpp.
22
//
23
enum
Fixups
{
24
// A 32 bit absolute fixup.
25
fixup_32
=
FirstTargetFixupKind
,
26
// A 10 bit PC relative fixup.
27
fixup_10_pcrel
,
28
// A 16 bit absolute fixup.
29
fixup_16
,
30
// A 16 bit PC relative fixup.
31
fixup_16_pcrel
,
32
// A 16 bit absolute fixup for byte operations.
33
fixup_16_byte
,
34
// A 16 bit PC relative fixup for command address.
35
fixup_16_pcrel_byte
,
36
// A 10 bit PC relative fixup for complicated polymorphs.
37
fixup_2x_pcrel
,
38
// A 16 bit relaxable fixup.
39
fixup_rl_pcrel
,
40
// A 8 bit absolute fixup.
41
fixup_8
,
42
// A 32 bit symbol difference fixup.
43
fixup_sym_diff
,
44
45
// Marker
46
LastTargetFixupKind
,
47
NumTargetFixupKinds
=
LastTargetFixupKind
-
FirstTargetFixupKind
48
};
49
}
// end namespace MSP430
50
}
// end namespace llvm
51
52
#endif
MCFixup.h
llvm::MSP430::Fixups
Fixups
Definition:
MSP430FixupKinds.h:23
llvm::MSP430::fixup_32
@ fixup_32
Definition:
MSP430FixupKinds.h:25
llvm::MSP430::fixup_16_byte
@ fixup_16_byte
Definition:
MSP430FixupKinds.h:33
llvm::MSP430::fixup_10_pcrel
@ fixup_10_pcrel
Definition:
MSP430FixupKinds.h:27
llvm::MSP430::fixup_16_pcrel_byte
@ fixup_16_pcrel_byte
Definition:
MSP430FixupKinds.h:35
llvm::MSP430::NumTargetFixupKinds
@ NumTargetFixupKinds
Definition:
MSP430FixupKinds.h:47
llvm::MSP430::fixup_8
@ fixup_8
Definition:
MSP430FixupKinds.h:41
llvm::MSP430::fixup_rl_pcrel
@ fixup_rl_pcrel
Definition:
MSP430FixupKinds.h:39
llvm::MSP430::fixup_16
@ fixup_16
Definition:
MSP430FixupKinds.h:29
llvm::MSP430::fixup_2x_pcrel
@ fixup_2x_pcrel
Definition:
MSP430FixupKinds.h:37
llvm::MSP430::fixup_16_pcrel
@ fixup_16_pcrel
Definition:
MSP430FixupKinds.h:31
llvm::MSP430::LastTargetFixupKind
@ LastTargetFixupKind
Definition:
MSP430FixupKinds.h:46
llvm::MSP430::fixup_sym_diff
@ fixup_sym_diff
Definition:
MSP430FixupKinds.h:43
llvm
This is an optimization pass for GlobalISel generic memory operations.
Definition:
AddressRanges.h:18
llvm::FirstTargetFixupKind
@ FirstTargetFixupKind
Definition:
MCFixup.h:45
Generated on Thu Jun 12 2025 01:01:21 for LLVM by
1.9.6