| OLD | NEW |
| 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 Loading... |
| 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 | |
| 45 enum StackArgumentsAccessorReceiverMode { | 31 enum StackArgumentsAccessorReceiverMode { |
| 46 ARGUMENTS_CONTAIN_RECEIVER, | 32 ARGUMENTS_CONTAIN_RECEIVER, |
| 47 ARGUMENTS_DONT_CONTAIN_RECEIVER | 33 ARGUMENTS_DONT_CONTAIN_RECEIVER |
| 48 }; | 34 }; |
| 49 | 35 |
| 50 | 36 |
| 51 class StackArgumentsAccessor BASE_EMBEDDED { | 37 class StackArgumentsAccessor BASE_EMBEDDED { |
| 52 public: | 38 public: |
| 53 StackArgumentsAccessor( | 39 StackArgumentsAccessor( |
| 54 Register base_reg, | 40 Register base_reg, |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 const int extra_displacement_to_last_argument_; | 91 const int extra_displacement_to_last_argument_; |
| 106 | 92 |
| 107 DISALLOW_IMPLICIT_CONSTRUCTORS(StackArgumentsAccessor); | 93 DISALLOW_IMPLICIT_CONSTRUCTORS(StackArgumentsAccessor); |
| 108 }; | 94 }; |
| 109 | 95 |
| 110 | 96 |
| 111 } // namespace internal | 97 } // namespace internal |
| 112 } // namespace v8 | 98 } // namespace v8 |
| 113 | 99 |
| 114 #endif // V8_X64_CODEGEN_X64_H_ | 100 #endif // V8_X64_CODEGEN_X64_H_ |
| OLD | NEW |