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

Unified Diff: runtime/vm/stub_code_arm64.cc

Issue 2658603002: Revert "Optimizations to IC stub for unoptimized code performance on x64." (Closed)
Patch Set: Created 3 years, 11 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/stub_code_arm.cc ('k') | runtime/vm/stub_code_ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/stub_code_arm64.cc
diff --git a/runtime/vm/stub_code_arm64.cc b/runtime/vm/stub_code_arm64.cc
index 2c4e4ac7b76c0ca4899420913bbbd252fa4d2a71..4b852a7ba0976a0b77b97fbabfb80a524acaf577 100644
--- a/runtime/vm/stub_code_arm64.cc
+++ b/runtime/vm/stub_code_arm64.cc
@@ -1380,9 +1380,11 @@ static void EmitFastSmiOp(Assembler* assembler,
#endif
if (FLAG_optimization_counter_threshold >= 0) {
const intptr_t count_offset = ICData::CountIndexFor(num_args) * kWordSize;
- // Update counter, ignore overflow.
+ // Update counter.
__ LoadFromOffset(R1, R6, count_offset);
__ adds(R1, R1, Operand(Smi::RawValue(1)));
+ __ LoadImmediate(R2, Smi::RawValue(Smi::kMaxValue));
+ __ csel(R1, R2, R1, VS); // Overflow.
__ StoreToOffset(R1, R6, count_offset);
}
@@ -1406,7 +1408,7 @@ void StubCode::GenerateNArgsCheckInlineCacheStub(
const RuntimeEntry& handle_ic_miss,
Token::Kind kind,
bool optimized) {
- ASSERT(num_args == 1 || num_args == 2);
+ ASSERT(num_args > 0);
#if defined(DEBUG)
{
Label ok;
@@ -1443,7 +1445,7 @@ void StubCode::GenerateNArgsCheckInlineCacheStub(
// Load arguments descriptor into R4.
__ LoadFieldFromOffset(R4, R5, ICData::arguments_descriptor_offset());
// Loop that checks if there is an IC data match.
- Label loop, found, miss;
+ Label loop, update, test, found;
// R5: IC data object (preserved).
__ LoadFieldFromOffset(R6, R5, ICData::ic_data_offset());
// R6: ic_data_array with check entries: classes and target functions.
@@ -1460,45 +1462,47 @@ void StubCode::GenerateNArgsCheckInlineCacheStub(
__ ldr(R0, Address(SP, R7, UXTX, Address::Scaled));
__ LoadTaggedClassIdMayBeSmi(R0, R0);
- if (num_args == 2) {
- __ AddImmediate(R1, R7, -1);
- // R1 <- [SP + (R1 << 3)]
- __ ldr(R1, Address(SP, R1, UXTX, Address::Scaled));
- __ LoadTaggedClassIdMayBeSmi(R1, R1);
- }
-
- // We unroll the generic one that is generated once more than the others.
- bool optimize = kind == Token::kILLEGAL;
+ // R7: argument_count - 1 (untagged).
+ // R0: receiver's class ID (smi).
+ __ ldr(R1, Address(R6)); // First class id (smi) to check.
+ __ b(&test);
__ Comment("ICData loop");
__ Bind(&loop);
- for (int unroll = optimize ? 4 : 2; unroll >= 0; unroll--) {
- Label update;
-
- __ LoadFromOffset(R2, R6, 0);
- __ CompareRegisters(R0, R2); // Class id match?
- if (num_args == 2) {
- __ b(&update, NE); // Continue.
- __ LoadFromOffset(R2, R6, kWordSize);
- __ CompareRegisters(R1, R2); // Class id match?
+ for (int i = 0; i < num_args; i++) {
+ if (i > 0) {
+ // If not the first, load the next argument's class ID.
+ __ AddImmediate(R0, R7, -i);
+ // R0 <- [SP + (R0 << 3)]
+ __ ldr(R0, Address(SP, R0, UXTX, Address::Scaled));
+ __ LoadTaggedClassIdMayBeSmi(R0, R0);
+ // R0: next argument class ID (smi).
+ __ LoadFromOffset(R1, R6, i * kWordSize);
+ // R1: next class ID to check (smi).
}
- __ b(&found, EQ); // Break.
-
- __ Bind(&update);
-
- const intptr_t entry_size =
- ICData::TestEntryLengthFor(num_args) * kWordSize;
- __ AddImmediate(R6, R6, entry_size); // Next entry.
-
- __ CompareImmediate(R2, Smi::RawValue(kIllegalCid)); // Done?
- if (unroll == 0) {
- __ b(&loop, NE);
+ __ CompareRegisters(R0, R1); // Class id match?
+ if (i < (num_args - 1)) {
+ __ b(&update, NE); // Continue.
} else {
- __ b(&miss, EQ);
+ // Last check, all checks before matched.
+ __ b(&found, EQ); // Break.
}
}
+ __ Bind(&update);
+ // Reload receiver class ID. It has not been destroyed when num_args == 1.
+ if (num_args > 1) {
+ __ ldr(R0, Address(SP, R7, UXTX, Address::Scaled));
+ __ LoadTaggedClassIdMayBeSmi(R0, R0);
+ }
+
+ const intptr_t entry_size = ICData::TestEntryLengthFor(num_args) * kWordSize;
+ __ AddImmediate(R6, R6, entry_size); // Next entry.
+ __ ldr(R1, Address(R6)); // Next class ID.
+
+ __ Bind(&test);
+ __ CompareImmediate(R1, Smi::RawValue(kIllegalCid)); // Done?
+ __ b(&loop, NE);
- __ Bind(&miss);
__ Comment("IC miss");
// Compute address of arguments.
// R7: argument_count - 1 (untagged).
@@ -1546,9 +1550,11 @@ void StubCode::GenerateNArgsCheckInlineCacheStub(
__ LoadFromOffset(R0, R6, target_offset);
if (FLAG_optimization_counter_threshold >= 0) {
- // Update counter, ignore overflow.
+ // Update counter.
__ LoadFromOffset(R1, R6, count_offset);
__ adds(R1, R1, Operand(Smi::RawValue(1)));
+ __ LoadImmediate(R2, Smi::RawValue(Smi::kMaxValue));
+ __ csel(R1, R2, R1, VS); // Overflow.
__ StoreToOffset(R1, R6, count_offset);
}
@@ -1673,9 +1679,11 @@ void StubCode::GenerateZeroArgsUnoptimizedStaticCallStub(Assembler* assembler) {
const intptr_t count_offset = ICData::CountIndexFor(0) * kWordSize;
if (FLAG_optimization_counter_threshold >= 0) {
- // Increment count for this call, ignore overflow.
+ // Increment count for this call.
__ LoadFromOffset(R1, R6, count_offset);
__ adds(R1, R1, Operand(Smi::RawValue(1)));
+ __ LoadImmediate(R2, Smi::RawValue(Smi::kMaxValue));
+ __ csel(R1, R2, R1, VS); // Overflow.
__ StoreToOffset(R1, R6, count_offset);
}
« no previous file with comments | « runtime/vm/stub_code_arm.cc ('k') | runtime/vm/stub_code_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698