~ubuntu-branches/ubuntu/wily/clamav/wily-proposed

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/lib/CodeGen/SimpleRegisterCoalescing.h

  • Committer: Package Import Robot
  • Author(s): Scott Kitterman, Sebastian Andrzej Siewior, Andreas Cadhalpun, Scott Kitterman, Javier Fernández-Sanguino
  • Date: 2015-01-28 00:25:13 UTC
  • mfrom: (0.48.14 sid)
  • Revision ID: package-import@ubuntu.com-20150128002513-lil2oi74cooy4lzr
Tags: 0.98.6+dfsg-1
[ Sebastian Andrzej Siewior ]
* update "fix-ssize_t-size_t-off_t-printf-modifier", include of misc.h was
  missing but was pulled in via the systemd patch.
* Don't leak return codes from libmspack to clamav API. (Closes: #774686).

[ Andreas Cadhalpun ]
* Add patch to avoid emitting incremental progress messages when not
  outputting to a terminal. (Closes: #767350)
* Update lintian-overrides for unused-file-paragraph-in-dep5-copyright.
* clamav-base.postinst: always chown /var/log/clamav and /var/lib/clamav
  to clamav:clamav, not only on fresh installations. (Closes: #775400)
* Adapt the clamav-daemon and clamav-freshclam logrotate scripts,
  so that they correctly work under systemd.
* Move the PidFile variable from the clamd/freshclam configuration files
  to the init scripts. This makes the init scripts more robust against
  misconfiguration and avoids error messages with systemd. (Closes: #767353)
* debian/copyright: drop files from Files-Excluded only present in github
  tarballs
* Drop Workaround-a-bug-in-libc-on-Hurd.patch, because hurd got fixed.
  (see #752237)
* debian/rules: Remove useless --with-system-tommath --without-included-ltdl
  configure options.

[ Scott Kitterman ]
* Stop stripping llvm when repacking the tarball as the system llvm on some
  releases is too old to use
* New upstream bugfix release
  - Library shared object revisions.
  - Includes a patch from Sebastian Andrzej Siewior making ClamAV pid files
    compatible with systemd.
  - Fix a heap out of bounds condition with crafted Yoda's crypter files.
    This issue was discovered by Felix Groebert of the Google Security Team.
  - Fix a heap out of bounds condition with crafted mew packer files. This
    issue was discovered by Felix Groebert of the Google Security Team.
  - Fix a heap out of bounds condition with crafted upx packer files. This
    issue was discovered by Kevin Szkudlapski of Quarkslab.
  - Fix a heap out of bounds condition with crafted upack packer files. This
    issue was discovered by Sebastian Andrzej Siewior. CVE-2014-9328.
  - Compensate a crash due to incorrect compiler optimization when handling
    crafted petite packer files. This issue was discovered by Sebastian
    Andrzej Siewior.
* Update lintian override for embedded zlib to match new so version

[ Javier Fernández-Sanguino ]
* Updated Spanish Debconf template translation (Closes: #773563)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//===-- SimpleRegisterCoalescing.h - Register Coalescing --------*- 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 implements a simple register copy coalescing phase.
 
11
//
 
12
//===----------------------------------------------------------------------===//
 
13
 
 
14
#ifndef LLVM_CODEGEN_SIMPLE_REGISTER_COALESCING_H
 
15
#define LLVM_CODEGEN_SIMPLE_REGISTER_COALESCING_H
 
16
 
 
17
#include "llvm/CodeGen/MachineFunctionPass.h"
 
18
#include "llvm/CodeGen/LiveIntervalAnalysis.h"
 
19
#include "llvm/CodeGen/RegisterCoalescer.h"
 
20
#include "llvm/ADT/BitVector.h"
 
21
 
 
22
namespace llvm {
 
23
  class SimpleRegisterCoalescing;
 
24
  class LiveVariables;
 
25
  class TargetRegisterInfo;
 
26
  class TargetInstrInfo;
 
27
  class VirtRegMap;
 
28
  class MachineLoopInfo;
 
29
 
 
30
  /// CopyRec - Representation for copy instructions in coalescer queue.
 
31
  ///
 
32
  struct CopyRec {
 
33
    MachineInstr *MI;
 
34
    unsigned LoopDepth;
 
35
    CopyRec(MachineInstr *mi, unsigned depth)
 
36
      : MI(mi), LoopDepth(depth) {}
 
37
  };
 
38
 
 
39
  class SimpleRegisterCoalescing : public MachineFunctionPass,
 
40
                                   public RegisterCoalescer {
 
41
    MachineFunction* mf_;
 
42
    MachineRegisterInfo* mri_;
 
43
    const TargetMachine* tm_;
 
44
    const TargetRegisterInfo* tri_;
 
45
    const TargetInstrInfo* tii_;
 
46
    LiveIntervals *li_;
 
47
    const MachineLoopInfo* loopInfo;
 
48
    AliasAnalysis *AA;
 
49
    
 
50
    DenseMap<const TargetRegisterClass*, BitVector> allocatableRCRegs_;
 
51
 
 
52
    /// JoinedCopies - Keep track of copies eliminated due to coalescing.
 
53
    ///
 
54
    SmallPtrSet<MachineInstr*, 32> JoinedCopies;
 
55
 
 
56
    /// ReMatCopies - Keep track of copies eliminated due to remat.
 
57
    ///
 
58
    SmallPtrSet<MachineInstr*, 32> ReMatCopies;
 
59
 
 
60
    /// ReMatDefs - Keep track of definition instructions which have
 
61
    /// been remat'ed.
 
62
    SmallPtrSet<MachineInstr*, 8> ReMatDefs;
 
63
 
 
64
  public:
 
65
    static char ID; // Pass identifcation, replacement for typeid
 
66
    SimpleRegisterCoalescing() : MachineFunctionPass(ID) {}
 
67
 
 
68
    struct InstrSlots {
 
69
      enum {
 
70
        LOAD  = 0,
 
71
        USE   = 1,
 
72
        DEF   = 2,
 
73
        STORE = 3,
 
74
        NUM   = 4
 
75
      };
 
76
    };
 
77
    
 
78
    virtual void getAnalysisUsage(AnalysisUsage &AU) const;
 
79
    virtual void releaseMemory();
 
80
 
 
81
    /// runOnMachineFunction - pass entry point
 
82
    virtual bool runOnMachineFunction(MachineFunction&);
 
83
 
 
84
    bool coalesceFunction(MachineFunction &mf, RegallocQuery &) {
 
85
      // This runs as an independent pass, so don't do anything.
 
86
      return false;
 
87
    }
 
88
 
 
89
    /// print - Implement the dump method.
 
90
    virtual void print(raw_ostream &O, const Module* = 0) const;
 
91
 
 
92
  private:
 
93
    /// joinIntervals - join compatible live intervals
 
94
    void joinIntervals();
 
95
 
 
96
    /// CopyCoalesceInMBB - Coalesce copies in the specified MBB, putting
 
97
    /// copies that cannot yet be coalesced into the "TryAgain" list.
 
98
    void CopyCoalesceInMBB(MachineBasicBlock *MBB,
 
99
                           std::vector<CopyRec> &TryAgain);
 
100
 
 
101
    /// JoinCopy - Attempt to join intervals corresponding to SrcReg/DstReg,
 
102
    /// which are the src/dst of the copy instruction CopyMI.  This returns true
 
103
    /// if the copy was successfully coalesced away. If it is not currently
 
104
    /// possible to coalesce this interval, but it may be possible if other
 
105
    /// things get coalesced, then it returns true by reference in 'Again'.
 
106
    bool JoinCopy(CopyRec &TheCopy, bool &Again);
 
107
 
 
108
    /// JoinIntervals - Attempt to join these two intervals.  On failure, this
 
109
    /// returns false.  The output "SrcInt" will not have been modified, so we can
 
110
    /// use this information below to update aliases.
 
111
    bool JoinIntervals(CoalescerPair &CP);
 
112
 
 
113
    /// Return true if the two specified registers belong to different register
 
114
    /// classes.  The registers may be either phys or virt regs.
 
115
    bool differingRegisterClasses(unsigned RegA, unsigned RegB) const;
 
116
 
 
117
    /// AdjustCopiesBackFrom - We found a non-trivially-coalescable copy. If
 
118
    /// the source value number is defined by a copy from the destination reg
 
119
    /// see if we can merge these two destination reg valno# into a single
 
120
    /// value number, eliminating a copy.
 
121
    bool AdjustCopiesBackFrom(const CoalescerPair &CP, MachineInstr *CopyMI);
 
122
 
 
123
    /// HasOtherReachingDefs - Return true if there are definitions of IntB
 
124
    /// other than BValNo val# that can reach uses of AValno val# of IntA.
 
125
    bool HasOtherReachingDefs(LiveInterval &IntA, LiveInterval &IntB,
 
126
                              VNInfo *AValNo, VNInfo *BValNo);
 
127
 
 
128
    /// RemoveCopyByCommutingDef - We found a non-trivially-coalescable copy.
 
129
    /// If the source value number is defined by a commutable instruction and
 
130
    /// its other operand is coalesced to the copy dest register, see if we
 
131
    /// can transform the copy into a noop by commuting the definition.
 
132
    bool RemoveCopyByCommutingDef(const CoalescerPair &CP,MachineInstr *CopyMI);
 
133
 
 
134
    /// TrimLiveIntervalToLastUse - If there is a last use in the same basic
 
135
    /// block as the copy instruction, trim the ive interval to the last use
 
136
    /// and return true.
 
137
    bool TrimLiveIntervalToLastUse(SlotIndex CopyIdx,
 
138
                                   MachineBasicBlock *CopyMBB,
 
139
                                   LiveInterval &li, const LiveRange *LR);
 
140
 
 
141
    /// ReMaterializeTrivialDef - If the source of a copy is defined by a trivial
 
142
    /// computation, replace the copy by rematerialize the definition.
 
143
    bool ReMaterializeTrivialDef(LiveInterval &SrcInt, unsigned DstReg,
 
144
                                 unsigned DstSubIdx, MachineInstr *CopyMI);
 
145
 
 
146
    /// isWinToJoinCrossClass - Return true if it's profitable to coalesce
 
147
    /// two virtual registers from different register classes.
 
148
    bool isWinToJoinCrossClass(unsigned SrcReg,
 
149
                               unsigned DstReg,
 
150
                               const TargetRegisterClass *SrcRC,
 
151
                               const TargetRegisterClass *DstRC,
 
152
                               const TargetRegisterClass *NewRC);
 
153
 
 
154
    /// UpdateRegDefsUses - Replace all defs and uses of SrcReg to DstReg and
 
155
    /// update the subregister number if it is not zero. If DstReg is a
 
156
    /// physical register and the existing subregister number of the def / use
 
157
    /// being updated is not zero, make sure to set it to the correct physical
 
158
    /// subregister.
 
159
    void UpdateRegDefsUses(const CoalescerPair &CP);
 
160
 
 
161
    /// ShortenDeadCopyLiveRange - Shorten a live range defined by a dead copy.
 
162
    /// Return true if live interval is removed.
 
163
    bool ShortenDeadCopyLiveRange(LiveInterval &li, MachineInstr *CopyMI);
 
164
 
 
165
    /// ShortenDeadCopyLiveRange - Shorten a live range as it's artificially
 
166
    /// extended by a dead copy. Mark the last use (if any) of the val# as kill
 
167
    /// as ends the live range there. If there isn't another use, then this
 
168
    /// live range is dead. Return true if live interval is removed.
 
169
    bool ShortenDeadCopySrcLiveRange(LiveInterval &li, MachineInstr *CopyMI);
 
170
 
 
171
    /// RemoveDeadDef - If a def of a live interval is now determined dead,
 
172
    /// remove the val# it defines. If the live interval becomes empty, remove
 
173
    /// it as well.
 
174
    bool RemoveDeadDef(LiveInterval &li, MachineInstr *DefMI);
 
175
 
 
176
    /// RemoveCopyFlag - If DstReg is no longer defined by CopyMI, clear the
 
177
    /// VNInfo copy flag for DstReg and all aliases.
 
178
    void RemoveCopyFlag(unsigned DstReg, const MachineInstr *CopyMI);
 
179
 
 
180
    /// lastRegisterUse - Returns the last use of the specific register between
 
181
    /// cycles Start and End or NULL if there are no uses.
 
182
    MachineOperand *lastRegisterUse(SlotIndex Start, SlotIndex End,
 
183
                                    unsigned Reg, SlotIndex &LastUseIdx) const;
 
184
  };
 
185
 
 
186
} // End llvm namespace
 
187
 
 
188
#endif