| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "src/v8.h" | 5 #include "src/v8.h" |
| 6 | 6 |
| 7 #include "src/accessors.h" | 7 #include "src/accessors.h" |
| 8 #include "src/api.h" | 8 #include "src/api.h" |
| 9 #include "src/base/platform/platform.h" | 9 #include "src/base/platform/platform.h" |
| 10 #include "src/bootstrapper.h" | 10 #include "src/bootstrapper.h" |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 | 216 |
| 217 for (unsigned i = 0; i < arraysize(builtins); ++i) { | 217 for (unsigned i = 0; i < arraysize(builtins); ++i) { |
| 218 ExternalReference ref(static_cast<Builtins::Name>(builtins[i].id), isolate); | 218 ExternalReference ref(static_cast<Builtins::Name>(builtins[i].id), isolate); |
| 219 Add(ref.address(), builtins[i].name); | 219 Add(ref.address(), builtins[i].name); |
| 220 } | 220 } |
| 221 | 221 |
| 222 static const RefTableEntry runtime_functions[] = { | 222 static const RefTableEntry runtime_functions[] = { |
| 223 #define RUNTIME_ENTRY(name, i1, i2) \ | 223 #define RUNTIME_ENTRY(name, i1, i2) \ |
| 224 { Runtime::k##name, "Runtime::" #name } \ | 224 { Runtime::k##name, "Runtime::" #name } \ |
| 225 , | 225 , |
| 226 RUNTIME_FUNCTION_LIST(RUNTIME_ENTRY) | 226 RUNTIME_FUNCTION_LIST(RUNTIME_ENTRY) INLINE_FUNCTION_LIST(RUNTIME_ENTRY) |
| 227 INLINE_OPTIMIZED_FUNCTION_LIST(RUNTIME_ENTRY) | 227 INLINE_OPTIMIZED_FUNCTION_LIST(RUNTIME_ENTRY) |
| 228 #undef RUNTIME_ENTRY | 228 #undef RUNTIME_ENTRY |
| 229 }; | 229 }; |
| 230 | 230 |
| 231 for (unsigned i = 0; i < arraysize(runtime_functions); ++i) { | 231 for (unsigned i = 0; i < arraysize(runtime_functions); ++i) { |
| 232 ExternalReference ref( | 232 ExternalReference ref( |
| 233 static_cast<Runtime::FunctionId>(runtime_functions[i].id), isolate); | 233 static_cast<Runtime::FunctionId>(runtime_functions[i].id), isolate); |
| 234 Add(ref.address(), runtime_functions[i].name); | 234 Add(ref.address(), runtime_functions[i].name); |
| 235 } | 235 } |
| 236 | 236 |
| (...skipping 2324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2561 DisallowHeapAllocation no_gc; | 2561 DisallowHeapAllocation no_gc; |
| 2562 SerializedCodeData* scd = new SerializedCodeData(cached_data); | 2562 SerializedCodeData* scd = new SerializedCodeData(cached_data); |
| 2563 SanityCheckResult r = scd->SanityCheck(isolate, source); | 2563 SanityCheckResult r = scd->SanityCheck(isolate, source); |
| 2564 if (r == CHECK_SUCCESS) return scd; | 2564 if (r == CHECK_SUCCESS) return scd; |
| 2565 cached_data->Reject(); | 2565 cached_data->Reject(); |
| 2566 source->GetIsolate()->counters()->code_cache_reject_reason()->AddSample(r); | 2566 source->GetIsolate()->counters()->code_cache_reject_reason()->AddSample(r); |
| 2567 delete scd; | 2567 delete scd; |
| 2568 return NULL; | 2568 return NULL; |
| 2569 } | 2569 } |
| 2570 } } // namespace v8::internal | 2570 } } // namespace v8::internal |
| OLD | NEW |