git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101275
91177308-0d34-0410-b5e6-
96231b3b80d8
const SDValue *Ops, unsigned NumOps, unsigned EmitNodeInfo);
void PrepareEHLandingPad(MachineBasicBlock *BB);
const SDValue *Ops, unsigned NumOps, unsigned EmitNodeInfo);
void PrepareEHLandingPad(MachineBasicBlock *BB);
- void SelectAllBasicBlocks(Function &Fn, MachineFunction &MF,
- const TargetInstrInfo &TII);
+ void SelectAllBasicBlocks(Function &Fn);
void FinishBasicBlock();
void SelectBasicBlock(BasicBlock *LLVMBB,
void FinishBasicBlock();
void SelectBasicBlock(BasicBlock *LLVMBB,
FuncInfo->set(Fn, *MF, EnableFastISel);
SDB->init(GFI, *AA);
FuncInfo->set(Fn, *MF, EnableFastISel);
SDB->init(GFI, *AA);
- SelectAllBasicBlocks(Fn, *MF, TII);
+ SelectAllBasicBlocks(Fn);
// Release function-specific state. SDB and CurDAG are already cleared
// at this point.
// Release function-specific state. SDB and CurDAG are already cleared
// at this point.
-void SelectionDAGISel::SelectAllBasicBlocks(Function &Fn,
- MachineFunction &MF,
- const TargetInstrInfo &TII) {
+void SelectionDAGISel::SelectAllBasicBlocks(Function &Fn) {
// Initialize the Fast-ISel state, if needed.
FastISel *FastIS = 0;
if (EnableFastISel)
// Initialize the Fast-ISel state, if needed.
FastISel *FastIS = 0;
if (EnableFastISel)
- FastIS = TLI.createFastISel(MF, FuncInfo->ValueMap, FuncInfo->MBBMap,
+ FastIS = TLI.createFastISel(*MF, FuncInfo->ValueMap, FuncInfo->MBBMap,
FuncInfo->StaticAllocaMap
#ifndef NDEBUG
, FuncInfo->CatchInfoLost
FuncInfo->StaticAllocaMap
#ifndef NDEBUG
, FuncInfo->CatchInfoLost
- SetDebugLoc(BI, SDB, FastIS, &MF);
+ SetDebugLoc(BI, SDB, FastIS, MF);
// Try to select the instruction with FastISel.
if (FastIS->SelectInstruction(BI)) {
// Try to select the instruction with FastISel.
if (FastIS->SelectInstruction(BI)) {