| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | StmtProfile.cpp | 1695 BinaryOp = BO_Add; in DecodeOperatorCall() 1704 BinaryOp = BO_Sub; in DecodeOperatorCall() 1713 BinaryOp = BO_Mul; in DecodeOperatorCall() 1717 BinaryOp = BO_Div; in DecodeOperatorCall() 1738 BinaryOp = BO_Or; in DecodeOperatorCall() 1754 BinaryOp = BO_LT; in DecodeOperatorCall() 1758 BinaryOp = BO_GT; in DecodeOperatorCall() 1810 BinaryOp = BO_EQ; in DecodeOperatorCall() 1814 BinaryOp = BO_NE; in DecodeOperatorCall() 1818 BinaryOp = BO_LE; in DecodeOperatorCall() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | PostfixExpression.h | 32 BinaryOp, enumerator 60 : Node(BinaryOp), m_op_type(op_type), m_left(&left), m_right(&right) {} in BinaryOpNode() 70 static bool classof(const Node *node) { return node->GetKind() == BinaryOp; } in classof() 178 case Node::BinaryOp: in Dispatch()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXTargetTransformInfo.cpp | 145 std::optional<Instruction::BinaryOps> BinaryOp; in simplifyNvvmIntrinsic() member 163 SimplifyAction(Instruction::BinaryOps BinaryOp, FtzRequirementTy FtzReq) in simplifyNvvmIntrinsic() 164 : BinaryOp(BinaryOp), FtzRequirement(FtzReq) {} in simplifyNvvmIntrinsic() 366 if (Action.BinaryOp) in simplifyNvvmIntrinsic() 367 return BinaryOperator::Create(*Action.BinaryOp, II->getArgOperand(0), in simplifyNvvmIntrinsic()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Analysis/Analyses/ |
| H A D | ThreadSafetyOps.def | 40 TIL_OPCODE_DEF(BinaryOp)
|
| H A D | ThreadSafetyTIL.h | 1213 class BinaryOp : public SExpr { 1215 BinaryOp(TIL_BinaryOpcode Op, SExpr *E0, SExpr *E1) in BinaryOp() function 1220 BinaryOp(const BinaryOp &B, SExpr *E0, SExpr *E1) in BinaryOp() function 1245 typename C::CType compare(const BinaryOp* E, C& Cmp) const { in compare()
|
| H A D | ThreadSafetyTraverse.h | 240 R_SExpr reduceBinaryOp(BinaryOp &Orig, R_SExpr E0, R_SExpr E1) { in reduceBinaryOp() 781 void printBinaryOp(const BinaryOp *E, StreamType &SS) { in printBinaryOp()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | ThreadSafetyCommon.cpp | 530 return new (Arena) til::BinaryOp(Op, E1, E0); in translateBinOp() 532 return new (Arena) til::BinaryOp(Op, E0, E1); in translateBinOp() 553 E1 = new (Arena) til::BinaryOp(Op, Arg, E1); in translateBinAssign()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/VE/ |
| H A D | VVPInstrInfo.td | 56 // BinaryOp(x,y,mask,vl)
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/TableGen/ |
| H A D | Record.h | 899 enum BinaryOp : uint8_t { enum 933 BinOpInit(BinaryOp opc, Init *lhs, Init *rhs, RecTy *Type) : in BinOpInit() 944 static BinOpInit *get(BinaryOp opc, Init *lhs, Init *rhs, 967 BinaryOp getOpcode() const { return (BinaryOp)Opc; } in getOpcode()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineInternal.h | 269 bool OptimizeOverflowCheck(Instruction::BinaryOps BinaryOp, bool IsSigned, 480 Instruction::BinaryOps BinaryOp, bool IsSigned,
|
| H A D | InstCombineCompares.cpp | 5715 static bool isNeutralValue(Instruction::BinaryOps BinaryOp, Value *RHS, bool IsSigned) { in isNeutralValue() argument 5716 switch (BinaryOp) { in isNeutralValue() 5729 InstCombinerImpl::computeOverflow(Instruction::BinaryOps BinaryOp, in computeOverflow() argument 5732 switch (BinaryOp) { in computeOverflow() 5753 bool InstCombinerImpl::OptimizeOverflowCheck(Instruction::BinaryOps BinaryOp, in OptimizeOverflowCheck() argument 5771 if (isNeutralValue(BinaryOp, RHS, IsSigned)) { in OptimizeOverflowCheck() 5777 switch (computeOverflow(BinaryOp, IsSigned, LHS, RHS, &OrigI)) { in OptimizeOverflowCheck() 5782 Result = Builder.CreateBinOp(BinaryOp, LHS, RHS); in OptimizeOverflowCheck() 5787 Result = Builder.CreateBinOp(BinaryOp, LHS, RHS); in OptimizeOverflowCheck()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | ScalarEvolution.cpp | 5236 struct BinaryOp { struct 5247 explicit BinaryOp(Operator *Op) in BinaryOp() argument 5264 static std::optional<BinaryOp> MatchBinaryOp(Value *V, const DataLayout &DL, in MatchBinaryOp() 5285 return BinaryOp(Op); in MatchBinaryOp() 5290 return BinaryOp(Instruction::Add, Op->getOperand(0), Op->getOperand(1), in MatchBinaryOp() 5292 return BinaryOp(Op); in MatchBinaryOp() 5304 return BinaryOp(Op); in MatchBinaryOp() 5319 return BinaryOp(Instruction::UDiv, Op->getOperand(0), X); in MatchBinaryOp() 5322 return BinaryOp(Op); in MatchBinaryOp() 5337 return BinaryOp(BinOp, WO->getLHS(), WO->getRHS()); in MatchBinaryOp() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/TableGen/ |
| H A D | Record.cpp | 1002 BinOpInit *BinOpInit::get(BinaryOp Opc, Init *LHS, Init *RHS, RecTy *Type) { in get()
|
| H A D | TGParser.cpp | 1448 BinOpInit::BinaryOp Code; in ParseOperation()
|