Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Unified Diff: vm/object.h

Issue 10409038: Remove the special stub code region as we don't need it anymore. With the new frame layout conventi… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « vm/heap.cc ('k') | vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/object.h
===================================================================
--- vm/object.h (revision 7768)
+++ vm/object.h (working copy)
@@ -1908,7 +1908,7 @@
// only be created using the Code::FinalizeCode method. This method creates
// the RawInstruction and RawCode objects, sets up the pointer offsets
// and links the two in a GC safe manner.
- static RawInstructions* New(intptr_t size, Heap::Space space);
+ static RawInstructions* New(intptr_t size);
HEAP_OBJECT_IMPLEMENTATION(Instructions, Object);
friend class Code;
@@ -2246,7 +2246,7 @@
sizeof(RawCode) + (pointer_offsets_length * kEntrySize));
}
static RawCode* FinalizeCode(const Function& function, Assembler* assembler);
- static RawCode* FinalizeStubCode(const char* name, Assembler* assembler);
+ static RawCode* FinalizeCode(const char* name, Assembler* assembler);
static RawCode* LookupCode(uword pc);
int32_t GetPointerOffsetAt(int index) const {
@@ -2311,10 +2311,6 @@
// and links the two in a GC safe manner.
static RawCode* New(int pointer_offsets_length);
- static RawCode* FinalizeCode(const char* name,
- Assembler* assembler,
- Heap::Space space);
-
HEAP_OBJECT_IMPLEMENTATION(Code, Object);
friend class Class;
};
« no previous file with comments | « vm/heap.cc ('k') | vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698