| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 #include "src/compiler/code-generator.h" | 5 #include "src/compiler/code-generator.h" |
| 6 | 6 |
| 7 #include "src/ast/scopes.h" | 7 #include "src/ast/scopes.h" |
| 8 #include "src/compiler/code-generator-impl.h" | 8 #include "src/compiler/code-generator-impl.h" |
| 9 #include "src/compiler/gap-resolver.h" | 9 #include "src/compiler/gap-resolver.h" |
| 10 #include "src/compiler/node-matchers.h" | 10 #include "src/compiler/node-matchers.h" |
| (...skipping 885 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 896 break; | 896 break; |
| 897 case kIeee754Float64Log2: | 897 case kIeee754Float64Log2: |
| 898 ASSEMBLE_IEEE754_UNOP(log2); | 898 ASSEMBLE_IEEE754_UNOP(log2); |
| 899 break; | 899 break; |
| 900 case kIeee754Float64Log10: | 900 case kIeee754Float64Log10: |
| 901 ASSEMBLE_IEEE754_UNOP(log10); | 901 ASSEMBLE_IEEE754_UNOP(log10); |
| 902 break; | 902 break; |
| 903 case kIeee754Float64Sin: | 903 case kIeee754Float64Sin: |
| 904 ASSEMBLE_IEEE754_UNOP(sin); | 904 ASSEMBLE_IEEE754_UNOP(sin); |
| 905 break; | 905 break; |
| 906 case kIeee754Float64Tan: |
| 907 ASSEMBLE_IEEE754_UNOP(tan); |
| 908 break; |
| 906 case kX64Add32: | 909 case kX64Add32: |
| 907 ASSEMBLE_BINOP(addl); | 910 ASSEMBLE_BINOP(addl); |
| 908 break; | 911 break; |
| 909 case kX64Add: | 912 case kX64Add: |
| 910 ASSEMBLE_BINOP(addq); | 913 ASSEMBLE_BINOP(addq); |
| 911 break; | 914 break; |
| 912 case kX64Sub32: | 915 case kX64Sub32: |
| 913 ASSEMBLE_BINOP(subl); | 916 ASSEMBLE_BINOP(subl); |
| 914 break; | 917 break; |
| 915 case kX64Sub: | 918 case kX64Sub: |
| (...skipping 1467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2383 int padding_size = last_lazy_deopt_pc_ + space_needed - current_pc; | 2386 int padding_size = last_lazy_deopt_pc_ + space_needed - current_pc; |
| 2384 __ Nop(padding_size); | 2387 __ Nop(padding_size); |
| 2385 } | 2388 } |
| 2386 } | 2389 } |
| 2387 | 2390 |
| 2388 #undef __ | 2391 #undef __ |
| 2389 | 2392 |
| 2390 } // namespace compiler | 2393 } // namespace compiler |
| 2391 } // namespace internal | 2394 } // namespace internal |
| 2392 } // namespace v8 | 2395 } // namespace v8 |
| OLD | NEW |