Searched refs:UNDEF_PTR (Results 1 – 1 of 1) sorted by relevance
152 static constexpr uintptr_t UNDEF_PTR = (uintptr_t)-1; member in OperandNode154 uintptr_t Data = UNDEF_PTR;162 explicit OperandNode(nullptr_t) : Data(UNDEF_PTR) {} in OperandNode()165 if (UNDEF_PTR == Data) { in operator Operand*()175 if (UNDEF_PTR == Data) { in operator CfgNode*()184 explicit operator bool() const { return (Data != UNDEF_PTR) && Data; } in operator bool()187 (UNDEF_PTR == Data && (Rhs.Data == 0 || Rhs.Data == NODE_FLAG)) || in operator ==()188 (UNDEF_PTR == Rhs.Data && (Data == 0 || Data == NODE_FLAG)); in operator ==()192 bool isOperand() const { return (Data != UNDEF_PTR) && !(Data & NODE_FLAG); } in isOperand()193 bool isCfgNode() const { return (Data != UNDEF_PTR) && (Data & NODE_FLAG); } in isCfgNode()