We actually don't have spiff anymore
[oota-llvm.git] / lib / VMCore / ConstantFolding.h
1 //===-- ConstantFolding.h - Internal Constant Folding Interface -*- C++ -*-===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the (internal) constant folding interfaces for LLVM.  These
11 // interfaces are used by the ConstantExpr::get* methods to automatically fold
12 // constants when possible.
13 //
14 // These operators may return a null object if I don't know how to perform the
15 // specified operation on the specified constant types.
16 //
17 //===----------------------------------------------------------------------===//
18
19 #ifndef CONSTANTFOLDING_H
20 #define CONSTANTFOLDING_H
21
22 #include <vector>
23
24 namespace llvm {
25   class Constant;
26   class Type;
27   
28   // Constant fold various types of instruction...
29   Constant *ConstantFoldCastInstruction(const Constant *V, const Type *DestTy);
30   Constant *ConstantFoldSelectInstruction(const Constant *Cond,
31                                           const Constant *V1,
32                                           const Constant *V2);
33   Constant *ConstantFoldBinaryInstruction(unsigned Opcode, const Constant *V1,
34                                           const Constant *V2);
35   Constant *ConstantFoldGetElementPtr(const Constant *C,
36                                       const std::vector<Constant*> &IdxList);
37 } // End llvm namespace
38
39 #endif