1eaaca642d
This reverts commit 33a757284b.
Reason for revert: This CL seems to depend on
@pragma('vm:never-inline')`
@pragma('vm:prefer-inline')`
being implemented which has been reverted.
Original change's description:
> [vm/compiler] Use pragmas instead of separately-maintained lists for inlining.
>
> This closes https://github.com/dart-lang/sdk/issues/36571.
>
> Change-Id: I4d77192f2c33dd4872d58ef07ccd32069b8b63df
> Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/99154
> Commit-Queue: Teagan Strickland <sstrickl@google.com>
> Reviewed-by: Martin Kustermann <kustermann@google.com>
TBR=kustermann@google.com,sstrickl@google.com
Change-Id: Ied0686ad282f2ed772ff9adbc551f64ba8855aff
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/109340
Reviewed-by: Siva Annamalai <asiva@google.com>
Commit-Queue: Siva Annamalai <asiva@google.com>
75 lines
2.6 KiB
Dart
75 lines
2.6 KiB
Dart
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
// part of "core_patch.dart";
|
|
|
|
@pragma("vm:exact-result-type", "dart:core#_Smi")
|
|
int _getHash(obj) native "Object_getHash";
|
|
void _setHash(obj, hash) native "Object_setHash";
|
|
|
|
@patch
|
|
@pragma("vm:entry-point")
|
|
class Object {
|
|
// The VM has its own implementation of equals.
|
|
@patch
|
|
@pragma("vm:exact-result-type", bool)
|
|
bool operator ==(other) native "Object_equals";
|
|
|
|
// Helpers used to implement hashCode. If a hashCode is used, we remember it
|
|
// in a weak table in the VM (32 bit) or in the header of the object (64
|
|
// bit). A new hashCode value is calculated using a random number generator.
|
|
static final _hashCodeRnd = new Random();
|
|
|
|
static int _objectHashCode(obj) {
|
|
var result = _getHash(obj);
|
|
if (result == 0) {
|
|
// We want the hash to be a Smi value greater than 0.
|
|
result = _hashCodeRnd.nextInt(0x40000000);
|
|
do {
|
|
result = _hashCodeRnd.nextInt(0x40000000);
|
|
} while (result == 0);
|
|
_setHash(obj, result);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
@patch
|
|
int get hashCode => _objectHashCode(this);
|
|
int get _identityHashCode => _objectHashCode(this);
|
|
|
|
@patch
|
|
String toString() native "Object_toString";
|
|
// A statically dispatched version of Object.toString.
|
|
static String _toString(obj) native "Object_toString";
|
|
|
|
@patch
|
|
@pragma("vm:entry-point", "call")
|
|
dynamic noSuchMethod(Invocation invocation) {
|
|
// TODO(regis): Remove temp constructor identifier 'withInvocation'.
|
|
throw new NoSuchMethodError.withInvocation(this, invocation);
|
|
}
|
|
|
|
@patch
|
|
@pragma("vm:exact-result-type", "dart:core#_Type")
|
|
Type get runtimeType native "Object_runtimeType";
|
|
|
|
@pragma("vm:entry-point", "call")
|
|
@pragma("vm:exact-result-type", bool)
|
|
static bool _haveSameRuntimeType(a, b) native "Object_haveSameRuntimeType";
|
|
|
|
// Call this function instead of inlining instanceof, thus collecting
|
|
// type feedback and reducing code size of unoptimized code.
|
|
@pragma("vm:entry-point", "call")
|
|
bool _instanceOf(instantiatorTypeArguments, functionTypeArguments, type)
|
|
native "Object_instanceOf";
|
|
|
|
// Group of functions for implementing fast simple instance of.
|
|
@pragma("vm:entry-point", "call")
|
|
bool _simpleInstanceOf(type) native "Object_simpleInstanceOf";
|
|
@pragma("vm:entry-point", "call")
|
|
bool _simpleInstanceOfTrue(type) => true;
|
|
@pragma("vm:entry-point", "call")
|
|
bool _simpleInstanceOfFalse(type) => false;
|
|
}
|