]>
Commit | Line | Data |
---|---|---|
6fe7ccc8 | 1 | /* |
ed1e77d3 | 2 | * Copyright (C) 2011, 2013-2015 Apple Inc. All rights reserved. |
6fe7ccc8 A |
3 | * |
4 | * Redistribution and use in source and binary forms, with or without | |
5 | * modification, are permitted provided that the following conditions | |
6 | * are met: | |
7 | * 1. Redistributions of source code must retain the above copyright | |
8 | * notice, this list of conditions and the following disclaimer. | |
9 | * 2. Redistributions in binary form must reproduce the above copyright | |
10 | * notice, this list of conditions and the following disclaimer in the | |
11 | * documentation and/or other materials provided with the distribution. | |
12 | * | |
13 | * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY | |
14 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
15 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | |
16 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR | |
17 | * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | |
18 | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | |
19 | * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | |
20 | * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | |
21 | * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
22 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
23 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
24 | */ | |
25 | ||
26 | #ifndef StructureSet_h | |
27 | #define StructureSet_h | |
28 | ||
93a37866 | 29 | #include "ArrayProfile.h" |
ed1e77d3 | 30 | #include "DumpContext.h" |
93a37866 | 31 | #include "SpeculatedType.h" |
6fe7ccc8 | 32 | #include "Structure.h" |
ed1e77d3 | 33 | #include <wtf/TinyPtrSet.h> |
6fe7ccc8 A |
34 | |
35 | namespace JSC { | |
36 | ||
ed1e77d3 A |
37 | class TrackedReferences; |
38 | ||
6fe7ccc8 A |
39 | namespace DFG { |
40 | class StructureAbstractValue; | |
ed1e77d3 | 41 | struct AbstractValue; |
6fe7ccc8 A |
42 | } |
43 | ||
ed1e77d3 | 44 | class StructureSet : public TinyPtrSet<Structure*> { |
6fe7ccc8 | 45 | public: |
ed1e77d3 A |
46 | // I really want to do this: |
47 | // using TinyPtrSet::TinyPtrSet; | |
48 | // | |
49 | // But I can't because Windows. | |
6fe7ccc8 | 50 | |
ed1e77d3 | 51 | StructureSet() |
93a37866 | 52 | { |
93a37866 A |
53 | } |
54 | ||
ed1e77d3 A |
55 | StructureSet(Structure* structure) |
56 | : TinyPtrSet(structure) | |
93a37866 | 57 | { |
93a37866 A |
58 | } |
59 | ||
ed1e77d3 A |
60 | ALWAYS_INLINE StructureSet(const StructureSet& other) |
61 | : TinyPtrSet(other) | |
6fe7ccc8 | 62 | { |
6fe7ccc8 A |
63 | } |
64 | ||
ed1e77d3 | 65 | Structure* onlyStructure() const |
6fe7ccc8 | 66 | { |
ed1e77d3 | 67 | return onlyEntry(); |
6fe7ccc8 A |
68 | } |
69 | ||
ed1e77d3 A |
70 | #if ENABLE(DFG_JIT) |
71 | void filter(const DFG::StructureAbstractValue&); | |
72 | void filter(SpeculatedType); | |
73 | void filterArrayModes(ArrayModes); | |
74 | void filter(const DFG::AbstractValue&); | |
75 | #endif // ENABLE(DFG_JIT) | |
81345200 | 76 | |
ed1e77d3 A |
77 | SpeculatedType speculationFromStructures() const; |
78 | ArrayModes arrayModesFromStructures() const; | |
6fe7ccc8 | 79 | |
ed1e77d3 A |
80 | void dumpInContext(PrintStream&, DumpContext*) const; |
81 | void dump(PrintStream&) const; | |
6fe7ccc8 | 82 | |
ed1e77d3 | 83 | void validateReferences(const TrackedReferences&) const; |
6fe7ccc8 A |
84 | }; |
85 | ||
86 | } // namespace JSC | |
87 | ||
88 | #endif // StructureSet_h |