Lines Matching refs:UnaryOp
28 class UnaryOp : public Operator {
32 UnaryOp() : Operator(Operator::UNARY, TYPE), m_pOperand(NULL) {} in UnaryOp() function
35 ~UnaryOp() {} in ~UnaryOp()
46 IntOperand* UnaryOp<Operator::UNARY_PLUS>::eval(const Module&,
49 IntOperand* UnaryOp<Operator::UNARY_MINUS>::eval(const Module&,
52 IntOperand* UnaryOp<Operator::LOGICAL_NOT>::eval(const Module&,
55 IntOperand* UnaryOp<Operator::BITWISE_NOT>::eval(const Module&,
59 IntOperand* UnaryOp<Operator::ABSOLUTE>::eval(const Module&,
62 IntOperand* UnaryOp<Operator::ADDR>::eval(const Module&,
65 IntOperand* UnaryOp<Operator::ALIGNOF>::eval(const Module&,
68 IntOperand* UnaryOp<Operator::DATA_SEGMENT_END>::eval(const Module&,
71 IntOperand* UnaryOp<Operator::DEFINED>::eval(const Module&,
74 IntOperand* UnaryOp<Operator::LENGTH>::eval(const Module&,
77 IntOperand* UnaryOp<Operator::LOADADDR>::eval(const Module&,
80 IntOperand* UnaryOp<Operator::NEXT>::eval(const Module&,
83 IntOperand* UnaryOp<Operator::ORIGIN>::eval(const Module&,
86 IntOperand* UnaryOp<Operator::SIZEOF>::eval(const Module&,