| 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_HYDROGEN_H_ | 5 #ifndef V8_HYDROGEN_H_ |
| 6 #define V8_HYDROGEN_H_ | 6 #define V8_HYDROGEN_H_ |
| 7 | 7 |
| 8 #include "src/v8.h" | 8 #include "src/v8.h" |
| 9 | 9 |
| 10 #include "src/accessors.h" | 10 #include "src/accessors.h" |
| (...skipping 2194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2205 F(TypedArrayMaxSizeInHeap) \ | 2205 F(TypedArrayMaxSizeInHeap) \ |
| 2206 F(ArrayBufferViewGetByteLength) \ | 2206 F(ArrayBufferViewGetByteLength) \ |
| 2207 F(ArrayBufferViewGetByteOffset) \ | 2207 F(ArrayBufferViewGetByteOffset) \ |
| 2208 F(TypedArrayGetLength) \ | 2208 F(TypedArrayGetLength) \ |
| 2209 /* ArrayBuffer */ \ | 2209 /* ArrayBuffer */ \ |
| 2210 F(ArrayBufferGetByteLength) \ | 2210 F(ArrayBufferGetByteLength) \ |
| 2211 /* Maths */ \ | 2211 /* Maths */ \ |
| 2212 F(ConstructDouble) \ | 2212 F(ConstructDouble) \ |
| 2213 F(DoubleHi) \ | 2213 F(DoubleHi) \ |
| 2214 F(DoubleLo) \ | 2214 F(DoubleLo) \ |
| 2215 F(MathClz32) \ |
| 2215 F(MathFloor) \ | 2216 F(MathFloor) \ |
| 2216 F(MathSqrt) \ | 2217 F(MathSqrt) \ |
| 2217 F(MathLogRT) \ | 2218 F(MathLogRT) \ |
| 2218 /* ES6 Collections */ \ | 2219 /* ES6 Collections */ \ |
| 2219 F(MapClear) \ | 2220 F(MapClear) \ |
| 2220 F(MapDelete) \ | 2221 F(MapDelete) \ |
| 2221 F(MapGet) \ | 2222 F(MapGet) \ |
| 2222 F(MapGetSize) \ | 2223 F(MapGetSize) \ |
| 2223 F(MapHas) \ | 2224 F(MapHas) \ |
| 2224 F(MapInitialize) \ | 2225 F(MapInitialize) \ |
| (...skipping 805 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3030 } | 3031 } |
| 3031 | 3032 |
| 3032 private: | 3033 private: |
| 3033 HGraphBuilder* builder_; | 3034 HGraphBuilder* builder_; |
| 3034 }; | 3035 }; |
| 3035 | 3036 |
| 3036 | 3037 |
| 3037 } } // namespace v8::internal | 3038 } } // namespace v8::internal |
| 3038 | 3039 |
| 3039 #endif // V8_HYDROGEN_H_ | 3040 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |