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

Side by Side Diff: src/isolate.h

Issue 11566011: Use MemoryChunk-based allocation for deoptimization entry code (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/deoptimizer.cc ('k') | src/spaces.h » ('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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 1293 matching lines...) Expand 10 before | Expand all | Expand 10 after
1304 1304
1305 friend class ExecutionAccess; 1305 friend class ExecutionAccess;
1306 friend class HandleScopeImplementer; 1306 friend class HandleScopeImplementer;
1307 friend class IsolateInitializer; 1307 friend class IsolateInitializer;
1308 friend class OptimizingCompilerThread; 1308 friend class OptimizingCompilerThread;
1309 friend class ThreadManager; 1309 friend class ThreadManager;
1310 friend class Simulator; 1310 friend class Simulator;
1311 friend class StackGuard; 1311 friend class StackGuard;
1312 friend class ThreadId; 1312 friend class ThreadId;
1313 friend class TestMemoryAllocatorScope; 1313 friend class TestMemoryAllocatorScope;
1314 friend class TestCodeRangeScope;
1314 friend class v8::Isolate; 1315 friend class v8::Isolate;
1315 friend class v8::Locker; 1316 friend class v8::Locker;
1316 friend class v8::Unlocker; 1317 friend class v8::Unlocker;
1317 1318
1318 DISALLOW_COPY_AND_ASSIGN(Isolate); 1319 DISALLOW_COPY_AND_ASSIGN(Isolate);
1319 }; 1320 };
1320 1321
1321 1322
1322 // If the GCC version is 4.1.x or 4.2.x an additional field is added to the 1323 // If the GCC version is 4.1.x or 4.2.x an additional field is added to the
1323 // class as a work around for a bug in the generated code found with these 1324 // class as a work around for a bug in the generated code found with these
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
1449 1450
1450 // Mark the native context with out of memory. 1451 // Mark the native context with out of memory.
1451 inline void Context::mark_out_of_memory() { 1452 inline void Context::mark_out_of_memory() {
1452 native_context()->set_out_of_memory(HEAP->true_value()); 1453 native_context()->set_out_of_memory(HEAP->true_value());
1453 } 1454 }
1454 1455
1455 1456
1456 } } // namespace v8::internal 1457 } } // namespace v8::internal
1457 1458
1458 #endif // V8_ISOLATE_H_ 1459 #endif // V8_ISOLATE_H_
OLDNEW
« no previous file with comments | « src/deoptimizer.cc ('k') | src/spaces.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698