OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 void ToNumberStub::InitializeInterfaceDescriptor( | 52 void ToNumberStub::InitializeInterfaceDescriptor( |
53 Isolate* isolate, | 53 Isolate* isolate, |
54 CodeStubInterfaceDescriptor* descriptor) { | 54 CodeStubInterfaceDescriptor* descriptor) { |
55 static Register registers[] = { r0 }; | 55 static Register registers[] = { r0 }; |
56 descriptor->register_param_count_ = 1; | 56 descriptor->register_param_count_ = 1; |
57 descriptor->register_params_ = registers; | 57 descriptor->register_params_ = registers; |
58 descriptor->deoptimization_handler_ = NULL; | 58 descriptor->deoptimization_handler_ = NULL; |
59 } | 59 } |
60 | 60 |
61 | 61 |
62 void NumberToStringStub::InitializeInterfaceDescriptor( | |
63 Isolate* isolate, | |
64 CodeStubInterfaceDescriptor* descriptor) { | |
65 static Register registers[] = { r0 }; | |
66 descriptor->register_param_count_ = 1; | |
67 descriptor->register_params_ = registers; | |
68 descriptor->deoptimization_handler_ = NULL; | |
69 } | |
70 | |
71 | |
72 void FastCloneShallowArrayStub::InitializeInterfaceDescriptor( | 62 void FastCloneShallowArrayStub::InitializeInterfaceDescriptor( |
73 Isolate* isolate, | 63 Isolate* isolate, |
74 CodeStubInterfaceDescriptor* descriptor) { | 64 CodeStubInterfaceDescriptor* descriptor) { |
75 static Register registers[] = { r3, r2, r1 }; | 65 static Register registers[] = { r3, r2, r1 }; |
76 descriptor->register_param_count_ = 3; | 66 descriptor->register_param_count_ = 3; |
77 descriptor->register_params_ = registers; | 67 descriptor->register_params_ = registers; |
78 descriptor->deoptimization_handler_ = | 68 descriptor->deoptimization_handler_ = |
79 Runtime::FunctionForId(Runtime::kCreateArrayLiteralShallow)->entry; | 69 Runtime::FunctionForId(Runtime::kCreateArrayLiteralShallow)->entry; |
80 } | 70 } |
81 | 71 |
(...skipping 893 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
975 __ ldr(r3, FieldMemOperand(rhs, HeapObject::kMapOffset)); | 965 __ ldr(r3, FieldMemOperand(rhs, HeapObject::kMapOffset)); |
976 __ ldrb(r2, FieldMemOperand(r2, Map::kBitFieldOffset)); | 966 __ ldrb(r2, FieldMemOperand(r2, Map::kBitFieldOffset)); |
977 __ ldrb(r3, FieldMemOperand(r3, Map::kBitFieldOffset)); | 967 __ ldrb(r3, FieldMemOperand(r3, Map::kBitFieldOffset)); |
978 __ and_(r0, r2, Operand(r3)); | 968 __ and_(r0, r2, Operand(r3)); |
979 __ and_(r0, r0, Operand(1 << Map::kIsUndetectable)); | 969 __ and_(r0, r0, Operand(1 << Map::kIsUndetectable)); |
980 __ eor(r0, r0, Operand(1 << Map::kIsUndetectable)); | 970 __ eor(r0, r0, Operand(1 << Map::kIsUndetectable)); |
981 __ Ret(); | 971 __ Ret(); |
982 } | 972 } |
983 | 973 |
984 | 974 |
| 975 void NumberToStringStub::Generate(MacroAssembler* masm) { |
| 976 Label runtime; |
| 977 |
| 978 __ ldr(r1, MemOperand(sp, 0)); |
| 979 |
| 980 // Generate code to lookup number in the number string cache. |
| 981 __ LookupNumberStringCache(r1, r0, r2, r3, r4, &runtime); |
| 982 __ add(sp, sp, Operand(1 * kPointerSize)); |
| 983 __ Ret(); |
| 984 |
| 985 __ bind(&runtime); |
| 986 // Handle number to string in the runtime system if not found in the cache. |
| 987 __ TailCallRuntime(Runtime::kNumberToStringSkipCache, 1, 1); |
| 988 } |
| 989 |
| 990 |
985 static void ICCompareStub_CheckInputType(MacroAssembler* masm, | 991 static void ICCompareStub_CheckInputType(MacroAssembler* masm, |
986 Register input, | 992 Register input, |
987 Register scratch, | 993 Register scratch, |
988 CompareIC::State expected, | 994 CompareIC::State expected, |
989 Label* fail) { | 995 Label* fail) { |
990 Label ok; | 996 Label ok; |
991 if (expected == CompareIC::SMI) { | 997 if (expected == CompareIC::SMI) { |
992 __ JumpIfNotSmi(input, fail); | 998 __ JumpIfNotSmi(input, fail); |
993 } else if (expected == CompareIC::NUMBER) { | 999 } else if (expected == CompareIC::NUMBER) { |
994 __ JumpIfSmi(input, &ok); | 1000 __ JumpIfSmi(input, &ok); |
(...skipping 6060 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7055 __ bind(&fast_elements_case); | 7061 __ bind(&fast_elements_case); |
7056 GenerateCase(masm, FAST_ELEMENTS); | 7062 GenerateCase(masm, FAST_ELEMENTS); |
7057 } | 7063 } |
7058 | 7064 |
7059 | 7065 |
7060 #undef __ | 7066 #undef __ |
7061 | 7067 |
7062 } } // namespace v8::internal | 7068 } } // namespace v8::internal |
7063 | 7069 |
7064 #endif // V8_TARGET_ARCH_ARM | 7070 #endif // V8_TARGET_ARCH_ARM |
OLD | NEW |