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

References

lib/Transforms/Utils/SimplifyCFG.cpp
  495           (C = GetConstantInt(I->getOperand(1), DL)))) {
  549         if (Mask.isPowerOf2() && (C->getValue() & ~Mask) == C->getValue()) {
  549         if (Mask.isPowerOf2() && (C->getValue() & ~Mask) == C->getValue()) {
  554           Vals.push_back(C);
  556               ConstantInt::get(C->getContext(),
  557                                C->getValue() | Mask));
  572         if (Mask.isPowerOf2() && (C->getValue() | Mask) == C->getValue()) {
  572         if (Mask.isPowerOf2() && (C->getValue() | Mask) == C->getValue()) {
  577           Vals.push_back(C);
  578           Vals.push_back(ConstantInt::get(C->getContext(),
  579                                           C->getValue() & ~Mask));
  590       Vals.push_back(C);
  596         ICI->getPredicate(), C->getValue());