Chris Lattner | 5a945e3 | 2004-01-12 21:13:12 +0000 | [diff] [blame] | 1 | //===-- ConstantFolding.h - Internal Constant Folding Interface -*- C++ -*-===// |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | b644598 | 2003-10-20 20:19:47 +0000 | [diff] [blame] | 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. |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | b644598 | 2003-10-20 20:19:47 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 9 | // |
Chris Lattner | 5a945e3 | 2004-01-12 21:13:12 +0000 | [diff] [blame] | 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. |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 16 | // |
| 17 | //===----------------------------------------------------------------------===// |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 18 | |
Chris Lattner | 5a945e3 | 2004-01-12 21:13:12 +0000 | [diff] [blame] | 19 | #ifndef CONSTANTFOLDING_H |
| 20 | #define CONSTANTFOLDING_H |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 21 | |
Chris Lattner | 6ff6cea | 2004-01-12 21:02:29 +0000 | [diff] [blame] | 22 | #include <vector> |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 23 | |
| 24 | namespace llvm { |
Chris Lattner | 13128ab | 2004-10-11 22:52:25 +0000 | [diff] [blame] | 25 | class Value; |
Chris Lattner | 6ff6cea | 2004-01-12 21:02:29 +0000 | [diff] [blame] | 26 | class Constant; |
Chris Lattner | 7dfc2d2 | 2004-10-27 16:14:51 +0000 | [diff] [blame] | 27 | class Type; |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 28 | |
Chris Lattner | 5a945e3 | 2004-01-12 21:13:12 +0000 | [diff] [blame] | 29 | // Constant fold various types of instruction... |
| 30 | Constant *ConstantFoldCastInstruction(const Constant *V, const Type *DestTy); |
Chris Lattner | 16375e3 | 2004-03-12 05:53:41 +0000 | [diff] [blame] | 31 | Constant *ConstantFoldSelectInstruction(const Constant *Cond, |
| 32 | const Constant *V1, |
| 33 | const Constant *V2); |
Robert Bocchino | de7f1c9 | 2006-01-10 20:03:46 +0000 | [diff] [blame] | 34 | Constant *ConstantFoldExtractElementInstruction(const Constant *Val, |
| 35 | const Constant *Idx); |
Robert Bocchino | ca27f03 | 2006-01-17 20:07:22 +0000 | [diff] [blame] | 36 | Constant *ConstantFoldInsertElementInstruction(const Constant *Val, |
| 37 | const Constant *Elt, |
| 38 | const Constant *Idx); |
Chris Lattner | bbe0a42 | 2006-04-08 01:18:18 +0000 | [diff] [blame^] | 39 | Constant *ConstantFoldShuffleVectorInstruction(const Constant *V1, |
| 40 | const Constant *V2, |
| 41 | const Constant *Mask); |
Chris Lattner | 5a945e3 | 2004-01-12 21:13:12 +0000 | [diff] [blame] | 42 | Constant *ConstantFoldBinaryInstruction(unsigned Opcode, const Constant *V1, |
| 43 | const Constant *V2); |
| 44 | Constant *ConstantFoldGetElementPtr(const Constant *C, |
Chris Lattner | 13128ab | 2004-10-11 22:52:25 +0000 | [diff] [blame] | 45 | const std::vector<Value*> &IdxList); |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 46 | } // End llvm namespace |
| 47 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 48 | #endif |