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

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

Issue 1104453006: [turbofan] Introduce explicit JSCreateLiteral[Array|Object]. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebased. Created 5 years, 7 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
« no previous file with comments | « src/compiler/js-typed-lowering.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/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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 case Runtime::kSetProperty: // TODO(jarin): Is it safe? 116 case Runtime::kSetProperty: // TODO(jarin): Is it safe?
117 case Runtime::kStringCompareRT: 117 case Runtime::kStringCompareRT:
118 case Runtime::kStringEquals: 118 case Runtime::kStringEquals:
119 case Runtime::kToFastProperties: // TODO(jarin): Is it safe? 119 case Runtime::kToFastProperties: // TODO(jarin): Is it safe?
120 case Runtime::kTraceEnter: 120 case Runtime::kTraceEnter:
121 case Runtime::kTraceExit: 121 case Runtime::kTraceExit:
122 case Runtime::kTypeof: 122 case Runtime::kTypeof:
123 return false; 123 return false;
124 case Runtime::kInlineArguments: 124 case Runtime::kInlineArguments:
125 case Runtime::kInlineCallFunction: 125 case Runtime::kInlineCallFunction:
126 case Runtime::kInlineCreateArrayLiteral:
127 case Runtime::kInlineCreateObjectLiteral:
128 case Runtime::kInlineDateField: 126 case Runtime::kInlineDateField:
129 case Runtime::kInlineDeoptimizeNow: 127 case Runtime::kInlineDeoptimizeNow:
130 case Runtime::kInlineGetPrototype: 128 case Runtime::kInlineGetPrototype:
131 case Runtime::kInlineRegExpExec: 129 case Runtime::kInlineRegExpExec:
132 return true; 130 return true;
133 default: 131 default:
134 break; 132 break;
135 } 133 }
136 134
137 // Most inlined runtime functions (except the ones listed above) can be called 135 // Most inlined runtime functions (except the ones listed above) can be called
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 178
181 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, 179 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone,
182 const MachineSignature* sig) { 180 const MachineSignature* sig) {
183 UNIMPLEMENTED(); 181 UNIMPLEMENTED();
184 return NULL; 182 return NULL;
185 } 183 }
186 #endif // !V8_TURBOFAN_BACKEND 184 #endif // !V8_TURBOFAN_BACKEND
187 } 185 }
188 } 186 }
189 } // namespace v8::internal::compiler 187 } // namespace v8::internal::compiler
OLDNEW
« no previous file with comments | « src/compiler/js-typed-lowering.cc ('k') | src/compiler/opcodes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698