Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(93)

Side by Side Diff: src/arm/interface-descriptors-arm.cc

Issue 1475823003: [runtime] First step to sanitize regexp literal creation. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/arm/macro-assembler-arm.h » ('j') | src/code-stubs-hydrogen.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/arm/interface-descriptors-arm.h" 5 #include "src/arm/interface-descriptors-arm.h"
6 6
7 #if V8_TARGET_ARCH_ARM 7 #if V8_TARGET_ARCH_ARM
8 8
9 #include "src/interface-descriptors.h" 9 #include "src/interface-descriptors.h"
10 10
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 } 120 }
121 121
122 122
123 void TypeofDescriptor::InitializePlatformSpecific( 123 void TypeofDescriptor::InitializePlatformSpecific(
124 CallInterfaceDescriptorData* data) { 124 CallInterfaceDescriptorData* data) {
125 Register registers[] = {r3}; 125 Register registers[] = {r3};
126 data->InitializePlatformSpecific(arraysize(registers), registers); 126 data->InitializePlatformSpecific(arraysize(registers), registers);
127 } 127 }
128 128
129 129
130 void FastCloneRegExpDescriptor::InitializePlatformSpecific(
131 CallInterfaceDescriptorData* data) {
132 Register registers[] = {r3, r2, r1, r0};
133 data->InitializePlatformSpecific(arraysize(registers), registers);
134 }
135
136
130 void FastCloneShallowArrayDescriptor::InitializePlatformSpecific( 137 void FastCloneShallowArrayDescriptor::InitializePlatformSpecific(
131 CallInterfaceDescriptorData* data) { 138 CallInterfaceDescriptorData* data) {
132 Register registers[] = {r3, r2, r1}; 139 Register registers[] = {r3, r2, r1};
133 data->InitializePlatformSpecific(arraysize(registers), registers); 140 data->InitializePlatformSpecific(arraysize(registers), registers);
134 } 141 }
135 142
136 143
137 void FastCloneShallowObjectDescriptor::InitializePlatformSpecific( 144 void FastCloneShallowObjectDescriptor::InitializePlatformSpecific(
138 CallInterfaceDescriptorData* data) { 145 CallInterfaceDescriptorData* data) {
139 Register registers[] = {r3, r2, r1, r0}; 146 Register registers[] = {r3, r2, r1, r0};
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after
461 r2, // address of first argument (argv) 468 r2, // address of first argument (argv)
462 r1 // the runtime function to call 469 r1 // the runtime function to call
463 }; 470 };
464 data->InitializePlatformSpecific(arraysize(registers), registers); 471 data->InitializePlatformSpecific(arraysize(registers), registers);
465 } 472 }
466 473
467 } // namespace internal 474 } // namespace internal
468 } // namespace v8 475 } // namespace v8
469 476
470 #endif // V8_TARGET_ARCH_ARM 477 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « no previous file | src/arm/macro-assembler-arm.h » ('j') | src/code-stubs-hydrogen.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698