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

Unified Diff: src/stub-cache-ia32.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 | « src/stub-cache-arm.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/stub-cache-ia32.cc
===================================================================
--- src/stub-cache-ia32.cc (revision 1369)
+++ src/stub-cache-ia32.cc (working copy)
@@ -448,8 +448,6 @@
// TODO(1241006): Avoid having lazy compile stubs specialized by the
// number of arguments. It is not needed anymore.
Object* StubCompiler::CompileLazyCompile(Code::Flags flags) {
- HandleScope scope;
-
// Enter an internal frame.
__ EnterInternalFrame();
@@ -476,8 +474,6 @@
int index) {
// ----------- S t a t e -------------
// -----------------------------------
-
- HandleScope scope;
Label miss;
// Get the receiver from the stack.
@@ -528,8 +524,6 @@
CheckType check) {
// ----------- S t a t e -------------
// -----------------------------------
-
- HandleScope scope;
Label miss;
// Get the receiver from the stack.
@@ -649,8 +643,6 @@
String* name) {
// ----------- S t a t e -------------
// -----------------------------------
-
- HandleScope scope;
Label miss;
// Get the number of arguments.
@@ -729,8 +721,6 @@
// -- esp[0] : return address
// -- esp[4] : receiver
// -----------------------------------
-
- HandleScope scope;
Label miss;
// Get the object from the stack.
@@ -765,8 +755,6 @@
// -- esp[0] : return address
// -- esp[4] : receiver
// -----------------------------------
-
- HandleScope scope;
Label miss;
// Get the object from the stack.
@@ -821,8 +809,6 @@
// -- esp[0] : return address
// -- esp[4] : receiver
// -----------------------------------
-
- HandleScope scope;
Label miss;
// Get the object from the stack.
@@ -878,7 +864,6 @@
// -- esp[4] : key
// -- esp[8] : receiver
// -----------------------------------
- HandleScope scope;
Label miss;
__ IncrementCounter(&Counters::keyed_store_field, 1);
@@ -920,8 +905,6 @@
// -- esp[0] : return address
// -- esp[4] : receiver
// -----------------------------------
-
- HandleScope scope;
Label miss;
__ mov(eax, (Operand(esp, kPointerSize)));
@@ -942,8 +925,6 @@
// -- esp[0] : return address
// -- esp[4] : receiver
// -----------------------------------
-
- HandleScope scope;
Label miss;
__ mov(eax, (Operand(esp, kPointerSize)));
@@ -965,8 +946,6 @@
// -- esp[0] : return address
// -- esp[4] : receiver
// -----------------------------------
-
- HandleScope scope;
Label miss;
__ mov(eax, (Operand(esp, kPointerSize)));
@@ -987,7 +966,6 @@
// -- esp[0] : return address
// -- esp[4] : receiver
// -----------------------------------
- HandleScope scope;
Label miss;
__ mov(eax, (Operand(esp, kPointerSize)));
@@ -1009,7 +987,6 @@
// -- esp[4] : name
// -- esp[8] : receiver
// -----------------------------------
- HandleScope scope;
Label miss;
__ mov(eax, (Operand(esp, kPointerSize)));
@@ -1039,7 +1016,6 @@
// -- esp[4] : name
// -- esp[8] : receiver
// -----------------------------------
- HandleScope scope;
Label miss;
__ mov(eax, (Operand(esp, kPointerSize)));
@@ -1070,7 +1046,6 @@
// -- esp[4] : name
// -- esp[8] : receiver
// -----------------------------------
- HandleScope scope;
Label miss;
__ mov(eax, (Operand(esp, kPointerSize)));
@@ -1099,7 +1074,6 @@
// -- esp[4] : name
// -- esp[8] : receiver
// -----------------------------------
- HandleScope scope;
Label miss;
__ mov(eax, (Operand(esp, kPointerSize)));
@@ -1128,7 +1102,6 @@
// -- esp[4] : name
// -- esp[8] : receiver
// -----------------------------------
- HandleScope scope;
Label miss;
__ mov(eax, (Operand(esp, kPointerSize)));
@@ -1155,7 +1128,6 @@
// -- esp[4] : name
// -- esp[8] : receiver
// -----------------------------------
- HandleScope scope;
Label miss;
__ mov(eax, (Operand(esp, kPointerSize)));
@@ -1182,7 +1154,6 @@
// -- esp[4] : name
// -- esp[8] : receiver
// -----------------------------------
- HandleScope scope;
Label miss;
__ mov(eax, (Operand(esp, kPointerSize)));
« no previous file with comments | « src/stub-cache-arm.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698