Path: blob/master/runtime/compiler/ilgen/J9ByteCode.hpp
6000 views
/*******************************************************************************1* Copyright (c) 2000, 2022 IBM Corp. and others2*3* This program and the accompanying materials are made available under4* the terms of the Eclipse Public License 2.0 which accompanies this5* distribution and is available at https://www.eclipse.org/legal/epl-2.0/6* or the Apache License, Version 2.0 which accompanies this distribution and7* is available at https://www.apache.org/licenses/LICENSE-2.0.8*9* This Source Code may also be made available under the following10* Secondary Licenses when the conditions for such availability set11* forth in the Eclipse Public License, v. 2.0 are satisfied: GNU12* General Public License, version 2 with the GNU Classpath13* Exception [1] and GNU General Public License, version 2 with the14* OpenJDK Assembly Exception [2].15*16* [1] https://www.gnu.org/software/classpath/license.html17* [2] http://openjdk.java.net/legal/assembly-exception.html18*19* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception20*******************************************************************************/2122#ifndef J9BYTECODEENUMS_INCL23#define J9BYTECODEENUMS_INCL242526enum TR_J9ByteCode27{28J9BCnop,29J9BCaconstnull,30J9BCiconstm1,31J9BCiconst0, J9BCiconst1, J9BCiconst2, J9BCiconst3, J9BCiconst4, J9BCiconst5,32J9BClconst0, J9BClconst1,33J9BCfconst0, J9BCfconst1, J9BCfconst2,34J9BCdconst0, J9BCdconst1,35J9BCbipush, J9BCsipush,36J9BCldc, J9BCldcw, J9BCldc2lw, J9BCldc2dw,37J9BCiload, J9BClload, J9BCfload, J9BCdload, J9BCaload,38J9BCiload0, J9BCiload1, J9BCiload2, J9BCiload3,39J9BClload0, J9BClload1, J9BClload2, J9BClload3,40J9BCfload0, J9BCfload1, J9BCfload2, J9BCfload3,41J9BCdload0, J9BCdload1, J9BCdload2, J9BCdload3,42J9BCaload0, J9BCaload1, J9BCaload2, J9BCaload3,43J9BCiaload, J9BClaload, J9BCfaload, J9BCdaload, J9BCaaload, J9BCbaload, J9BCcaload, J9BCsaload,44J9BCiloadw, J9BClloadw, J9BCfloadw, J9BCdloadw, J9BCaloadw,45J9BCistore, J9BClstore, J9BCfstore, J9BCdstore, J9BCastore,46J9BCistorew, J9BClstorew, J9BCfstorew, J9BCdstorew, J9BCastorew,47J9BCistore0, J9BCistore1, J9BCistore2, J9BCistore3,48J9BClstore0, J9BClstore1, J9BClstore2, J9BClstore3,49J9BCfstore0, J9BCfstore1, J9BCfstore2, J9BCfstore3,50J9BCdstore0, J9BCdstore1, J9BCdstore2, J9BCdstore3,51J9BCastore0, J9BCastore1, J9BCastore2, J9BCastore3,52J9BCiastore, J9BClastore, J9BCfastore, J9BCdastore, J9BCaastore, J9BCbastore, J9BCcastore, J9BCsastore,53J9BCpop, J9BCpop2,54J9BCdup, J9BCdupx1, J9BCdupx2, J9BCdup2, J9BCdup2x1, J9BCdup2x2,55J9BCswap,56J9BCiadd, J9BCladd, J9BCfadd, J9BCdadd,57J9BCisub, J9BClsub, J9BCfsub, J9BCdsub,58J9BCimul, J9BClmul, J9BCfmul, J9BCdmul,59J9BCidiv, J9BCldiv, J9BCfdiv, J9BCddiv,60J9BCirem, J9BClrem, J9BCfrem, J9BCdrem,61J9BCineg, J9BClneg, J9BCfneg, J9BCdneg,62J9BCishl, J9BClshl, J9BCishr, J9BClshr, J9BCiushr, J9BClushr,63J9BCiand, J9BCland,64J9BCior, J9BClor,65J9BCixor, J9BClxor,66J9BCiinc, J9BCiincw,67J9BCi2l, J9BCi2f, J9BCi2d,68J9BCl2i, J9BCl2f, J9BCl2d, J9BCf2i, J9BCf2l, J9BCf2d,69J9BCd2i, J9BCd2l, J9BCd2f,70J9BCi2b, J9BCi2c, J9BCi2s,71J9BClcmp, J9BCfcmpl, J9BCfcmpg, J9BCdcmpl, J9BCdcmpg,72J9BCifeq, J9BCifne, J9BCiflt, J9BCifge, J9BCifgt, J9BCifle,73J9BCificmpeq, J9BCificmpne, J9BCificmplt, J9BCificmpge, J9BCificmpgt, J9BCificmple, J9BCifacmpeq, J9BCifacmpne,74J9BCifnull, J9BCifnonnull,75J9BCgoto,76J9BCgotow,77J9BCtableswitch, J9BClookupswitch,78J9BCgenericReturn,79J9BCgetstatic, J9BCputstatic,80J9BCgetfield, J9BCputfield,81J9BCinvokevirtual, J9BCinvokespecial, J9BCinvokestatic, J9BCinvokeinterface, J9BCinvokedynamic, J9BCinvokehandle, J9BCinvokehandlegeneric,J9BCinvokespecialsplit,8283/** \brief84* Pops 1 int32_t argument off the stack and truncates to a uint16_t.85*/86J9BCReturnC,8788/** \brief89* Pops 1 int32_t argument off the stack and truncates to a int16_t.90*/91J9BCReturnS,9293/** \brief94* Pops 1 int32_t argument off the stack and truncates to a int8_t.95*/96J9BCReturnB,9798/** \brief99* Pops 1 int32_t argument off the stack returns the single lowest order bit.100*/101J9BCReturnZ,102103J9BCinvokestaticsplit, J9BCinvokeinterface2,104J9BCnew, J9BCnewarray, J9BCanewarray, J9BCmultianewarray,105J9BCarraylength,106J9BCathrow,107J9BCcheckcast,108J9BCinstanceof,109J9BCmonitorenter, J9BCmonitorexit,110J9BCwide,111J9BCasyncCheck,112J9BCaconst_init,113J9BCwithfield,114J9BCbreakpoint,115J9BCunknown116};117118#endif119120121