OLD | NEW |
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/compiler/code-generator.h" | 5 #include "src/compiler/code-generator.h" |
6 #include "src/compiler/code-generator-impl.h" | 6 #include "src/compiler/code-generator-impl.h" |
7 #include "src/compiler/gap-resolver.h" | 7 #include "src/compiler/gap-resolver.h" |
8 #include "src/compiler/node-matchers.h" | 8 #include "src/compiler/node-matchers.h" |
9 #include "src/compiler/osr.h" | 9 #include "src/compiler/osr.h" |
10 #include "src/mips/macro-assembler-mips.h" | 10 #include "src/mips/macro-assembler-mips.h" |
(...skipping 840 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
851 break; | 851 break; |
852 case kCheckedStoreWord32: | 852 case kCheckedStoreWord32: |
853 ASSEMBLE_CHECKED_STORE_INTEGER(sw); | 853 ASSEMBLE_CHECKED_STORE_INTEGER(sw); |
854 break; | 854 break; |
855 case kCheckedStoreFloat32: | 855 case kCheckedStoreFloat32: |
856 ASSEMBLE_CHECKED_STORE_FLOAT(Single, swc1); | 856 ASSEMBLE_CHECKED_STORE_FLOAT(Single, swc1); |
857 break; | 857 break; |
858 case kCheckedStoreFloat64: | 858 case kCheckedStoreFloat64: |
859 ASSEMBLE_CHECKED_STORE_FLOAT(Double, sdc1); | 859 ASSEMBLE_CHECKED_STORE_FLOAT(Double, sdc1); |
860 break; | 860 break; |
| 861 case kCheckedLoadWord64: |
| 862 case kCheckedStoreWord64: |
| 863 UNREACHABLE(); // currently unsupported checked int64 load/store. |
| 864 break; |
861 } | 865 } |
862 } | 866 } |
863 | 867 |
864 | 868 |
865 #define UNSUPPORTED_COND(opcode, condition) \ | 869 #define UNSUPPORTED_COND(opcode, condition) \ |
866 OFStream out(stdout); \ | 870 OFStream out(stdout); \ |
867 out << "Unsupported " << #opcode << " condition: \"" << condition << "\""; \ | 871 out << "Unsupported " << #opcode << " condition: \"" << condition << "\""; \ |
868 UNIMPLEMENTED(); | 872 UNIMPLEMENTED(); |
869 | 873 |
870 static bool convertCondition(FlagsCondition condition, Condition& cc) { | 874 static bool convertCondition(FlagsCondition condition, Condition& cc) { |
(...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1380 padding_size -= v8::internal::Assembler::kInstrSize; | 1384 padding_size -= v8::internal::Assembler::kInstrSize; |
1381 } | 1385 } |
1382 } | 1386 } |
1383 } | 1387 } |
1384 | 1388 |
1385 #undef __ | 1389 #undef __ |
1386 | 1390 |
1387 } // namespace compiler | 1391 } // namespace compiler |
1388 } // namespace internal | 1392 } // namespace internal |
1389 } // namespace v8 | 1393 } // namespace v8 |
OLD | NEW |