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

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

Issue 612043003: Add inlining for intrinsics. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Move decls. Created 6 years, 2 months 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 | Annotate | Revision Log
« no previous file with comments | « src/compiler/js-intrinsic-builder.cc ('k') | src/compiler/opcodes.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/compiler/linkage.h" 5 #include "src/compiler/linkage.h"
6 6
7 #include "src/code-stubs.h" 7 #include "src/code-stubs.h"
8 #include "src/compiler.h" 8 #include "src/compiler.h"
9 #include "src/compiler/node.h" 9 #include "src/compiler/node.h"
10 #include "src/compiler/pipeline.h" 10 #include "src/compiler/pipeline.h"
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 // case Runtime::kSetPrototype: 171 // case Runtime::kSetPrototype:
172 case Runtime::kSetScriptBreakPoint: 172 case Runtime::kSetScriptBreakPoint:
173 case Runtime::kStackGuard: 173 case Runtime::kStackGuard:
174 case Runtime::kStoreLookupSlot: 174 case Runtime::kStoreLookupSlot:
175 case Runtime::kStringBuilderConcat: 175 case Runtime::kStringBuilderConcat:
176 case Runtime::kStringReplaceGlobalRegExpWithString: 176 case Runtime::kStringReplaceGlobalRegExpWithString:
177 case Runtime::kThrowReferenceError: 177 case Runtime::kThrowReferenceError:
178 case Runtime::kThrow: 178 case Runtime::kThrow:
179 case Runtime::kTypedArraySetFastCases: 179 case Runtime::kTypedArraySetFastCases:
180 case Runtime::kTypedArrayInitializeFromArrayLike: 180 case Runtime::kTypedArrayInitializeFromArrayLike:
181 case Runtime::kDebugEvaluateGlobal:
182 case Runtime::kOwnKeys:
183 case Runtime::kGetOwnPropertyNames:
184 case Runtime::kIsPropertyEnumerable:
185 case Runtime::kGetPrototype:
186 case Runtime::kSparseJoinWithSeparator:
181 return true; 187 return true;
182 default: 188 default:
183 return false; 189 return false;
184 } 190 }
185 } 191 }
186 192
187 193
188 //============================================================================== 194 //==============================================================================
189 // Provide unimplemented methods on unsupported architectures, to at least link. 195 // Provide unimplemented methods on unsupported architectures, to at least link.
190 //============================================================================== 196 //==============================================================================
(...skipping 22 matching lines...) Expand all
213 219
214 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, 220 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone,
215 MachineSignature* sig) { 221 MachineSignature* sig) {
216 UNIMPLEMENTED(); 222 UNIMPLEMENTED();
217 return NULL; 223 return NULL;
218 } 224 }
219 #endif // !V8_TURBOFAN_BACKEND 225 #endif // !V8_TURBOFAN_BACKEND
220 } 226 }
221 } 227 }
222 } // namespace v8::internal::compiler 228 } // namespace v8::internal::compiler
OLDNEW
« no previous file with comments | « src/compiler/js-intrinsic-builder.cc ('k') | src/compiler/opcodes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698