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

Unified Diff: runtime/vm/stub_code_ia32.cc

Issue 26294002: Cleanups: int -> intptr_t for "array" lengths, memory sizes. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 2 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 | « runtime/vm/scanner_test.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/stub_code_ia32.cc
===================================================================
--- runtime/vm/stub_code_ia32.cc (revision 28314)
+++ runtime/vm/stub_code_ia32.cc (working copy)
@@ -775,10 +775,10 @@
// ESP + 16 : new context containing the current isolate pointer.
// Uses EAX, EDX, ECX, EDI as temporary registers.
void StubCode::GenerateInvokeDartCodeStub(Assembler* assembler) {
- const int kEntryPointOffset = 2 * kWordSize;
- const int kArgumentsDescOffset = 3 * kWordSize;
- const int kArgumentsOffset = 4 * kWordSize;
- const int kNewContextOffset = 5 * kWordSize;
+ const intptr_t kEntryPointOffset = 2 * kWordSize;
+ const intptr_t kArgumentsDescOffset = 3 * kWordSize;
+ const intptr_t kArgumentsOffset = 4 * kWordSize;
+ const intptr_t kNewContextOffset = 5 * kWordSize;
// Save frame pointer coming in.
__ EnterFrame(0);
« no previous file with comments | « runtime/vm/scanner_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698