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

Unified Diff: runtime/vm/intermediate_language_arm.cc

Issue 475563002: Inline Int32x4 constructor (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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
Index: runtime/vm/intermediate_language_arm.cc
diff --git a/runtime/vm/intermediate_language_arm.cc b/runtime/vm/intermediate_language_arm.cc
index 568afc2398dbbeb2a09b424e177e90989506304e..c7a4d9146cbfcd90ac8e307a405e8e152daf0202 100644
--- a/runtime/vm/intermediate_language_arm.cc
+++ b/runtime/vm/intermediate_language_arm.cc
@@ -4539,6 +4539,42 @@ void Float64x2OneArgInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
}
+LocationSummary* Int32x4ConstructorInstr::MakeLocationSummary(
+ Isolate* isolate, bool opt) const {
+ const intptr_t kNumInputs = 4;
+ const intptr_t kNumTemps = 0;
+ LocationSummary* summary = new(isolate) LocationSummary(
+ isolate, kNumInputs, kNumTemps, LocationSummary::kNoCall);
+ summary->set_in(0, Location::RequiresRegister());
+ summary->set_in(1, Location::RequiresRegister());
+ summary->set_in(2, Location::RequiresRegister());
+ summary->set_in(3, Location::RequiresRegister());
+ // Low (< 7) Q register needed for the vmovsr instruction.
+ summary->set_out(0, Location::FpuRegisterLocation(Q6));
+ return summary;
+}
+
+
+void Int32x4ConstructorInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
+ const Register v0 = locs()->in(0).reg();
+ const Register v1 = locs()->in(1).reg();
+ const Register v2 = locs()->in(2).reg();
+ const Register v3 = locs()->in(3).reg();
+ const QRegister result = locs()->out(0).fpu_reg();
+ const DRegister dresult0 = EvenDRegisterOf(result);
+ const DRegister dresult1 = OddDRegisterOf(result);
+ const SRegister sresult0 = EvenSRegisterOf(dresult0);
+ const SRegister sresult1 = OddSRegisterOf(dresult0);
+ const SRegister sresult2 = EvenSRegisterOf(dresult1);
+ const SRegister sresult3 = OddSRegisterOf(dresult1);
+ __ veorq(result, result, result);
+ __ vmovsr(sresult0, v0);
+ __ vmovsr(sresult1, v1);
+ __ vmovsr(sresult2, v2);
+ __ vmovsr(sresult3, v3);
+}
+
+
LocationSummary* Int32x4BoolConstructorInstr::MakeLocationSummary(
Isolate* isolate, bool opt) const {
const intptr_t kNumInputs = 4;

Powered by Google App Engine
This is Rietveld 408576698