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

Side by Side Diff: src/bootstrapper.cc

Issue 148293020: Merge experimental/a64 to bleeding_edge. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Remove ARM from OWNERS Created 6 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/atomicops_internals_a64_gcc.h ('k') | src/builtins.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 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 2619 matching lines...) Expand 10 before | Expand all | Expand 10 after
2630 Handle<JSGlobalProxy> global_proxy = 2630 Handle<JSGlobalProxy> global_proxy =
2631 CreateNewGlobals(global_template, global_object, &inner_global); 2631 CreateNewGlobals(global_template, global_object, &inner_global);
2632 HookUpGlobalProxy(inner_global, global_proxy); 2632 HookUpGlobalProxy(inner_global, global_proxy);
2633 InitializeGlobal(inner_global, empty_function); 2633 InitializeGlobal(inner_global, empty_function);
2634 InstallJSFunctionResultCaches(); 2634 InstallJSFunctionResultCaches();
2635 InitializeNormalizedMapCaches(); 2635 InitializeNormalizedMapCaches();
2636 if (!InstallNatives()) return; 2636 if (!InstallNatives()) return;
2637 2637
2638 MakeFunctionInstancePrototypeWritable(); 2638 MakeFunctionInstancePrototypeWritable();
2639 2639
2640 if (!ConfigureGlobalObjects(global_template)) return; 2640 if (!FLAG_disable_native_files) {
2641 isolate->counters()->contexts_created_from_scratch()->Increment(); 2641 if (!ConfigureGlobalObjects(global_template)) return;
2642 isolate->counters()->contexts_created_from_scratch()->Increment();
2643 }
2642 } 2644 }
2643 2645
2644 // Initialize experimental globals and install experimental natives. 2646 // Initialize experimental globals and install experimental natives.
2645 InitializeExperimentalGlobal(); 2647 InitializeExperimentalGlobal();
2646 if (!InstallExperimentalNatives()) return; 2648 if (!InstallExperimentalNatives()) return;
2647 2649
2648 // We can't (de-)serialize typed arrays currently, but we are lucky: The state 2650 // We can't (de-)serialize typed arrays currently, but we are lucky: The state
2649 // of the random number generator needs no initialization during snapshot 2651 // of the random number generator needs no initialization during snapshot
2650 // creation time and we don't need trigonometric functions then. 2652 // creation time and we don't need trigonometric functions then.
2651 if (!Serializer::enabled()) { 2653 if (!Serializer::enabled()) {
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
2733 return from + sizeof(NestingCounterType); 2735 return from + sizeof(NestingCounterType);
2734 } 2736 }
2735 2737
2736 2738
2737 // Called when the top-level V8 mutex is destroyed. 2739 // Called when the top-level V8 mutex is destroyed.
2738 void Bootstrapper::FreeThreadResources() { 2740 void Bootstrapper::FreeThreadResources() {
2739 ASSERT(!IsActive()); 2741 ASSERT(!IsActive());
2740 } 2742 }
2741 2743
2742 } } // namespace v8::internal 2744 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/atomicops_internals_a64_gcc.h ('k') | src/builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698