From: Chris Lattner Date: Sun, 15 Dec 2002 22:05:02 +0000 (+0000) Subject: Add new opIsUse method X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c583175e720653182d48a6924948df8a49aaa8fd;p=oota-llvm.git Add new opIsUse method git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5062 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h index 5586d61b4ba..b173d6a5505 100644 --- a/include/llvm/CodeGen/MachineInstr.h +++ b/include/llvm/CodeGen/MachineInstr.h @@ -84,12 +84,14 @@ public: private: // Bit fields of the flags variable used for different operand properties - static const char DEFFLAG = 0x1; // this is a def of the operand - static const char DEFUSEFLAG = 0x2; // this is both a def and a use - static const char HIFLAG32 = 0x4; // operand is %hi32(value_or_immedVal) - static const char LOFLAG32 = 0x8; // operand is %lo32(value_or_immedVal) + static const char DEFFLAG = 0x01; // this is a def of the operand + static const char DEFUSEFLAG = 0x02; // this is both a def and a use + static const char HIFLAG32 = 0x04; // operand is %hi32(value_or_immedVal) + static const char LOFLAG32 = 0x08; // operand is %lo32(value_or_immedVal) static const char HIFLAG64 = 0x10; // operand is %hi64(value_or_immedVal) static const char LOFLAG64 = 0x20; // operand is %lo64(value_or_immedVal) + + static const char USEDEFMASK = 0x03; private: union { @@ -203,6 +205,7 @@ public: return MBB; } + bool opIsUse () const { return (flags & USEDEFMASK) == 0; } bool opIsDef () const { return flags & DEFFLAG; } bool opIsDefAndUse () const { return flags & DEFUSEFLAG; } bool opHiBits32 () const { return flags & HIFLAG32; }