OLD | NEW |
1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 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 SRC_ASMJS_ASM_TYPER_H_ | 5 #ifndef SRC_ASMJS_ASM_TYPER_H_ |
6 #define SRC_ASMJS_ASM_TYPER_H_ | 6 #define SRC_ASMJS_ASM_TYPER_H_ |
7 | 7 |
8 #include <cstdint> | 8 #include <cstdint> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 29 matching lines...) Expand all Loading... |
40 kMathAtan, | 40 kMathAtan, |
41 kMathCos, | 41 kMathCos, |
42 kMathSin, | 42 kMathSin, |
43 kMathTan, | 43 kMathTan, |
44 kMathExp, | 44 kMathExp, |
45 kMathLog, | 45 kMathLog, |
46 kMathCeil, | 46 kMathCeil, |
47 kMathFloor, | 47 kMathFloor, |
48 kMathSqrt, | 48 kMathSqrt, |
49 kMathAbs, | 49 kMathAbs, |
| 50 kMathClz32, |
50 kMathMin, | 51 kMathMin, |
51 kMathMax, | 52 kMathMax, |
52 kMathAtan2, | 53 kMathAtan2, |
53 kMathPow, | 54 kMathPow, |
54 kMathImul, | 55 kMathImul, |
55 kMathFround, | 56 kMathFround, |
56 kMathE, | 57 kMathE, |
57 kMathLN10, | 58 kMathLN10, |
58 kMathLN2, | 59 kMathLN2, |
59 kMathLOG2E, | 60 kMathLOG2E, |
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 char error_message_[kErrorMessageLimit]; | 322 char error_message_[kErrorMessageLimit]; |
322 | 323 |
323 DISALLOW_IMPLICIT_CONSTRUCTORS(AsmTyper); | 324 DISALLOW_IMPLICIT_CONSTRUCTORS(AsmTyper); |
324 }; | 325 }; |
325 | 326 |
326 } // namespace wasm | 327 } // namespace wasm |
327 } // namespace internal | 328 } // namespace internal |
328 } // namespace v8 | 329 } // namespace v8 |
329 | 330 |
330 #endif // SRC_ASMJS_ASM_TYPER_H_ | 331 #endif // SRC_ASMJS_ASM_TYPER_H_ |
OLD | NEW |