| Index: runtime/vm/object.h
|
| ===================================================================
|
| --- runtime/vm/object.h (revision 6245)
|
| +++ runtime/vm/object.h (working copy)
|
| @@ -1983,6 +1983,7 @@
|
| kIcCall, // IC call.
|
| kFuncCall, // Call to known target, e.g. static call, closure call.
|
| kReturn, // Return from function.
|
| + kTypeTest, // Array caching previous type tests.
|
| kOther
|
| };
|
|
|
| @@ -2239,6 +2240,7 @@
|
| uword GetPatchCodePc() const;
|
|
|
| uword GetDeoptPcAtNodeId(intptr_t node_id) const;
|
| + uword GetTypeTestAtNodeId(intptr_t node_id) const;
|
|
|
| // Returns true if there is an object in the code between 'start_offset'
|
| // (inclusive) and 'end_offset' (exclusive).
|
|
|