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

Side by Side Diff: src/objects-inl.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/objects.cc ('k') | src/optimizing-compiler-thread.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 4940 matching lines...) Expand 10 before | Expand all | Expand 10 after
4951 return code() == GetIsolate()->builtins()->builtin(Builtins::kLazyRecompile); 4951 return code() == GetIsolate()->builtins()->builtin(Builtins::kLazyRecompile);
4952 } 4952 }
4953 4953
4954 4954
4955 bool JSFunction::IsMarkedForInstallingRecompiledCode() { 4955 bool JSFunction::IsMarkedForInstallingRecompiledCode() {
4956 return code() == GetIsolate()->builtins()->builtin( 4956 return code() == GetIsolate()->builtins()->builtin(
4957 Builtins::kInstallRecompiledCode); 4957 Builtins::kInstallRecompiledCode);
4958 } 4958 }
4959 4959
4960 4960
4961 bool JSFunction::IsMarkedForParallelRecompilation() { 4961 bool JSFunction::IsMarkedForConcurrentRecompilation() {
4962 return code() == GetIsolate()->builtins()->builtin( 4962 return code() == GetIsolate()->builtins()->builtin(
4963 Builtins::kParallelRecompile); 4963 Builtins::kConcurrentRecompile);
4964 } 4964 }
4965 4965
4966 4966
4967 bool JSFunction::IsInRecompileQueue() { 4967 bool JSFunction::IsInRecompileQueue() {
4968 return code() == GetIsolate()->builtins()->builtin( 4968 return code() == GetIsolate()->builtins()->builtin(
4969 Builtins::kInRecompileQueue); 4969 Builtins::kInRecompileQueue);
4970 } 4970 }
4971 4971
4972 4972
4973 Code* JSFunction::code() { 4973 Code* JSFunction::code() {
(...skipping 1283 matching lines...) Expand 10 before | Expand all | Expand 10 after
6257 #undef WRITE_UINT32_FIELD 6257 #undef WRITE_UINT32_FIELD
6258 #undef READ_SHORT_FIELD 6258 #undef READ_SHORT_FIELD
6259 #undef WRITE_SHORT_FIELD 6259 #undef WRITE_SHORT_FIELD
6260 #undef READ_BYTE_FIELD 6260 #undef READ_BYTE_FIELD
6261 #undef WRITE_BYTE_FIELD 6261 #undef WRITE_BYTE_FIELD
6262 6262
6263 6263
6264 } } // namespace v8::internal 6264 } } // namespace v8::internal
6265 6265
6266 #endif // V8_OBJECTS_INL_H_ 6266 #endif // V8_OBJECTS_INL_H_
OLDNEW
« no previous file with comments | « src/objects.cc ('k') | src/optimizing-compiler-thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698