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

Unified Diff: src/stub-cache-arm.cc

Issue 27156: Follow on to r1368: Remove unnecessary HandleScope in the StubCompilers. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 10 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 | « no previous file | src/stub-cache-ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/stub-cache-arm.cc
===================================================================
--- src/stub-cache-arm.cc (revision 1369)
+++ src/stub-cache-arm.cc (working copy)
@@ -466,8 +466,6 @@
// -- lr: return address
// -----------------------------------
- HandleScope scope;
-
// Enter an internal frame.
__ EnterInternalFrame();
@@ -500,8 +498,6 @@
// ----------- S t a t e -------------
// -- lr: return address
// -----------------------------------
-
- HandleScope scope;
Label miss;
const int argc = arguments().immediate();
@@ -553,8 +549,6 @@
// ----------- S t a t e -------------
// -- lr: return address
// -----------------------------------
-
- HandleScope scope;
Label miss;
// Get the receiver from the stack
@@ -675,8 +669,6 @@
// ----------- S t a t e -------------
// -- lr: return address
// -----------------------------------
-
- HandleScope scope;
Label miss;
// TODO(1224669): Implement.
@@ -701,8 +693,6 @@
// -- lr : return address
// -- [sp] : receiver
// -----------------------------------
-
- HandleScope scope;
Label miss;
// Get the receiver from the stack.
@@ -735,8 +725,6 @@
// -- lr : return address
// -- [sp] : receiver
// -----------------------------------
-
- HandleScope scope;
Label miss;
// Get the object from the stack.
@@ -791,8 +779,6 @@
// -- lr : return address
// -- [sp] : receiver
// -----------------------------------
-
- HandleScope scope;
Label miss;
// Get the object from the stack.
@@ -845,8 +831,6 @@
// -- lr : return address
// -- [sp] : receiver
// -----------------------------------
-
- HandleScope scope;
Label miss;
__ ldr(r0, MemOperand(sp, 0));
@@ -868,8 +852,6 @@
// -- lr : return address
// -- [sp] : receiver
// -----------------------------------
-
- HandleScope scope;
Label miss;
__ ldr(r0, MemOperand(sp, 0));
@@ -890,8 +872,6 @@
// -- lr : return address
// -- [sp] : receiver
// -----------------------------------
-
- HandleScope scope;
Label miss;
__ ldr(r0, MemOperand(sp, 0));
@@ -913,8 +893,6 @@
// -- lr : return address
// -- [sp] : receiver
// -----------------------------------
-
- HandleScope scope;
Label miss;
__ ldr(r0, MemOperand(sp, 0));
@@ -939,7 +917,6 @@
// -- sp[0] : key
// -- sp[4] : receiver
// -----------------------------------
- HandleScope scope;
Label miss;
__ ldr(r2, MemOperand(sp, 0));
@@ -965,7 +942,6 @@
// -- sp[0] : key
// -- sp[4] : receiver
// -----------------------------------
- HandleScope scope;
Label miss;
__ ldr(r2, MemOperand(sp, 0));
@@ -992,7 +968,6 @@
// -- sp[0] : key
// -- sp[4] : receiver
// -----------------------------------
- HandleScope scope;
Label miss;
// Check the key is the cached one
@@ -1019,7 +994,6 @@
// -- sp[0] : key
// -- sp[4] : receiver
// -----------------------------------
- HandleScope scope;
Label miss;
// Check the key is the cached one
@@ -1043,7 +1017,6 @@
// -- sp[0] : key
// -- sp[4] : receiver
// -----------------------------------
- HandleScope scope;
Label miss;
// Check the key is the cached one
@@ -1067,8 +1040,6 @@
// -- sp[0] : key
// -- sp[4] : receiver
// -----------------------------------
- HandleScope scope;
-
Label miss;
__ IncrementCounter(&Counters::keyed_load_string_length, 1, r1, r3);
@@ -1095,7 +1066,6 @@
// -- sp[0] : key
// -- sp[4] : receiver
// -----------------------------------
- HandleScope scope;
GenerateLoadMiss(masm(), Code::KEYED_LOAD_IC);
return GetCode(CALLBACKS);
@@ -1112,7 +1082,6 @@
// -- lr : return address
// -- [sp] : receiver
// -----------------------------------
- HandleScope scope;
Label miss;
__ IncrementCounter(&Counters::keyed_store_field, 1, r1, r3);
« no previous file with comments | « no previous file | src/stub-cache-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698