Home
last modified time | relevance | path

Searched refs:IsBinary (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCheckerHelpers.h78 bool IsBinary; variable
81 explicit OperatorKind(BinaryOperatorKind Bin) : Op{Bin}, IsBinary{true} {} in OperatorKind()
82 explicit OperatorKind(UnaryOperatorKind Un) : IsBinary{false} { Op.Un = Un; } in OperatorKind()
83 bool IsBinaryOp() const { return IsBinary; } in IsBinaryOp()
86 assert(IsBinary && "cannot get binary operator - we have a unary operator"); in GetBinaryOpUnsafe()
91 if (IsBinary) in GetBinaryOp()
97 assert(!IsBinary && in GetUnaryOpUnsafe()
103 if (!IsBinary) in GetUnaryOp()
110 bool IsBinary);
/llvm-project-15.0.7/llvm/lib/Target/PowerPC/
H A DPPCReduceCRLogicals.cpp361 unsigned IsBinary : 1; member
371 CRLogicalOpInfo() : MI(nullptr), IsBinary(0), IsNullary(0), in CRLogicalOpInfo()
438 dbgs() << "IsBinary: " << IsBinary << ", FeedsISEL: " << FeedsISEL; in dump()
448 if (IsBinary) in dump()
480 Ret.IsBinary = 1; in createCRLogicalOpInfo()
516 if (Ret.IsBinary) in createCRLogicalOpInfo()
521 if (Ret.IsBinary && Ret.ContainedInBlock && Ret.SingleUse) { in createCRLogicalOpInfo()
587 if (CRI.IsBinary && CRI.ContainedInBlock && CRI.SingleUse && CRI.FeedsBR && in handleCROp()
719 else if (AllCRLogicalOps.back().IsBinary) in collectCRLogicals()
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp152 bool IsBinary) { in operationKindFromOverloadedOperator() argument
165 if (IsBinary) { \ in operationKindFromOverloadedOperator()
/llvm-project-15.0.7/clang/tools/driver/
H A Dcc1as_main.cpp394 bool IsBinary = Opts.OutputType == AssemblerInvocation::FT_Obj; in ExecuteAssemblerImpl() local
398 getOutputStream(Opts.OutputPath, Diags, IsBinary); in ExecuteAssemblerImpl()
403 DwoOS = getOutputStream(Opts.SplitDwarfOutput, Diags, IsBinary); in ExecuteAssemblerImpl()