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

References

lib/Target/Hexagon/HexagonConstPropagation.cpp
  893     while (It != End && It->isPHI()) {
  893     while (It != End && It->isPHI()) {
  894       InstrExec.insert(&*It);
  895       visitPHI(*It);
  896       ++It;
  902     while (It != End && It->isDebugInstr())
  902     while (It != End && It->isDebugInstr())
  903       ++It;
  904     assert(It == End || !It->isPHI());
  904     assert(It == End || !It->isPHI());
  906     if (It != End && InstrExec.count(&*It))
  906     if (It != End && InstrExec.count(&*It))
  910     while (It != End && !It->isBranch()) {
  910     while (It != End && !It->isBranch()) {
  911       if (!It->isDebugInstr()) {
  912         InstrExec.insert(&*It);
  913         visitNonBranch(*It);
  915       ++It;
  922     if (It != End) {
  923       visitBranchesFrom(*It);