OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 | 6 |
7 #include "src/bailout-reason.h" | 7 #include "src/bailout-reason.h" |
| 8 #include "src/crankshaft/hydrogen.h" |
| 9 #include "src/crankshaft/lithium.h" |
8 #include "src/field-index.h" | 10 #include "src/field-index.h" |
9 #include "src/hydrogen.h" | |
10 #include "src/ic/ic.h" | 11 #include "src/ic/ic.h" |
11 #include "src/lithium.h" | |
12 | 12 |
13 namespace v8 { | 13 namespace v8 { |
14 namespace internal { | 14 namespace internal { |
15 | 15 |
16 | 16 |
17 static LChunk* OptimizeGraph(HGraph* graph) { | 17 static LChunk* OptimizeGraph(HGraph* graph) { |
18 DisallowHeapAllocation no_allocation; | 18 DisallowHeapAllocation no_allocation; |
19 DisallowHandleAllocation no_handles; | 19 DisallowHandleAllocation no_handles; |
20 DisallowHandleDereference no_deref; | 20 DisallowHandleDereference no_deref; |
21 | 21 |
(...skipping 2343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2365 return Pop(); | 2365 return Pop(); |
2366 } | 2366 } |
2367 | 2367 |
2368 | 2368 |
2369 Handle<Code> KeyedLoadGenericStub::GenerateCode() { | 2369 Handle<Code> KeyedLoadGenericStub::GenerateCode() { |
2370 return DoGenerateCode(this); | 2370 return DoGenerateCode(this); |
2371 } | 2371 } |
2372 | 2372 |
2373 } // namespace internal | 2373 } // namespace internal |
2374 } // namespace v8 | 2374 } // namespace v8 |
OLD | NEW |