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

Side by Side Diff: src/full-codegen.cc

Issue 10534139: One Zone per CompilationInfo. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rename CompilationInfoZone to ZoneWithCompilationInfo Created 8 years, 6 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/full-codegen.h ('k') | src/hydrogen.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 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 if (FLAG_trace_codegen) { 296 if (FLAG_trace_codegen) {
297 PrintF("Full Compiler - "); 297 PrintF("Full Compiler - ");
298 } 298 }
299 CodeGenerator::MakeCodePrologue(info); 299 CodeGenerator::MakeCodePrologue(info);
300 const int kInitialBufferSize = 4 * KB; 300 const int kInitialBufferSize = 4 * KB;
301 MacroAssembler masm(info->isolate(), NULL, kInitialBufferSize); 301 MacroAssembler masm(info->isolate(), NULL, kInitialBufferSize);
302 #ifdef ENABLE_GDB_JIT_INTERFACE 302 #ifdef ENABLE_GDB_JIT_INTERFACE
303 masm.positions_recorder()->StartGDBJITLineInfoRecording(); 303 masm.positions_recorder()->StartGDBJITLineInfoRecording();
304 #endif 304 #endif
305 305
306 FullCodeGenerator cgen(&masm, info, isolate->zone()); 306 FullCodeGenerator cgen(&masm, info);
307 cgen.Generate(); 307 cgen.Generate();
308 if (cgen.HasStackOverflow()) { 308 if (cgen.HasStackOverflow()) {
309 ASSERT(!isolate->has_pending_exception()); 309 ASSERT(!isolate->has_pending_exception());
310 return false; 310 return false;
311 } 311 }
312 unsigned table_offset = cgen.EmitStackCheckTable(); 312 unsigned table_offset = cgen.EmitStackCheckTable();
313 313
314 Code::Flags flags = Code::ComputeFlags(Code::FUNCTION); 314 Code::Flags flags = Code::ComputeFlags(Code::FUNCTION);
315 Handle<Code> code = CodeGenerator::MakeCodeEpilogue(&masm, flags, info); 315 Handle<Code> code = CodeGenerator::MakeCodeEpilogue(&masm, flags, info);
316 code->set_optimizable(info->IsOptimizable() && 316 code->set_optimizable(info->IsOptimizable() &&
(...skipping 1106 matching lines...) Expand 10 before | Expand all | Expand 10 after
1423 } 1423 }
1424 1424
1425 return false; 1425 return false;
1426 } 1426 }
1427 1427
1428 1428
1429 #undef __ 1429 #undef __
1430 1430
1431 1431
1432 } } // namespace v8::internal 1432 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/full-codegen.h ('k') | src/hydrogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698