File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
packages/react-native/ReactCommon/jsi/jsi Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -121,6 +121,9 @@ class JSI_EXPORT Instrumentation {
121
121
virtual void writeBasicBlockProfileTraceToFile (
122
122
const std::string& fileName) const = 0;
123
123
124
+ // / Write the opcode stats to the given stream.
125
+ virtual void dumpOpcodeStats (std::ostream& os) const = 0;
126
+
124
127
// / Dump external profiler symbols to the given file name.
125
128
virtual void dumpProfilerSymbolsToFile (const std::string& fileName) const = 0;
126
129
};
Original file line number Diff line number Diff line change @@ -334,6 +334,10 @@ Instrumentation& Runtime::instrumentation() {
334
334
std::abort ();
335
335
}
336
336
337
+ void dumpOpcodeStats (std::ostream& os) const override {
338
+ std::abort ();
339
+ }
340
+
337
341
void dumpProfilerSymbolsToFile (const std::string&) const override {
338
342
std::abort ();
339
343
}
You can’t perform that action at this time.
0 commit comments