Home
last modified time | relevance | path

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

/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCheckerHelpers.h81 bool IsBinary; variable
84 explicit OperatorKind(BinaryOperatorKind Bin) : Op{Bin}, IsBinary{true} {} in OperatorKind()
85 explicit OperatorKind(UnaryOperatorKind Un) : IsBinary{false} { Op.Un = Un; } in OperatorKind()
86 bool IsBinaryOp() const { return IsBinary; } in IsBinaryOp()
89 assert(IsBinary && "cannot get binary operator - we have a unary operator"); in GetBinaryOpUnsafe()
94 if (IsBinary) in GetBinaryOp()
100 assert(!IsBinary && in GetUnaryOpUnsafe()
106 if (!IsBinary) in GetUnaryOp()
113 bool IsBinary);
/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCReduceCRLogicals.cpp361 unsigned IsBinary : 1; member
371 CRLogicalOpInfo() : MI(nullptr), IsBinary(0), IsNullary(0), in CRLogicalOpInfo()
439 dbgs() << "IsBinary: " << IsBinary << ", FeedsISEL: " << FeedsISEL; in dump()
449 if (IsBinary) in dump()
481 Ret.IsBinary = 1; in createCRLogicalOpInfo()
517 if (Ret.IsBinary) in createCRLogicalOpInfo()
522 if (Ret.IsBinary && Ret.ContainedInBlock && Ret.SingleUse) { in createCRLogicalOpInfo()
588 if (CRI.IsBinary && CRI.ContainedInBlock && CRI.SingleUse && CRI.FeedsBR && in handleCROp()
720 else if (AllCRLogicalOps.back().IsBinary) in collectCRLogicals()
/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp153 bool IsBinary) { in operationKindFromOverloadedOperator() argument
166 if (IsBinary) { \ in operationKindFromOverloadedOperator()
/llvm-project/clang/tools/driver/
H A Dcc1as_main.cpp463 bool IsBinary = Opts.OutputType == AssemblerInvocation::FT_Obj; in ExecuteAssemblerImpl()
467 getOutputStream(Opts.OutputPath, Diags, IsBinary); in ExecuteAssemblerImpl()
472 DwoOS = getOutputStream(Opts.SplitDwarfOutput, Diags, IsBinary); in ExecuteAssemblerImpl()
451 bool IsBinary = Opts.OutputType == AssemblerInvocation::FT_Obj; ExecuteAssemblerImpl() local