blob: 200a4d7b98a57ec8ef3efc30afdab634a7922d0a [file] [log] [blame]
Chris Lattner59cd9f12001-11-04 23:24:06 +00001//===-- TransformInternals.h - Shared functions for Transforms ---*- C++ -*--=//
2//
3// This header file declares shared functions used by the different components
4// of the Transforms library.
5//
6//===----------------------------------------------------------------------===//
7
8#ifndef TRANSFORM_INTERNALS_H
9#define TRANSFORM_INTERNALS_H
10
11#include "llvm/BasicBlock.h"
Chris Lattnere4f4d8c2001-11-05 18:30:53 +000012#include "llvm/Instruction.h"
Chris Lattner59cd9f12001-11-04 23:24:06 +000013#include "llvm/Target/TargetData.h"
Chris Lattnerc0b90e72001-11-08 20:19:56 +000014#include "llvm/DerivedTypes.h"
Chris Lattnere9bb2df2001-12-03 22:26:30 +000015#include "llvm/ConstantVals.h"
Chris Lattner59cd9f12001-11-04 23:24:06 +000016#include <map>
Chris Lattnere4f4d8c2001-11-05 18:30:53 +000017#include <set>
Chris Lattner59cd9f12001-11-04 23:24:06 +000018
19// TargetData Hack: Eventually we will have annotations given to us by the
20// backend so that we know stuff about type size and alignments. For now
21// though, just use this, because it happens to match the model that GCC uses.
22//
23// FIXME: This should use annotations
24//
25extern const TargetData TD;
26
Chris Lattnere9bb2df2001-12-03 22:26:30 +000027static int getConstantValue(const ConstantInt *CPI) {
28 if (const ConstantSInt *CSI = dyn_cast<ConstantSInt>(CPI))
Chris Lattner491b29f2001-11-26 17:00:13 +000029 return CSI->getValue();
Chris Lattnere9bb2df2001-12-03 22:26:30 +000030 return cast<ConstantUInt>(CPI)->getValue();
Chris Lattner491b29f2001-11-26 17:00:13 +000031}
Chris Lattner59cd9f12001-11-04 23:24:06 +000032
33
Chris Lattner491b29f2001-11-26 17:00:13 +000034// getPointedToComposite - If the argument is a pointer type, and the pointed to
35// value is a composite type, return the composite type, else return null.
Chris Lattnerc0b90e72001-11-08 20:19:56 +000036//
Chris Lattner491b29f2001-11-26 17:00:13 +000037static inline const CompositeType *getPointedToComposite(const Type *Ty) {
Chris Lattnerc0b90e72001-11-08 20:19:56 +000038 const PointerType *PT = dyn_cast<PointerType>(Ty);
Chris Lattner7a176752001-12-04 00:03:30 +000039 return PT ? dyn_cast<CompositeType>(PT->getElementType()) : 0;
Chris Lattnerc0b90e72001-11-08 20:19:56 +000040}
41
Chris Lattnere34443d2001-11-06 08:34:29 +000042
Chris Lattner59cd9f12001-11-04 23:24:06 +000043// ReplaceInstWithValue - Replace all uses of an instruction (specified by BI)
44// with a value, then remove and delete the original instruction.
45//
46void ReplaceInstWithValue(BasicBlock::InstListType &BIL,
47 BasicBlock::iterator &BI, Value *V);
48
49// ReplaceInstWithInst - Replace the instruction specified by BI with the
50// instruction specified by I. The original instruction is deleted and BI is
51// updated to point to the new instruction.
52//
53void ReplaceInstWithInst(BasicBlock::InstListType &BIL,
54 BasicBlock::iterator &BI, Instruction *I);
55
Chris Lattnerc9333442001-12-14 16:39:22 +000056void ReplaceInstWithInst(Instruction *From, Instruction *To);
57
Chris Lattner59cd9f12001-11-04 23:24:06 +000058
Chris Lattner491b29f2001-11-26 17:00:13 +000059// ConvertableToGEP - This function returns true if the specified value V is
60// a valid index into a pointer of type Ty. If it is valid, Idx is filled in
61// with the values that would be appropriate to make this a getelementptr
62// instruction. The type returned is the root type that the GEP would point
63// to if it were synthesized with this operands.
64//
65// If BI is nonnull, cast instructions are inserted as appropriate for the
66// arguments of the getelementptr.
67//
68const Type *ConvertableToGEP(const Type *Ty, Value *V, vector<Value*> &Indices,
69 BasicBlock::iterator *BI = 0);
70
71
Chris Lattner59cd9f12001-11-04 23:24:06 +000072// ------------- Expression Conversion ---------------------
73
Chris Lattnere4f4d8c2001-11-05 18:30:53 +000074typedef map<const Value*, const Type*> ValueTypeCache;
75
76struct ValueMapCache {
77 // Operands mapped - Contains an entry if the first value (the user) has had
78 // the second value (the operand) mapped already.
79 //
Chris Lattnere34443d2001-11-06 08:34:29 +000080 set<const User*> OperandsMapped;
Chris Lattnere4f4d8c2001-11-05 18:30:53 +000081
82 // Expression Map - Contains an entry from the old value to the new value of
83 // an expression that has been converted over.
84 //
85 map<const Value *, Value *> ExprMap;
86 typedef map<const Value *, Value *> ExprMapTy;
87};
Chris Lattner59cd9f12001-11-04 23:24:06 +000088
Chris Lattnerc0b90e72001-11-08 20:19:56 +000089
90bool ExpressionConvertableToType(Value *V, const Type *Ty, ValueTypeCache &Map);
91Value *ConvertExpressionToType(Value *V, const Type *Ty, ValueMapCache &VMC);
92
Chris Lattner491b29f2001-11-26 17:00:13 +000093// ValueConvertableToType - Return true if it is possible
94bool ValueConvertableToType(Value *V, const Type *Ty,
95 ValueTypeCache &ConvertedTypes);
Chris Lattner59cd9f12001-11-04 23:24:06 +000096
Chris Lattner491b29f2001-11-26 17:00:13 +000097void ConvertValueToNewType(Value *V, Value *NewVal, ValueMapCache &VMC);
Chris Lattner59cd9f12001-11-04 23:24:06 +000098
99
Chris Lattnere4f4d8c2001-11-05 18:30:53 +0000100//===----------------------------------------------------------------------===//
101// ValueHandle Class - Smart pointer that occupies a slot on the users USE list
102// that prevents it from being destroyed. This "looks" like an Instruction
103// with Opcode UserOp1.
104//
105class ValueHandle : public Instruction {
106 ValueHandle(const ValueHandle &); // DO NOT IMPLEMENT
Chris Lattnerce22ec12001-11-13 05:01:36 +0000107 ValueMapCache &Cache;
Chris Lattnere4f4d8c2001-11-05 18:30:53 +0000108public:
Chris Lattnerce22ec12001-11-13 05:01:36 +0000109 ValueHandle(ValueMapCache &VMC, Value *V);
Chris Lattnere4f4d8c2001-11-05 18:30:53 +0000110 ~ValueHandle();
111
112 virtual Instruction *clone() const { abort(); return 0; }
113
114 virtual const char *getOpcodeName() const {
115 return "ValueHandle";
116 }
117
118 // Methods for support type inquiry through isa, cast, and dyn_cast:
119 static inline bool classof(const ValueHandle *) { return true; }
120 static inline bool classof(const Instruction *I) {
121 return (I->getOpcode() == Instruction::UserOp1);
122 }
123 static inline bool classof(const Value *V) {
124 return isa<Instruction>(V) && classof(cast<Instruction>(V));
125 }
126};
127
Chris Lattnerc0b90e72001-11-08 20:19:56 +0000128// getStructOffsetType - Return a vector of offsets that are to be used to index
129// into the specified struct type to get as close as possible to index as we
130// can. Note that it is possible that we cannot get exactly to Offset, in which
131// case we update offset to be the offset we actually obtained. The resultant
132// leaf type is returned.
133//
134// If StopEarly is set to true (the default), the first object with the
135// specified type is returned, even if it is a struct type itself. In this
136// case, this routine will not drill down to the leaf type. Set StopEarly to
137// false if you want a leaf
138//
139const Type *getStructOffsetType(const Type *Ty, unsigned &Offset,
Chris Lattner491b29f2001-11-26 17:00:13 +0000140 vector<Value*> &Offsets,
Chris Lattnerc0b90e72001-11-08 20:19:56 +0000141 bool StopEarly = true);
142
Chris Lattner59cd9f12001-11-04 23:24:06 +0000143#endif