| 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 2096 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2107 BinaryOpICStub::InstallDescriptors(this); | 2107 BinaryOpICStub::InstallDescriptors(this); |
| 2108 BinaryOpWithAllocationSiteStub::InstallDescriptors(this); | 2108 BinaryOpWithAllocationSiteStub::InstallDescriptors(this); |
| 2109 CompareNilICStub::InitializeForIsolate(this); | 2109 CompareNilICStub::InitializeForIsolate(this); |
| 2110 ToBooleanStub::InitializeForIsolate(this); | 2110 ToBooleanStub::InitializeForIsolate(this); |
| 2111 ArrayConstructorStubBase::InstallDescriptors(this); | 2111 ArrayConstructorStubBase::InstallDescriptors(this); |
| 2112 InternalArrayConstructorStubBase::InstallDescriptors(this); | 2112 InternalArrayConstructorStubBase::InstallDescriptors(this); |
| 2113 FastNewClosureStub::InstallDescriptors(this); | 2113 FastNewClosureStub::InstallDescriptors(this); |
| 2114 FastNewContextStub::InstallDescriptors(this); | 2114 FastNewContextStub::InstallDescriptors(this); |
| 2115 NumberToStringStub::InstallDescriptors(this); | 2115 NumberToStringStub::InstallDescriptors(this); |
| 2116 StringAddStub::InstallDescriptors(this); | 2116 StringAddStub::InstallDescriptors(this); |
| 2117 RegExpConstructResultStub::InstallDescriptors(this); |
| 2117 } | 2118 } |
| 2118 | 2119 |
| 2119 CallDescriptors::InitializeForIsolate(this); | 2120 CallDescriptors::InitializeForIsolate(this); |
| 2120 | 2121 |
| 2121 initialized_from_snapshot_ = (des != NULL); | 2122 initialized_from_snapshot_ = (des != NULL); |
| 2122 | 2123 |
| 2123 return true; | 2124 return true; |
| 2124 } | 2125 } |
| 2125 | 2126 |
| 2126 | 2127 |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2309 | 2310 |
| 2310 #ifdef DEBUG | 2311 #ifdef DEBUG |
| 2311 #define ISOLATE_FIELD_OFFSET(type, name, ignored) \ | 2312 #define ISOLATE_FIELD_OFFSET(type, name, ignored) \ |
| 2312 const intptr_t Isolate::name##_debug_offset_ = OFFSET_OF(Isolate, name##_); | 2313 const intptr_t Isolate::name##_debug_offset_ = OFFSET_OF(Isolate, name##_); |
| 2313 ISOLATE_INIT_LIST(ISOLATE_FIELD_OFFSET) | 2314 ISOLATE_INIT_LIST(ISOLATE_FIELD_OFFSET) |
| 2314 ISOLATE_INIT_ARRAY_LIST(ISOLATE_FIELD_OFFSET) | 2315 ISOLATE_INIT_ARRAY_LIST(ISOLATE_FIELD_OFFSET) |
| 2315 #undef ISOLATE_FIELD_OFFSET | 2316 #undef ISOLATE_FIELD_OFFSET |
| 2316 #endif | 2317 #endif |
| 2317 | 2318 |
| 2318 } } // namespace v8::internal | 2319 } } // namespace v8::internal |
| OLD | NEW |