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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 Counters* counters = isolate->counters(); | 77 Counters* counters = isolate->counters(); |
78 counters->total_stubs_code_size()->Increment(code->instruction_size()); | 78 counters->total_stubs_code_size()->Increment(code->instruction_size()); |
79 } | 79 } |
80 | 80 |
81 | 81 |
82 Code::Kind CodeStub::GetCodeKind() const { | 82 Code::Kind CodeStub::GetCodeKind() const { |
83 return Code::STUB; | 83 return Code::STUB; |
84 } | 84 } |
85 | 85 |
86 | 86 |
| 87 Handle<Code> CodeStub::GetCodeCopyFromTemplate(Isolate* isolate) { |
| 88 Handle<Code> ic = GetCode(isolate); |
| 89 ic = isolate->factory()->CopyCode(ic); |
| 90 RecordCodeGeneration(*ic, isolate); |
| 91 return ic; |
| 92 } |
| 93 |
| 94 |
87 Handle<Code> PlatformCodeStub::GenerateCode() { | 95 Handle<Code> PlatformCodeStub::GenerateCode() { |
88 Isolate* isolate = Isolate::Current(); | 96 Isolate* isolate = Isolate::Current(); |
89 Factory* factory = isolate->factory(); | 97 Factory* factory = isolate->factory(); |
90 | 98 |
91 // Generate the new code. | 99 // Generate the new code. |
92 MacroAssembler masm(isolate, NULL, 256); | 100 MacroAssembler masm(isolate, NULL, 256); |
93 | 101 |
94 { | 102 { |
95 // Update the static counter each time a new code stub is generated. | 103 // Update the static counter each time a new code stub is generated. |
96 isolate->counters()->code_stubs()->Increment(); | 104 isolate->counters()->code_stubs()->Increment(); |
(...skipping 731 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
828 InstallDescriptor(isolate, &stub3); | 836 InstallDescriptor(isolate, &stub3); |
829 } | 837 } |
830 | 838 |
831 InternalArrayConstructorStub::InternalArrayConstructorStub( | 839 InternalArrayConstructorStub::InternalArrayConstructorStub( |
832 Isolate* isolate) { | 840 Isolate* isolate) { |
833 InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); | 841 InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); |
834 } | 842 } |
835 | 843 |
836 | 844 |
837 } } // namespace v8::internal | 845 } } // namespace v8::internal |
OLD | NEW |