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 | |
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 Loading... |
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 |
OLD | NEW |