blob: 5d807057a32d62add26f3e523e8ebe0ac6959501 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
//===-- llvm/TypeFinder.h - Class for finding used struct types -*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file contains the declaration of the TypeFinder class.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_TYPEFINDER_H
#define LLVM_TYPEFINDER_H
#include "llvm/ADT/DenseSet.h"
#include <vector>
namespace llvm {
class MDNode;
class Module;
class StructType;
class Type;
class Value;
/// TypeFinder - Walk over a module, identifying all of the types that are
/// used by the module.
class TypeFinder {
// To avoid walking constant expressions multiple times and other IR
// objects, we keep several helper maps.
DenseSet<const Value*> VisitedConstants;
DenseSet<Type*> VisitedTypes;
std::vector<StructType*> StructTypes;
bool OnlyNamed;
public:
TypeFinder() : OnlyNamed(false) {}
void run(const Module &M, bool onlyNamed);
void clear();
typedef std::vector<StructType*>::iterator iterator;
typedef std::vector<StructType*>::const_iterator const_iterator;
iterator begin() { return StructTypes.begin(); }
iterator end() { return StructTypes.end(); }
const_iterator begin() const { return StructTypes.begin(); }
const_iterator end() const { return StructTypes.end(); }
bool empty() const { return StructTypes.empty(); }
size_t size() const { return StructTypes.size(); }
iterator erase(iterator I, iterator E) { return StructTypes.erase(I, E); }
StructType *&operator[](unsigned Idx) { return StructTypes[Idx]; }
private:
/// incorporateType - This method adds the type to the list of used
/// structures if it's not in there already.
void incorporateType(Type *Ty);
/// incorporateValue - This method is used to walk operand lists finding types
/// hiding in constant expressions and other operands that won't be walked in
/// other ways. GlobalValues, basic blocks, instructions, and inst operands
/// are all explicitly enumerated.
void incorporateValue(const Value *V);
/// incorporateMDNode - This method is used to walk the operands of an MDNode
/// to find types hiding within.
void incorporateMDNode(const MDNode *V);
};
} // end llvm namespace
#endif
|