Searched refs:BO (Results 76 - 81 of 81) sorted by relevance

1234

/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGExprScalar.cpp948 const BinaryOperator *BO = cast<BinaryOperator>(Info.E); local
950 CGF.EmitCheckTypeDescriptor(BO->getLHS()->getType()));
952 CGF.EmitCheckTypeDescriptor(BO->getRHS()->getType()));
H A DCodeGenFunction.h2243 /// \brief Emit atomic update code for constructs: \a X = \a X \a BO \a E or
2244 /// \a X = \a E \a BO \a E.
2248 /// \param BO Binary operation for update operation.
2257 LValue X, RValue E, BinaryOperatorKind BO, bool IsXLHSInRHSPart,
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Analysis/
H A DCFG.cpp3857 ASTContext *C, const BuildOptions &BO) {
3858 CFGBuilder Builder(C, BO);
3856 buildCFG(const Decl *D, Stmt *Statement, ASTContext *C, const BuildOptions &BO) argument
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaDecl.cpp8898 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
8899 if (BO->getOpcode() == BO_Comma) {
8900 Visit(BO->getLHS());
8901 HandleValue(BO->getRHS());
14170 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(InitExpr)) {
14171 if (!BO->isAdditiveOp())
14173 IntegerLiteral *IL = dyn_cast<IntegerLiteral>(BO->getRHS());
14179 InitExpr = BO->getLHS();
H A DSemaExpr.cpp3613 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E->IgnoreParens())) {
3614 warnOnSizeofOnArrayDecay(*this, BO->getOperatorLoc(), BO->getType(),
3615 BO->getLHS());
3616 warnOnSizeofOnArrayDecay(*this, BO->getOperatorLoc(), BO->getType(),
3617 BO->getRHS());
H A DSemaDeclCXX.cpp2449 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
2450 switch (BO->getOpcode()) {
2455 HandleValue(BO->getLHS(), AddressOf);
2456 Visit(BO->getRHS());
2459 Visit(BO->getLHS());
2460 HandleValue(BO->getRHS(), AddressOf);

Completed in 323 milliseconds

1234