~louis/ubuntu/trusty/clamav/lp799623_fix_logrotate

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/include/llvm/CodeGen/MachORelocation.h

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-03-12 11:30:04 UTC
  • mfrom: (0.41.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100312113004-b0fop4bkycszdd0z
Tags: 0.96~rc1+dfsg-0ubuntu1
* New upstream RC - FFE (LP: #537636):
  - Add OfficialDatabaseOnly option to clamav-base.postinst.in
  - Add LocalSocketGroup option to clamav-base.postinst.in
  - Add LocalSocketMode option to clamav-base.postinst.in
  - Add CrossFilesystems option to clamav-base.postinst.in
  - Add ClamukoScannerCount option to clamav-base.postinst.in
  - Add BytecodeSecurity opiton to clamav-base.postinst.in
  - Add DetectionStatsHostID option to clamav-freshclam.postinst.in
  - Add Bytecode option to clamav-freshclam.postinst.in
  - Add MilterSocketGroup option to clamav-milter.postinst.in
  - Add MilterSocketMode option to clamav-milter.postinst.in
  - Add ReportHostname option to clamav-milter.postinst.in
  - Bump libclamav SO version to 6.1.0 in libclamav6.install
  - Drop clamdmon from clamav.examples (no longer shipped by upstream)
  - Drop libclamav.a from libclamav-dev.install (not built by upstream)
  - Update SO version for lintian override for libclamav6
  - Add new Bytecode Testing Tool, usr/bin/clambc, to clamav.install
  - Add build-depends on python and python-setuptools for new test suite
  - Update debian/copyright for the embedded copy of llvm (using the system
    llvm is not currently feasible)

Show diffs side-by-side

added added

removed removed

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