Define generic 1, 2 and 4 byte pc relative relocations. They are common
[llvm.git] / lib / Target / X86 / X86FixupKinds.h
blob95077591d539b8b05b9b8a71fbf079688b42881e
1 //===-- X86/X86FixupKinds.h - X86 Specific Fixup Entries --------*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
10 #ifndef LLVM_X86_X86FIXUPKINDS_H
11 #define LLVM_X86_X86FIXUPKINDS_H
13 #include "llvm/MC/MCFixup.h"
15 namespace llvm {
16 namespace X86 {
17 enum Fixups {
18 reloc_riprel_4byte = FirstTargetFixupKind, // 32-bit rip-relative
19 reloc_riprel_4byte_movq_load, // 32-bit rip-relative in movq
20 reloc_signed_4byte, // 32-bit signed. Unlike FK_Data_4
21 // this will be sign extended at
22 // runtime.
23 reloc_global_offset_table // 32-bit, relative to the start
24 // of the instruction. Used only
25 // for _GLOBAL_OFFSET_TABLE_.
30 #endif