| Index: runtime/vm/tags.h
|
| diff --git a/runtime/vm/tags.h b/runtime/vm/tags.h
|
| index e0077cbe025e00a04a29337714322266d3f0cda5..b293663842cbd81baa1a185ae592f30592d60778 100644
|
| --- a/runtime/vm/tags.h
|
| +++ b/runtime/vm/tags.h
|
| @@ -22,6 +22,9 @@ class RuntimeEntry;
|
| V(CompileClass) \
|
| V(CompileTopLevel) \
|
| V(CompileScanner) \
|
| + V(CompileParseFunction) \
|
| + V(CompileParseRegExp) \
|
| + V(CompileFlowGraphBuilder) \
|
| V(Dart) \
|
| V(GCNewSpace) \
|
| V(GCOldSpace) \
|
| @@ -65,7 +68,7 @@ class VMTag : public AllStatic {
|
|
|
| class VMTagScope : StackResource {
|
| public:
|
| - VMTagScope(Isolate* isolate, uword tag);
|
| + VMTagScope(Isolate* isolate, uword tag, bool conditional_set = true);
|
| ~VMTagScope();
|
| private:
|
| uword previous_tag_;
|
|
|