| 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 #ifndef V8_CRANKSHAFT_HYDROGEN_H_ | 5 #ifndef V8_CRANKSHAFT_HYDROGEN_H_ |
| 6 #define V8_CRANKSHAFT_HYDROGEN_H_ | 6 #define V8_CRANKSHAFT_HYDROGEN_H_ |
| 7 | 7 |
| 8 #include "src/accessors.h" | 8 #include "src/accessors.h" |
| 9 #include "src/allocation.h" | 9 #include "src/allocation.h" |
| 10 #include "src/ast/ast.h" | 10 #include "src/ast/ast.h" |
| (...skipping 1329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1340 void BuildTestForDictionaryProperties(HValue* object, | 1340 void BuildTestForDictionaryProperties(HValue* object, |
| 1341 HIfContinuation* continuation); | 1341 HIfContinuation* continuation); |
| 1342 | 1342 |
| 1343 void BuildNonGlobalObjectCheck(HValue* receiver); | 1343 void BuildNonGlobalObjectCheck(HValue* receiver); |
| 1344 | 1344 |
| 1345 HValue* BuildKeyedLookupCacheHash(HValue* object, | 1345 HValue* BuildKeyedLookupCacheHash(HValue* object, |
| 1346 HValue* key); | 1346 HValue* key); |
| 1347 | 1347 |
| 1348 HValue* BuildUncheckedDictionaryElementLoad(HValue* receiver, | 1348 HValue* BuildUncheckedDictionaryElementLoad(HValue* receiver, |
| 1349 HValue* elements, HValue* key, | 1349 HValue* elements, HValue* key, |
| 1350 HValue* hash, | 1350 HValue* hash); |
| 1351 LanguageMode language_mode); | |
| 1352 | 1351 |
| 1353 // ES6 section 7.4.7 CreateIterResultObject ( value, done ) | 1352 // ES6 section 7.4.7 CreateIterResultObject ( value, done ) |
| 1354 HValue* BuildCreateIterResultObject(HValue* value, HValue* done); | 1353 HValue* BuildCreateIterResultObject(HValue* value, HValue* done); |
| 1355 | 1354 |
| 1356 HValue* BuildRegExpConstructResult(HValue* length, | 1355 HValue* BuildRegExpConstructResult(HValue* length, |
| 1357 HValue* index, | 1356 HValue* index, |
| 1358 HValue* input); | 1357 HValue* input); |
| 1359 | 1358 |
| 1360 // Allocates a new object according with the given allocation properties. | 1359 // Allocates a new object according with the given allocation properties. |
| 1361 HAllocate* BuildAllocate(HValue* object_size, | 1360 HAllocate* BuildAllocate(HValue* object_size, |
| (...skipping 1674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3036 | 3035 |
| 3037 private: | 3036 private: |
| 3038 HGraphBuilder* builder_; | 3037 HGraphBuilder* builder_; |
| 3039 }; | 3038 }; |
| 3040 | 3039 |
| 3041 | 3040 |
| 3042 } // namespace internal | 3041 } // namespace internal |
| 3043 } // namespace v8 | 3042 } // namespace v8 |
| 3044 | 3043 |
| 3045 #endif // V8_CRANKSHAFT_HYDROGEN_H_ | 3044 #endif // V8_CRANKSHAFT_HYDROGEN_H_ |
| OLD | NEW |