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

Side by Side Diff: src/runtime.cc

Issue 16482004: Revert "Enable map dependency to in-flight compilation info." (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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/runtime.h ('k') | src/x64/lithium-codegen-x64.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 8079 matching lines...) Expand 10 before | Expand all | Expand 10 after
8090 } 8090 }
8091 } else if (type->IsOneByteEqualTo(STATIC_ASCII_VECTOR("parallel"))) { 8091 } else if (type->IsOneByteEqualTo(STATIC_ASCII_VECTOR("parallel"))) {
8092 function->MarkForParallelRecompilation(); 8092 function->MarkForParallelRecompilation();
8093 } 8093 }
8094 } 8094 }
8095 8095
8096 return isolate->heap()->undefined_value(); 8096 return isolate->heap()->undefined_value();
8097 } 8097 }
8098 8098
8099 8099
8100 RUNTIME_FUNCTION(MaybeObject*, Runtime_CompleteOptimization) { 8100 RUNTIME_FUNCTION(MaybeObject*, Runtime_WaitUntilOptimized) {
8101 HandleScope scope(isolate); 8101 HandleScope scope(isolate);
8102 ASSERT(args.length() == 1); 8102 ASSERT(args.length() == 1);
8103 CONVERT_ARG_HANDLE_CHECKED(JSFunction, function, 0); 8103 CONVERT_ARG_HANDLE_CHECKED(JSFunction, function, 0);
8104 if (FLAG_parallel_recompilation && V8::UseCrankshaft()) { 8104 if (FLAG_parallel_recompilation) {
8105 // While function is in optimization pipeline, it is marked with builtins. 8105 if (V8::UseCrankshaft() && function->IsOptimizable()) {
8106 while (function->code()->kind() == Code::BUILTIN) { 8106 while (!function->IsOptimized()) OS::Sleep(50);
8107 isolate->optimizing_compiler_thread()->InstallOptimizedFunctions();
8108 OS::Sleep(50);
8109 } 8107 }
8110 } 8108 }
8111 return isolate->heap()->undefined_value(); 8109 return isolate->heap()->undefined_value();
8112 } 8110 }
8113 8111
8114 8112
8115 RUNTIME_FUNCTION(MaybeObject*, Runtime_GetOptimizationStatus) { 8113 RUNTIME_FUNCTION(MaybeObject*, Runtime_GetOptimizationStatus) {
8116 HandleScope scope(isolate); 8114 HandleScope scope(isolate);
8117 ASSERT(args.length() == 1); 8115 ASSERT(args.length() == 1);
8118 // The least significant bit (after untagging) indicates whether the 8116 // The least significant bit (after untagging) indicates whether the
(...skipping 5516 matching lines...) Expand 10 before | Expand all | Expand 10 after
13635 // Handle last resort GC and make sure to allow future allocations 13633 // Handle last resort GC and make sure to allow future allocations
13636 // to grow the heap without causing GCs (if possible). 13634 // to grow the heap without causing GCs (if possible).
13637 isolate->counters()->gc_last_resort_from_js()->Increment(); 13635 isolate->counters()->gc_last_resort_from_js()->Increment();
13638 isolate->heap()->CollectAllGarbage(Heap::kNoGCFlags, 13636 isolate->heap()->CollectAllGarbage(Heap::kNoGCFlags,
13639 "Runtime::PerformGC"); 13637 "Runtime::PerformGC");
13640 } 13638 }
13641 } 13639 }
13642 13640
13643 13641
13644 } } // namespace v8::internal 13642 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/runtime.h ('k') | src/x64/lithium-codegen-x64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698