< prev index next >

src/hotspot/share/opto/classes.hpp

Print this page




   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 


  25 // The giant table of Node classes.
  26 // One entry per class, sorted by class name.
  27 
  28 macro(AbsD)
  29 macro(AbsF)
  30 macro(AbsI)
  31 macro(AddD)
  32 macro(AddF)
  33 macro(AddI)
  34 macro(AddL)
  35 macro(AddP)
  36 macro(Allocate)
  37 macro(AllocateArray)
  38 macro(AndI)
  39 macro(AndL)
  40 macro(ArrayCopy)
  41 macro(AryEq)
  42 macro(AtanD)
  43 macro(Binary)
  44 macro(Bool)


 169 macro(Jump)
 170 macro(JumpProj)
 171 macro(LShiftI)
 172 macro(LShiftL)
 173 macro(LoadB)
 174 macro(LoadUB)
 175 macro(LoadUS)
 176 macro(LoadD)
 177 macro(LoadD_unaligned)
 178 macro(LoadF)
 179 macro(LoadI)
 180 macro(LoadKlass)
 181 macro(LoadNKlass)
 182 macro(LoadL)
 183 macro(LoadL_unaligned)
 184 macro(LoadPLocked)
 185 macro(LoadP)
 186 macro(LoadN)
 187 macro(LoadRange)
 188 macro(LoadS)








 189 macro(Lock)
 190 macro(Loop)
 191 macro(LoopLimit)
 192 macro(Mach)
 193 macro(MachProj)
 194 macro(MaxI)
 195 macro(MemBarAcquire)
 196 macro(LoadFence)
 197 macro(SetVectMaskI)
 198 macro(MemBarAcquireLock)
 199 macro(MemBarCPUOrder)
 200 macro(MemBarRelease)
 201 macro(StoreFence)
 202 macro(MemBarReleaseLock)
 203 macro(MemBarVolatile)
 204 macro(MemBarStoreStore)
 205 macro(MergeMem)
 206 macro(MinI)
 207 macro(ModD)
 208 macro(ModF)




   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "utilities/macros.hpp"
  26 
  27 // The giant table of Node classes.
  28 // One entry per class, sorted by class name.
  29 
  30 macro(AbsD)
  31 macro(AbsF)
  32 macro(AbsI)
  33 macro(AddD)
  34 macro(AddF)
  35 macro(AddI)
  36 macro(AddL)
  37 macro(AddP)
  38 macro(Allocate)
  39 macro(AllocateArray)
  40 macro(AndI)
  41 macro(AndL)
  42 macro(ArrayCopy)
  43 macro(AryEq)
  44 macro(AtanD)
  45 macro(Binary)
  46 macro(Bool)


 171 macro(Jump)
 172 macro(JumpProj)
 173 macro(LShiftI)
 174 macro(LShiftL)
 175 macro(LoadB)
 176 macro(LoadUB)
 177 macro(LoadUS)
 178 macro(LoadD)
 179 macro(LoadD_unaligned)
 180 macro(LoadF)
 181 macro(LoadI)
 182 macro(LoadKlass)
 183 macro(LoadNKlass)
 184 macro(LoadL)
 185 macro(LoadL_unaligned)
 186 macro(LoadPLocked)
 187 macro(LoadP)
 188 macro(LoadN)
 189 macro(LoadRange)
 190 macro(LoadS)
 191 #if INCLUDE_ZGC
 192 #define zgcmacro(x) macro(x)
 193 #else
 194 #define zgcmacro(x) optionalmacro(x)
 195 #endif
 196 zgcmacro(LoadBarrier)
 197 zgcmacro(LoadBarrierSlowReg)
 198 zgcmacro(LoadBarrierWeakSlowReg)
 199 macro(Lock)
 200 macro(Loop)
 201 macro(LoopLimit)
 202 macro(Mach)
 203 macro(MachProj)
 204 macro(MaxI)
 205 macro(MemBarAcquire)
 206 macro(LoadFence)
 207 macro(SetVectMaskI)
 208 macro(MemBarAcquireLock)
 209 macro(MemBarCPUOrder)
 210 macro(MemBarRelease)
 211 macro(StoreFence)
 212 macro(MemBarReleaseLock)
 213 macro(MemBarVolatile)
 214 macro(MemBarStoreStore)
 215 macro(MergeMem)
 216 macro(MinI)
 217 macro(ModD)
 218 macro(ModF)


< prev index next >