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

Side by Side Diff: src/builtins.h

Issue 23014007: Rename "parallel recompilation" to "concurrent recompilation". (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 4 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/arm/builtins-arm.cc ('k') | src/compiler.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 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 V(JSConstructStubApi, BUILTIN, UNINITIALIZED, \ 96 V(JSConstructStubApi, BUILTIN, UNINITIALIZED, \
97 Code::kNoExtraICState) \ 97 Code::kNoExtraICState) \
98 V(JSEntryTrampoline, BUILTIN, UNINITIALIZED, \ 98 V(JSEntryTrampoline, BUILTIN, UNINITIALIZED, \
99 Code::kNoExtraICState) \ 99 Code::kNoExtraICState) \
100 V(JSConstructEntryTrampoline, BUILTIN, UNINITIALIZED, \ 100 V(JSConstructEntryTrampoline, BUILTIN, UNINITIALIZED, \
101 Code::kNoExtraICState) \ 101 Code::kNoExtraICState) \
102 V(LazyCompile, BUILTIN, UNINITIALIZED, \ 102 V(LazyCompile, BUILTIN, UNINITIALIZED, \
103 Code::kNoExtraICState) \ 103 Code::kNoExtraICState) \
104 V(LazyRecompile, BUILTIN, UNINITIALIZED, \ 104 V(LazyRecompile, BUILTIN, UNINITIALIZED, \
105 Code::kNoExtraICState) \ 105 Code::kNoExtraICState) \
106 V(ParallelRecompile, BUILTIN, UNINITIALIZED, \ 106 V(ConcurrentRecompile, BUILTIN, UNINITIALIZED, \
107 Code::kNoExtraICState) \ 107 Code::kNoExtraICState) \
108 V(NotifyDeoptimized, BUILTIN, UNINITIALIZED, \ 108 V(NotifyDeoptimized, BUILTIN, UNINITIALIZED, \
109 Code::kNoExtraICState) \ 109 Code::kNoExtraICState) \
110 V(NotifySoftDeoptimized, BUILTIN, UNINITIALIZED, \ 110 V(NotifySoftDeoptimized, BUILTIN, UNINITIALIZED, \
111 Code::kNoExtraICState) \ 111 Code::kNoExtraICState) \
112 V(NotifyLazyDeoptimized, BUILTIN, UNINITIALIZED, \ 112 V(NotifyLazyDeoptimized, BUILTIN, UNINITIALIZED, \
113 Code::kNoExtraICState) \ 113 Code::kNoExtraICState) \
114 V(NotifyStubFailure, BUILTIN, UNINITIALIZED, \ 114 V(NotifyStubFailure, BUILTIN, UNINITIALIZED, \
115 Code::kNoExtraICState) \ 115 Code::kNoExtraICState) \
116 V(NotifyOSR, BUILTIN, UNINITIALIZED, \ 116 V(NotifyOSR, BUILTIN, UNINITIALIZED, \
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 Object* builtins_[builtin_count]; 364 Object* builtins_[builtin_count];
365 const char* names_[builtin_count]; 365 const char* names_[builtin_count];
366 static const char* const javascript_names_[id_count]; 366 static const char* const javascript_names_[id_count];
367 static int const javascript_argc_[id_count]; 367 static int const javascript_argc_[id_count];
368 368
369 static void Generate_Adaptor(MacroAssembler* masm, 369 static void Generate_Adaptor(MacroAssembler* masm,
370 CFunctionId id, 370 CFunctionId id,
371 BuiltinExtraArguments extra_args); 371 BuiltinExtraArguments extra_args);
372 static void Generate_InRecompileQueue(MacroAssembler* masm); 372 static void Generate_InRecompileQueue(MacroAssembler* masm);
373 static void Generate_InstallRecompiledCode(MacroAssembler* masm); 373 static void Generate_InstallRecompiledCode(MacroAssembler* masm);
374 static void Generate_ParallelRecompile(MacroAssembler* masm); 374 static void Generate_ConcurrentRecompile(MacroAssembler* masm);
375 static void Generate_JSConstructStubCountdown(MacroAssembler* masm); 375 static void Generate_JSConstructStubCountdown(MacroAssembler* masm);
376 static void Generate_JSConstructStubGeneric(MacroAssembler* masm); 376 static void Generate_JSConstructStubGeneric(MacroAssembler* masm);
377 static void Generate_JSConstructStubApi(MacroAssembler* masm); 377 static void Generate_JSConstructStubApi(MacroAssembler* masm);
378 static void Generate_JSEntryTrampoline(MacroAssembler* masm); 378 static void Generate_JSEntryTrampoline(MacroAssembler* masm);
379 static void Generate_JSConstructEntryTrampoline(MacroAssembler* masm); 379 static void Generate_JSConstructEntryTrampoline(MacroAssembler* masm);
380 static void Generate_LazyCompile(MacroAssembler* masm); 380 static void Generate_LazyCompile(MacroAssembler* masm);
381 static void Generate_LazyRecompile(MacroAssembler* masm); 381 static void Generate_LazyRecompile(MacroAssembler* masm);
382 static void Generate_NotifyDeoptimized(MacroAssembler* masm); 382 static void Generate_NotifyDeoptimized(MacroAssembler* masm);
383 static void Generate_NotifySoftDeoptimized(MacroAssembler* masm); 383 static void Generate_NotifySoftDeoptimized(MacroAssembler* masm);
384 static void Generate_NotifyLazyDeoptimized(MacroAssembler* masm); 384 static void Generate_NotifyLazyDeoptimized(MacroAssembler* masm);
(...skipping 24 matching lines...) Expand all
409 409
410 friend class BuiltinFunctionTable; 410 friend class BuiltinFunctionTable;
411 friend class Isolate; 411 friend class Isolate;
412 412
413 DISALLOW_COPY_AND_ASSIGN(Builtins); 413 DISALLOW_COPY_AND_ASSIGN(Builtins);
414 }; 414 };
415 415
416 } } // namespace v8::internal 416 } } // namespace v8::internal
417 417
418 #endif // V8_BUILTINS_H_ 418 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/arm/builtins-arm.cc ('k') | src/compiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698