OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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/allocation-site-scopes.h" | 8 #include "src/allocation-site-scopes.h" |
9 #include "src/api.h" | 9 #include "src/api.h" |
10 #include "src/arguments.h" | 10 #include "src/arguments.h" |
(...skipping 14580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
14591 | 14591 |
14592 template Handle<UnseededNumberDictionary> | 14592 template Handle<UnseededNumberDictionary> |
14593 Dictionary<UnseededNumberDictionary, UnseededNumberDictionaryShape, uint32_t>:: | 14593 Dictionary<UnseededNumberDictionary, UnseededNumberDictionaryShape, uint32_t>:: |
14594 AtPut(Handle<UnseededNumberDictionary>, uint32_t, Handle<Object>); | 14594 AtPut(Handle<UnseededNumberDictionary>, uint32_t, Handle<Object>); |
14595 | 14595 |
14596 template Object* | 14596 template Object* |
14597 Dictionary<SeededNumberDictionary, SeededNumberDictionaryShape, uint32_t>:: | 14597 Dictionary<SeededNumberDictionary, SeededNumberDictionaryShape, uint32_t>:: |
14598 SlowReverseLookup(Object* value); | 14598 SlowReverseLookup(Object* value); |
14599 | 14599 |
14600 template Object* | 14600 template Object* |
14601 Dictionary<UnseededNumberDictionary, UnseededNumberDictionaryShape, uint32_t>:: | |
14602 SlowReverseLookup(Object* value); | |
14603 | |
14604 template Object* | |
14605 Dictionary<NameDictionary, NameDictionaryShape, Handle<Name> >:: | 14601 Dictionary<NameDictionary, NameDictionaryShape, Handle<Name> >:: |
14606 SlowReverseLookup(Object* value); | 14602 SlowReverseLookup(Object* value); |
14607 | 14603 |
14608 template void | 14604 template void |
14609 Dictionary<SeededNumberDictionary, SeededNumberDictionaryShape, uint32_t>:: | 14605 Dictionary<SeededNumberDictionary, SeededNumberDictionaryShape, uint32_t>:: |
14610 CopyKeysTo( | 14606 CopyKeysTo( |
14611 FixedArray*, | 14607 FixedArray*, |
14612 PropertyAttributes, | 14608 PropertyAttributes, |
14613 Dictionary<SeededNumberDictionary, | 14609 Dictionary<SeededNumberDictionary, |
14614 SeededNumberDictionaryShape, | 14610 SeededNumberDictionaryShape, |
(...skipping 2330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
16945 #define ERROR_MESSAGES_TEXTS(C, T) T, | 16941 #define ERROR_MESSAGES_TEXTS(C, T) T, |
16946 static const char* error_messages_[] = { | 16942 static const char* error_messages_[] = { |
16947 ERROR_MESSAGES_LIST(ERROR_MESSAGES_TEXTS) | 16943 ERROR_MESSAGES_LIST(ERROR_MESSAGES_TEXTS) |
16948 }; | 16944 }; |
16949 #undef ERROR_MESSAGES_TEXTS | 16945 #undef ERROR_MESSAGES_TEXTS |
16950 return error_messages_[reason]; | 16946 return error_messages_[reason]; |
16951 } | 16947 } |
16952 | 16948 |
16953 | 16949 |
16954 } } // namespace v8::internal | 16950 } } // namespace v8::internal |
OLD | NEW |