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

References

lib/CodeGen/BranchFolding.cpp
  317   I2 = MBB2->end();
  320   while (I1 != MBB1->begin() && I2 != MBB2->begin()) {
  321     --I1; --I2;
  325         while (!countsAsInstruction(*I2)) {
  326           if (I2==MBB2->begin()) {
  330           --I2;
  332         ++I2;
  339     while (!countsAsInstruction(*I2)) {
  340       if (I2==MBB2->begin()) {
  345       --I2;
  348     if (!I1->isIdenticalTo(*I2) ||
  355       ++I1; ++I2;
  364   if (I1 == MBB1->begin() && I2 != MBB2->begin()) {
  365     --I2;
  366     while (I2->isDebugInstr()) {
  367       if (I2 == MBB2->begin())
  369       --I2;
  371     ++I2;
  373   if (I2 == MBB2->begin() && I1 != MBB1->begin()) {
  409   while (I2 != MBB2->end() && I2->isCFIInstruction()) {
  409   while (I2 != MBB2->end() && I2->isCFIInstruction()) {
  410     ++I2;