blob: 39bfe14660cc87ccabadb27790aebb6ab7575072 [file] [log] [blame]
Chris Lattner2e9fe0a2002-09-10 15:34:41 +00001//===-- llvm/iOperators.h - Binary Operator node definitions ----*- C++ -*-===//
John Criswell6fbcc262003-10-20 20:19:47 +00002//
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//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +00009//
Chris Lattner2e9fe0a2002-09-10 15:34:41 +000010// This file contains the declarations of the Binary Operator classes.
Chris Lattner00950542001-06-06 20:29:01 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner2e9fe0a2002-09-10 15:34:41 +000014#ifndef LLVM_IOPERATORS_H
15#define LLVM_IOPERATORS_H
Chris Lattner00950542001-06-06 20:29:01 +000016
17#include "llvm/InstrTypes.h"
18
Chris Lattner2e9fe0a2002-09-10 15:34:41 +000019/// SetCondInst class - Represent a setCC operator, where CC is eq, ne, lt, gt,
20/// le, or ge.
21///
Chris Lattner00950542001-06-06 20:29:01 +000022class SetCondInst : public BinaryOperator {
23 BinaryOps OpType;
24public:
Chris Lattner3d92ac22002-09-01 19:46:36 +000025 SetCondInst(BinaryOps Opcode, Value *LHS, Value *RHS,
Chris Lattner2e9fe0a2002-09-10 15:34:41 +000026 const std::string &Name = "", Instruction *InsertBefore = 0);
Chris Lattnerbacb8b92002-08-20 18:17:09 +000027
Chris Lattner3d92ac22002-09-01 19:46:36 +000028 /// 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
Chris Lattner615cdb92002-08-23 18:30:58 +000053
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 }
Chris Lattner00950542001-06-06 20:29:01 +000064};
65
66#endif