|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
References
lib/Analysis/DemandedBits.cpp 223 .getBoolValue())
276 .getBoolValue())
lib/Analysis/InstructionSimplify.cpp 1645 if (C0->getBoolValue() && isNUW) {
1718 if (C0->getBoolValue() && isNUW) {
lib/Analysis/Loads.cpp 71 if (KnownDerefBytes.getBoolValue() && KnownDerefBytes.uge(Size))
lib/Analysis/ValueTracking.cpp 1818 if (OrZero || RHSBits.One.getBoolValue() || LHSBits.One.getBoolValue())
1818 if (OrZero || RHSBits.One.getBoolValue() || LHSBits.One.getBoolValue())
lib/AsmParser/LLParser.cpp 8238 Val = (unsigned)Lex.getAPSIntVal().getBoolValue();
lib/CodeGen/CodeGenPrepare.cpp 1514 if ((Cimm & (Cimm + 1)).getBoolValue())
lib/CodeGen/GlobalISel/Utils.cpp 369 if (!C2.getBoolValue())
373 if (!C2.getBoolValue())
377 if (!C2.getBoolValue())
381 if (!C2.getBoolValue())
lib/CodeGen/SelectionDAG/DAGCombiner.cpp 7853 if (Known.One.getBoolValue()) return DAG.getConstant(0, SDLoc(N0), VT);
lib/CodeGen/SelectionDAG/SelectionDAG.cpp 2873 if (NewBits.getBoolValue())
3236 if (Known2.One.getBoolValue()) {
3337 if (N1Known.Zero.getBoolValue()) {
4717 if (!C2.getBoolValue())
4721 if (!C2.getBoolValue())
4725 if (!C2.getBoolValue())
4729 if (!C2.getBoolValue())
lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp 1328 if (Offset.getBoolValue())
lib/Support/APInt.cpp 2238 while (Tmp.getBoolValue()) {
2244 while (Tmp.getBoolValue()) {
lib/Support/KnownBits.cpp 51 LHS, RHS, Carry.Zero.getBoolValue(), Carry.One.getBoolValue());
51 LHS, RHS, Carry.Zero.getBoolValue(), Carry.One.getBoolValue());
lib/Target/ARM/ARMISelLowering.cpp12492 if ((NewToMask & CombinedToMask).getBoolValue())
lib/Target/Hexagon/HexagonISelDAGToDAG.cpp 1794 if (CInt.getBoolValue())
lib/Target/PowerPC/PPCISelLowering.cpp 2309 if (LHSKnown.Zero.getBoolValue()) {
lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp 464 return Mask.getBoolValue();
lib/Target/X86/X86ISelLowering.cpp 5977 if (UndefSrcElts.getBoolValue() && !AllowUndefs)
6016 if (UndefEltBits.getBoolValue() && !AllowPartialUndefs)
lib/Transforms/InstCombine/InstCombineAndOrXor.cpp 736 (CCst->getValue() ^ ECst->getValue())).getBoolValue())
lib/Transforms/Scalar/Reassociate.cpp 1266 int NewInstNum = ConstOpnd.getBoolValue() ? 1 : 2;
1282 int NewInstNum = ConstOpnd.getBoolValue() ? 1 : 2;
tools/clang/include/clang/Basic/FixedPoint.h 118 bool getBoolValue() const { return Val.getBoolValue(); }
tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTConstraintManager.h 141 Ty->isBooleanType() ? Solver->mkBoolean(Value.getBoolValue())
tools/clang/lib/AST/APValue.cpp 484 Out << (getInt().getBoolValue() ? "true" : "false");
tools/clang/lib/AST/ExprConstant.cpp 2293 Result = Val.getInt().getBoolValue();
2302 Result = Val.getComplexIntReal().getBoolValue() ||
2303 Val.getComplexIntImag().getBoolValue();
2376 Result = Value.getBoolValue();
tools/clang/lib/AST/Interp/ByteCodeExprGen.cpp 414 return this->emitConstBool(Value.getBoolValue(), E);
tools/clang/lib/AST/ItaniumMangle.cpp 3460 Out << (Value.getBoolValue() ? '1' : '0');
tools/clang/lib/AST/MicrosoftMangle.cpp 1353 if (IsBoolean && Value.getBoolValue())
tools/clang/lib/AST/TemplateBase.cpp 71 Out << (Val.getBoolValue() ? "true" : "false");
tools/clang/lib/Analysis/CFG.cpp 1207 if (!IntVal.getBoolValue()) {
1214 if (!IntVal.getBoolValue()) {
tools/clang/lib/Analysis/ThreadSafety.cpp 1391 branch = ILE->getValue().getBoolValue();
1414 TCond = ILE->getValue().getBoolValue();
tools/clang/lib/CodeGen/CodeGenFunction.cpp 1336 ResultBool = ResultInt.getBoolValue();
tools/clang/lib/Edit/RewriteObjCFoundationAPI.cpp 856 isIntZero = !IntE->getValue().getBoolValue();
tools/clang/lib/Sema/AnalysisBasedWarnings.cpp 1333 return Result.Val.getInt().getBoolValue();
tools/clang/lib/Sema/SemaConcept.cpp 122 IsSatisfied = EvalResult.Val.getInt().getBoolValue();
tools/clang/lib/Sema/SemaDecl.cpp 5959 else if (Oversized.getBoolValue())
16059 else if (Oversized.getBoolValue())
tools/clang/lib/Sema/SemaDeclAttr.cpp 3974 VectorSize.getBoolValue()) {
4013 if (VectorSize.getBoolValue()) {
tools/clang/lib/Sema/SemaDeclCXX.cpp11293 ExplicitSpec.setKind(Result.getBoolValue()
tools/clang/lib/Sema/SemaOpenMP.cpp 5506 bool IsConstZero = IsConstant && !Result.getBoolValue();
tools/clang/lib/Sema/SemaOverload.cpp 6485 if (!Result.isInt() || !Result.getInt().getBoolValue())
6545 return Result.isInt() && Result.getInt().getBoolValue();
tools/clang/lib/Sema/SemaTemplate.cpp 7098 E = new (Context) CXXBoolLiteralExpr(Arg.getAsIntegral().getBoolValue(),
tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp 2654 Out << (IntValue.getValue()->getBoolValue() ? "true" : "false");
tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp 112 bool b = val.castAs<nonloc::ConcreteInt>().getValue().getBoolValue();
tools/clang/tools/extra/clang-tidy/bugprone/SuspiciousEnumUsageCheck.cpp 66 if (Val.isPowerOf2() || !Val.getBoolValue())
tools/clang/tools/extra/clang-tidy/modernize/UseBoolLiteralsCheck.cpp 52 bool LiteralBooleanValue = Literal->getValue().getBoolValue();
tools/lldb/source/Utility/Scalar.cpp 2692 if (bitwize_and.getBoolValue()) {
unittests/ADT/APIntTest.cpp 1636 EXPECT_FALSE(A9.getBoolValue());
unittests/Support/KnownBitsTest.cpp 63 if (Carry.getBoolValue())
utils/TableGen/FixedLenDecoderEmitter.cpp 1325 bool NeedPositiveMask = PositiveMask.getBoolValue();
1326 bool NeedNegativeMask = NegativeMask.getBoolValue();