All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ibm.wala.shrike.shrikeBT.MonitorInstruction Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2002,2006 IBM Corporation.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 */
package com.ibm.wala.shrike.shrikeBT;

/** This class represents monitorenter and monitorexit instructions. */
public final class MonitorInstruction extends Instruction {
  private MonitorInstruction(short opcode) {
    super(opcode);
  }

  private static final MonitorInstruction enter = new MonitorInstruction(OP_monitorenter);

  private static final MonitorInstruction exit = new MonitorInstruction(OP_monitorexit);

  public static MonitorInstruction make(boolean entering) {
    return entering ? enter : exit;
  }

  @Override
  public boolean equals(Object o) {
    if (o instanceof MonitorInstruction) {
      MonitorInstruction i = (MonitorInstruction) o;
      return i.opcode == opcode;
    } else {
      return false;
    }
  }

  public boolean isEnter() {
    return opcode == OP_monitorenter;
  }

  @Override
  public int hashCode() {
    return opcode + 1911;
  }

  @Override
  public int getPoppedCount() {
    return 1;
  }

  @Override
  public void visit(IInstruction.Visitor v) throws IllegalArgumentException {
    if (v == null) {
      throw new IllegalArgumentException();
    }
    v.visitMonitor(this);
  }

  @Override
  public String toString() {
    return "Monitor(" + (isEnter() ? "ENTER" : "EXIT") + ')';
  }

  @Override
  public boolean isPEI() {
    return true;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy