summaryrefslogtreecommitdiff
path: root/include/llvm/Analysis/LiveVar/LiveVarSet.h
blob: 2174be26fb7301b12642dac5934559b985cb0ca8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* Title:   LiveVarSet.h   -*- C++ -*-
   Author:  Ruchira Sasanka
   Date:    Jun 30, 01
   Purpose: Contains the class definition of LiveVarSet which is used for
            live variable analysis.
*/

#ifndef LIVE_VAR_SET_H
#define LIVE_VAR_SET_H

#include "llvm/Analysis/LiveVar/ValueSet.h"
class MachineInstr;

struct LiveVarSet : public ValueSet {

  // This function applies a machine instr to a live var set (accepts OutSet)
  // and makes necessary changes to it (produces InSet).
  //
  void applyTranferFuncForMInst(const MachineInstr *MInst);
};


#endif