LLVM API Documentation

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ExpandISelPseudos.cpp
Go to the documentation of this file.
1 //===-- llvm/CodeGen/ExpandISelPseudos.cpp ----------------------*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // Expand Pseudo-instructions produced by ISel. These are usually to allow
11 // the expansion to contain control flow, such as a conditional move
12 // implemented with a conditional branch and a phi, or an atomic operation
13 // implemented with a loop.
14 //
15 //===----------------------------------------------------------------------===//
16 
17 #define DEBUG_TYPE "expand-isel-pseudos"
18 #include "llvm/CodeGen/Passes.h"
21 #include "llvm/Support/Debug.h"
24 using namespace llvm;
25 
26 namespace {
27  class ExpandISelPseudos : public MachineFunctionPass {
28  public:
29  static char ID; // Pass identification, replacement for typeid
30  ExpandISelPseudos() : MachineFunctionPass(ID) {}
31 
32  private:
33  virtual bool runOnMachineFunction(MachineFunction &MF);
34 
35  virtual void getAnalysisUsage(AnalysisUsage &AU) const {
37  }
38  };
39 } // end anonymous namespace
40 
41 char ExpandISelPseudos::ID = 0;
43 INITIALIZE_PASS(ExpandISelPseudos, "expand-isel-pseudos",
44  "Expand ISel Pseudo-instructions", false, false)
45 
46 bool ExpandISelPseudos::runOnMachineFunction(MachineFunction &MF) {
47  bool Changed = false;
48  const TargetLowering *TLI = MF.getTarget().getTargetLowering();
49 
50  // Iterate through each instruction in the function, looking for pseudos.
51  for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ++I) {
52  MachineBasicBlock *MBB = I;
53  for (MachineBasicBlock::iterator MBBI = MBB->begin(), MBBE = MBB->end();
54  MBBI != MBBE; ) {
55  MachineInstr *MI = MBBI++;
56 
57  // If MI is a pseudo, expand it.
58  if (MI->usesCustomInsertionHook()) {
59  Changed = true;
60  MachineBasicBlock *NewMBB =
61  TLI->EmitInstrWithCustomInserter(MI, MBB);
62  // The expansion may involve new basic blocks.
63  if (NewMBB != MBB) {
64  MBB = NewMBB;
65  I = NewMBB;
66  MBBI = NewMBB->begin();
67  MBBE = NewMBB->end();
68  }
69  }
70  }
71  }
72 
73  return Changed;
74 }
ID
LLVM Calling Convention Representation.
Definition: CallingConv.h:26
char & ExpandISelPseudosID
ExpandISelPseudos - This pass expands pseudo-instructions.
bundle_iterator< MachineInstr, instr_iterator > iterator
INITIALIZE_PASS(ExpandISelPseudos,"expand-isel-pseudos","Expand ISel Pseudo-instructions", false, false) bool ExpandISelPseudos
virtual MachineBasicBlock * EmitInstrWithCustomInserter(MachineInstr *MI, MachineBasicBlock *MBB) const
virtual void getAnalysisUsage(AnalysisUsage &AU) const
#define I(x, y, z)
Definition: MD5.cpp:54
bool usesCustomInsertionHook(QueryType Type=IgnoreBundle) const
Definition: MachineInstr.h:532
BasicBlockListType::iterator iterator