Home
last modified time | relevance | path

Searched refs:canOverflow (Results 1 – 8 of 8) sorted by relevance

/external/llvm-project/clang/lib/Sema/
DSemaPseudoObject.cpp132 uop->getObjectKind(), uop->getOperatorLoc(), uop->canOverflow(), in rebuild()
1644 uop->getOperatorLoc(), uop->canOverflow(), in recreateSyntacticForm()
/external/llvm-project/clang/lib/CodeGen/
DCGExprScalar.cpp190 return !UO->canOverflow(); in CanElideOverflowCheck()
2340 if (!E->canOverflow()) in EmitIncDecConsiderOverflowBehavior()
2485 } else if (E->canOverflow() && type->isSignedIntegerOrEnumerationType()) { in EmitScalarPrePostIncDec()
2487 } else if (E->canOverflow() && type->isUnsignedIntegerType() && in EmitScalarPrePostIncDec()
/external/llvm-project/clang/lib/AST/
DJSONNodeDumper.cpp1173 if (!UO->canOverflow()) in VisitUnaryOperator()
DTextNodeDumper.cpp1065 if (!Node->canOverflow()) in VisitUnaryOperator()
DExprConstant.cpp4494 if (!WasNegative && Value.isNegative() && E->canOverflow()) { in found()
4501 if (WasNegative && !Value.isNegative() && E->canOverflow()) { in found()
13113 if (Value.isSigned() && Value.isMinSignedValue() && E->canOverflow() && in VisitUnaryOperator()
DASTImporter.cpp6797 E->getValueKind(), E->getObjectKind(), ToOperatorLoc, E->canOverflow(), in VisitUnaryOperator()
/external/llvm-project/clang/lib/Serialization/
DASTWriterStmt.cpp729 Record.push_back(E->canOverflow()); in VisitUnaryOperator()
/external/llvm-project/clang/include/clang/AST/
DExpr.h2153 bool canOverflow() const { return UnaryOperatorBits.CanOverflow; } in canOverflow() function