OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #include "src/bootstrapper.h" | 7 #include "src/bootstrapper.h" |
8 #include "src/code-stubs.h" | 8 #include "src/code-stubs.h" |
9 #include "src/cpu-profiler.h" | 9 #include "src/cpu-profiler.h" |
10 #include "src/factory.h" | 10 #include "src/factory.h" |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 Initialize(register_parameter_count, registers, | 69 Initialize(register_parameter_count, registers, |
70 deoptimization_handler, | 70 deoptimization_handler, |
71 register_param_representations, | 71 register_param_representations, |
72 hint_stack_parameter_count, | 72 hint_stack_parameter_count, |
73 function_mode); | 73 function_mode); |
74 stack_parameter_count_ = stack_parameter_count; | 74 stack_parameter_count_ = stack_parameter_count; |
75 handler_arguments_mode_ = handler_mode; | 75 handler_arguments_mode_ = handler_mode; |
76 } | 76 } |
77 | 77 |
78 | 78 |
| 79 void CallInterfaceDescriptor::Initialize( |
| 80 int register_parameter_count, |
| 81 Register* registers, |
| 82 Representation* param_representations, |
| 83 PlatformCallInterfaceDescriptor* platform_descriptor) { |
| 84 // CallInterfaceDescriptor owns a copy of the registers array. |
| 85 register_param_count_ = register_parameter_count; |
| 86 register_params_.Reset(NewArray<Register>(register_parameter_count)); |
| 87 for (int i = 0; i < register_parameter_count; i++) { |
| 88 register_params_[i] = registers[i]; |
| 89 } |
| 90 |
| 91 // Also the register parameter representations. |
| 92 param_representations_.Reset( |
| 93 NewArray<Representation>(register_parameter_count)); |
| 94 for (int i = 0; i < register_parameter_count; i++) { |
| 95 param_representations_[i] = param_representations[i]; |
| 96 } |
| 97 |
| 98 platform_specific_descriptor_ = platform_descriptor; |
| 99 } |
| 100 |
| 101 |
79 bool CodeStub::FindCodeInCache(Code** code_out) { | 102 bool CodeStub::FindCodeInCache(Code** code_out) { |
80 UnseededNumberDictionary* stubs = isolate()->heap()->code_stubs(); | 103 UnseededNumberDictionary* stubs = isolate()->heap()->code_stubs(); |
81 int index = stubs->FindEntry(GetKey()); | 104 int index = stubs->FindEntry(GetKey()); |
82 if (index != UnseededNumberDictionary::kNotFound) { | 105 if (index != UnseededNumberDictionary::kNotFound) { |
83 *code_out = Code::cast(stubs->ValueAt(index)); | 106 *code_out = Code::cast(stubs->ValueAt(index)); |
84 return true; | 107 return true; |
85 } | 108 } |
86 return false; | 109 return false; |
87 } | 110 } |
88 | 111 |
(...skipping 791 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
880 InstallDescriptor(isolate, &stub3); | 903 InstallDescriptor(isolate, &stub3); |
881 } | 904 } |
882 | 905 |
883 InternalArrayConstructorStub::InternalArrayConstructorStub( | 906 InternalArrayConstructorStub::InternalArrayConstructorStub( |
884 Isolate* isolate) : PlatformCodeStub(isolate) { | 907 Isolate* isolate) : PlatformCodeStub(isolate) { |
885 InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); | 908 InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); |
886 } | 909 } |
887 | 910 |
888 | 911 |
889 } } // namespace v8::internal | 912 } } // namespace v8::internal |
OLD | NEW |