Initial checkin of the 32-bit PPC relocation types
[oota-llvm.git] / lib / Target / PowerPC / PPCRelocations.h
1 //===- PPC32Relocations.h - PPC32 Code Relocations --------------*- C++ -*-===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the PowerPC 32-bit target-specific relocation types.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef PPC32RELOCATIONS_H
15 #define PPC32RELOCATIONS_H
16
17 #include "llvm/CodeGen/MachineRelocation.h"
18
19 namespace llvm {
20   namespace PPC {
21     enum RelocationType {
22       // reloc_pcrel_bx - PC relative relocation, for the b or bl instructions.
23       reloc_pcrel_bx,
24
25       // reloc_absolute_loadhi - Absolute relocation, for the loadhi instruction
26       // (which is really addis).  Add the high 16-bits of the specified global
27       // address into the immediate field of the addis.
28       reloc_absolute_loadhi,
29
30       // reloc_absolute_la - Absolute relocation, for the la instruction (which
31       // is really an addi).  Add the low 16-bits of teh specified global
32       // address into the immediate field of the addi.
33       reloc_absolute_la,
34     };
35   }
36 }
37
38 #endif