diff options
author | Lars Knoll <[email protected]> | 2013-10-24 08:54:03 +0200 |
---|---|---|
committer | The Qt Project <[email protected]> | 2013-10-29 10:39:08 +0100 |
commit | d4ff8bd1ec92ea5258c9914995072c910e0f6140 (patch) | |
tree | 81c622ea611ebd4653371a09b03c57628dcc8f6f /src/qml/jsruntime/qv4executableallocator_p.h | |
parent | c4dcc327d96788d4d0cd91303b3f1270dd3efd0a (diff) |
Remove qv4unwindhelper class
This class is not required anymore to generate stack traces, as
we now store the required information in the JS context stack.
Change-Id: I3893c805ca89dda70efde07fdd120e7dfaf3639f
Reviewed-by: Simon Hausmann <[email protected]>
Diffstat (limited to 'src/qml/jsruntime/qv4executableallocator_p.h')
-rw-r--r-- | src/qml/jsruntime/qv4executableallocator_p.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/qml/jsruntime/qv4executableallocator_p.h b/src/qml/jsruntime/qv4executableallocator_p.h index b4fb2fb0e5..8ce1146ac9 100644 --- a/src/qml/jsruntime/qv4executableallocator_p.h +++ b/src/qml/jsruntime/qv4executableallocator_p.h @@ -105,24 +105,16 @@ public: int freeAllocationCount() const { return freeAllocations.count(); } int chunkCount() const { return chunks.count(); } - // Used to store CIE+FDE on x86/x86-64. - struct PlatformUnwindInfo - { - virtual ~PlatformUnwindInfo() {} - }; - struct ChunkOfPages { ChunkOfPages() : pages(0) , firstAllocation(0) - , unwindInfo(0) {} ~ChunkOfPages(); WTF::PageAllocation *pages; Allocation *firstAllocation; - PlatformUnwindInfo *unwindInfo; bool contains(Allocation *alloc) const; }; |