Searched refs:BinaryOperator (Results 126 - 150 of 288) sorted by relevance

1234567891011>>

/external/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp1425 void visitAnd(BinaryOperator &I) {
1447 void visitOr(BinaryOperator &I) {
1616 void handleMulByConstant(BinaryOperator &I, Constant *ConstArg,
1651 void visitMul(BinaryOperator &I) {
1662 void visitFAdd(BinaryOperator &I) { handleShadowOr(I); }
1663 void visitFSub(BinaryOperator &I) { handleShadowOr(I); }
1664 void visitFMul(BinaryOperator &I) { handleShadowOr(I); }
1665 void visitAdd(BinaryOperator &I) { handleShadowOr(I); }
1666 void visitSub(BinaryOperator &I) { handleShadowOr(I); }
1667 void visitXor(BinaryOperator
[all...]
/external/clang/lib/CodeGen/
H A DCGObjC.cpp1311 BinaryOperator assign(&ivarRef, finalArg, BO_Assign,
2453 isa<BinaryOperator>(e) &&
2454 cast<BinaryOperator>(e)->getOpcode() == BO_Assign)
2595 Result visitBinaryOperator(const BinaryOperator *e);
2596 Result visitBinAssign(const BinaryOperator *e);
2597 Result visitBinAssignUnsafeUnretained(const BinaryOperator *e);
2598 Result visitBinAssignAutoreleasing(const BinaryOperator *e);
2599 Result visitBinAssignWeak(const BinaryOperator *e);
2600 Result visitBinAssignStrong(const BinaryOperator *e);
2707 ARCExprEmitter<Impl,Result>::visitBinaryOperator(const BinaryOperator *
[all...]
H A DCodeGenPGO.cpp190 const BinaryOperator *BO = cast<BinaryOperator>(S);
551 void VisitBinLAnd(const BinaryOperator *E) {
563 void VisitBinLOr(const BinaryOperator *E) {
/external/clang/lib/AST/
H A DExprClassification.cpp30 static Cl::Kinds ClassifyBinaryOp(ASTContext &Ctx, const BinaryOperator *E);
283 return ClassifyBinaryOp(Ctx, cast<BinaryOperator>(E));
515 static Cl::Kinds ClassifyBinaryOp(ASTContext &Ctx, const BinaryOperator *E) {
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineC.cpp22 void ExprEngine::VisitBinaryOperator(const BinaryOperator* B,
43 BinaryOperator::Opcode Op = B->getOpcode();
552 void ExprEngine::VisitLogicalExpr(const BinaryOperator* B, ExplodedNode *Pred,
579 if (const BinaryOperator *Term = cast_or_null<BinaryOperator>(T.getStmt())) {
955 BinaryOperator::Opcode Op = U->isIncrementOp() ? BO_Add : BO_Sub;
H A DBasicValueFactory.cpp146 BasicValueFactory::evalAPSInt(BinaryOperator::Opcode Op,
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSVals.h350 SVal evalBinOp(SValBuilder &svalBuilder, BinaryOperator::Opcode Op,
543 SVal evalBinOp(BasicValueFactory& BasicVals, BinaryOperator::Opcode Op,
H A DBasicValueFactory.h183 const llvm::APSInt* evalAPSInt(BinaryOperator::Opcode Op,
/external/clang/lib/ARCMigrate/
H A DTransAutoreleasePool.cpp188 } else if (BinaryOperator *bop = dyn_cast<BinaryOperator>(child)) {
H A DTransforms.h163 bool isPlusOneAssign(const BinaryOperator *E);
/external/llvm/lib/Transforms/Scalar/
H A DAlignmentFromAssumptions.cpp224 BinaryOperator *CmpBO = dyn_cast<BinaryOperator>(CmpLHS);
H A DScalarizer.cpp94 BinarySplitter(BinaryOperator &bo) : BO(bo) {}
99 BinaryOperator &BO;
143 bool visitBinaryOperator(BinaryOperator &);
435 bool Scalarizer::visitBinaryOperator(BinaryOperator &BO) {
/external/llvm/unittests/IR/
H A DValueHandleTest.cpp325 std::unique_ptr<BinaryOperator> BitcastUser(BinaryOperator::CreateAdd(
H A DValueMapTest.cpp28 std::unique_ptr<BinaryOperator> AddV;
33 AddV(BinaryOperator::CreateAdd(ConstantV, ConstantV)) {}
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DEarlyCSE.cpp62 return isa<CastInst>(Inst) || isa<BinaryOperator>(Inst) ||
112 isa<BinaryOperator>(Inst) || isa<GetElementPtrInst>(Inst) ||
/external/swiftshader/third_party/LLVM/unittests/Support/
H A DValueHandleTest.cpp321 std::auto_ptr<BinaryOperator> BitcastUser(
322 BinaryOperator::CreateAdd(RVH,
/external/swiftshader/third_party/LLVM/unittests/VMCore/
H A DValueMapTest.cpp29 OwningPtr<BinaryOperator> AddV;
34 AddV(BinaryOperator::CreateAdd(ConstantV, ConstantV)) {
/external/v8/tools/clang/value_cleanup/
H A DListValueRewriter.cpp63 clang::dyn_cast<clang::BinaryOperator>(stmt)) {
106 bool HandleBinaryOp(const clang::BinaryOperator* op) {
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporterVisitor.h229 const BinaryOperator *BExpr,
/external/clang/lib/StaticAnalyzer/Checkers/
H A DMallocSizeofChecker.cpp115 void VisitBinMul(const BinaryOperator *E) {
/external/llvm/lib/Analysis/
H A DLoopUnrollAnalyzer.cpp70 bool UnrolledInstAnalyzer::visitBinaryOperator(BinaryOperator &I) {
/external/llvm/unittests/Analysis/
H A DAliasAnalysisTest.cpp179 auto *Add1 = BinaryOperator::CreateAdd(Value, Value, "add", BB);
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DInstVisitor.h205 RetTy visitBinaryOperator(BinaryOperator &I) { DELEGATE(Instruction); }
H A DPatternMatch.h280 BinaryOperator *I = cast<BinaryOperator>(V);
412 BinaryOperator *I = cast<BinaryOperator>(V);
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DLazyValueInfo.cpp557 if ((!isa<BinaryOperator>(BBI) && !isa<CastInst>(BBI)) ||
567 BinaryOperator *BO = dyn_cast<BinaryOperator>(BBI);
732 if (isa<BinaryOperator>(BBI)) {

Completed in 852 milliseconds

1234567891011>>