blob: 5119aaf3f7eea04a5c4c98b648a1734d09cd78e4 [file] [log] [blame]
Chris Lattner5a945e32004-01-12 21:13:12 +00001//===-- ConstantFolding.h - Internal Constant Folding Interface -*- C++ -*-===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswellb6445982003-10-20 20:19:47 +00003// 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 Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswellb6445982003-10-20 20:19:47 +00008//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00009//
Chris Lattner5a945e32004-01-12 21:13:12 +000010// 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 Lattner2f7c9632001-06-06 20:29:01 +000016//
17//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +000018
Chris Lattner5a945e32004-01-12 21:13:12 +000019#ifndef CONSTANTFOLDING_H
20#define CONSTANTFOLDING_H
Chris Lattner2f7c9632001-06-06 20:29:01 +000021
Chris Lattner6ff6cea2004-01-12 21:02:29 +000022#include <vector>
Brian Gaeke960707c2003-11-11 22:41:34 +000023
24namespace llvm {
Chris Lattner13128ab2004-10-11 22:52:25 +000025 class Value;
Chris Lattner6ff6cea2004-01-12 21:02:29 +000026 class Constant;
Chris Lattner7dfc2d22004-10-27 16:14:51 +000027 class Type;
Misha Brukmanb1c93172005-04-21 23:48:37 +000028
Chris Lattner5a945e32004-01-12 21:13:12 +000029 // Constant fold various types of instruction...
30 Constant *ConstantFoldCastInstruction(const Constant *V, const Type *DestTy);
Chris Lattner16375e32004-03-12 05:53:41 +000031 Constant *ConstantFoldSelectInstruction(const Constant *Cond,
32 const Constant *V1,
33 const Constant *V2);
Robert Bocchinode7f1c92006-01-10 20:03:46 +000034 Constant *ConstantFoldExtractElementInstruction(const Constant *Val,
35 const Constant *Idx);
Robert Bocchinoca27f032006-01-17 20:07:22 +000036 Constant *ConstantFoldInsertElementInstruction(const Constant *Val,
37 const Constant *Elt,
38 const Constant *Idx);
Chris Lattnerbbe0a422006-04-08 01:18:18 +000039 Constant *ConstantFoldShuffleVectorInstruction(const Constant *V1,
40 const Constant *V2,
41 const Constant *Mask);
Chris Lattner5a945e32004-01-12 21:13:12 +000042 Constant *ConstantFoldBinaryInstruction(unsigned Opcode, const Constant *V1,
43 const Constant *V2);
44 Constant *ConstantFoldGetElementPtr(const Constant *C,
Chris Lattner13128ab2004-10-11 22:52:25 +000045 const std::vector<Value*> &IdxList);
Brian Gaeke960707c2003-11-11 22:41:34 +000046} // End llvm namespace
47
Chris Lattner2f7c9632001-06-06 20:29:01 +000048#endif