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

Side by Side Diff: src/lithium-codegen.cc

Issue 1285183010: Remove grab-bag includes of v8.h from everywhere. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Minor stylistic issue. Created 5 years, 4 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/lithium-allocator.cc ('k') | src/log.cc » ('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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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/lithium-codegen.h" 5 #include "src/lithium-codegen.h"
6 6
7 #include <sstream> 7 #include <sstream>
8 8
9 #include "src/v8.h"
10
11 #if V8_TARGET_ARCH_IA32 9 #if V8_TARGET_ARCH_IA32
12 #include "src/ia32/lithium-ia32.h" // NOLINT 10 #include "src/ia32/lithium-ia32.h" // NOLINT
13 #include "src/ia32/lithium-codegen-ia32.h" // NOLINT 11 #include "src/ia32/lithium-codegen-ia32.h" // NOLINT
14 #elif V8_TARGET_ARCH_X64 12 #elif V8_TARGET_ARCH_X64
15 #include "src/x64/lithium-x64.h" // NOLINT 13 #include "src/x64/lithium-x64.h" // NOLINT
16 #include "src/x64/lithium-codegen-x64.h" // NOLINT 14 #include "src/x64/lithium-codegen-x64.h" // NOLINT
17 #elif V8_TARGET_ARCH_ARM 15 #elif V8_TARGET_ARCH_ARM
18 #include "src/arm/lithium-arm.h" // NOLINT 16 #include "src/arm/lithium-arm.h" // NOLINT
19 #include "src/arm/lithium-codegen-arm.h" // NOLINT 17 #include "src/arm/lithium-codegen-arm.h" // NOLINT
20 #elif V8_TARGET_ARCH_ARM64 18 #elif V8_TARGET_ARCH_ARM64
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 Deoptimizer::DeoptInfo LCodeGenBase::MakeDeoptInfo( 283 Deoptimizer::DeoptInfo LCodeGenBase::MakeDeoptInfo(
286 LInstruction* instr, Deoptimizer::DeoptReason deopt_reason) { 284 LInstruction* instr, Deoptimizer::DeoptReason deopt_reason) {
287 Deoptimizer::DeoptInfo deopt_info(instr->hydrogen_value()->position(), 285 Deoptimizer::DeoptInfo deopt_info(instr->hydrogen_value()->position(),
288 instr->Mnemonic(), deopt_reason); 286 instr->Mnemonic(), deopt_reason);
289 HEnterInlined* enter_inlined = instr->environment()->entry(); 287 HEnterInlined* enter_inlined = instr->environment()->entry();
290 deopt_info.inlining_id = enter_inlined ? enter_inlined->inlining_id() : 0; 288 deopt_info.inlining_id = enter_inlined ? enter_inlined->inlining_id() : 0;
291 return deopt_info; 289 return deopt_info;
292 } 290 }
293 } // namespace internal 291 } // namespace internal
294 } // namespace v8 292 } // namespace v8
OLDNEW
« no previous file with comments | « src/lithium-allocator.cc ('k') | src/log.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698