HomeSort by relevance Sort by last modified time
    Searched refs:BO (Results 26 - 50 of 66) sorted by null

12 3

  /external/clang/lib/Analysis/
LiveVariables.cpp 222 void VisitBinaryOperator(BinaryOperator *BO);
539 if (const BinaryOperator *BO =
541 if (BO->getOpcode() == BO_Assign) {
543 dyn_cast<DeclRefExpr>(BO->getLHS()->IgnoreParens())) {
ThreadSafety.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 35 if (OverflowingBinaryOperator *BO =
37 isNUW = BO->hasNoUnsignedWrap();
38 isNSW = BO->hasNoSignedWrap();
423 if (OverflowingBinaryOperator *BO =
425 isNUW = BO->hasNoUnsignedWrap();
426 isNSW = BO->hasNoSignedWrap();
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
AnalysisBasedWarnings.cpp 549 const BinaryOperator *BO = cast<BinaryOperator>(Term);
550 if (!BO->isLogicalOp())
553 Str = BO->getOpcodeStr();
554 Range = BO->getLHS()->getSourceRange();
556 if ((BO->getOpcode() == BO_LAnd && I->Output) ||
557 (BO->getOpcode() == BO_LOr && !I->Output))
559 Fixit1 = FixItHint::CreateRemoval(SourceRange(BO->getLocStart(),
560 BO->getOperatorLoc()));
563 Fixit1 = FixItHint::CreateReplacement(BO->getSourceRange(), FixitStr);
    [all...]
SemaLambda.cpp 251 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
252 if (BO->getOpcode() == BO_Comma)
253 return findEnumForBlockReturn(BO->getRHS());
    [all...]
SemaExprCXX.cpp     [all...]
  /external/llvm/include/llvm/TableGen/
Record.h 272 virtual Init *convertValue( UnOpInit *BO);
273 virtual Init *convertValue( BinOpInit *BO);
274 virtual Init *convertValue( TernOpInit *BO) { return RecTy::convertValue(BO);}
350 virtual Init *convertValue( UnOpInit *BO);
351 virtual Init *convertValue( BinOpInit *BO);
352 virtual Init *convertValue( TernOpInit *BO) { return RecTy::convertValue(BO);}
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 371 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(Cond))
372 if (BO->getOpcode() == Instruction::And ||
373 BO->getOpcode() == Instruction::Or) {
377 if (Value *LHS = FindLIVLoopCondition(BO->getOperand(0), L, Changed))
379 if (Value *RHS = FindLIVLoopCondition(BO->getOperand(1), L, Changed))
    [all...]
LoopStrengthReduce.cpp     [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h 553 BinaryOperator *BO = Insert(BinaryOperator::Create(Opc, LHS, RHS), Name);
554 if (HasNUW) BO->setHasNoUnsignedWrap();
555 if (HasNSW) BO->setHasNoSignedWrap();
556 return BO;
801 BinaryOperator *BO = Insert(BinaryOperator::CreateNeg(V), Name);
802 if (HasNUW) BO->setHasNoUnsignedWrap();
803 if (HasNSW) BO->setHasNoSignedWrap();
804 return BO;
    [all...]
  /external/llvm/lib/Analysis/
LazyValueInfo.cpp 545 BinaryOperator *BO = dyn_cast<BinaryOperator>(BBI);
546 if (BO && !isa<ConstantInt>(BO->getOperand(1))) {
    [all...]
ValueTracking.cpp     [all...]
ScalarEvolution.cpp     [all...]
ScalarEvolutionExpander.cpp 193 Instruction *BO = cast<Instruction>(Builder.CreateBinOp(Opcode, LHS, RHS));
194 BO->setDebugLoc(SaveInsertPt->getDebugLoc());
195 rememberInstruction(BO);
201 return BO;
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp     [all...]
BugReporterVisitors.cpp 452 if (const BinaryOperator *BO = P->getStmtAs<BinaryOperator>())
453 if (BO->isAssignmentOp())
454 InitE = BO->getRHS();
    [all...]
CallEvent.cpp 710 if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(Syntactic))
711 Syntactic = BO->getLHS();
    [all...]
  /external/clang/lib/AST/
ExprCXX.cpp 477 if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(Callee))
478 if (BO->getOpcode() == BO_PtrMemD || BO->getOpcode() == BO_PtrMemI)
479 return BO->getLHS();
    [all...]
ItaniumMangle.cpp     [all...]
  /external/qemu/tcg/ppc/
tcg-target.c 403 #define BO(o) ((o)<<21)
416 #define BO_COND_TRUE BO (12)
417 #define BO_COND_FALSE BO (4)
418 #define BO_ALWAYS BO (20)
    [all...]
  /external/qemu/tcg/ppc64/
tcg-target.c 400 #define BO(o) ((o)<<21)
414 #define BO_COND_TRUE BO (12)
415 #define BO_COND_FALSE BO ( 4)
416 #define BO_ALWAYS BO (20)
    [all...]
  /external/qemu/
ppc-dis.c 471 This sets the y bit of the BO field appropriately. */
483 This sets the y bit of the BO field appropriately. */
513 /* The BO field in a B form instruction. Certain values are
515 #define BO BFA + 1
519 /* The BO field in a B form instruction when the + or - modifier is
520 used. This is like the BO field, but it must be even. */
521 #define BOE BO + 1
    [all...]
  /external/llvm/lib/IR/
Constants.cpp     [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 211 static PathDiagnosticLocation createOperatorLoc(const BinaryOperator *BO,

Completed in 823 milliseconds

12 3