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

Side by Side Diff: src/x64/codegen-x64.h

Issue 2070813002: Revert of [builtins] Introduce proper Float64Exp operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 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/v8.cc ('k') | src/x64/codegen-x64.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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_X64_CODEGEN_X64_H_ 5 #ifndef V8_X64_CODEGEN_X64_H_
6 #define V8_X64_CODEGEN_X64_H_ 6 #define V8_X64_CODEGEN_X64_H_
7 7
8 #include "src/ast/ast.h" 8 #include "src/ast/ast.h"
9 #include "src/macro-assembler.h" 9 #include "src/macro-assembler.h"
10 10
(...skipping 10 matching lines...) Expand all
21 Register string, 21 Register string,
22 Register index, 22 Register index,
23 Register result, 23 Register result,
24 Label* call_runtime); 24 Label* call_runtime);
25 25
26 private: 26 private:
27 DISALLOW_COPY_AND_ASSIGN(StringCharLoadGenerator); 27 DISALLOW_COPY_AND_ASSIGN(StringCharLoadGenerator);
28 }; 28 };
29 29
30 30
31 class MathExpGenerator : public AllStatic {
32 public:
33 static void EmitMathExp(MacroAssembler* masm,
34 XMMRegister input,
35 XMMRegister result,
36 XMMRegister double_scratch,
37 Register temp1,
38 Register temp2);
39
40 private:
41 DISALLOW_COPY_AND_ASSIGN(MathExpGenerator);
42 };
43
44
31 enum StackArgumentsAccessorReceiverMode { 45 enum StackArgumentsAccessorReceiverMode {
32 ARGUMENTS_CONTAIN_RECEIVER, 46 ARGUMENTS_CONTAIN_RECEIVER,
33 ARGUMENTS_DONT_CONTAIN_RECEIVER 47 ARGUMENTS_DONT_CONTAIN_RECEIVER
34 }; 48 };
35 49
36 50
37 class StackArgumentsAccessor BASE_EMBEDDED { 51 class StackArgumentsAccessor BASE_EMBEDDED {
38 public: 52 public:
39 StackArgumentsAccessor( 53 StackArgumentsAccessor(
40 Register base_reg, 54 Register base_reg,
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 const int extra_displacement_to_last_argument_; 105 const int extra_displacement_to_last_argument_;
92 106
93 DISALLOW_IMPLICIT_CONSTRUCTORS(StackArgumentsAccessor); 107 DISALLOW_IMPLICIT_CONSTRUCTORS(StackArgumentsAccessor);
94 }; 108 };
95 109
96 110
97 } // namespace internal 111 } // namespace internal
98 } // namespace v8 112 } // namespace v8
99 113
100 #endif // V8_X64_CODEGEN_X64_H_ 114 #endif // V8_X64_CODEGEN_X64_H_
OLDNEW
« no previous file with comments | « src/v8.cc ('k') | src/x64/codegen-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698