2009-07-17 22:47:02 +02:00
|
|
|
//===-- llvm/Operator.h - Operator utility subclass -------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines various classes for working with Instructions and
|
|
|
|
// ConstantExprs.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_OPERATOR_H
|
|
|
|
#define LLVM_OPERATOR_H
|
|
|
|
|
|
|
|
#include "llvm/Instruction.h"
|
|
|
|
#include "llvm/Constants.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2009-08-11 19:03:18 +02:00
|
|
|
class GetElementPtrInst;
|
2009-09-08 01:54:19 +02:00
|
|
|
class BinaryOperator;
|
|
|
|
class ConstantExpr;
|
2009-08-11 19:03:18 +02:00
|
|
|
|
2009-07-17 22:47:02 +02:00
|
|
|
/// Operator - This is a utility class that provides an abstraction for the
|
|
|
|
/// common functionality between Instructions and ConstantExprs.
|
|
|
|
///
|
|
|
|
class Operator : public User {
|
|
|
|
private:
|
|
|
|
// Do not implement any of these. The Operator class is intended to be used
|
|
|
|
// as a utility, and is never itself instantiated.
|
|
|
|
void *operator new(size_t, unsigned);
|
|
|
|
void *operator new(size_t s);
|
|
|
|
Operator();
|
|
|
|
~Operator();
|
|
|
|
|
|
|
|
public:
|
|
|
|
/// getOpcode - Return the opcode for this Instruction or ConstantExpr.
|
|
|
|
///
|
|
|
|
unsigned getOpcode() const {
|
|
|
|
if (const Instruction *I = dyn_cast<Instruction>(this))
|
|
|
|
return I->getOpcode();
|
|
|
|
return cast<ConstantExpr>(this)->getOpcode();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// getOpcode - If V is an Instruction or ConstantExpr, return its
|
|
|
|
/// opcode. Otherwise return UserOp1.
|
|
|
|
///
|
|
|
|
static unsigned getOpcode(const Value *V) {
|
|
|
|
if (const Instruction *I = dyn_cast<Instruction>(V))
|
|
|
|
return I->getOpcode();
|
|
|
|
if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(V))
|
|
|
|
return CE->getOpcode();
|
|
|
|
return Instruction::UserOp1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool classof(const Operator *) { return true; }
|
2009-10-14 22:28:33 +02:00
|
|
|
static inline bool classof(const Instruction *) { return true; }
|
|
|
|
static inline bool classof(const ConstantExpr *) { return true; }
|
2009-07-17 22:47:02 +02:00
|
|
|
static inline bool classof(const Value *V) {
|
|
|
|
return isa<Instruction>(V) || isa<ConstantExpr>(V);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/// OverflowingBinaryOperator - Utility class for integer arithmetic operators
|
2009-07-20 22:32:43 +02:00
|
|
|
/// which may exhibit overflow - Add, Sub, and Mul. It does not include SDiv,
|
|
|
|
/// despite that operator having the potential for overflow.
|
2009-07-17 22:47:02 +02:00
|
|
|
///
|
|
|
|
class OverflowingBinaryOperator : public Operator {
|
2009-09-08 01:54:19 +02:00
|
|
|
public:
|
|
|
|
enum {
|
|
|
|
NoUnsignedWrap = (1 << 0),
|
|
|
|
NoSignedWrap = (1 << 1)
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
2009-08-13 22:43:13 +02:00
|
|
|
~OverflowingBinaryOperator(); // do not implement
|
2009-09-08 01:54:19 +02:00
|
|
|
|
|
|
|
friend class BinaryOperator;
|
|
|
|
friend class ConstantExpr;
|
|
|
|
void setHasNoUnsignedWrap(bool B) {
|
|
|
|
SubclassOptionalData =
|
|
|
|
(SubclassOptionalData & ~NoUnsignedWrap) | (B * NoUnsignedWrap);
|
|
|
|
}
|
|
|
|
void setHasNoSignedWrap(bool B) {
|
|
|
|
SubclassOptionalData =
|
|
|
|
(SubclassOptionalData & ~NoSignedWrap) | (B * NoSignedWrap);
|
|
|
|
}
|
|
|
|
|
2009-07-17 22:47:02 +02:00
|
|
|
public:
|
2009-08-20 19:11:38 +02:00
|
|
|
/// hasNoUnsignedWrap - Test whether this operation is known to never
|
|
|
|
/// undergo unsigned overflow, aka the nuw property.
|
|
|
|
bool hasNoUnsignedWrap() const {
|
2009-09-08 01:54:19 +02:00
|
|
|
return SubclassOptionalData & NoUnsignedWrap;
|
2009-07-17 22:47:02 +02:00
|
|
|
}
|
|
|
|
|
2009-08-20 19:11:38 +02:00
|
|
|
/// hasNoSignedWrap - Test whether this operation is known to never
|
|
|
|
/// undergo signed overflow, aka the nsw property.
|
|
|
|
bool hasNoSignedWrap() const {
|
2010-09-25 22:27:36 +02:00
|
|
|
return (SubclassOptionalData & NoSignedWrap) != 0;
|
2009-07-17 22:47:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool classof(const OverflowingBinaryOperator *) { return true; }
|
|
|
|
static inline bool classof(const Instruction *I) {
|
|
|
|
return I->getOpcode() == Instruction::Add ||
|
|
|
|
I->getOpcode() == Instruction::Sub ||
|
|
|
|
I->getOpcode() == Instruction::Mul;
|
|
|
|
}
|
|
|
|
static inline bool classof(const ConstantExpr *CE) {
|
|
|
|
return CE->getOpcode() == Instruction::Add ||
|
|
|
|
CE->getOpcode() == Instruction::Sub ||
|
|
|
|
CE->getOpcode() == Instruction::Mul;
|
|
|
|
}
|
|
|
|
static inline bool classof(const Value *V) {
|
|
|
|
return (isa<Instruction>(V) && classof(cast<Instruction>(V))) ||
|
|
|
|
(isa<ConstantExpr>(V) && classof(cast<ConstantExpr>(V)));
|
2009-07-24 20:12:25 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/// AddOperator - Utility class for integer addition operators.
|
|
|
|
///
|
|
|
|
class AddOperator : public OverflowingBinaryOperator {
|
2009-08-13 22:43:13 +02:00
|
|
|
~AddOperator(); // do not implement
|
2009-07-24 20:12:25 +02:00
|
|
|
public:
|
|
|
|
static inline bool classof(const AddOperator *) { return true; }
|
|
|
|
static inline bool classof(const Instruction *I) {
|
|
|
|
return I->getOpcode() == Instruction::Add;
|
|
|
|
}
|
|
|
|
static inline bool classof(const ConstantExpr *CE) {
|
|
|
|
return CE->getOpcode() == Instruction::Add;
|
|
|
|
}
|
|
|
|
static inline bool classof(const Value *V) {
|
|
|
|
return (isa<Instruction>(V) && classof(cast<Instruction>(V))) ||
|
|
|
|
(isa<ConstantExpr>(V) && classof(cast<ConstantExpr>(V)));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/// SubOperator - Utility class for integer subtraction operators.
|
|
|
|
///
|
|
|
|
class SubOperator : public OverflowingBinaryOperator {
|
2009-08-13 22:43:13 +02:00
|
|
|
~SubOperator(); // do not implement
|
2009-07-24 20:12:25 +02:00
|
|
|
public:
|
|
|
|
static inline bool classof(const SubOperator *) { return true; }
|
|
|
|
static inline bool classof(const Instruction *I) {
|
|
|
|
return I->getOpcode() == Instruction::Sub;
|
|
|
|
}
|
|
|
|
static inline bool classof(const ConstantExpr *CE) {
|
|
|
|
return CE->getOpcode() == Instruction::Sub;
|
|
|
|
}
|
|
|
|
static inline bool classof(const Value *V) {
|
|
|
|
return (isa<Instruction>(V) && classof(cast<Instruction>(V))) ||
|
|
|
|
(isa<ConstantExpr>(V) && classof(cast<ConstantExpr>(V)));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/// MulOperator - Utility class for integer multiplication operators.
|
|
|
|
///
|
|
|
|
class MulOperator : public OverflowingBinaryOperator {
|
2009-08-13 22:43:13 +02:00
|
|
|
~MulOperator(); // do not implement
|
2009-07-24 20:12:25 +02:00
|
|
|
public:
|
|
|
|
static inline bool classof(const MulOperator *) { return true; }
|
|
|
|
static inline bool classof(const Instruction *I) {
|
|
|
|
return I->getOpcode() == Instruction::Mul;
|
|
|
|
}
|
|
|
|
static inline bool classof(const ConstantExpr *CE) {
|
|
|
|
return CE->getOpcode() == Instruction::Mul;
|
|
|
|
}
|
|
|
|
static inline bool classof(const Value *V) {
|
|
|
|
return (isa<Instruction>(V) && classof(cast<Instruction>(V))) ||
|
|
|
|
(isa<ConstantExpr>(V) && classof(cast<ConstantExpr>(V)));
|
2009-07-17 22:47:02 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-07-20 19:51:10 +02:00
|
|
|
/// SDivOperator - An Operator with opcode Instruction::SDiv.
|
2009-07-17 22:47:02 +02:00
|
|
|
///
|
2009-07-20 19:51:10 +02:00
|
|
|
class SDivOperator : public Operator {
|
2009-09-08 01:54:19 +02:00
|
|
|
public:
|
|
|
|
enum {
|
|
|
|
IsExact = (1 << 0)
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
2009-08-13 22:43:13 +02:00
|
|
|
~SDivOperator(); // do not implement
|
2009-09-08 01:54:19 +02:00
|
|
|
|
|
|
|
friend class BinaryOperator;
|
|
|
|
friend class ConstantExpr;
|
|
|
|
void setIsExact(bool B) {
|
|
|
|
SubclassOptionalData = (SubclassOptionalData & ~IsExact) | (B * IsExact);
|
|
|
|
}
|
|
|
|
|
2009-07-17 22:47:02 +02:00
|
|
|
public:
|
|
|
|
/// isExact - Test whether this division is known to be exact, with
|
|
|
|
/// zero remainder.
|
|
|
|
bool isExact() const {
|
2009-09-08 01:54:19 +02:00
|
|
|
return SubclassOptionalData & IsExact;
|
2009-07-17 22:47:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Methods for support type inquiry through isa, cast, and dyn_cast:
|
2009-07-20 19:51:10 +02:00
|
|
|
static inline bool classof(const SDivOperator *) { return true; }
|
2009-07-17 22:47:02 +02:00
|
|
|
static inline bool classof(const ConstantExpr *CE) {
|
2009-07-20 19:51:10 +02:00
|
|
|
return CE->getOpcode() == Instruction::SDiv;
|
2009-07-17 22:47:02 +02:00
|
|
|
}
|
|
|
|
static inline bool classof(const Instruction *I) {
|
2009-07-20 19:51:10 +02:00
|
|
|
return I->getOpcode() == Instruction::SDiv;
|
2009-07-17 22:47:02 +02:00
|
|
|
}
|
|
|
|
static inline bool classof(const Value *V) {
|
|
|
|
return (isa<Instruction>(V) && classof(cast<Instruction>(V))) ||
|
|
|
|
(isa<ConstantExpr>(V) && classof(cast<ConstantExpr>(V)));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-07-17 23:33:58 +02:00
|
|
|
class GEPOperator : public Operator {
|
2009-09-08 01:54:19 +02:00
|
|
|
enum {
|
|
|
|
IsInBounds = (1 << 0)
|
|
|
|
};
|
|
|
|
|
2009-08-13 22:43:13 +02:00
|
|
|
~GEPOperator(); // do not implement
|
2009-09-08 01:54:19 +02:00
|
|
|
|
|
|
|
friend class GetElementPtrInst;
|
|
|
|
friend class ConstantExpr;
|
|
|
|
void setIsInBounds(bool B) {
|
|
|
|
SubclassOptionalData =
|
|
|
|
(SubclassOptionalData & ~IsInBounds) | (B * IsInBounds);
|
|
|
|
}
|
|
|
|
|
2009-07-17 23:33:58 +02:00
|
|
|
public:
|
2009-07-27 23:53:46 +02:00
|
|
|
/// isInBounds - Test whether this is an inbounds GEP, as defined
|
|
|
|
/// by LangRef.html.
|
|
|
|
bool isInBounds() const {
|
2009-09-08 01:54:19 +02:00
|
|
|
return SubclassOptionalData & IsInBounds;
|
2009-07-27 23:53:46 +02:00
|
|
|
}
|
|
|
|
|
2009-07-18 01:55:56 +02:00
|
|
|
inline op_iterator idx_begin() { return op_begin()+1; }
|
|
|
|
inline const_op_iterator idx_begin() const { return op_begin()+1; }
|
|
|
|
inline op_iterator idx_end() { return op_end(); }
|
|
|
|
inline const_op_iterator idx_end() const { return op_end(); }
|
|
|
|
|
|
|
|
Value *getPointerOperand() {
|
|
|
|
return getOperand(0);
|
|
|
|
}
|
|
|
|
const Value *getPointerOperand() const {
|
|
|
|
return getOperand(0);
|
|
|
|
}
|
|
|
|
static unsigned getPointerOperandIndex() {
|
|
|
|
return 0U; // get index for modifying correct operand
|
|
|
|
}
|
|
|
|
|
|
|
|
/// getPointerOperandType - Method to return the pointer operand as a
|
|
|
|
/// PointerType.
|
|
|
|
const PointerType *getPointerOperandType() const {
|
|
|
|
return reinterpret_cast<const PointerType*>(getPointerOperand()->getType());
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned getNumIndices() const { // Note: always non-negative
|
|
|
|
return getNumOperands() - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool hasIndices() const {
|
|
|
|
return getNumOperands() > 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// hasAllZeroIndices - Return true if all of the indices of this GEP are
|
|
|
|
/// zeros. If so, the result pointer and the first operand have the same
|
|
|
|
/// value, just potentially different types.
|
|
|
|
bool hasAllZeroIndices() const {
|
|
|
|
for (const_op_iterator I = idx_begin(), E = idx_end(); I != E; ++I) {
|
|
|
|
if (Constant *C = dyn_cast<Constant>(I))
|
|
|
|
if (C->isNullValue())
|
|
|
|
continue;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-09-21 07:52:45 +02:00
|
|
|
/// hasAllConstantIndices - Return true if all of the indices of this GEP are
|
|
|
|
/// constant integers. If so, the result pointer and the first operand have
|
|
|
|
/// a constant offset between them.
|
|
|
|
bool hasAllConstantIndices() const {
|
|
|
|
for (const_op_iterator I = idx_begin(), E = idx_end(); I != E; ++I) {
|
|
|
|
if (!isa<ConstantInt>(I))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-17 23:33:58 +02:00
|
|
|
// Methods for support type inquiry through isa, cast, and dyn_cast:
|
|
|
|
static inline bool classof(const GEPOperator *) { return true; }
|
|
|
|
static inline bool classof(const GetElementPtrInst *) { return true; }
|
|
|
|
static inline bool classof(const ConstantExpr *CE) {
|
|
|
|
return CE->getOpcode() == Instruction::GetElementPtr;
|
|
|
|
}
|
|
|
|
static inline bool classof(const Instruction *I) {
|
|
|
|
return I->getOpcode() == Instruction::GetElementPtr;
|
|
|
|
}
|
|
|
|
static inline bool classof(const Value *V) {
|
2009-08-11 19:03:18 +02:00
|
|
|
return (isa<Instruction>(V) && classof(cast<Instruction>(V))) ||
|
2009-07-17 23:33:58 +02:00
|
|
|
(isa<ConstantExpr>(V) && classof(cast<ConstantExpr>(V)));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-07-17 22:47:02 +02:00
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|