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

Unified Diff: runtime/vm/intermediate_language_mips.cc

Issue 612553002: Make LoadIndexedInstr for Uint32List use kUnboxedUint32 representation (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/intermediate_language_ia32.cc ('k') | runtime/vm/intermediate_language_x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/intermediate_language_mips.cc
diff --git a/runtime/vm/intermediate_language_mips.cc b/runtime/vm/intermediate_language_mips.cc
index d38ebaa33be0d323c78b1b6b33fd644f32ef909f..7da7e1630572a463dd13354b9743b88618056e8a 100644
--- a/runtime/vm/intermediate_language_mips.cc
+++ b/runtime/vm/intermediate_language_mips.cc
@@ -1084,8 +1084,7 @@ CompileType LoadIndexedInstr::ComputeType() const {
case kTypedDataInt32ArrayCid:
case kTypedDataUint32ArrayCid:
- return Typed32BitIsSmi() ? CompileType::FromCid(kSmiCid)
- : CompileType::FromCid(kMintCid);
+ return CompileType::Int();
default:
UNIMPLEMENTED();
@@ -1109,8 +1108,9 @@ Representation LoadIndexedInstr::representation() const {
case kTwoByteStringCid:
return kTagged;
case kTypedDataInt32ArrayCid:
+ return kUnboxedInt32;
case kTypedDataUint32ArrayCid:
- return Typed32BitIsSmi() ? kTagged : kUnboxedMint;
+ return kUnboxedUint32;
case kTypedDataFloat32ArrayCid:
case kTypedDataFloat64ArrayCid:
return kUnboxedDouble;
@@ -1180,17 +1180,10 @@ void LoadIndexedInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
// Warning: element_address may use register TMP as base.
if ((representation() == kUnboxedDouble) ||
- (representation() == kUnboxedMint) ||
(representation() == kUnboxedFloat32x4) ||
(representation() == kUnboxedInt32x4)) {
DRegister result = locs()->out(0).fpu_reg();
switch (class_id()) {
- case kTypedDataInt32ArrayCid:
- UNIMPLEMENTED();
- break;
- case kTypedDataUint32ArrayCid:
- UNIMPLEMENTED();
- break;
case kTypedDataFloat32ArrayCid:
// Load single precision float.
__ lwc1(EvenFRegisterOf(result), element_address);
@@ -1207,6 +1200,26 @@ void LoadIndexedInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
return;
}
+ if ((representation() == kUnboxedUint32) ||
+ (representation() == kUnboxedInt32)) {
+ const Register result = locs()->out(0).reg();
+ switch (class_id()) {
+ case kTypedDataInt32ArrayCid:
+ ASSERT(representation() == kUnboxedUint32);
+ __ lw(result, element_address);
+ break;
+ case kTypedDataUint32ArrayCid:
+ ASSERT(representation() == kUnboxedInt32);
+ __ lw(result, element_address);
+ break;
+ default:
+ UNREACHABLE();
+ }
+ return;
+ }
+
+ ASSERT(representation() == kTagged);
+
const Register result = locs()->out(0).reg();
switch (class_id()) {
case kTypedDataInt8ArrayCid:
@@ -1232,26 +1245,6 @@ void LoadIndexedInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
__ lhu(result, element_address);
__ SmiTag(result);
break;
- case kTypedDataInt32ArrayCid: {
- Label* deopt = compiler->AddDeoptStub(deopt_id(),
- ICData::kDeoptInt32Load);
- __ lw(result, element_address);
- // Verify that the signed value in 'result' can fit inside a Smi.
- __ BranchSignedLess(result, 0xC0000000, deopt);
- __ SmiTag(result);
- }
- break;
- case kTypedDataUint32ArrayCid: {
- Label* deopt = compiler->AddDeoptStub(deopt_id(),
- ICData::kDeoptUint32Load);
- __ lw(result, element_address);
- // Verify that the unsigned value in 'result' can fit inside a Smi.
- __ LoadImmediate(TMP, 0xC0000000);
- __ and_(CMPRES1, result, TMP);
- __ bne(CMPRES1, ZR, deopt);
- __ SmiTag(result);
- }
- break;
default:
ASSERT((class_id() == kArrayCid) || (class_id() == kImmutableArrayCid));
__ lw(result, element_address);
« no previous file with comments | « runtime/vm/intermediate_language_ia32.cc ('k') | runtime/vm/intermediate_language_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698