ConstantFold.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. //===-- ConstantFolding.h - Internal Constant Folding Interface -*- C++ -*-===//
  2. //
  3. // The LLVM Compiler Infrastructure
  4. //
  5. // This file is distributed under the University of Illinois Open Source
  6. // 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 they don't know how to perform
  15. // the specified operation on the specified constant types.
  16. //
  17. //===----------------------------------------------------------------------===//
  18. #ifndef LLVM_LIB_IR_CONSTANTFOLD_H
  19. #define LLVM_LIB_IR_CONSTANTFOLD_H
  20. #include "llvm/ADT/ArrayRef.h"
  21. namespace llvm {
  22. class Value;
  23. class Constant;
  24. class Type;
  25. // Constant fold various types of instruction...
  26. Constant *ConstantFoldCastInstruction(
  27. unsigned opcode, ///< The opcode of the cast
  28. Constant *V, ///< The source constant
  29. Type *DestTy ///< The destination type
  30. );
  31. Constant *ConstantFoldSelectInstruction(Constant *Cond,
  32. Constant *V1, Constant *V2);
  33. Constant *ConstantFoldExtractElementInstruction(Constant *Val, Constant *Idx);
  34. Constant *ConstantFoldInsertElementInstruction(Constant *Val, Constant *Elt,
  35. Constant *Idx);
  36. Constant *ConstantFoldShuffleVectorInstruction(Constant *V1, Constant *V2,
  37. Constant *Mask);
  38. Constant *ConstantFoldExtractValueInstruction(Constant *Agg,
  39. ArrayRef<unsigned> Idxs);
  40. Constant *ConstantFoldInsertValueInstruction(Constant *Agg, Constant *Val,
  41. ArrayRef<unsigned> Idxs);
  42. Constant *ConstantFoldBinaryInstruction(unsigned Opcode, Constant *V1,
  43. Constant *V2);
  44. Constant *ConstantFoldCompareInstruction(unsigned short predicate,
  45. Constant *C1, Constant *C2);
  46. Constant *ConstantFoldGetElementPtr(Constant *C, bool inBounds,
  47. ArrayRef<Constant *> Idxs);
  48. Constant *ConstantFoldGetElementPtr(Constant *C, bool inBounds,
  49. ArrayRef<Value *> Idxs);
  50. Constant *ConstantFoldGetElementPtr(Type *Ty, Constant *C, bool inBounds,
  51. ArrayRef<Constant *> Idxs);
  52. Constant *ConstantFoldGetElementPtr(Type *Ty, Constant *C, bool inBounds,
  53. ArrayRef<Value *> Idxs);
  54. } // End llvm namespace
  55. #endif