forked from OSchip/llvm-project
parent
a3918ecdf5
commit
c87b74d913
|
@ -62,7 +62,7 @@ public:
|
|||
|
||||
virtual bool runOnMachineFunction(MachineFunction &MF);
|
||||
|
||||
virtual void EmitFunctionEntryCode(Function &Fn, MachineFunction &MF) {}
|
||||
virtual void EmitFunctionEntryCode() {}
|
||||
|
||||
/// PreprocessISelDAG - This hook allows targets to hack on the graph before
|
||||
/// instruction selection starts.
|
||||
|
|
|
@ -6001,7 +6001,7 @@ void SelectionDAGISel::LowerArguments(BasicBlock *LLVMBB) {
|
|||
|
||||
// Finally, if the target has anything special to do, allow it to do so.
|
||||
// FIXME: this should insert code into the DAG!
|
||||
EmitFunctionEntryCode(F, SDB->DAG.getMachineFunction());
|
||||
EmitFunctionEntryCode();
|
||||
}
|
||||
|
||||
/// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to
|
||||
|
|
|
@ -183,7 +183,7 @@ namespace {
|
|||
return "X86 DAG->DAG Instruction Selection";
|
||||
}
|
||||
|
||||
virtual void EmitFunctionEntryCode(Function &Fn, MachineFunction &MF);
|
||||
virtual void EmitFunctionEntryCode();
|
||||
|
||||
virtual bool IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const;
|
||||
|
||||
|
@ -546,11 +546,11 @@ void X86DAGToDAGISel::EmitSpecialCodeForMain(MachineBasicBlock *BB,
|
|||
TII->get(X86::CALLpcrel32)).addExternalSymbol("__main");
|
||||
}
|
||||
|
||||
void X86DAGToDAGISel::EmitFunctionEntryCode(Function &Fn, MachineFunction &MF) {
|
||||
void X86DAGToDAGISel::EmitFunctionEntryCode() {
|
||||
// If this is main, emit special code for main.
|
||||
MachineBasicBlock *BB = MF.begin();
|
||||
if (Fn.hasExternalLinkage() && Fn.getName() == "main")
|
||||
EmitSpecialCodeForMain(BB, MF.getFrameInfo());
|
||||
if (const Function *Fn = MF->getFunction())
|
||||
if (Fn->hasExternalLinkage() && Fn->getName() == "main")
|
||||
EmitSpecialCodeForMain(MF->begin(), MF->getFrameInfo());
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue