mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
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:
parent
642b329104
commit
25d812bd7d
@ -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; }
|
||||
|
@ -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 {
|
||||
|
@ -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(),
|
||||
|
Loading…
x
Reference in New Issue
Block a user