reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/IR/Constant.h
   65   bool isZeroValue() const;

References

include/llvm/Analysis/Utils/Local.h
   49       if (OpC->isZeroValue())
lib/Analysis/BranchProbabilityInfo.cpp
  565           ((Result->isZeroValue() && B == BI->getSuccessor(0)) ||
lib/Analysis/Lint.cpp
  566   if (C->isZeroValue())
lib/Analysis/MustExecute.cpp
  149     return SimpleCst->isZeroValue();
lib/Analysis/ScalarEvolution.cpp
 7699   if (Result->isZeroValue()) {
lib/Analysis/ValueTracking.cpp
 1316         if (CIndex->isZeroValue())
lib/IR/AutoUpgrade.cpp
 3575       if (Offset->isZeroValue()) {
lib/Target/AArch64/AArch64PromoteConstant.cpp
  334   if (Cst->isZeroValue())
lib/Target/AMDGPU/AMDGPUPrintfRuntimeBinding.cpp
  256               if (Init->isZeroValue() || CA->isString()) {
  257                 size_t SizeStr = Init->isZeroValue()
  442                 if (Init->isZeroValue() || CA->isString()) {
  443                   S = Init->isZeroValue() ? "" : CA->getAsCString().data();
lib/Target/BPF/BTFDebug.cpp
 1071         SecName = Global.getInitializer()->isZeroValue() ? ".bss" : ".data";
lib/Transforms/InstCombine/InstCombineCalls.cpp
 3818     if (BC->isZeroValue() ||
lib/Transforms/Instrumentation/MemorySanitizer.cpp
 1131         if (ClCheckConstantShadow && !ConstantShadow->isZeroValue())
 1212       if (ClCheckConstantShadow && !ConstantShadow->isZeroValue()) {
lib/Transforms/Scalar/CorrelatedValuePropagation.cpp
  236           } else if (C->isZeroValue()) {
lib/Transforms/Scalar/SCCP.cpp
 1580         if (Op1LV.isConstant() && Op1LV.getConstant()->isZeroValue())
tools/clang/lib/CodeGen/CGDecl.cpp
 1018     if (constant->isZeroValue())
 1051     bool ZeroInitializer = constant->isZeroValue();
 1817     if (constant && !constant->isZeroValue() &&
tools/polly/lib/Support/SCEVValidator.cpp
  422     if (!CI || CI->isZeroValue())
tools/polly/lib/Transform/ZoneAlgo.cpp
  437     if (WrittenConstant && WrittenConstant->isZeroValue()) {
unittests/Analysis/ValueLatticeTest.cpp
  100   EXPECT_TRUE(LV1.getCompare(CmpInst::ICMP_NE, I1Ty, LV1)->isZeroValue());
  101   EXPECT_TRUE(LV1.getCompare(CmpInst::ICMP_SLT, I1Ty, LV1)->isZeroValue());
  102   EXPECT_TRUE(LV1.getCompare(CmpInst::ICMP_SGT, I1Ty, LV1)->isZeroValue());
  110   EXPECT_TRUE(LV1.getCompare(CmpInst::ICMP_EQ, I1Ty, LV2)->isZeroValue());
  111   EXPECT_TRUE(LV1.getCompare(CmpInst::ICMP_SGE, I1Ty, LV2)->isZeroValue());
  112   EXPECT_TRUE(LV1.getCompare(CmpInst::ICMP_SGT, I1Ty, LV2)->isZeroValue());
  146   EXPECT_TRUE(LV1.getCompare(CmpInst::FCMP_ONE, I1Ty, LV2)->isZeroValue());
  147   EXPECT_TRUE(LV1.getCompare(CmpInst::FCMP_OLT, I1Ty, LV2)->isZeroValue());
  148   EXPECT_TRUE(LV1.getCompare(CmpInst::FCMP_OGT, I1Ty, LV2)->isZeroValue());