hotspot/src/share/vm/opto/classes.hpp
author rasbold
Wed, 07 May 2008 08:06:46 -0700
changeset 392 0b3167e2f2de
parent 360 21d113ecbf6a
child 590 2954744d7bba
permissions -rw-r--r--
6603011: RFE: Optimize long division Summary: Transform long division by constant into multiply Reviewed-by: never, kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1997-2007 Sun Microsystems, Inc.  All Rights Reserved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
// The giant table of Node classes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
// One entry per class, sorted by class name.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
macro(AbsD)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
macro(AbsF)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
macro(AbsI)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
macro(AddD)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
macro(AddF)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
macro(AddI)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
macro(AddL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
macro(AddP)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
macro(Allocate)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
macro(AllocateArray)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
macro(AndI)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
macro(AndL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
macro(AtanD)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
macro(Binary)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
macro(Bool)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
macro(BoxLock)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
macro(ReverseBytesI)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
macro(ReverseBytesL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
macro(CProj)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
macro(CallDynamicJava)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
macro(CallJava)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
macro(CallLeaf)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
macro(CallLeafNoFP)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
macro(CallRuntime)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
macro(CallStaticJava)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
macro(CastII)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
macro(CastX2P)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
macro(CastP2X)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
macro(CastPP)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
macro(Catch)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
macro(CatchProj)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
macro(CheckCastPP)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
macro(ClearArray)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
macro(ConstraintCast)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
macro(CMoveD)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
macro(CMoveF)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
macro(CMoveI)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
macro(CMoveL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
macro(CMoveP)
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 236
diff changeset
    67
macro(CmpN)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
macro(CmpD)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
macro(CmpD3)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
macro(CmpF)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
macro(CmpF3)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
macro(CmpI)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
macro(CmpL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
macro(CmpL3)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
macro(CmpLTMask)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
macro(CmpP)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
macro(CmpU)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
macro(CompareAndSwapI)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
macro(CompareAndSwapL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
macro(CompareAndSwapP)
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 236
diff changeset
    81
macro(CompareAndSwapN)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
macro(Con)
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 236
diff changeset
    83
macro(ConN)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
macro(ConD)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
macro(ConF)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
macro(ConI)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
macro(ConL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
macro(ConP)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
macro(Conv2B)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
macro(ConvD2F)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
macro(ConvD2I)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
macro(ConvD2L)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
macro(ConvF2D)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
macro(ConvF2I)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
macro(ConvF2L)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
macro(ConvI2D)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
macro(ConvI2F)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
macro(ConvI2L)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
macro(ConvL2D)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
macro(ConvL2F)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
macro(ConvL2I)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
macro(CosD)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
macro(CountedLoop)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
macro(CountedLoopEnd)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
macro(CreateEx)
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 236
diff changeset
   106
macro(DecodeN)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
macro(DivD)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
macro(DivF)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
macro(DivI)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
macro(DivL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
macro(DivMod)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
macro(DivModI)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
macro(DivModL)
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 236
diff changeset
   114
macro(EncodeP)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
macro(ExpD)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
macro(FastLock)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
macro(FastUnlock)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
macro(Goto)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
macro(Halt)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
macro(If)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
macro(IfFalse)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
macro(IfTrue)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
macro(Initialize)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
macro(JProj)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
macro(Jump)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
macro(JumpProj)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
macro(LShiftI)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
macro(LShiftL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
macro(LoadB)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
macro(LoadC)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
macro(LoadD)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
macro(LoadD_unaligned)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
macro(LoadF)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
macro(LoadI)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
macro(LoadKlass)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
macro(LoadL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
macro(LoadL_unaligned)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
macro(LoadPLocked)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
macro(LoadLLocked)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
macro(LoadP)
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 236
diff changeset
   141
macro(LoadN)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
macro(LoadRange)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
macro(LoadS)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
macro(Lock)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
macro(LogD)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
macro(Log10D)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
macro(Loop)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
macro(Mach)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
macro(MachProj)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
macro(MaxI)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
macro(MemBarAcquire)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
macro(MemBarCPUOrder)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
macro(MemBarRelease)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
macro(MemBarVolatile)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
macro(MergeMem)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
macro(MinI)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
macro(ModD)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
macro(ModF)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
macro(ModI)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
macro(ModL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
macro(MoveI2F)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
macro(MoveF2I)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
macro(MoveL2D)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
macro(MoveD2L)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
macro(MulD)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
macro(MulF)
392
0b3167e2f2de 6603011: RFE: Optimize long division
rasbold
parents: 360
diff changeset
   167
macro(MulHiL)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
macro(MulI)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
macro(MulL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
macro(Multi)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
macro(NegD)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
macro(NegF)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
macro(NeverBranch)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
macro(Opaque1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
macro(Opaque2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
macro(OrI)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
macro(OrL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
macro(PCTable)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
macro(Parm)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
macro(PartialSubtypeCheck)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
macro(Phi)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
macro(PowD)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
macro(PrefetchRead)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
macro(PrefetchWrite)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
macro(Proj)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
macro(RShiftI)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
macro(RShiftL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
macro(Region)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
macro(Rethrow)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
macro(Return)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
macro(Root)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
macro(RoundDouble)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
macro(RoundFloat)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
macro(SafePoint)
236
9a04268c8eea 6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents: 1
diff changeset
   195
macro(SafePointScalarObject)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
macro(SCMemProj)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
macro(SinD)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
macro(SqrtD)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
macro(Start)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
macro(StartOSR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
macro(StoreB)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
macro(StoreC)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
macro(StoreCM)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
macro(StorePConditional)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
macro(StoreLConditional)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
macro(StoreD)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
macro(StoreF)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
macro(StoreI)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
macro(StoreL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
macro(StoreP)
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 236
diff changeset
   211
macro(StoreN)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
macro(StrComp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
macro(SubD)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
macro(SubF)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
macro(SubI)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
macro(SubL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
macro(TailCall)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
macro(TailJump)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
macro(TanD)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
macro(ThreadLocal)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
macro(Unlock)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
macro(URShiftI)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
macro(URShiftL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
macro(XorI)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
macro(XorL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
macro(Vector)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
macro(AddVB)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
macro(AddVC)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
macro(AddVS)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
macro(AddVI)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
macro(AddVL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
macro(AddVF)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
macro(AddVD)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
macro(SubVB)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
macro(SubVC)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
macro(SubVS)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
macro(SubVI)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
macro(SubVL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
macro(SubVF)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
macro(SubVD)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
macro(MulVF)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
macro(MulVD)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
macro(DivVF)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
macro(DivVD)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
macro(LShiftVB)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
macro(LShiftVC)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
macro(LShiftVS)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
macro(LShiftVI)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
macro(URShiftVB)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
macro(URShiftVC)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
macro(URShiftVS)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
macro(URShiftVI)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
macro(AndV)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
macro(OrV)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
macro(XorV)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
macro(VectorLoad)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
macro(Load16B)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
macro(Load8B)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
macro(Load4B)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
macro(Load8C)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
macro(Load4C)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
macro(Load2C)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
macro(Load8S)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
macro(Load4S)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
macro(Load2S)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
macro(Load4I)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
macro(Load2I)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
macro(Load2L)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
macro(Load4F)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
macro(Load2F)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
macro(Load2D)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
macro(VectorStore)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
macro(Store16B)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
macro(Store8B)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
macro(Store4B)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
macro(Store8C)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
macro(Store4C)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
macro(Store2C)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
macro(Store4I)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
macro(Store2I)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
macro(Store2L)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
macro(Store4F)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
macro(Store2F)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
macro(Store2D)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
macro(Pack)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
macro(PackB)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
macro(PackS)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
macro(PackC)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
macro(PackI)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
macro(PackL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
macro(PackF)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
macro(PackD)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
macro(Pack2x1B)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
macro(Pack2x2B)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
macro(Replicate16B)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
macro(Replicate8B)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
macro(Replicate4B)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
macro(Replicate8S)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
macro(Replicate4S)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
macro(Replicate2S)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
macro(Replicate8C)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
macro(Replicate4C)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
macro(Replicate2C)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
macro(Replicate4I)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
macro(Replicate2I)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
macro(Replicate2L)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
macro(Replicate4F)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
macro(Replicate2F)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
macro(Replicate2D)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
macro(Extract)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
macro(ExtractB)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
macro(ExtractS)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
macro(ExtractC)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
macro(ExtractI)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
macro(ExtractL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
macro(ExtractF)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
macro(ExtractD)