Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/coreclr/interpreter/inc/intops.def
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,16 @@ OPDEF(INTOP_LDLOCA, "ldloca", 3, 1, 0, InterpOpInt)
OPDEF(INTOP_SWITCH, "switch", 0, 0, 1, InterpOpSwitch)

OPDEF(INTOP_SAFEPOINT, "safepoint", 1, 0, 0, InterpOpNoArgs)

#ifdef PERFTRACING_DISABLE_THREADS

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some other opcodes unsupported in given config have dummy faulting implementations. Should we be consistent and have dummy faulting implementations for all cases?

OPDEF(INTOP_PROF_SAMPLEPOINT, "prof.samplepoint", 1, 0, 0, InterpOpNoArgs)
#endif

#if defined(TARGET_BROWSER) && defined(PERFTRACING_DISABLE_THREADS)
Comment thread
BrzVlad marked this conversation as resolved.
OPDEF(INTOP_PROF_ENTER, "prof.enter", 2, 0, 0, InterpOpMethodHandle)
OPDEF(INTOP_PROF_LEAVE, "prof.leave", 1, 0, 0, InterpOpNoArgs)
#endif

OPDEF(INTOP_BR, "br", 2, 0, 0, InterpOpBranch)

OPDEF(INTOP_BRFALSE_I4, "brfalse.i4", 3, 0, 1, InterpOpBranch)
Expand Down
Loading
Loading