Home
last modified time | relevance | path

Searched refs:BinaryOp (Results 1 – 14 of 14) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DStmtProfile.cpp1695 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 DPostfixExpression.h32 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 DNVPTXTargetTransformInfo.cpp145 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 DThreadSafetyOps.def40 TIL_OPCODE_DEF(BinaryOp)
H A DThreadSafetyTIL.h1213 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 DThreadSafetyTraverse.h240 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 DThreadSafetyCommon.cpp530 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 DVVPInstrInfo.td56 // BinaryOp(x,y,mask,vl)
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DRecord.h899 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 DInstCombineInternal.h269 bool OptimizeOverflowCheck(Instruction::BinaryOps BinaryOp, bool IsSigned,
480 Instruction::BinaryOps BinaryOp, bool IsSigned,
H A DInstCombineCompares.cpp5715 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 DScalarEvolution.cpp5236 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 DRecord.cpp1002 BinOpInit *BinOpInit::get(BinaryOp Opc, Init *LHS, Init *RHS, RecTy *Type) { in get()
H A DTGParser.cpp1448 BinOpInit::BinaryOp Code; in ParseOperation()