Skip to content

Commit

Permalink
- Updates (#1226)
Browse files Browse the repository at this point in the history
  • Loading branch information
tgiphil committed May 4, 2024
1 parent af50750 commit 1ddbccd
Show file tree
Hide file tree
Showing 12 changed files with 36 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ public override bool Match(Context context, Transform transform)
if (!context.Operand1.IsDefinedOnce)
return false;

if (context.Operand1.IsPhysicalRegister)
return false;

return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ public override bool Match(Context context, Transform transform)
if (!context.Operand1.IsDefinedOnce)
return false;

if (context.Operand1.IsPhysicalRegister)
return false;

return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ public override bool Match(Context context, Transform transform)
if (!context.Operand1.IsDefinedOnce)
return false;

if (context.Operand1.IsPhysicalRegister)
return false;

return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ public override bool Match(Context context, Transform transform)
if (!context.Operand1.IsDefinedOnce)
return false;

if (context.Operand1.IsPhysicalRegister)
return false;

return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ public override bool Match(Context context, Transform transform)
if (!context.Operand1.IsDefinedOnce)
return false;

if (context.Operand1.IsPhysicalRegister)
return false;

return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ public override bool Match(Context context, Transform transform)
if (!context.Operand1.IsDefinedOnce)
return false;

if (context.Operand1.IsPhysicalRegister)
return false;

return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ public override bool Match(Context context, Transform transform)
if (context.OperandCount == 1)
return true;

if (context.Operand1.IsPhysicalRegister)
return false;

var operand = context.Operand1;

foreach (var op in context.Operands)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ public override bool Match(Context context, Transform transform)
if (context.OperandCount == 1)
return true;

if (context.Operand1.IsPhysicalRegister)
return false;

var operand = context.Operand1;

foreach (var op in context.Operands)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ public override bool Match(Context context, Transform transform)
if (context.OperandCount == 1)
return true;

if (context.Operand1.IsPhysicalRegister)
return false;

var operand = context.Operand1;

foreach (var op in context.Operands)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ public override bool Match(Context context, Transform transform)
if (context.OperandCount == 1)
return true;

if (context.Operand1.IsPhysicalRegister)
return false;

var operand = context.Operand1;

foreach (var op in context.Operands)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ public override bool Match(Context context, Transform transform)
if (context.OperandCount == 1)
return true;

if (context.Operand1.IsPhysicalRegister)
return false;

var operand = context.Operand1;

foreach (var op in context.Operands)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ public override bool Match(Context context, Transform transform)
if (context.OperandCount == 1)
return true;

if (context.Operand1.IsPhysicalRegister)
return false;

var operand = context.Operand1;

foreach (var op in context.Operands)
Expand Down

0 comments on commit 1ddbccd

Please sign in to comment.