mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-06 01:31:56 +00:00
Refactor.
llvm-svn: 102661
This commit is contained in:
parent
a4fd142987
commit
bdfc01f418
@ -402,6 +402,17 @@ uint64_t DIDerivedType::getOriginalTypeSize() const {
|
|||||||
return getSizeInBits();
|
return getSizeInBits();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// isInlinedFnArgument - Return trule if this variable provides debugging
|
||||||
|
/// information for an inlined function arguments.
|
||||||
|
bool DIVariable::isInlinedFnArgument(const Function *CurFn) {
|
||||||
|
assert(CurFn && "Invalid function");
|
||||||
|
if (!getContext().isSubprogram())
|
||||||
|
return false;
|
||||||
|
// This variable is not inlined function argument if its scope
|
||||||
|
// does not describe current function.
|
||||||
|
return !(DISubprogram(getContext().getNode()).describes(CurFn));
|
||||||
|
}
|
||||||
|
|
||||||
/// describes - Return true if this subprogram provides debugging
|
/// describes - Return true if this subprogram provides debugging
|
||||||
/// information for the function F.
|
/// information for the function F.
|
||||||
bool DISubprogram::describes(const Function *F) {
|
bool DISubprogram::describes(const Function *F) {
|
||||||
|
@ -3691,14 +3691,12 @@ SelectionDAGBuilder::EmitFuncArgumentDbgValue(const DbgValueInst &DI,
|
|||||||
if (!isa<Argument>(V))
|
if (!isa<Argument>(V))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
MachineFunction &MF = DAG.getMachineFunction();
|
||||||
// Ignore inlined function arguments here.
|
// Ignore inlined function arguments here.
|
||||||
DIVariable DV(Variable);
|
DIVariable DV(Variable);
|
||||||
if (DV.getContext().isSubprogram()
|
if (DV.isInlinedFnArgument(MF.getFunction()))
|
||||||
&& DISubprogram(DV.getContext().getNode()).getLinkageName()
|
|
||||||
!= cast<Argument>(V)->getParent()->getName())
|
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
MachineFunction &MF = DAG.getMachineFunction();
|
|
||||||
MachineBasicBlock *MBB = FuncInfo.MBBMap[DI.getParent()];
|
MachineBasicBlock *MBB = FuncInfo.MBBMap[DI.getParent()];
|
||||||
if (MBB != &MF.front())
|
if (MBB != &MF.front())
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user