Home
last modified time | relevance | path

Searched refs:UnaryOp (Results 1 – 11 of 11) sorted by relevance

/openbsd/gnu/llvm/lldb/include/lldb/Symbol/
H A DPostfixExpression.h37 UnaryOp, enumerator
139 : Node(UnaryOp), m_op_type(op_type), m_operand(&operand) {} in UnaryOpNode()
146 static bool classof(const Node *node) { return node->GetKind() == UnaryOp; } in classof()
188 case Node::UnaryOp: in Dispatch()
/openbsd/gnu/llvm/clang/lib/AST/
H A DStmtProfile.cpp1654 UnaryOp = UO_Plus; in DecodeOperatorCall()
1663 UnaryOp = UO_Minus; in DecodeOperatorCall()
1672 UnaryOp = UO_Deref; in DecodeOperatorCall()
1693 UnaryOp = UO_AddrOf; in DecodeOperatorCall()
1705 UnaryOp = UO_Not; in DecodeOperatorCall()
1709 UnaryOp = UO_LNot; in DecodeOperatorCall()
1801 UnaryOp = S->getNumArgs() == 1? UO_PreInc in DecodeOperatorCall()
1806 UnaryOp = S->getNumArgs() == 1? UO_PreDec in DecodeOperatorCall()
1825 UnaryOp = UO_Coawait; in DecodeOperatorCall()
1851 UnaryOperatorKind UnaryOp = UO_Extension; in VisitCXXOperatorCallExpr() local
[all …]
/openbsd/gnu/llvm/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyOps.def39 TIL_OPCODE_DEF(UnaryOp)
H A DThreadSafetyTIL.h1166 class UnaryOp : public SExpr {
1168 UnaryOp(TIL_UnaryOpcode Op, SExpr *E) : SExpr(COP_UnaryOp), Expr0(E) { in UnaryOp() function
1172 UnaryOp(const UnaryOp &U, SExpr *E) : SExpr(U), Expr0(E) { Flags = U.Flags; } in UnaryOp() function
1190 typename C::CType compare(const UnaryOp* E, C& Cmp) const { in compare()
H A DThreadSafetyTraverse.h238 R_SExpr reduceUnaryOp(UnaryOp &Orig, R_SExpr E0) { return E0; } in reduceUnaryOp()
776 void printUnaryOp(const UnaryOp *E, StreamType &SS) { in printUnaryOp()
/openbsd/gnu/llvm/clang/lib/Analysis/
H A DThreadSafetyCommon.cpp498 til::UnaryOp(til::UOP_Minus, translate(UO->getSubExpr(), Ctx)); in translateUnaryOperator()
501 til::UnaryOp(til::UOP_BitNot, translate(UO->getSubExpr(), Ctx)); in translateUnaryOperator()
504 til::UnaryOp(til::UOP_LogicNot, translate(UO->getSubExpr(), Ctx)); in translateUnaryOperator()
/openbsd/gnu/llvm/llvm/include/llvm/TableGen/
H A DRecord.h788 enum UnaryOp : uint8_t { CAST, NOT, HEAD, TAIL, SIZE, EMPTY, GETDAGOP, LOG2 }; enum
793 UnOpInit(UnaryOp opc, Init *lhs, RecTy *Type) in UnOpInit()
804 static UnOpInit *get(UnaryOp opc, Init *lhs, RecTy *Type);
822 UnaryOp getOpcode() const { return (UnaryOp)Opc; } in getOpcode()
/openbsd/gnu/llvm/llvm/lib/TableGen/
H A DTGParser.cpp954 UnOpInit::UnaryOp Code; in ParseOperation()
H A DRecord.cpp760 UnOpInit *UnOpInit::get(UnaryOp Opc, Init *LHS, RecTy *Type) { in get()
/openbsd/gnu/llvm/clang/lib/Sema/
H A DSemaDeclCXX.cpp16712 if (const auto *UnaryOp = dyn_cast<UnaryOperator>(E)) in UsefulToPrintExpr() local
16713 return UsefulToPrintExpr(UnaryOp->getSubExpr()); in UsefulToPrintExpr()
H A DSemaChecking.cpp11727 if (const UnaryOperator *UnaryOp = dyn_cast<UnaryOperator>(Dest)) in CheckMemaccessArguments() local
11728 if (UnaryOp->getOpcode() == UO_AddrOf) in CheckMemaccessArguments()