mirror of
https://github.com/zeek/zeek.git
synced 2025-10-16 05:28:20 +00:00
fixups for altered instruction names
This commit is contained in:
parent
5658af518a
commit
c1a7eb39c8
11 changed files with 169 additions and 167 deletions
|
@ -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) )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue