| Index: runtime/vm/object.h
|
| ===================================================================
|
| --- runtime/vm/object.h (revision 37378)
|
| +++ runtime/vm/object.h (working copy)
|
| @@ -1997,7 +1997,8 @@
|
| // Works with map [deopt-id] -> ICData.
|
| void SaveICDataMap(
|
| const ZoneGrowableArray<const ICData*>& deopt_id_to_ic_data) const;
|
| - RawArray* RestoreICDataMap() const;
|
| + void RestoreICDataMap(
|
| + ZoneGrowableArray<const ICData*>* deopt_id_to_ic_data) const;
|
|
|
| RawArray* ic_data_array() const;
|
| void ClearICData() const;
|
| @@ -3682,15 +3683,6 @@
|
| // (inclusive) and 'end_offset' (exclusive).
|
| bool ObjectExistsInArea(intptr_t start_offest, intptr_t end_offset) const;
|
|
|
| - // Each (*node_ids)[n] has a an extracted ic data array (*arrays)[n].
|
| - // Returns the maximum id found.
|
| - intptr_t ExtractIcDataArraysAtCalls(
|
| - GrowableArray<intptr_t>* node_ids,
|
| - const GrowableObjectArray& ic_data_objs) const;
|
| -
|
| - // Returns an array indexed by deopt id, containing the extracted ICData.
|
| - RawArray* ExtractTypeFeedbackArray() const;
|
| -
|
| RawString* Name() const;
|
| RawString* PrettyName() const;
|
|
|
|
|