--- Reverse-merging r79938 into '.':
[oota-llvm.git] / include / llvm / CodeGen / MachORelocation.h
1 //=== MachORelocation.h - Mach-O Relocation Info ----------------*- 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 MachORelocation class.
11 //
12 //===----------------------------------------------------------------------===//
13
14
15 #ifndef LLVM_CODEGEN_MACHO_RELOCATION_H
16 #define LLVM_CODEGEN_MACHO_RELOCATION_H
17
18 namespace llvm {
19
20   /// MachORelocation - This struct contains information about each relocation
21   /// that needs to be emitted to the file.
22   /// see <mach-o/reloc.h>
23   class MachORelocation {
24     uint32_t r_address;   // offset in the section to what is being  relocated
25     uint32_t r_symbolnum; // symbol index if r_extern == 1 else section index
26     bool     r_pcrel;     // was relocated pc-relative already
27     uint8_t  r_length;    // length = 2 ^ r_length
28     bool     r_extern;    // 
29     uint8_t  r_type;      // if not 0, machine-specific relocation type.
30     bool     r_scattered; // 1 = scattered, 0 = non-scattered
31     int32_t  r_value;     // the value the item to be relocated is referring
32                           // to.
33   public:      
34     uint32_t getPackedFields() const {
35       if (r_scattered)
36         return (1 << 31) | (r_pcrel << 30) | ((r_length & 3) << 28) | 
37           ((r_type & 15) << 24) | (r_address & 0x00FFFFFF);
38       else
39         return (r_symbolnum << 8) | (r_pcrel << 7) | ((r_length & 3) << 5) |
40           (r_extern << 4) | (r_type & 15);
41     }
42     uint32_t getAddress() const { return r_scattered ? r_value : r_address; }
43     uint32_t getRawAddress() const { return r_address; }
44
45     MachORelocation(uint32_t addr, uint32_t index, bool pcrel, uint8_t len,
46                     bool ext, uint8_t type, bool scattered = false, 
47                     int32_t value = 0) : 
48       r_address(addr), r_symbolnum(index), r_pcrel(pcrel), r_length(len),
49       r_extern(ext), r_type(type), r_scattered(scattered), r_value(value) {}
50   };
51
52 } // end llvm namespace
53
54 #endif // LLVM_CODEGEN_MACHO_RELOCATION_H