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

Side by Side Diff: src/ic/mips64/ic-mips64.cc

Issue 1293793002: Remove grab-bag includes of v8.h from IC subsystem. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix compilation on ARM and MIPS64. 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/ic/mips64/ic-compiler-mips64.cc ('k') | src/ic/mips64/stub-cache-mips64.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 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
6 #include "src/v8.h"
7
8 #if V8_TARGET_ARCH_MIPS64 5 #if V8_TARGET_ARCH_MIPS64
9 6
10 #include "src/codegen.h" 7 #include "src/codegen.h"
11 #include "src/ic/ic.h" 8 #include "src/ic/ic.h"
12 #include "src/ic/ic-compiler.h" 9 #include "src/ic/ic-compiler.h"
13 #include "src/ic/stub-cache.h" 10 #include "src/ic/stub-cache.h"
14 11
15 namespace v8 { 12 namespace v8 {
16 namespace internal { 13 namespace internal {
17 14
(...skipping 885 matching lines...) Expand 10 before | Expand all | Expand 10 after
903 patcher.ChangeBranchCondition(ne); 900 patcher.ChangeBranchCondition(ne);
904 } else { 901 } else {
905 DCHECK(Assembler::IsBne(branch_instr)); 902 DCHECK(Assembler::IsBne(branch_instr));
906 patcher.ChangeBranchCondition(eq); 903 patcher.ChangeBranchCondition(eq);
907 } 904 }
908 } 905 }
909 } // namespace internal 906 } // namespace internal
910 } // namespace v8 907 } // namespace v8
911 908
912 #endif // V8_TARGET_ARCH_MIPS64 909 #endif // V8_TARGET_ARCH_MIPS64
OLDNEW
« no previous file with comments | « src/ic/mips64/ic-compiler-mips64.cc ('k') | src/ic/mips64/stub-cache-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698