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

Side by Side Diff: src/compiler/arm/code-generator-arm.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 | « no previous file | src/compiler/arm64/code-generator-arm64.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 6
7 #include "src/arm/macro-assembler-arm.h" 7 #include "src/arm/macro-assembler-arm.h"
8 #include "src/compiler/code-generator-impl.h" 8 #include "src/compiler/code-generator-impl.h"
9 #include "src/compiler/gap-resolver.h" 9 #include "src/compiler/gap-resolver.h"
10 #include "src/compiler/node-matchers.h" 10 #include "src/compiler/node-matchers.h"
(...skipping 860 matching lines...) Expand 10 before | Expand all | Expand 10 after
871 break; 871 break;
872 case kCheckedStoreWord32: 872 case kCheckedStoreWord32:
873 ASSEMBLE_CHECKED_STORE_INTEGER(str); 873 ASSEMBLE_CHECKED_STORE_INTEGER(str);
874 break; 874 break;
875 case kCheckedStoreFloat32: 875 case kCheckedStoreFloat32:
876 ASSEMBLE_CHECKED_STORE_FLOAT(32); 876 ASSEMBLE_CHECKED_STORE_FLOAT(32);
877 break; 877 break;
878 case kCheckedStoreFloat64: 878 case kCheckedStoreFloat64:
879 ASSEMBLE_CHECKED_STORE_FLOAT(64); 879 ASSEMBLE_CHECKED_STORE_FLOAT(64);
880 break; 880 break;
881 case kCheckedLoadWord64:
882 case kCheckedStoreWord64:
883 UNREACHABLE(); // currently unsupported checked int64 load/store.
884 break;
881 } 885 }
882 } // NOLINT(readability/fn_size) 886 } // NOLINT(readability/fn_size)
883 887
884 888
885 // Assembles branches after an instruction. 889 // Assembles branches after an instruction.
886 void CodeGenerator::AssembleArchBranch(Instruction* instr, BranchInfo* branch) { 890 void CodeGenerator::AssembleArchBranch(Instruction* instr, BranchInfo* branch) {
887 ArmOperandConverter i(this, instr); 891 ArmOperandConverter i(this, instr);
888 Label* tlabel = branch->true_label; 892 Label* tlabel = branch->true_label;
889 Label* flabel = branch->false_label; 893 Label* flabel = branch->false_label;
890 Condition cc = FlagsConditionToCondition(branch->condition); 894 Condition cc = FlagsConditionToCondition(branch->condition);
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after
1258 padding_size -= v8::internal::Assembler::kInstrSize; 1262 padding_size -= v8::internal::Assembler::kInstrSize;
1259 } 1263 }
1260 } 1264 }
1261 } 1265 }
1262 1266
1263 #undef __ 1267 #undef __
1264 1268
1265 } // namespace compiler 1269 } // namespace compiler
1266 } // namespace internal 1270 } // namespace internal
1267 } // namespace v8 1271 } // namespace v8
OLDNEW
« no previous file with comments | « no previous file | src/compiler/arm64/code-generator-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698