OLD | NEW |
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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 case Runtime::kNewRestParamSlow: | 112 case Runtime::kNewRestParamSlow: |
113 case Runtime::kPushBlockContext: | 113 case Runtime::kPushBlockContext: |
114 case Runtime::kPushCatchContext: | 114 case Runtime::kPushCatchContext: |
115 case Runtime::kReThrow: | 115 case Runtime::kReThrow: |
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: | |
123 return false; | 122 return false; |
124 case Runtime::kInlineArguments: | 123 case Runtime::kInlineArguments: |
125 case Runtime::kInlineCallFunction: | 124 case Runtime::kInlineCallFunction: |
126 case Runtime::kInlineDateField: | 125 case Runtime::kInlineDateField: |
127 case Runtime::kInlineDeoptimizeNow: | 126 case Runtime::kInlineDeoptimizeNow: |
128 case Runtime::kInlineGetPrototype: | 127 case Runtime::kInlineGetPrototype: |
129 case Runtime::kInlineRegExpExec: | 128 case Runtime::kInlineRegExpExec: |
130 return true; | 129 return true; |
131 default: | 130 default: |
132 break; | 131 break; |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 | 177 |
179 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, | 178 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, |
180 const MachineSignature* sig) { | 179 const MachineSignature* sig) { |
181 UNIMPLEMENTED(); | 180 UNIMPLEMENTED(); |
182 return NULL; | 181 return NULL; |
183 } | 182 } |
184 #endif // !V8_TURBOFAN_BACKEND | 183 #endif // !V8_TURBOFAN_BACKEND |
185 } | 184 } |
186 } | 185 } |
187 } // namespace v8::internal::compiler | 186 } // namespace v8::internal::compiler |
OLD | NEW |