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

Side by Side Diff: src/interpreter/interpreter-intrinsics.h

Issue 2103733003: [turbofan] Introduce Float64Pow and NumberPow operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE on ARM64 bug fix. Created 4 years, 5 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 | « src/ia32/code-stubs-ia32.cc ('k') | src/interpreter/interpreter-intrinsics.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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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_INTERPRETER_INTERPRETER_INTRINSICS_H_ 5 #ifndef V8_INTERPRETER_INTERPRETER_INTRINSICS_H_
6 #define V8_INTERPRETER_INTERPRETER_INTRINSICS_H_ 6 #define V8_INTERPRETER_INTERPRETER_INTRINSICS_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/base/smart-pointers.h" 9 #include "src/base/smart-pointers.h"
10 #include "src/builtins.h" 10 #include "src/builtins.h"
(...skipping 15 matching lines...) Expand all
26 // expected number of arguments (-1 denoting argument count is variable). 26 // expected number of arguments (-1 denoting argument count is variable).
27 #define INTRINSICS_LIST(V) \ 27 #define INTRINSICS_LIST(V) \
28 V(Call, call, -1) \ 28 V(Call, call, -1) \
29 V(HasProperty, has_property, 2) \ 29 V(HasProperty, has_property, 2) \
30 V(IsArray, is_array, 1) \ 30 V(IsArray, is_array, 1) \
31 V(IsJSProxy, is_js_proxy, 1) \ 31 V(IsJSProxy, is_js_proxy, 1) \
32 V(IsJSReceiver, is_js_receiver, 1) \ 32 V(IsJSReceiver, is_js_receiver, 1) \
33 V(IsRegExp, is_regexp, 1) \ 33 V(IsRegExp, is_regexp, 1) \
34 V(IsSmi, is_smi, 1) \ 34 V(IsSmi, is_smi, 1) \
35 V(IsTypedArray, is_typed_array, 1) \ 35 V(IsTypedArray, is_typed_array, 1) \
36 V(MathPow, math_pow, 2) \
37 V(NewObject, new_object, 2) \ 36 V(NewObject, new_object, 2) \
38 V(NumberToString, number_to_string, 1) \ 37 V(NumberToString, number_to_string, 1) \
39 V(RegExpConstructResult, reg_exp_construct_result, 3) \ 38 V(RegExpConstructResult, reg_exp_construct_result, 3) \
40 V(RegExpExec, reg_exp_exec, 4) \ 39 V(RegExpExec, reg_exp_exec, 4) \
41 V(SubString, sub_string, 3) \ 40 V(SubString, sub_string, 3) \
42 V(ToString, to_string, 1) \ 41 V(ToString, to_string, 1) \
43 V(ToName, to_name, 1) \ 42 V(ToName, to_name, 1) \
44 V(ToLength, to_length, 1) \ 43 V(ToLength, to_length, 1) \
45 V(ToInteger, to_integer, 1) \ 44 V(ToInteger, to_integer, 1) \
46 V(ToNumber, to_number, 1) \ 45 V(ToNumber, to_number, 1) \
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 InterpreterAssembler* assembler_; 95 InterpreterAssembler* assembler_;
97 96
98 DISALLOW_COPY_AND_ASSIGN(IntrinsicsHelper); 97 DISALLOW_COPY_AND_ASSIGN(IntrinsicsHelper);
99 }; 98 };
100 99
101 } // namespace interpreter 100 } // namespace interpreter
102 } // namespace internal 101 } // namespace internal
103 } // namespace v8 102 } // namespace v8
104 103
105 #endif 104 #endif
OLDNEW
« no previous file with comments | « src/ia32/code-stubs-ia32.cc ('k') | src/interpreter/interpreter-intrinsics.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698