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

Unified Diff: runtime/vm/intrinsifier_arm.cc

Issue 2449013004: Revert "Revert "Revert "Recognize and optimize a.runtimeType == b.runtimeType pattern.""" (Closed)
Patch Set: Created 4 years, 2 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.cc ('k') | runtime/vm/intrinsifier_arm64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/intrinsifier_arm.cc
diff --git a/runtime/vm/intrinsifier_arm.cc b/runtime/vm/intrinsifier_arm.cc
index 3be856404c594e4e6ec4d165d63dc5bb616bb32e..80756ef1d9e8080861606f69fd6f0ca94fc04480 100644
--- a/runtime/vm/intrinsifier_arm.cc
+++ b/runtime/vm/intrinsifier_arm.cc
@@ -1579,103 +1579,16 @@ void Intrinsifier::ObjectEquals(Assembler* assembler) {
}
-static void RangeCheck(Assembler* assembler,
- Register val,
- Register tmp,
- intptr_t low,
- intptr_t high,
- Condition cc,
- Label* target) {
- __ AddImmediate(tmp, val, -low);
- __ CompareImmediate(tmp, high - low);
- __ b(target, cc);
-}
-
-
-const Condition kIfNotInRange = HI;
-const Condition kIfInRange = LS;
-
-
-static void JumpIfInteger(Assembler* assembler,
- Register cid,
- Register tmp,
- Label* target) {
- RangeCheck(assembler, cid, tmp, kSmiCid, kBigintCid, kIfInRange, target);
-}
-
-
-static void JumpIfNotInteger(Assembler* assembler,
- Register cid,
- Register tmp,
- Label* target) {
- RangeCheck(assembler, cid, tmp, kSmiCid, kBigintCid, kIfNotInRange, target);
-}
-
-
-static void JumpIfString(Assembler* assembler,
- Register cid,
- Register tmp,
- Label* target) {
- RangeCheck(assembler,
- cid,
- tmp,
- kOneByteStringCid,
- kExternalTwoByteStringCid,
- kIfInRange,
- target);
-}
-
-
-static void JumpIfNotString(Assembler* assembler,
- Register cid,
- Register tmp,
- Label* target) {
- RangeCheck(assembler,
- cid,
- tmp,
- kOneByteStringCid,
- kExternalTwoByteStringCid,
- kIfNotInRange,
- target);
-}
-
-
// Return type quickly for simple types (not parameterized and not signature).
void Intrinsifier::ObjectRuntimeType(Assembler* assembler) {
- Label fall_through, use_canonical_type, not_double, not_integer;
+ Label fall_through;
__ ldr(R0, Address(SP, 0 * kWordSize));
__ LoadClassIdMayBeSmi(R1, R0);
-
__ CompareImmediate(R1, kClosureCid);
__ b(&fall_through, EQ); // Instance is a closure.
-
- __ CompareImmediate(R1, kNumPredefinedCids);
- __ b(&use_canonical_type, HI);
-
- __ CompareImmediate(R1, kDoubleCid);
- __ b(&not_double, NE);
-
- __ LoadIsolate(R0);
- __ LoadFromOffset(kWord, R0, R0, Isolate::object_store_offset());
- __ LoadFromOffset(kWord, R0, R0, ObjectStore::double_type_offset());
- __ Ret();
-
- __ Bind(&not_double);
- JumpIfNotInteger(assembler, R1, R0, &not_integer);
- __ LoadIsolate(R0);
- __ LoadFromOffset(kWord, R0, R0, Isolate::object_store_offset());
- __ LoadFromOffset(kWord, R0, R0, ObjectStore::int_type_offset());
- __ Ret();
-
- __ Bind(&not_integer);
- JumpIfNotString(assembler, R1, R0, &use_canonical_type);
- __ LoadIsolate(R0);
- __ LoadFromOffset(kWord, R0, R0, Isolate::object_store_offset());
- __ LoadFromOffset(kWord, R0, R0, ObjectStore::string_type_offset());
- __ Ret();
-
- __ Bind(&use_canonical_type);
__ LoadClassById(R2, R1);
+ // R2: class of instance (R0).
+
__ ldrh(R3, FieldAddress(R2, Class::num_type_arguments_offset()));
__ CompareImmediate(R3, 0);
__ b(&fall_through, NE);
@@ -1689,61 +1602,6 @@ void Intrinsifier::ObjectRuntimeType(Assembler* assembler) {
}
-void Intrinsifier::ObjectHaveSameRuntimeType(Assembler* assembler) {
- Label fall_through, different_cids, equal, not_equal, not_integer;
- __ ldr(R0, Address(SP, 0 * kWordSize));
- __ LoadClassIdMayBeSmi(R1, R0);
-
- // Check if left hand size is a closure. Closures are handled in the runtime.
- __ CompareImmediate(R1, kClosureCid);
- __ b(&fall_through, EQ);
-
- __ ldr(R0, Address(SP, 1 * kWordSize));
- __ LoadClassIdMayBeSmi(R2, R0);
-
- // Check whether class ids match. If class ids don't match objects can still
- // have the same runtime type (e.g. multiple string implementation classes
- // map to a single String type).
- __ cmp(R1, Operand(R2));
- __ b(&different_cids, NE);
-
- // Objects have the same class and neither is a closure.
- // Check if there are no type arguments. In this case we can return true.
- // Otherwise fall through into the runtime to handle comparison.
- __ LoadClassById(R3, R1);
- __ ldrh(R3, FieldAddress(R3, Class::num_type_arguments_offset()));
- __ CompareImmediate(R3, 0);
- __ b(&fall_through, NE);
-
- __ Bind(&equal);
- __ LoadObject(R0, Bool::True());
- __ Ret();
-
- // Class ids are different. Check if we are comparing runtime types of
- // two strings (with different representations) or two integers.
- __ Bind(&different_cids);
- __ CompareImmediate(R1, kNumPredefinedCids);
- __ b(&not_equal, HI);
-
- // Check if both are integers.
- JumpIfNotInteger(assembler, R1, R0, &not_integer);
- JumpIfInteger(assembler, R2, R0, &equal);
- __ b(&not_equal);
-
- __ Bind(&not_integer);
- // Check if both are strings.
- JumpIfNotString(assembler, R1, R0, &not_equal);
- JumpIfString(assembler, R2, R0, &equal);
-
- // Neither strings nor integers and have different class ids.
- __ Bind(&not_equal);
- __ LoadObject(R0, Bool::False());
- __ Ret();
-
- __ Bind(&fall_through);
-}
-
-
void Intrinsifier::String_getHashCode(Assembler* assembler) {
__ ldr(R0, Address(SP, 0 * kWordSize));
__ ldr(R0, FieldAddress(R0, String::hash_offset()));
« no previous file with comments | « runtime/vm/intermediate_language.cc ('k') | runtime/vm/intrinsifier_arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698