Added LLVM copyright header (for lack of a better term).
[oota-llvm.git] / include / llvm / iOperators.h
1 //===-- llvm/iOperators.h - Binary Operator node definitions ----*- C++ -*-===//
2 // 
3 //                     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.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the declarations of the Binary Operator classes.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_IOPERATORS_H
15 #define LLVM_IOPERATORS_H
16
17 #include "llvm/InstrTypes.h"
18
19 /// SetCondInst class - Represent a setCC operator, where CC is eq, ne, lt, gt,
20 /// le, or ge.
21 ///
22 class SetCondInst : public BinaryOperator {
23   BinaryOps OpType;
24 public:
25   SetCondInst(BinaryOps Opcode, Value *LHS, Value *RHS,
26               const std::string &Name = "", Instruction *InsertBefore = 0);
27
28   /// getInverseCondition - Return the inverse of the current condition opcode.
29   /// For example seteq -> setne, setgt -> setle, setlt -> setge, etc...
30   ///
31   BinaryOps getInverseCondition() const {
32     return getInverseCondition(getOpcode());
33   }
34
35   /// getInverseCondition - Static version that you can use without an
36   /// instruction available.
37   ///
38   static BinaryOps getInverseCondition(BinaryOps Opcode);
39
40   /// getSwappedCondition - Return the condition opcode that would be the result
41   /// of exchanging the two operands of the setcc instruction without changing
42   /// the result produced.  Thus, seteq->seteq, setle->setge, setlt->setgt, etc.
43   ///
44   BinaryOps getSwappedCondition() const {
45     return getSwappedCondition(getOpcode());
46   }
47
48   /// getSwappedCondition - Static version that you can use without an
49   /// instruction available.
50   ///
51   static BinaryOps getSwappedCondition(BinaryOps Opcode);
52
53
54   // Methods for support type inquiry through isa, cast, and dyn_cast:
55   static inline bool classof(const SetCondInst *) { return true; }
56   static inline bool classof(const Instruction *I) {
57     return I->getOpcode() == SetEQ || I->getOpcode() == SetNE ||
58            I->getOpcode() == SetLE || I->getOpcode() == SetGE ||
59            I->getOpcode() == SetLT || I->getOpcode() == SetGT;
60   }
61   static inline bool classof(const Value *V) {
62     return isa<Instruction>(V) && classof(cast<Instruction>(V));
63   }
64 };
65
66 #endif