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

References

lib/CodeGen/BranchFolding.cpp
  316   I1 = MBB1->end();
  320   while (I1 != MBB1->begin() && I2 != MBB2->begin()) {
  321     --I1; --I2;
  323     while (!countsAsInstruction(*I1)) {
  324       if (I1==MBB1->begin()) {
  336       --I1;
  341         ++I1;
  348     if (!I1->isIdenticalTo(*I2) ||
  354         I1->isInlineAsm()) {
  355       ++I1; ++I2;
  364   if (I1 == MBB1->begin() && I2 != MBB2->begin()) {
  373   if (I2 == MBB2->begin() && I1 != MBB1->begin()) {
  374     --I1;
  375     while (I1->isDebugInstr()) {
  376       if (I1 == MBB1->begin())
  378       --I1;
  380     ++I1;
  405   while (I1 != MBB1->end() && I1->isCFIInstruction()) {
  405   while (I1 != MBB1->end() && I1->isCFIInstruction()) {
  406     ++I1;