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

com.strobel.assembler.ir.StackBehavior Maven / Gradle / Ivy

There is a newer version: 2.5.0.Final
Show newest version
/*
 * StackBehavior.java
 *
 * Copyright (c) 2013 Mike Strobel
 *
 * This source code is based on Mono.Cecil from Jb Evain, Copyright (c) Jb Evain;
 * and ILSpy/ICSharpCode from SharpDevelop, Copyright (c) AlphaSierraPapa.
 *
 * This source code is subject to terms and conditions of the Apache License, Version 2.0.
 * A copy of the license can be found in the License.html file at the root of this distribution.
 * By using this source code in any fashion, you are agreeing to be bound by the terms of the
 * Apache License, Version 2.0.
 *
 * You must not remove this notice, or any other, from this software.
 */

package com.strobel.assembler.ir;

public enum StackBehavior {
    Pop0,
    Pop1,
    Pop2,
    Pop1_Pop1,
    Pop1_Pop2,
    Pop1_PopA,
    Pop2_Pop1,
    Pop2_Pop2,
    PopI4,
    PopI8,
    PopR4,
    PopR8,
    PopA,
    PopI4_PopI4,
    PopI4_PopI8,
    PopI8_PopI8,
    PopR4_PopR4,
    PopR8_PopR8,
    PopI4_PopA,
    PopI4_PopI4_PopA,
    PopI8_PopI4_PopA,
    PopR4_PopI4_PopA,
    PopR8_PopI4_PopA,
    PopA_PopI4_PopA,
    PopA_PopA,
    Push0,
    Push1,
    Push1_Push1,
    Push1_Push1_Push1,
    Push1_Push2_Push1,
    Push2,
    Push2_Push2,
    Push2_Push1_Push2,
    Push2_Push2_Push2,
    PushI4,
    PushI8,
    PushR4,
    PushR8,
    PushA,
    PushAddress,
    VarPop,
    VarPush,
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy