Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(394)

Side by Side Diff: src/asmjs/asm-typer.h

Issue 2200213002: asm.js. Adds support for clz32 in asm.js. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: addresses comment Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/asmjs/asm-typer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « no previous file | src/asmjs/asm-typer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698