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

Side by Side Diff: src/compiler/mips/code-generator-mips.cc

Issue 1310323006: [turbofan] support for Int64 in CheckedLoad/CheckedStore on 64-bit platforms. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 3 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/compiler/instruction-codes.h ('k') | src/compiler/mips64/code-generator-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 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
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
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
OLDNEW
« no previous file with comments | « src/compiler/instruction-codes.h ('k') | src/compiler/mips64/code-generator-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698