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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 | 214 |
215 for (unsigned i = 0; i < arraysize(builtins); ++i) { | 215 for (unsigned i = 0; i < arraysize(builtins); ++i) { |
216 ExternalReference ref(static_cast<Builtins::Name>(builtins[i].id), isolate); | 216 ExternalReference ref(static_cast<Builtins::Name>(builtins[i].id), isolate); |
217 Add(ref.address(), builtins[i].name); | 217 Add(ref.address(), builtins[i].name); |
218 } | 218 } |
219 | 219 |
220 static const RefTableEntry runtime_functions[] = { | 220 static const RefTableEntry runtime_functions[] = { |
221 #define RUNTIME_ENTRY(name, i1, i2) \ | 221 #define RUNTIME_ENTRY(name, i1, i2) \ |
222 { Runtime::k##name, "Runtime::" #name } \ | 222 { Runtime::k##name, "Runtime::" #name } \ |
223 , | 223 , |
224 RUNTIME_FUNCTION_LIST(RUNTIME_ENTRY) INLINE_FUNCTION_LIST(RUNTIME_ENTRY) | 224 FOR_EACH_INTRINSIC(RUNTIME_ENTRY) |
225 INLINE_OPTIMIZED_FUNCTION_LIST(RUNTIME_ENTRY) | |
226 #undef RUNTIME_ENTRY | 225 #undef RUNTIME_ENTRY |
227 }; | 226 }; |
228 | 227 |
229 for (unsigned i = 0; i < arraysize(runtime_functions); ++i) { | 228 for (unsigned i = 0; i < arraysize(runtime_functions); ++i) { |
230 ExternalReference ref( | 229 ExternalReference ref( |
231 static_cast<Runtime::FunctionId>(runtime_functions[i].id), isolate); | 230 static_cast<Runtime::FunctionId>(runtime_functions[i].id), isolate); |
232 Add(ref.address(), runtime_functions[i].name); | 231 Add(ref.address(), runtime_functions[i].name); |
233 } | 232 } |
234 | 233 |
235 static const RefTableEntry inline_caches[] = { | 234 static const RefTableEntry inline_caches[] = { |
(...skipping 2325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2561 DisallowHeapAllocation no_gc; | 2560 DisallowHeapAllocation no_gc; |
2562 SerializedCodeData* scd = new SerializedCodeData(cached_data); | 2561 SerializedCodeData* scd = new SerializedCodeData(cached_data); |
2563 SanityCheckResult r = scd->SanityCheck(isolate, source); | 2562 SanityCheckResult r = scd->SanityCheck(isolate, source); |
2564 if (r == CHECK_SUCCESS) return scd; | 2563 if (r == CHECK_SUCCESS) return scd; |
2565 cached_data->Reject(); | 2564 cached_data->Reject(); |
2566 source->GetIsolate()->counters()->code_cache_reject_reason()->AddSample(r); | 2565 source->GetIsolate()->counters()->code_cache_reject_reason()->AddSample(r); |
2567 delete scd; | 2566 delete scd; |
2568 return NULL; | 2567 return NULL; |
2569 } | 2568 } |
2570 } } // namespace v8::internal | 2569 } } // namespace v8::internal |
OLD | NEW |