| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |