1 //===- MBlazeRelocations.h - MBlaze Code Relocations ------------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file defines the MBlaze target-specific relocation types.
12 //===----------------------------------------------------------------------===//
14 #ifndef MBLAZERELOCATIONS_H
15 #define MBLAZERELOCATIONS_H
17 #include "llvm/CodeGen/MachineRelocation.h"
22 /// reloc_pcrel_word - PC relative relocation, add the relocated value to
23 /// the value already in memory, after we adjust it for where the PC is.
26 /// reloc_picrel_word - PIC base relative relocation, add the relocated
27 /// value to the value already in memory, after we adjust it for where the
29 reloc_picrel_word
= 1,
31 /// reloc_absolute_word - absolute relocation, just add the relocated
32 /// value to the value already in memory.
33 reloc_absolute_word
= 2,
35 /// reloc_absolute_word_sext - absolute relocation, just add the relocated
36 /// value to the value already in memory. In object files, it represents a
37 /// value which must be sign-extended when resolving the relocation.
38 reloc_absolute_word_sext
= 3,
40 /// reloc_absolute_dword - absolute relocation, just add the relocated
41 /// value to the value already in memory.
42 reloc_absolute_dword
= 4