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 11260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
11271 | 11271 |
11272 template MaybeObject* Dictionary<StringDictionaryShape, String*>::Allocate( | 11272 template MaybeObject* Dictionary<StringDictionaryShape, String*>::Allocate( |
11273 int); | 11273 int); |
11274 | 11274 |
11275 template MaybeObject* Dictionary<SeededNumberDictionaryShape, uint32_t>::AtPut( | 11275 template MaybeObject* Dictionary<SeededNumberDictionaryShape, uint32_t>::AtPut( |
11276 uint32_t, Object*); | 11276 uint32_t, Object*); |
11277 | 11277 |
11278 template MaybeObject* Dictionary<UnseededNumberDictionaryShape, uint32_t>:: | 11278 template MaybeObject* Dictionary<UnseededNumberDictionaryShape, uint32_t>:: |
11279 AtPut(uint32_t, Object*); | 11279 AtPut(uint32_t, Object*); |
11280 | 11280 |
| 11281 template Object* Dictionary<SeededNumberDictionaryShape, uint32_t>:: |
| 11282 SlowReverseLookup(Object* value); |
| 11283 |
11281 template Object* Dictionary<UnseededNumberDictionaryShape, uint32_t>:: | 11284 template Object* Dictionary<UnseededNumberDictionaryShape, uint32_t>:: |
11282 SlowReverseLookup(Object* value); | 11285 SlowReverseLookup(Object* value); |
11283 | 11286 |
11284 template Object* Dictionary<StringDictionaryShape, String*>::SlowReverseLookup( | 11287 template Object* Dictionary<StringDictionaryShape, String*>::SlowReverseLookup( |
11285 Object*); | 11288 Object*); |
11286 | 11289 |
11287 template void Dictionary<SeededNumberDictionaryShape, uint32_t>::CopyKeysTo( | 11290 template void Dictionary<SeededNumberDictionaryShape, uint32_t>::CopyKeysTo( |
11288 FixedArray*, | 11291 FixedArray*, |
11289 PropertyAttributes, | 11292 PropertyAttributes, |
11290 Dictionary<SeededNumberDictionaryShape, uint32_t>::SortMode); | 11293 Dictionary<SeededNumberDictionaryShape, uint32_t>::SortMode); |
(...skipping 1740 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
13031 if (break_point_objects()->IsUndefined()) return 0; | 13034 if (break_point_objects()->IsUndefined()) return 0; |
13032 // Single break point. | 13035 // Single break point. |
13033 if (!break_point_objects()->IsFixedArray()) return 1; | 13036 if (!break_point_objects()->IsFixedArray()) return 1; |
13034 // Multiple break points. | 13037 // Multiple break points. |
13035 return FixedArray::cast(break_point_objects())->length(); | 13038 return FixedArray::cast(break_point_objects())->length(); |
13036 } | 13039 } |
13037 #endif // ENABLE_DEBUGGER_SUPPORT | 13040 #endif // ENABLE_DEBUGGER_SUPPORT |
13038 | 13041 |
13039 | 13042 |
13040 } } // namespace v8::internal | 13043 } } // namespace v8::internal |
OLD | NEW |