brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.8 KiB · 0e2d55c Raw
65 lines · c
1//===-- VEFixupKinds.h - VE 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-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef LLVM_LIB_TARGET_VE_MCTARGETDESC_VEFIXUPKINDS_H10#define LLVM_LIB_TARGET_VE_MCTARGETDESC_VEFIXUPKINDS_H11 12#include "llvm/MC/MCFixup.h"13 14namespace llvm {15namespace VE {16enum Fixups {17  /// fixup_ve_reflong - 32-bit fixup corresponding to foo18  fixup_ve_reflong = FirstTargetFixupKind,19 20  /// fixup_ve_srel32 - 32-bit fixup corresponding to foo for relative branch21  fixup_ve_srel32,22 23  /// fixup_ve_hi32 - 32-bit fixup corresponding to foo\@hi24  fixup_ve_hi32,25 26  /// fixup_ve_lo32 - 32-bit fixup corresponding to foo\@lo27  fixup_ve_lo32,28 29  /// fixup_ve_pc_hi32 - 32-bit fixup corresponding to foo\@pc_hi30  fixup_ve_pc_hi32,31 32  /// fixup_ve_pc_lo32 - 32-bit fixup corresponding to foo\@pc_lo33  fixup_ve_pc_lo32,34 35  /// fixup_ve_got_hi32 - 32-bit fixup corresponding to foo\@got_hi36  fixup_ve_got_hi32,37 38  /// fixup_ve_got_lo32 - 32-bit fixup corresponding to foo\@got_lo39  fixup_ve_got_lo32,40 41  /// fixup_ve_gotoff_hi32 - 32-bit fixup corresponding to foo\@gotoff_hi42  fixup_ve_gotoff_hi32,43 44  /// fixup_ve_gotoff_lo32 - 32-bit fixup corresponding to foo\@gotoff_lo45  fixup_ve_gotoff_lo32,46 47  /// fixup_ve_plt_hi32/lo3248  fixup_ve_plt_hi32,49  fixup_ve_plt_lo32,50 51  /// fixups for Thread Local Storage52  fixup_ve_tls_gd_hi32,53  fixup_ve_tls_gd_lo32,54  fixup_ve_tpoff_hi32,55  fixup_ve_tpoff_lo32,56 57  // Marker58  LastTargetFixupKind,59  NumTargetFixupKinds = LastTargetFixupKind - FirstTargetFixupKind60};61} // namespace VE62} // namespace llvm63 64#endif65