Home
last modified time | relevance | path

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

/freebsd/contrib/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);
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCReduceCRLogicals.cpp368 unsigned IsBinary : 1; member
378 CRLogicalOpInfo() : MI(nullptr), IsBinary(0), IsNullary(0), in CRLogicalOpInfo()
445 dbgs() << "IsBinary: " << IsBinary << ", FeedsISEL: " << FeedsISEL; in dump()
455 if (IsBinary) in dump()
488 Ret.IsBinary = 1; in createCRLogicalOpInfo()
525 if (Ret.IsBinary) in createCRLogicalOpInfo()
530 if (Ret.IsBinary && Ret.ContainedInBlock && Ret.SingleUse) { in createCRLogicalOpInfo()
585 if (CRI.IsBinary && CRI.ContainedInBlock && CRI.SingleUse && CRI.FeedsBR && in handleCROp()
722 else if (AllCRLogicalOps.back().IsBinary) in collectCRLogicals()
/freebsd/sys/contrib/dev/acpica/common/
H A Dacfileio.c538 BOOLEAN IsBinary = FALSE; in AcIsFileBinary() local
549 IsBinary = TRUE; in AcIsFileBinary()
556 return (IsBinary); in AcIsFileBinary()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp161 bool IsBinary) { in operationKindFromOverloadedOperator() argument
174 if (IsBinary) { \ in operationKindFromOverloadedOperator()
/freebsd/contrib/llvm-project/clang/tools/driver/
H A Dcc1as_main.cpp464 bool IsBinary = Opts.OutputType == AssemblerInvocation::FT_Obj; in ExecuteAssemblerImpl() local
468 getOutputStream(Opts.OutputPath, Diags, IsBinary); in ExecuteAssemblerImpl()
473 DwoOS = getOutputStream(Opts.SplitDwarfOutput, Diags, IsBinary); in ExecuteAssemblerImpl()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstCombineIntrinsic.cpp2138 static bool simplifyX86VPERMMask(Instruction *II, bool IsBinary, in simplifyX86VPERMMask() argument
2146 unsigned IdxSizeInBits = Log2_32(IsBinary ? (2 * NumElts) : NumElts); in simplifyX86VPERMMask()