2004-01-12 21:13:12 +00:00
|
|
|
//===-- ConstantFolding.h - Internal Constant Folding Interface -*- C++ -*-===//
|
2005-04-21 23:48:37 +00:00
|
|
|
//
|
2003-10-20 20:19:47 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 23:48:37 +00:00
|
|
|
//
|
2003-10-20 20:19:47 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
2004-01-12 21:13:12 +00:00
|
|
|
// This file defines the (internal) constant folding interfaces for LLVM. These
|
|
|
|
// interfaces are used by the ConstantExpr::get* methods to automatically fold
|
|
|
|
// constants when possible.
|
|
|
|
//
|
2008-08-01 12:23:49 +00:00
|
|
|
// These operators may return a null object if they don't know how to perform
|
|
|
|
// the specified operation on the specified constant types.
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-01-12 21:13:12 +00:00
|
|
|
#ifndef CONSTANTFOLDING_H
|
|
|
|
#define CONSTANTFOLDING_H
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2011-07-13 10:26:04 +00:00
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
namespace llvm {
|
2004-10-11 22:52:25 +00:00
|
|
|
class Value;
|
2004-01-12 21:02:29 +00:00
|
|
|
class Constant;
|
2004-10-27 16:14:51 +00:00
|
|
|
class Type;
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2004-01-12 21:13:12 +00:00
|
|
|
// Constant fold various types of instruction...
|
2006-11-27 01:05:10 +00:00
|
|
|
Constant *ConstantFoldCastInstruction(
|
|
|
|
unsigned opcode, ///< The opcode of the cast
|
2009-09-20 01:35:59 +00:00
|
|
|
Constant *V, ///< The source constant
|
2011-07-18 04:54:35 +00:00
|
|
|
Type *DestTy ///< The destination type
|
2006-11-27 01:05:10 +00:00
|
|
|
);
|
2010-02-01 20:48:08 +00:00
|
|
|
Constant *ConstantFoldSelectInstruction(Constant *Cond,
|
2009-09-20 01:35:59 +00:00
|
|
|
Constant *V1, Constant *V2);
|
2010-02-01 20:48:08 +00:00
|
|
|
Constant *ConstantFoldExtractElementInstruction(Constant *Val, Constant *Idx);
|
|
|
|
Constant *ConstantFoldInsertElementInstruction(Constant *Val, Constant *Elt,
|
2009-09-20 01:35:59 +00:00
|
|
|
Constant *Idx);
|
2010-02-01 20:48:08 +00:00
|
|
|
Constant *ConstantFoldShuffleVectorInstruction(Constant *V1, Constant *V2,
|
2009-09-20 01:35:59 +00:00
|
|
|
Constant *Mask);
|
2010-02-01 20:48:08 +00:00
|
|
|
Constant *ConstantFoldExtractValueInstruction(Constant *Agg,
|
2011-07-13 10:26:04 +00:00
|
|
|
ArrayRef<unsigned> Idxs);
|
2010-02-01 20:48:08 +00:00
|
|
|
Constant *ConstantFoldInsertValueInstruction(Constant *Agg, Constant *Val,
|
2011-07-13 10:26:04 +00:00
|
|
|
ArrayRef<unsigned> Idxs);
|
2010-02-01 20:48:08 +00:00
|
|
|
Constant *ConstantFoldBinaryInstruction(unsigned Opcode, Constant *V1,
|
2009-09-20 01:35:59 +00:00
|
|
|
Constant *V2);
|
2010-02-01 20:48:08 +00:00
|
|
|
Constant *ConstantFoldCompareInstruction(unsigned short predicate,
|
2009-09-20 01:35:59 +00:00
|
|
|
Constant *C1, Constant *C2);
|
2010-02-01 20:48:08 +00:00
|
|
|
Constant *ConstantFoldGetElementPtr(Constant *C, bool inBounds,
|
2011-07-19 15:30:30 +00:00
|
|
|
ArrayRef<Constant *> Idxs);
|
2011-01-14 08:07:43 +00:00
|
|
|
Constant *ConstantFoldGetElementPtr(Constant *C, bool inBounds,
|
2011-07-19 15:30:30 +00:00
|
|
|
ArrayRef<Value *> Idxs);
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
#endif
|