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 #if V8_TARGET_ARCH_ARM64 | 5 #if V8_TARGET_ARCH_ARM64 |
6 | 6 |
7 #include "src/ast/scopes.h" | 7 #include "src/ast/scopes.h" |
8 #include "src/code-factory.h" | 8 #include "src/code-factory.h" |
9 #include "src/code-stubs.h" | 9 #include "src/code-stubs.h" |
10 #include "src/codegen.h" | 10 #include "src/codegen.h" |
(...skipping 2744 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2755 // Non-JS objects have class null. | 2755 // Non-JS objects have class null. |
2756 __ Bind(&null); | 2756 __ Bind(&null); |
2757 __ LoadRoot(x0, Heap::kNullValueRootIndex); | 2757 __ LoadRoot(x0, Heap::kNullValueRootIndex); |
2758 | 2758 |
2759 // All done. | 2759 // All done. |
2760 __ Bind(&done); | 2760 __ Bind(&done); |
2761 | 2761 |
2762 context()->Plug(x0); | 2762 context()->Plug(x0); |
2763 } | 2763 } |
2764 | 2764 |
| 2765 |
| 2766 void FullCodeGenerator::EmitValueOf(CallRuntime* expr) { |
| 2767 ASM_LOCATION("FullCodeGenerator::EmitValueOf"); |
| 2768 ZoneList<Expression*>* args = expr->arguments(); |
| 2769 DCHECK(args->length() == 1); |
| 2770 VisitForAccumulatorValue(args->at(0)); // Load the object. |
| 2771 |
| 2772 Label done; |
| 2773 // If the object is a smi return the object. |
| 2774 __ JumpIfSmi(x0, &done); |
| 2775 // If the object is not a value type, return the object. |
| 2776 __ JumpIfNotObjectType(x0, x10, x11, JS_VALUE_TYPE, &done); |
| 2777 __ Ldr(x0, FieldMemOperand(x0, JSValue::kValueOffset)); |
| 2778 |
| 2779 __ Bind(&done); |
| 2780 context()->Plug(x0); |
| 2781 } |
| 2782 |
2765 | 2783 |
2766 void FullCodeGenerator::EmitStringCharFromCode(CallRuntime* expr) { | 2784 void FullCodeGenerator::EmitStringCharFromCode(CallRuntime* expr) { |
2767 ZoneList<Expression*>* args = expr->arguments(); | 2785 ZoneList<Expression*>* args = expr->arguments(); |
2768 DCHECK(args->length() == 1); | 2786 DCHECK(args->length() == 1); |
2769 | 2787 |
2770 VisitForAccumulatorValue(args->at(0)); | 2788 VisitForAccumulatorValue(args->at(0)); |
2771 | 2789 |
2772 Label done; | 2790 Label done; |
2773 Register code = x0; | 2791 Register code = x0; |
2774 Register result = x1; | 2792 Register result = x1; |
(...skipping 1071 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3846 } | 3864 } |
3847 | 3865 |
3848 return INTERRUPT; | 3866 return INTERRUPT; |
3849 } | 3867 } |
3850 | 3868 |
3851 | 3869 |
3852 } // namespace internal | 3870 } // namespace internal |
3853 } // namespace v8 | 3871 } // namespace v8 |
3854 | 3872 |
3855 #endif // V8_TARGET_ARCH_ARM64 | 3873 #endif // V8_TARGET_ARCH_ARM64 |
OLD | NEW |