| 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 | 
| 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  Loading... | 
| 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_ | 
| OLD | NEW | 
|---|