2009-07-08 00:47:39 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
|
2016-11-23 07:06:09 +03:00
|
|
|
* Copyright 2016, Rene Gollent, rene@gollent.com.
|
2009-07-08 00:47:39 +04:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef FUNCTION_INSTANCE_H
|
|
|
|
#define FUNCTION_INSTANCE_H
|
|
|
|
|
|
|
|
#include <util/DoublyLinkedList.h>
|
|
|
|
|
|
|
|
#include "FunctionDebugInfo.h"
|
|
|
|
|
|
|
|
|
* Since disassembled code is actually function instance specific,
FunctionInstance does now also have a (DisassembledCode) source code
attribute. Function keeps its attribute, but it explicitly is a
FileSourceCode now.
* SourceCode:
- Removed GetStatementAtLocation(). Instead DisassembledCode has a
StatementAtLocation() now. As well as a StatementAtAddress() and
StatementAddressRange(). Rather cast to the subclass (in two instances)
instead of having those methods in the base class. In most cases we already
have the subclasses now, anyway.
- Added Lock()/Unlock(), which are implemented in FileSourceCode. The
statement ranges are no longer immutable, so we have to lock.
* TeamDebugModel:
- Revived GetBreakpointsInAddressRange().
- GetBreakpointsForSourceCode(): Optimized for DisassembledCode and fixed
in the FileSourceCode case. We need to compare with the functions' source
file instead of their source code, since they might not have the source
code set yet. Fixed two instances of the same problem in SourceView. Setting
breakpoints in functions that have no associated source code yet, works now.
* Team:
- GetStatementAtAddress(): Optimized by using the DisassembledCode, if
available.
- GetStatementAtSourceLocation(): If the supplied source code is
DisassembledCode, we have to get the statement from it directly, since
we can't get that information from the image debug info.
* TeamDebugInfo: Added LoadSourceCode() and DisassembleFunction(), the new way
to get FileSourceCode respectively DisassembledCode. SpecificTeamDebugInfo
has lost LoadSourceCode() and gained service methods AddSourceCodeInfo() and
ReadCode(). This avoids unnecessary code duplication in the subclasses.
Moreover it allows for joining source location info source files from
different images (and compilation units) -- interesting for inline functions
in headers.
* Adjusted LoadSourceCodeJob and TeamDebugger::FunctionSourceCodeRequested()
accordingly.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31514 a95241bf-73f2-0310-859d-f6bbb57e9c96
2009-07-11 04:05:26 +04:00
|
|
|
enum function_source_state {
|
|
|
|
FUNCTION_SOURCE_NOT_LOADED,
|
|
|
|
FUNCTION_SOURCE_LOADING,
|
|
|
|
FUNCTION_SOURCE_LOADED,
|
2016-11-23 07:06:09 +03:00
|
|
|
FUNCTION_SOURCE_UNAVAILABLE,
|
|
|
|
FUNCTION_SOURCE_SUPPRESSED
|
* Since disassembled code is actually function instance specific,
FunctionInstance does now also have a (DisassembledCode) source code
attribute. Function keeps its attribute, but it explicitly is a
FileSourceCode now.
* SourceCode:
- Removed GetStatementAtLocation(). Instead DisassembledCode has a
StatementAtLocation() now. As well as a StatementAtAddress() and
StatementAddressRange(). Rather cast to the subclass (in two instances)
instead of having those methods in the base class. In most cases we already
have the subclasses now, anyway.
- Added Lock()/Unlock(), which are implemented in FileSourceCode. The
statement ranges are no longer immutable, so we have to lock.
* TeamDebugModel:
- Revived GetBreakpointsInAddressRange().
- GetBreakpointsForSourceCode(): Optimized for DisassembledCode and fixed
in the FileSourceCode case. We need to compare with the functions' source
file instead of their source code, since they might not have the source
code set yet. Fixed two instances of the same problem in SourceView. Setting
breakpoints in functions that have no associated source code yet, works now.
* Team:
- GetStatementAtAddress(): Optimized by using the DisassembledCode, if
available.
- GetStatementAtSourceLocation(): If the supplied source code is
DisassembledCode, we have to get the statement from it directly, since
we can't get that information from the image debug info.
* TeamDebugInfo: Added LoadSourceCode() and DisassembleFunction(), the new way
to get FileSourceCode respectively DisassembledCode. SpecificTeamDebugInfo
has lost LoadSourceCode() and gained service methods AddSourceCodeInfo() and
ReadCode(). This avoids unnecessary code duplication in the subclasses.
Moreover it allows for joining source location info source files from
different images (and compilation units) -- interesting for inline functions
in headers.
* Adjusted LoadSourceCodeJob and TeamDebugger::FunctionSourceCodeRequested()
accordingly.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31514 a95241bf-73f2-0310-859d-f6bbb57e9c96
2009-07-11 04:05:26 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class DisassembledCode;
|
2009-07-08 00:47:39 +04:00
|
|
|
class Function;
|
|
|
|
class FunctionDebugInfo;
|
2009-07-19 03:52:16 +04:00
|
|
|
class FunctionID;
|
2009-07-08 00:47:39 +04:00
|
|
|
class ImageDebugInfo;
|
|
|
|
|
|
|
|
|
2010-12-16 16:50:30 +03:00
|
|
|
class FunctionInstance : public BReferenceable,
|
2009-07-08 00:47:39 +04:00
|
|
|
public DoublyLinkedListLinkImpl<FunctionInstance> {
|
|
|
|
public:
|
|
|
|
FunctionInstance(ImageDebugInfo* imageDebugInfo,
|
|
|
|
FunctionDebugInfo* functionDebugInfo);
|
|
|
|
~FunctionInstance();
|
|
|
|
|
|
|
|
ImageDebugInfo* GetImageDebugInfo() const
|
|
|
|
{ return fImageDebugInfo; }
|
|
|
|
Function* GetFunction() const
|
|
|
|
{ return fFunction; }
|
|
|
|
FunctionDebugInfo* GetFunctionDebugInfo() const
|
|
|
|
{ return fFunctionDebugInfo; }
|
|
|
|
|
|
|
|
target_addr_t Address() const
|
|
|
|
{ return fFunctionDebugInfo->Address(); }
|
|
|
|
target_size_t Size() const
|
|
|
|
{ return fFunctionDebugInfo->Size(); }
|
|
|
|
const BString& Name() const
|
|
|
|
{ return fFunctionDebugInfo->Name(); }
|
|
|
|
const BString& PrettyName() const
|
|
|
|
{ return fFunctionDebugInfo->PrettyName(); }
|
|
|
|
LocatableFile* SourceFile() const
|
|
|
|
{ return fFunctionDebugInfo->SourceFile(); }
|
|
|
|
SourceLocation GetSourceLocation() const
|
|
|
|
{ return fFunctionDebugInfo
|
|
|
|
->SourceStartLocation(); }
|
|
|
|
|
2009-07-19 03:52:16 +04:00
|
|
|
FunctionID* GetFunctionID() const;
|
|
|
|
// returns a reference
|
|
|
|
|
2009-07-08 00:47:39 +04:00
|
|
|
void SetFunction(Function* function);
|
|
|
|
// package private
|
* Since disassembled code is actually function instance specific,
FunctionInstance does now also have a (DisassembledCode) source code
attribute. Function keeps its attribute, but it explicitly is a
FileSourceCode now.
* SourceCode:
- Removed GetStatementAtLocation(). Instead DisassembledCode has a
StatementAtLocation() now. As well as a StatementAtAddress() and
StatementAddressRange(). Rather cast to the subclass (in two instances)
instead of having those methods in the base class. In most cases we already
have the subclasses now, anyway.
- Added Lock()/Unlock(), which are implemented in FileSourceCode. The
statement ranges are no longer immutable, so we have to lock.
* TeamDebugModel:
- Revived GetBreakpointsInAddressRange().
- GetBreakpointsForSourceCode(): Optimized for DisassembledCode and fixed
in the FileSourceCode case. We need to compare with the functions' source
file instead of their source code, since they might not have the source
code set yet. Fixed two instances of the same problem in SourceView. Setting
breakpoints in functions that have no associated source code yet, works now.
* Team:
- GetStatementAtAddress(): Optimized by using the DisassembledCode, if
available.
- GetStatementAtSourceLocation(): If the supplied source code is
DisassembledCode, we have to get the statement from it directly, since
we can't get that information from the image debug info.
* TeamDebugInfo: Added LoadSourceCode() and DisassembleFunction(), the new way
to get FileSourceCode respectively DisassembledCode. SpecificTeamDebugInfo
has lost LoadSourceCode() and gained service methods AddSourceCodeInfo() and
ReadCode(). This avoids unnecessary code duplication in the subclasses.
Moreover it allows for joining source location info source files from
different images (and compilation units) -- interesting for inline functions
in headers.
* Adjusted LoadSourceCodeJob and TeamDebugger::FunctionSourceCodeRequested()
accordingly.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31514 a95241bf-73f2-0310-859d-f6bbb57e9c96
2009-07-11 04:05:26 +04:00
|
|
|
|
|
|
|
// mutable attributes follow (locking required)
|
|
|
|
DisassembledCode* GetSourceCode() const
|
|
|
|
{ return fSourceCode; }
|
|
|
|
function_source_state SourceCodeState() const
|
|
|
|
{ return fSourceCodeState; }
|
|
|
|
void SetSourceCode(DisassembledCode* source,
|
|
|
|
function_source_state state);
|
|
|
|
|
2009-07-08 00:47:39 +04:00
|
|
|
private:
|
|
|
|
ImageDebugInfo* fImageDebugInfo;
|
|
|
|
Function* fFunction;
|
|
|
|
FunctionDebugInfo* fFunctionDebugInfo;
|
* Since disassembled code is actually function instance specific,
FunctionInstance does now also have a (DisassembledCode) source code
attribute. Function keeps its attribute, but it explicitly is a
FileSourceCode now.
* SourceCode:
- Removed GetStatementAtLocation(). Instead DisassembledCode has a
StatementAtLocation() now. As well as a StatementAtAddress() and
StatementAddressRange(). Rather cast to the subclass (in two instances)
instead of having those methods in the base class. In most cases we already
have the subclasses now, anyway.
- Added Lock()/Unlock(), which are implemented in FileSourceCode. The
statement ranges are no longer immutable, so we have to lock.
* TeamDebugModel:
- Revived GetBreakpointsInAddressRange().
- GetBreakpointsForSourceCode(): Optimized for DisassembledCode and fixed
in the FileSourceCode case. We need to compare with the functions' source
file instead of their source code, since they might not have the source
code set yet. Fixed two instances of the same problem in SourceView. Setting
breakpoints in functions that have no associated source code yet, works now.
* Team:
- GetStatementAtAddress(): Optimized by using the DisassembledCode, if
available.
- GetStatementAtSourceLocation(): If the supplied source code is
DisassembledCode, we have to get the statement from it directly, since
we can't get that information from the image debug info.
* TeamDebugInfo: Added LoadSourceCode() and DisassembleFunction(), the new way
to get FileSourceCode respectively DisassembledCode. SpecificTeamDebugInfo
has lost LoadSourceCode() and gained service methods AddSourceCodeInfo() and
ReadCode(). This avoids unnecessary code duplication in the subclasses.
Moreover it allows for joining source location info source files from
different images (and compilation units) -- interesting for inline functions
in headers.
* Adjusted LoadSourceCodeJob and TeamDebugger::FunctionSourceCodeRequested()
accordingly.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31514 a95241bf-73f2-0310-859d-f6bbb57e9c96
2009-07-11 04:05:26 +04:00
|
|
|
DisassembledCode* fSourceCode;
|
|
|
|
function_source_state fSourceCodeState;
|
2009-07-08 00:47:39 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
typedef DoublyLinkedList<FunctionInstance> FunctionInstanceList;
|
|
|
|
|
|
|
|
|
|
|
|
#endif // FUNCTION_INSTANCE_H
|