File: SystemZMCFixups.h

package info (click to toggle)
llvm-toolchain-18 1%3A18.1.8-18
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,908,340 kB
  • sloc: cpp: 6,667,937; ansic: 1,440,452; asm: 883,619; python: 230,549; objc: 76,880; f90: 74,238; lisp: 35,989; pascal: 16,571; sh: 10,229; perl: 7,459; ml: 5,047; awk: 3,523; makefile: 2,987; javascript: 2,149; xml: 892; fortran: 649; cs: 573
file content (67 lines) | stat: -rw-r--r-- 1,947 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
//===-- SystemZMCFixups.h - SystemZ-specific fixup entries ------*- C++ -*-===//
//
// 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
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_LIB_TARGET_SYSTEMZ_MCTARGETDESC_SYSTEMZMCFIXUPS_H
#define LLVM_LIB_TARGET_SYSTEMZ_MCTARGETDESC_SYSTEMZMCFIXUPS_H

#include "llvm/MC/MCFixup.h"
#include "llvm/MC/MCFixupKindInfo.h"

namespace llvm {
namespace SystemZ {
enum FixupKind {
  // These correspond directly to R_390_* relocations.
  FK_390_PC12DBL = FirstTargetFixupKind,
  FK_390_PC16DBL,
  FK_390_PC24DBL,
  FK_390_PC32DBL,
  FK_390_TLS_CALL,

  FK_390_S8Imm,
  FK_390_S16Imm,
  FK_390_S20Imm,
  FK_390_S32Imm,
  FK_390_U1Imm,
  FK_390_U2Imm,
  FK_390_U3Imm,
  FK_390_U4Imm,
  FK_390_U8Imm,
  FK_390_U12Imm,
  FK_390_U16Imm,
  FK_390_U32Imm,
  FK_390_U48Imm,

  // Marker
  LastTargetFixupKind,
  NumTargetFixupKinds = LastTargetFixupKind - FirstTargetFixupKind
};

const static MCFixupKindInfo MCFixupKindInfos[SystemZ::NumTargetFixupKinds] = {
    {"FK_390_PC12DBL", 4, 12, MCFixupKindInfo::FKF_IsPCRel},
    {"FK_390_PC16DBL", 0, 16, MCFixupKindInfo::FKF_IsPCRel},
    {"FK_390_PC24DBL", 0, 24, MCFixupKindInfo::FKF_IsPCRel},
    {"FK_390_PC32DBL", 0, 32, MCFixupKindInfo::FKF_IsPCRel},
    {"FK_390_TLS_CALL", 0, 0, 0},
    {"FK_390_S8Imm", 0, 8, 0},
    {"FK_390_S16Imm", 0, 16, 0},
    {"FK_390_S20Imm", 4, 20, 0},
    {"FK_390_S32Imm", 0, 32, 0},
    {"FK_390_U1Imm", 0, 1, 0},
    {"FK_390_U2Imm", 0, 2, 0},
    {"FK_390_U3Imm", 0, 3, 0},
    {"FK_390_U4Imm", 0, 4, 0},
    {"FK_390_U8Imm", 0, 8, 0},
    {"FK_390_U12Imm", 4, 12, 0},
    {"FK_390_U16Imm", 0, 16, 0},
    {"FK_390_U32Imm", 0, 32, 0},
    {"FK_390_U48Imm", 0, 48, 0},
};
} // end namespace SystemZ
} // end namespace llvm

#endif