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

Side by Side Diff: src/compiler.h

Issue 7066004: Inline more zone stuff. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/compiler.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 CompilationInfo* info, 287 CompilationInfo* info,
288 Handle<SharedFunctionInfo> shared); 288 Handle<SharedFunctionInfo> shared);
289 }; 289 };
290 290
291 291
292 // During compilation we need a global list of handles to constants 292 // During compilation we need a global list of handles to constants
293 // for frame elements. When the zone gets deleted, we make sure to 293 // for frame elements. When the zone gets deleted, we make sure to
294 // clear this list of handles as well. 294 // clear this list of handles as well.
295 class CompilationZoneScope : public ZoneScope { 295 class CompilationZoneScope : public ZoneScope {
296 public: 296 public:
297 explicit CompilationZoneScope(ZoneScopeMode mode) : ZoneScope(mode) { } 297 CompilationZoneScope(Isolate* isolate, ZoneScopeMode mode)
298 : ZoneScope(isolate, mode) {}
299
298 virtual ~CompilationZoneScope() { 300 virtual ~CompilationZoneScope() {
299 if (ShouldDeleteOnExit()) { 301 if (ShouldDeleteOnExit()) {
300 Isolate* isolate = Isolate::Current(); 302 Isolate* isolate = Isolate::Current();
301 isolate->frame_element_constant_list()->Clear(); 303 isolate->frame_element_constant_list()->Clear();
302 isolate->result_constant_list()->Clear(); 304 isolate->result_constant_list()->Clear();
303 } 305 }
304 } 306 }
305 }; 307 };
306 308
307 309
308 } } // namespace v8::internal 310 } } // namespace v8::internal
309 311
310 #endif // V8_COMPILER_H_ 312 #endif // V8_COMPILER_H_
OLDNEW
« no previous file with comments | « no previous file | src/compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698