2009-06-22 01:13:57 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef DISASSEMBLED_CODE_H
|
|
|
|
#define DISASSEMBLED_CODE_H
|
|
|
|
|
* Finished the transformation of the SourceCode interface:
- Replaced StatementAtLine() by GetStatementLocationRange(), which doesn't
return a statement (i.e. also target addresses), but just a range in the
source code. This can also be implemented by FileSourceCode, which can
therefore be used for more than one instance of a function.
- Added GetStatementAtLocation() which kind of is also a replacement for
StatementAtLine(), but is optional and only provided by
DisassembledSourceCode.
- Added GetSourceFile(), which has to be provided when
GetStatementAtLocation() is not implemented.
- Kicked the statement stuff out of FileSourceCode. It only knows source
ranges, now.
* Team: Added GetStatementAtSourceLocation(), which is the real replacement for
SourceCode::StatementAtLine() in cases where a statement is actually
needed. It uses SourceCode::GetStatementAtLocation(), if available and
otherwise finds a function at the source location, and gets a statement for
one of its instances.
* TeamDebugInfo: Does now manage a source file -> functions map allowing to
look up functions at source file locations.
* DwarfImageDebugInfo:
- Switched the path in the source code hash table key for a LocatableFile,
which is cheaper to hash and to compare.
- Fixed bugs where the relocation delta was ignored.
- Replace a -1 in the SourceLocation column component by 0 to avoid
mismatches.
* SourceLocation: Changed component types from uint32 to int32. Otherwise -1 is
not representable.
Things mostly work as before starting the refactoring to support function
instances. All is not well yet, though. E.g. we don't merge the source code
information for common source files (like headers) provided by different
compilation units (or even images) yet. We need to do that, since the debug
info for a compilation unit only contains line number information for inline
functions (in headers) that are actually used.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31495 a95241bf-73f2-0310-859d-f6bbb57e9c96
2009-07-10 00:08:45 +00:00
|
|
|
|
2009-06-22 01:13:57 +00:00
|
|
|
#include <ObjectList.h>
|
|
|
|
|
|
|
|
#include "SourceCode.h"
|
|
|
|
|
|
|
|
|
|
|
|
class BString;
|
|
|
|
class ContiguousStatement;
|
|
|
|
|
|
|
|
|
|
|
|
class DisassembledCode : public SourceCode {
|
|
|
|
public:
|
|
|
|
DisassembledCode();
|
|
|
|
~DisassembledCode();
|
|
|
|
|
|
|
|
virtual int32 CountLines() const;
|
|
|
|
virtual const char* LineAt(int32 index) const;
|
|
|
|
|
* Finished the transformation of the SourceCode interface:
- Replaced StatementAtLine() by GetStatementLocationRange(), which doesn't
return a statement (i.e. also target addresses), but just a range in the
source code. This can also be implemented by FileSourceCode, which can
therefore be used for more than one instance of a function.
- Added GetStatementAtLocation() which kind of is also a replacement for
StatementAtLine(), but is optional and only provided by
DisassembledSourceCode.
- Added GetSourceFile(), which has to be provided when
GetStatementAtLocation() is not implemented.
- Kicked the statement stuff out of FileSourceCode. It only knows source
ranges, now.
* Team: Added GetStatementAtSourceLocation(), which is the real replacement for
SourceCode::StatementAtLine() in cases where a statement is actually
needed. It uses SourceCode::GetStatementAtLocation(), if available and
otherwise finds a function at the source location, and gets a statement for
one of its instances.
* TeamDebugInfo: Does now manage a source file -> functions map allowing to
look up functions at source file locations.
* DwarfImageDebugInfo:
- Switched the path in the source code hash table key for a LocatableFile,
which is cheaper to hash and to compare.
- Fixed bugs where the relocation delta was ignored.
- Replace a -1 in the SourceLocation column component by 0 to avoid
mismatches.
* SourceLocation: Changed component types from uint32 to int32. Otherwise -1 is
not representable.
Things mostly work as before starting the refactoring to support function
instances. All is not well yet, though. E.g. we don't merge the source code
information for common source files (like headers) provided by different
compilation units (or even images) yet. We need to do that, since the debug
info for a compilation unit only contains line number information for inline
functions (in headers) that are actually used.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31495 a95241bf-73f2-0310-859d-f6bbb57e9c96
2009-07-10 00:08:45 +00:00
|
|
|
virtual bool GetStatementLocationRange(
|
|
|
|
const SourceLocation& location,
|
|
|
|
SourceLocation& _start,
|
|
|
|
SourceLocation& _end) const;
|
|
|
|
|
|
|
|
virtual LocatableFile* GetSourceFile() const;
|
2009-06-22 01:13:57 +00:00
|
|
|
|
* Finished the transformation of the SourceCode interface:
- Replaced StatementAtLine() by GetStatementLocationRange(), which doesn't
return a statement (i.e. also target addresses), but just a range in the
source code. This can also be implemented by FileSourceCode, which can
therefore be used for more than one instance of a function.
- Added GetStatementAtLocation() which kind of is also a replacement for
StatementAtLine(), but is optional and only provided by
DisassembledSourceCode.
- Added GetSourceFile(), which has to be provided when
GetStatementAtLocation() is not implemented.
- Kicked the statement stuff out of FileSourceCode. It only knows source
ranges, now.
* Team: Added GetStatementAtSourceLocation(), which is the real replacement for
SourceCode::StatementAtLine() in cases where a statement is actually
needed. It uses SourceCode::GetStatementAtLocation(), if available and
otherwise finds a function at the source location, and gets a statement for
one of its instances.
* TeamDebugInfo: Does now manage a source file -> functions map allowing to
look up functions at source file locations.
* DwarfImageDebugInfo:
- Switched the path in the source code hash table key for a LocatableFile,
which is cheaper to hash and to compare.
- Fixed bugs where the relocation delta was ignored.
- Replace a -1 in the SourceLocation column component by 0 to avoid
mismatches.
* SourceLocation: Changed component types from uint32 to int32. Otherwise -1 is
not representable.
Things mostly work as before starting the refactoring to support function
instances. All is not well yet, though. E.g. we don't merge the source code
information for common source files (like headers) provided by different
compilation units (or even images) yet. We need to do that, since the debug
info for a compilation unit only contains line number information for inline
functions (in headers) that are actually used.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31495 a95241bf-73f2-0310-859d-f6bbb57e9c96
2009-07-10 00:08:45 +00:00
|
|
|
virtual status_t GetStatementAtLocation(
|
|
|
|
const SourceLocation& location,
|
|
|
|
Statement*& _statement);
|
2009-06-22 21:51:32 +00:00
|
|
|
|
2009-06-22 01:13:57 +00:00
|
|
|
public:
|
|
|
|
bool AddCommentLine(const BString& line);
|
|
|
|
bool AddInstructionLine(const BString& line,
|
2009-07-07 20:47:39 +00:00
|
|
|
target_addr_t address, target_size_t size);
|
2009-06-22 01:13:57 +00:00
|
|
|
// instructions must be added in
|
|
|
|
// ascending address order
|
|
|
|
|
|
|
|
private:
|
|
|
|
struct Line;
|
|
|
|
|
|
|
|
typedef BObjectList<Line> LineList;
|
|
|
|
typedef BObjectList<ContiguousStatement> StatementList;
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool _AddLine(const BString& line,
|
|
|
|
ContiguousStatement* statement);
|
|
|
|
static int _CompareAddressStatement(
|
|
|
|
const target_addr_t* address,
|
|
|
|
const ContiguousStatement* statement);
|
|
|
|
|
|
|
|
private:
|
|
|
|
LineList fLines;
|
|
|
|
StatementList fStatements;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // DISASSEMBLED_CODE_H
|