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

Unified Diff: src/compiler/arm/code-generator-arm.cc

Issue 2086653003: [Turbofan] Add the concept of aliasing to RegisterConfiguration. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix inactive live range population. Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/compiler/instruction.cc » ('j') | src/compiler/instruction.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/arm/code-generator-arm.cc
diff --git a/src/compiler/arm/code-generator-arm.cc b/src/compiler/arm/code-generator-arm.cc
index 88f3d79360ccbb73c4c16cf0535387b3ac4782cd..627258036fa8867104f8bdaef5877217a25afceb 100644
--- a/src/compiler/arm/code-generator-arm.cc
+++ b/src/compiler/arm/code-generator-arm.cc
@@ -36,7 +36,9 @@ class ArmOperandConverter final : public InstructionOperandConverter {
}
SwVfpRegister ToFloat32Register(InstructionOperand* op) {
Mircea Trofin 2016/06/22 06:07:34 If this is only called for LocationOperands, shoul
bbudge 2016/06/22 20:16:03 I followed the pattern of ToFloat64Register. Chang
- return ToFloat64Register(op).low();
+ DCHECK(LocationOperand::cast(op)->representation() ==
+ MachineRepresentation::kFloat32);
+ return LocationOperand::cast(op)->GetFloatRegister();
}
LowDwVfpRegister OutputFloat64Register(size_t index = 0) {
« no previous file with comments | « no previous file | src/compiler/instruction.cc » ('j') | src/compiler/instruction.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698