the various ConstantExpr::get*Ty methods existed to work with issues around
[llvm/stm8.git] / lib / Target / MBlaze / MBlazeRelocations.h
blobc298eda2195ff0fb8ae8a175ded88510f7437c40
1 //===- MBlazeRelocations.h - MBlaze Code Relocations ------------*- 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 //===----------------------------------------------------------------------===//
9 //
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"
19 namespace llvm {
20 namespace MBlaze {
21 enum RelocationType {
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.
24 reloc_pcrel_word = 0,
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
28 /// PIC base is.
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
47 #endif