fixups for altered instruction names

This commit is contained in:
Vern Paxson 2024-05-31 10:52:13 -07:00
parent 5658af518a
commit c1a7eb39c8
11 changed files with 169 additions and 167 deletions

View file

@ -214,7 +214,7 @@ public:
// True if this instruction always branches elsewhere. Different
// from DoesNotContinue() in that returns & hook breaks do not
// continue, but they are not branches.
bool IsUnconditionalBranch() const { return op == OP_GOTO_V; }
bool IsUnconditionalBranch() const { return op == OP_GOTO_i; }
// True if this instruction is of the form "v1 = v2".
bool IsDirectAssignment() const;
@ -254,7 +254,7 @@ public:
bool IsLoad() const { return op_type == OP_VV_FRAME || IsNonLocalLoad(); }
// True if the instruction corresponds to storing a global.
bool IsGlobalStore() const { return op == OP_STORE_GLOBAL_V; }
bool IsGlobalStore() const { return op == OP_STORE_GLOBAL_i; }
void CheckIfManaged(const TypePtr& t) {
if ( ZVal::IsManagedType(t) )