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 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // 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 | // |
Duncan Sands | c1e48b5 | 2008-08-01 12:23:49 +0000 | [diff] [blame] | 14 | // These operators may return a null object if they don't know how to perform |
| 15 | // the 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 | |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 22 | namespace llvm { |
Chris Lattner | 13128ab | 2004-10-11 22:52:25 +0000 | [diff] [blame] | 23 | class Value; |
Chris Lattner | 6ff6cea | 2004-01-12 21:02:29 +0000 | [diff] [blame] | 24 | class Constant; |
Chris Lattner | 7dfc2d2 | 2004-10-27 16:14:51 +0000 | [diff] [blame] | 25 | class Type; |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 26 | |
Chris Lattner | 5a945e3 | 2004-01-12 21:13:12 +0000 | [diff] [blame] | 27 | // Constant fold various types of instruction... |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 28 | Constant *ConstantFoldCastInstruction( |
| 29 | unsigned opcode, ///< The opcode of the cast |
| 30 | const Constant *V, ///< The source constant |
Owen Anderson | 2cda7d7 | 2009-06-20 00:26:26 +0000 | [diff] [blame^] | 31 | const Type *DestTy ///< The destination type |
Reid Spencer | 6c38f0b | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 32 | ); |
Chris Lattner | 16375e3 | 2004-03-12 05:53:41 +0000 | [diff] [blame] | 33 | Constant *ConstantFoldSelectInstruction(const Constant *Cond, |
| 34 | const Constant *V1, |
Owen Anderson | 2cda7d7 | 2009-06-20 00:26:26 +0000 | [diff] [blame^] | 35 | const Constant *V2); |
Robert Bocchino | de7f1c9 | 2006-01-10 20:03:46 +0000 | [diff] [blame] | 36 | Constant *ConstantFoldExtractElementInstruction(const Constant *Val, |
| 37 | const Constant *Idx); |
Robert Bocchino | ca27f03 | 2006-01-17 20:07:22 +0000 | [diff] [blame] | 38 | Constant *ConstantFoldInsertElementInstruction(const Constant *Val, |
| 39 | const Constant *Elt, |
| 40 | const Constant *Idx); |
Chris Lattner | bbe0a42 | 2006-04-08 01:18:18 +0000 | [diff] [blame] | 41 | Constant *ConstantFoldShuffleVectorInstruction(const Constant *V1, |
| 42 | const Constant *V2, |
| 43 | const Constant *Mask); |
Dan Gohman | 3db11c2 | 2008-06-03 00:15:20 +0000 | [diff] [blame] | 44 | Constant *ConstantFoldExtractValueInstruction(const Constant *Agg, |
| 45 | const unsigned *Idxs, |
| 46 | unsigned NumIdx); |
| 47 | Constant *ConstantFoldInsertValueInstruction(const Constant *Agg, |
| 48 | const Constant *Val, |
| 49 | const unsigned* Idxs, |
| 50 | unsigned NumIdx); |
Chris Lattner | 5a945e3 | 2004-01-12 21:13:12 +0000 | [diff] [blame] | 51 | Constant *ConstantFoldBinaryInstruction(unsigned Opcode, const Constant *V1, |
Owen Anderson | 2cda7d7 | 2009-06-20 00:26:26 +0000 | [diff] [blame^] | 52 | const Constant *V2); |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 53 | Constant *ConstantFoldCompareInstruction(unsigned short predicate, |
Reid Spencer | 9d36acf | 2006-12-24 18:52:08 +0000 | [diff] [blame] | 54 | const Constant *C1, |
| 55 | const Constant *C2); |
Owen Anderson | 2cda7d7 | 2009-06-20 00:26:26 +0000 | [diff] [blame^] | 56 | Constant *ConstantFoldGetElementPtr(const Constant *C, |
| 57 | Constant* const *Idxs, unsigned NumIdx); |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 58 | } // End llvm namespace |
| 59 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 60 | #endif |