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

Side by Side Diff: runtime/vm/type_table.h

Issue 1965493004: Canonicalize generic types in an isolate specific hash table (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: address-merge-conflicts Created 4 years, 7 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 unified diff | Download patch
« no previous file with comments | « runtime/vm/service.cc ('k') | runtime/vm/vm_sources.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 #ifndef VM_TYPE_TABLE_H_
6 #define VM_TYPE_TABLE_H_
7
8 #include "platform/assert.h"
9 #include "vm/hash_table.h"
10 #include "vm/object.h"
11
12 namespace dart {
13
14 class CanonicalTypeKey {
15 public:
16 explicit CanonicalTypeKey(const Type& key) : key_(key) {
17 }
18 bool Matches(const Type& arg) const {
19 return key_.Equals(arg);
20 }
21 uword Hash() const {
22 return key_.Hash();
23 }
24 const Type& key_;
25
26 private:
27 DISALLOW_ALLOCATION();
28 };
29
30
31 // Traits for looking up Canonical Type based on it's hash.
32 class CanonicalTypeTraits {
33 public:
34 static const char* Name() { return "CanonicalTypeTraits"; }
35 static bool ReportStats() { return false; }
36
37 // Called when growing the table.
38 static bool IsMatch(const Object& a, const Object& b) {
39 ASSERT(a.IsType() && b.IsType());
40 const Type& arg1 = Type::Cast(a);
41 const Type& arg2 = Type::Cast(b);
42 return arg1.Equals(arg2) && (arg1.Hash() == arg2.Hash());
43 }
44 static bool IsMatch(const CanonicalTypeKey& a, const Object& b) {
45 ASSERT(b.IsType());
46 return a.Matches(Type::Cast(b));
47 }
48 static uword Hash(const Object& key) {
49 ASSERT(key.IsType());
50 return Type::Cast(key).Hash();
51 }
52 static uword Hash(const CanonicalTypeKey& key) {
53 return key.Hash();
54 }
55 static RawObject* NewKey(const CanonicalTypeKey& obj) {
56 return obj.key_.raw();
57 }
58 };
59 typedef UnorderedHashSet <CanonicalTypeTraits> CanonicalTypeSet;
60
61
62 class CanonicalTypeArgumentsKey {
63 public:
64 explicit CanonicalTypeArgumentsKey(const TypeArguments& key) : key_(key) {
65 }
66 bool Matches(const TypeArguments& arg) const {
67 return key_.Equals(arg) && (key_.Hash() == arg.Hash());
68 }
69 uword Hash() const {
70 return key_.Hash();
71 }
72 const TypeArguments& key_;
73
74 private:
75 DISALLOW_ALLOCATION();
76 };
77
78
79 // Traits for looking up Canonical TypeArguments based on its hash.
80 class CanonicalTypeArgumentsTraits {
81 public:
82 static const char* Name() { return "CanonicalTypeArgumentsTraits"; }
83 static bool ReportStats() { return false; }
84
85 // Called when growing the table.
86 static bool IsMatch(const Object& a, const Object& b) {
87 ASSERT(a.IsTypeArguments() && b.IsTypeArguments());
88 const TypeArguments& arg1 = TypeArguments::Cast(a);
89 const TypeArguments& arg2 = TypeArguments::Cast(b);
90 return arg1.Equals(arg2) && (arg1.Hash() == arg2.Hash());
91 }
92 static bool IsMatch(const CanonicalTypeArgumentsKey& a, const Object& b) {
93 ASSERT(b.IsTypeArguments());
94 return a.Matches(TypeArguments::Cast(b));
95 }
96 static uword Hash(const Object& key) {
97 ASSERT(key.IsTypeArguments());
98 return TypeArguments::Cast(key).Hash();
99 }
100 static uword Hash(const CanonicalTypeArgumentsKey& key) {
101 return key.Hash();
102 }
103 static RawObject* NewKey(const CanonicalTypeArgumentsKey& obj) {
104 return obj.key_.raw();
105 }
106 };
107 typedef UnorderedHashSet<CanonicalTypeArgumentsTraits>
108 CanonicalTypeArgumentsSet;
109
110 } // namespace dart
111
112 #endif // VM_TYPE_TABLE_H_
OLDNEW
« no previous file with comments | « runtime/vm/service.cc ('k') | runtime/vm/vm_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698