inline AsmPrinter::getCurrentFunctionEHName into its only caller.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81970 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2009-09-16 00:35:39 +00:00
parent 642b329104
commit 25d812bd7d
3 changed files with 6 additions and 15 deletions

View File

@ -154,10 +154,6 @@ namespace llvm {
///
bool isVerbose() const { return VerboseAsm; }
/// getCurrentFunctionEHName - Called to return the CurrentFnEHName.
///
std::string getCurrentFunctionEHName(const MachineFunction *MF) const;
/// getFunctionNumber - Return a unique ID for the current function.
///
unsigned getFunctionNumber() const { return FunctionNumber; }

View File

@ -212,21 +212,13 @@ bool AsmPrinter::doFinalization(Module &M) {
return false;
}
std::string
AsmPrinter::getCurrentFunctionEHName(const MachineFunction *MF) const {
assert(MF && "No machine function?");
return Mang->getMangledName(MF->getFunction(), ".eh",
MAI->is_EHSymbolPrivate());
}
void AsmPrinter::SetupMachineFunction(MachineFunction &MF) {
// What's my mangled name?
CurrentFnName = Mang->getMangledName(MF.getFunction());
IncrementFunctionNumber();
if (VerboseAsm) {
if (VerboseAsm)
LI = &getAnalysis<MachineLoopInfo>();
}
}
namespace {

View File

@ -960,9 +960,12 @@ void DwarfException::EndFunction() {
EmitLabel("eh_func_end", SubprogramCount);
EmitExceptionTable();
std::string FunctionEHName =
Asm->Mang->getMangledName(MF->getFunction(), ".eh",
Asm->MAI->is_EHSymbolPrivate());
// Save EH frame information
EHFrames.push_back(FunctionEHFrameInfo(getAsm()->getCurrentFunctionEHName(MF),
SubprogramCount,
EHFrames.push_back(FunctionEHFrameInfo(FunctionEHName, SubprogramCount,
MMI->getPersonalityIndex(),
MF->getFrameInfo()->hasCalls(),
!MMI->getLandingPads().empty(),