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

Side by Side Diff: src/compiler/linkage.cc

Issue 719403005: One instead of two runtime calls when initializing regexp. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: addressed comments Created 6 years, 1 month 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/jsregexp.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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/code-stubs.h" 5 #include "src/code-stubs.h"
6 #include "src/compiler.h" 6 #include "src/compiler.h"
7 #include "src/compiler/linkage.h" 7 #include "src/compiler/linkage.h"
8 #include "src/compiler/node.h" 8 #include "src/compiler/node.h"
9 #include "src/compiler/pipeline.h" 9 #include "src/compiler/pipeline.h"
10 #include "src/scopes.h" 10 #include "src/scopes.h"
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 case Runtime::kNewObject: 176 case Runtime::kNewObject:
177 case Runtime::kNewObjectFromBound: 177 case Runtime::kNewObjectFromBound:
178 case Runtime::kNewObjectWithAllocationSite: 178 case Runtime::kNewObjectWithAllocationSite:
179 case Runtime::kObjectFreeze: 179 case Runtime::kObjectFreeze:
180 case Runtime::kOwnKeys: 180 case Runtime::kOwnKeys:
181 case Runtime::kParseJson: 181 case Runtime::kParseJson:
182 case Runtime::kPrepareStep: 182 case Runtime::kPrepareStep:
183 case Runtime::kPreventExtensions: 183 case Runtime::kPreventExtensions:
184 case Runtime::kPromiseRejectEvent: 184 case Runtime::kPromiseRejectEvent:
185 case Runtime::kPromiseRevokeReject: 185 case Runtime::kPromiseRevokeReject:
186 case Runtime::kRegExpCompile: 186 case Runtime::kRegExpInitializeAndCompile:
187 case Runtime::kRegExpExecMultiple: 187 case Runtime::kRegExpExecMultiple:
188 case Runtime::kResolvePossiblyDirectEval: 188 case Runtime::kResolvePossiblyDirectEval:
189 case Runtime::kRunMicrotasks: 189 case Runtime::kRunMicrotasks:
190 case Runtime::kSetPrototype: 190 case Runtime::kSetPrototype:
191 case Runtime::kSetScriptBreakPoint: 191 case Runtime::kSetScriptBreakPoint:
192 case Runtime::kSparseJoinWithSeparator: 192 case Runtime::kSparseJoinWithSeparator:
193 case Runtime::kStackGuard: 193 case Runtime::kStackGuard:
194 case Runtime::kStoreKeyedToSuper_Sloppy: 194 case Runtime::kStoreKeyedToSuper_Sloppy:
195 case Runtime::kStoreKeyedToSuper_Strict: 195 case Runtime::kStoreKeyedToSuper_Strict:
196 case Runtime::kStoreToSuper_Sloppy: 196 case Runtime::kStoreToSuper_Sloppy:
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 246
247 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, 247 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone,
248 MachineSignature* sig) { 248 MachineSignature* sig) {
249 UNIMPLEMENTED(); 249 UNIMPLEMENTED();
250 return NULL; 250 return NULL;
251 } 251 }
252 #endif // !V8_TURBOFAN_BACKEND 252 #endif // !V8_TURBOFAN_BACKEND
253 } 253 }
254 } 254 }
255 } // namespace v8::internal::compiler 255 } // namespace v8::internal::compiler
OLDNEW
« no previous file with comments | « no previous file | src/jsregexp.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698