2012-02-18 20:03:15 +08:00
|
|
|
//===-- X86FixupKinds.h - X86 Specific Fixup Entries ------------*- C++ -*-===//
|
2010-02-13 17:27:52 +08:00
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// 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
|
2010-02-13 17:27:52 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-14 00:26:38 +08:00
|
|
|
#ifndef LLVM_LIB_TARGET_X86_MCTARGETDESC_X86FIXUPKINDS_H
|
|
|
|
#define LLVM_LIB_TARGET_X86_MCTARGETDESC_X86FIXUPKINDS_H
|
2010-02-13 17:27:52 +08:00
|
|
|
|
|
|
|
#include "llvm/MC/MCFixup.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
namespace X86 {
|
|
|
|
enum Fixups {
|
2010-11-28 22:17:56 +08:00
|
|
|
reloc_riprel_4byte = FirstTargetFixupKind, // 32-bit rip-relative
|
2010-09-30 11:11:42 +08:00
|
|
|
reloc_riprel_4byte_movq_load, // 32-bit rip-relative in movq
|
2016-05-28 23:51:38 +08:00
|
|
|
reloc_riprel_4byte_relax, // 32-bit rip-relative in relaxable
|
|
|
|
// instruction
|
|
|
|
reloc_riprel_4byte_relax_rex, // 32-bit rip-relative in relaxable
|
|
|
|
// instruction with rex prefix
|
2010-10-25 01:35:42 +08:00
|
|
|
reloc_signed_4byte, // 32-bit signed. Unlike FK_Data_4
|
2010-09-30 11:11:42 +08:00
|
|
|
// this will be sign extended at
|
|
|
|
// runtime.
|
2016-07-07 05:19:11 +08:00
|
|
|
reloc_signed_4byte_relax, // like reloc_signed_4byte, but
|
|
|
|
// in a relaxable instruction.
|
2010-12-16 11:20:06 +08:00
|
|
|
reloc_global_offset_table, // 32-bit, relative to the start
|
2010-10-25 01:35:42 +08:00
|
|
|
// of the instruction. Used only
|
|
|
|
// for _GLOBAL_OFFSET_TABLE_.
|
2014-04-22 05:15:45 +08:00
|
|
|
reloc_global_offset_table8, // 64-bit variant.
|
2018-02-20 18:17:57 +08:00
|
|
|
reloc_branch_4byte_pcrel, // 32-bit PC relative branch.
|
2010-12-16 11:20:06 +08:00
|
|
|
// Marker
|
|
|
|
LastTargetFixupKind,
|
|
|
|
NumTargetFixupKinds = LastTargetFixupKind - FirstTargetFixupKind
|
2010-02-13 17:27:52 +08:00
|
|
|
};
|
2015-06-23 17:49:53 +08:00
|
|
|
}
|
|
|
|
}
|
2010-02-13 17:27:52 +08:00
|
|
|
|
|
|
|
#endif
|