HomeSort by relevance Sort by last modified time
    Searched refs:BinaryOperator (Results 76 - 100 of 163) sorted by null

1 2 34 5 6 7

  /external/clang/lib/CodeGen/
CGExprScalar.cpp 47 BinaryOperator::Opcode Opcode; // Opcode of BinOp to perform
439 BinOpInfo EmitBinOps(const BinaryOperator *E);
449 Value *VisitBin ## OP(const BinaryOperator *E) { \
468 Value *EmitCompare(const BinaryOperator *E, unsigned UICmpOpc,
471 Value *VisitBin##CODE(const BinaryOperator *E) { \
482 Value *VisitBinAssign (const BinaryOperator *E);
484 Value *VisitBinLAnd (const BinaryOperator *E);
485 Value *VisitBinLOr (const BinaryOperator *E);
486 Value *VisitBinComma (const BinaryOperator *E);
    [all...]
  /external/clang/lib/AST/
ExprClassification.cpp 30 static Cl::Kinds ClassifyBinaryOp(ASTContext &Ctx, const BinaryOperator *E);
276 return ClassifyBinaryOp(Ctx, cast<BinaryOperator>(E));
495 static Cl::Kinds ClassifyBinaryOp(ASTContext &Ctx, const BinaryOperator *E) {
ExprConstant.cpp     [all...]
  /external/clang/lib/ARCMigrate/
TransAutoreleasePool.cpp 188 } else if (BinaryOperator *bop = dyn_cast<BinaryOperator>(child)) {
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 64 return isa<CastInst>(Inst) || isa<BinaryOperator>(Inst) ||
114 isa<BinaryOperator>(Inst) || isa<GetElementPtrInst>(Inst) ||
IndVarSimplify.cpp 257 BinaryOperator *Incr =
258 dyn_cast<BinaryOperator>(PN->getIncomingValue(BackEdge));
403 BinaryOperator::CreateAdd(NewPHI, ConstantInt::get(Int32Ty, IncValue),
774 BinaryOperator *NarrowBO = cast<BinaryOperator>(DU.NarrowUse);
775 BinaryOperator *WideBO = BinaryOperator::Create(NarrowBO->getOpcode(),
    [all...]
  /external/llvm/unittests/Support/
ValueHandleTest.cpp 321 std::auto_ptr<BinaryOperator> BitcastUser(
322 BinaryOperator::CreateAdd(RVH,
  /external/llvm/unittests/VMCore/
ValueMapTest.cpp 29 OwningPtr<BinaryOperator> AddV;
34 AddV(BinaryOperator::CreateAdd(ConstantV, ConstantV)) {
  /frameworks/compile/slang/
slang_rs_object_ref_count.cpp 477 // (BinaryOperator 'int' '='
480 // (BinaryOperator 'int' '<'
531 clang::BinaryOperator *Init =
532 new(C) clang::BinaryOperator(RefrsIntIter,
544 clang::BinaryOperator *Cond =
545 new(C) clang::BinaryOperator(RefrsIntIter,
897 clang::BinaryOperator *Init =
898 new(C) clang::BinaryOperator(RefrsIntIter,
910 clang::BinaryOperator *Cond =
911 new(C) clang::BinaryOperator(RefrsIntIter
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp 87 BinaryOperatorKind Op = cast<BinaryOperator>(S)->getOpcode();
311 const BinaryOperator *B = cast<BinaryOperator>(Parent);
374 else if (isa<BinaryOperator>(S)) {
609 const BinaryOperator *B = cast<BinaryOperator>(T);
763 if (const BinaryOperator *B = dyn_cast<BinaryOperator>(E))
820 S = cast<BinaryOperator>(S)->getLHS();
    [all...]
BasicValueFactory.cpp 146 BasicValueFactory::evalAPSInt(BinaryOperator::Opcode Op,
ExprEngine.cpp 690 const BinaryOperator* B = cast<BinaryOperator>(S);
711 VisitBinaryOperator(cast<BinaryOperator>(S), Pred, Tmp);
715 VisitBinaryOperator(cast<BinaryOperator>(S), Pred, Dst);
774 VisitBinaryOperator(cast<BinaryOperator>(S), Pred, Dst);
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
BasicValueFactory.h 182 const llvm::APSInt* evalAPSInt(BinaryOperator::Opcode Op,
  /external/clang/lib/Analysis/
UninitializedValues.cpp 315 void VisitBinaryOperator(BinaryOperator *BO);
362 void ClassifyRefs::VisitBinaryOperator(BinaryOperator *BO) {
432 void VisitBinaryOperator(BinaryOperator *bo);
635 void TransferFunctions::VisitBinaryOperator(BinaryOperator *BO) {
ThreadSafety.cpp 371 } else if (BinaryOperator *BOE = dyn_cast<BinaryOperator>(Exp)) {
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
MallocSizeofChecker.cpp 116 void VisitBinMul(const BinaryOperator *E) {
  /external/llvm/include/llvm/Support/
PatternMatch.h 302 BinaryOperator *I = cast<BinaryOperator>(V);
434 BinaryOperator *I = cast<BinaryOperator>(V);
InstVisitor.h 228 RetTy visitBinaryOperator(BinaryOperator &I) { DELEGATE(Instruction);}
  /external/llvm/lib/Analysis/
InlineCost.cpp 119 bool visitSub(BinaryOperator &I);
120 bool visitBinaryOperator(BinaryOperator &I);
525 bool CallAnalyzer::visitSub(BinaryOperator &I) {
552 bool CallAnalyzer::visitBinaryOperator(BinaryOperator &I) {
    [all...]
LazyValueInfo.cpp 535 if ((!isa<BinaryOperator>(BBI) && !isa<CastInst>(BBI)) ||
545 BinaryOperator *BO = dyn_cast<BinaryOperator>(BBI);
710 if (isa<BinaryOperator>(BBI)) {
    [all...]
Loads.cpp 41 if (isa<BinaryOperator>(A) || isa<CastInst>(A) ||
  /external/llvm/lib/Transforms/Instrumentation/
ProfilingUtils.cpp 126 Value *NewVal = BinaryOperator::Create(Instruction::Add, OldVal,
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 31 class BinaryOperator;
211 static PathDiagnosticLocation createOperatorLoc(const BinaryOperator *BO,
  /external/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 191 Instruction* Add = BinaryOperator::CreateAdd(Val, NegLo,
  /external/clang/tools/libclang/
RecursiveASTVisitor.h 283 // (they're all opcodes in BinaryOperator) but do have visitors.
299 #define OPERATOR(NAME) GENERAL_BINOP_FALLBACK(NAME, BinaryOperator)
466 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(S)) {
469 case BO_##NAME: DISPATCH_STMT(Bin##NAME, BinaryOperator, S);
    [all...]

Completed in 1647 milliseconds

1 2 34 5 6 7