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

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

Issue 970253002: [turbofan] Fix exception being re-thrown after finally-block. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Sneak in alpha sorting. Created 5 years, 9 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/control-builders.cc ('k') | no next file » | 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 case Runtime::kDeclareGlobals: // TODO(jarin): Is it safe? 107 case Runtime::kDeclareGlobals: // TODO(jarin): Is it safe?
108 case Runtime::kDefineClassMethod: // TODO(jarin): Is it safe? 108 case Runtime::kDefineClassMethod: // TODO(jarin): Is it safe?
109 case Runtime::kDefineGetterPropertyUnchecked: // TODO(jarin): Is it safe? 109 case Runtime::kDefineGetterPropertyUnchecked: // TODO(jarin): Is it safe?
110 case Runtime::kDefineSetterPropertyUnchecked: // TODO(jarin): Is it safe? 110 case Runtime::kDefineSetterPropertyUnchecked: // TODO(jarin): Is it safe?
111 case Runtime::kForInCacheArrayLength: 111 case Runtime::kForInCacheArrayLength:
112 case Runtime::kForInInit: 112 case Runtime::kForInInit:
113 case Runtime::kForInNext: 113 case Runtime::kForInNext:
114 case Runtime::kNewArguments: 114 case Runtime::kNewArguments:
115 case Runtime::kNewClosure: 115 case Runtime::kNewClosure:
116 case Runtime::kNewFunctionContext: 116 case Runtime::kNewFunctionContext:
117 case Runtime::kNewRestParamSlow:
117 case Runtime::kPushBlockContext: 118 case Runtime::kPushBlockContext:
118 case Runtime::kPushCatchContext: 119 case Runtime::kPushCatchContext:
119 case Runtime::kReThrow: 120 case Runtime::kReThrow:
120 case Runtime::kSetProperty: // TODO(jarin): Is it safe? 121 case Runtime::kSetProperty: // TODO(jarin): Is it safe?
121 case Runtime::kStringCompare: 122 case Runtime::kStringCompare:
122 case Runtime::kStringEquals: 123 case Runtime::kStringEquals:
123 case Runtime::kToFastProperties: // TODO(jarin): Is it safe? 124 case Runtime::kToFastProperties: // TODO(jarin): Is it safe?
124 case Runtime::kTraceEnter: 125 case Runtime::kTraceEnter:
125 case Runtime::kTraceExit: 126 case Runtime::kTraceExit:
126 case Runtime::kTypeof: 127 case Runtime::kTypeof:
127 case Runtime::kNewRestParamSlow:
128 return false; 128 return false;
129 case Runtime::kInlineArguments: 129 case Runtime::kInlineArguments:
130 case Runtime::kInlineCallFunction: 130 case Runtime::kInlineCallFunction:
131 case Runtime::kInlineDateField: 131 case Runtime::kInlineDateField:
132 case Runtime::kInlineOptimizedGetPrototype: 132 case Runtime::kInlineOptimizedGetPrototype:
133 case Runtime::kInlineRegExpExec: 133 case Runtime::kInlineRegExpExec:
134 return true; 134 return true;
135 default: 135 default:
136 break; 136 break;
137 } 137 }
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 182
183 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, 183 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone,
184 const MachineSignature* sig) { 184 const MachineSignature* sig) {
185 UNIMPLEMENTED(); 185 UNIMPLEMENTED();
186 return NULL; 186 return NULL;
187 } 187 }
188 #endif // !V8_TURBOFAN_BACKEND 188 #endif // !V8_TURBOFAN_BACKEND
189 } 189 }
190 } 190 }
191 } // namespace v8::internal::compiler 191 } // namespace v8::internal::compiler
OLDNEW
« no previous file with comments | « src/compiler/control-builders.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698