IDA C++ SDK 9.2
Loading...
Searching...
No Matches
allins.hpp
Go to the documentation of this file.
1/*
2 * Interactive disassembler (IDA).
3 * Copyright (c) 1990-2025 Hex-Rays
4 * ALL RIGHTS RESERVED.
5 *
6 */
7
8
9
10enum
11{
12NN_null = 0, // Unknown Operation
13NN_aaa, // ASCII Adjust after Addition
14NN_aad, // ASCII Adjust AX before Division
15NN_aam, // ASCII Adjust AX after Multiply
16NN_aas, // ASCII Adjust AL after Subtraction
17NN_adc, // Add with Carry
18NN_add, // Add
19NN_and, // Logical AND
20NN_arpl, // Adjust RPL Field of Selector
21NN_bound, // Check Array Index Against Bounds
22NN_bsf, // Bit Scan Forward
23NN_bsr, // Bit Scan Reverse
24NN_bt, // Bit Test
25NN_btc, // Bit Test and Complement
26NN_btr, // Bit Test and Reset
27NN_bts, // Bit Test and Set
28NN_call, // Call Procedure
29NN_callfi, // Indirect Call Far Procedure
30NN_callni, // Indirect Call Near Procedure
31NN_cbw, // AL -> AX (with sign)
32NN_cwde, // AX -> EAX (with sign)
33NN_cdqe, // EAX -> RAX (with sign)
34NN_clc, // Clear Carry Flag
35NN_cld, // Clear Direction Flag
36NN_cli, // Clear Interrupt Flag
37NN_clts, // Clear Task-Switched Flag in CR0
38NN_cmc, // Complement Carry Flag
39NN_cmp, // Compare Two Operands
40NN_cmps, // Compare Strings
41NN_cwd, // AX -> DX:AX (with sign)
42NN_cdq, // EAX -> EDX:EAX (with sign)
43NN_cqo, // RAX -> RDX:RAX (with sign)
44NN_daa, // Decimal Adjust AL after Addition
45NN_das, // Decimal Adjust AL after Subtraction
46NN_dec, // Decrement by 1
47NN_div, // Unsigned Divide
48NN_enterw, // Make Stack Frame for Procedure Parameters
49NN_enter, // Make Stack Frame for Procedure Parameters
50NN_enterd, // Make Stack Frame for Procedure Parameters
51NN_enterq, // Make Stack Frame for Procedure Parameters
52NN_hlt, // Halt
53NN_idiv, // Signed Divide
54NN_imul, // Signed Multiply
55NN_in, // Input from Port
56NN_inc, // Increment by 1
57NN_ins, // Input Byte(s) from Port to String
58NN_int, // Call to Interrupt Procedure
59NN_into, // Call to Interrupt Procedure if Overflow Flag = 1
60NN_int3, // Trap to Debugger
61NN_iretw, // Interrupt Return
62NN_iret, // Interrupt Return
63NN_iretd, // Interrupt Return (use32)
64NN_iretq, // Interrupt Return (use64)
65NN_ja, // Jump if Above (CF=0 & ZF=0)
66NN_jae, // Jump if Above or Equal (CF=0)
67NN_jb, // Jump if Below (CF=1)
68NN_jbe, // Jump if Below or Equal (CF=1 | ZF=1)
69NN_jc, // Jump if Carry (CF=1)
70NN_jcxz, // Jump if CX is 0
71NN_jecxz, // Jump if ECX is 0
72NN_jrcxz, // Jump if RCX is 0
73NN_je, // Jump if Equal (ZF=1)
74NN_jg, // Jump if Greater (ZF=0 & SF=OF)
75NN_jge, // Jump if Greater or Equal (SF=OF)
76NN_jl, // Jump if Less (SF!=OF)
77NN_jle, // Jump if Less or Equal (ZF=1 | SF!=OF)
78NN_jna, // Jump if Not Above (CF=1 | ZF=1)
79NN_jnae, // Jump if Not Above or Equal (CF=1)
80NN_jnb, // Jump if Not Below (CF=0)
81NN_jnbe, // Jump if Not Below or Equal (CF=0 & ZF=0)
82NN_jnc, // Jump if Not Carry (CF=0)
83NN_jne, // Jump if Not Equal (ZF=0)
84NN_jng, // Jump if Not Greater (ZF=1 | SF!=OF)
85NN_jnge, // Jump if Not Greater or Equal (ZF=1)
86NN_jnl, // Jump if Not Less (SF=OF)
87NN_jnle, // Jump if Not Less or Equal (ZF=0 & SF=OF)
88NN_jno, // Jump if Not Overflow (OF=0)
89NN_jnp, // Jump if Not Parity (PF=0)
90NN_jns, // Jump if Not Sign (SF=0)
91NN_jnz, // Jump if Not Zero (ZF=0)
92NN_jo, // Jump if Overflow (OF=1)
93NN_jp, // Jump if Parity (PF=1)
94NN_jpe, // Jump if Parity Even (PF=1)
95NN_jpo, // Jump if Parity Odd (PF=0)
96NN_js, // Jump if Sign (SF=1)
97NN_jz, // Jump if Zero (ZF=1)
98NN_jmp, // Jump
99NN_jmpfi, // Indirect Far Jump
100NN_jmpni, // Indirect Near Jump
101NN_jmpshort, // Jump Short (not used)
102NN_lahf, // Load Flags into AH Register
103NN_lar, // Load Access Right Byte
104NN_lea, // Load Effective Address
105NN_leavew, // High Level Procedure Exit
106NN_leave, // High Level Procedure Exit
107NN_leaved, // High Level Procedure Exit
108NN_leaveq, // High Level Procedure Exit
109NN_lgdt, // Load Global Descriptor Table Register
110NN_lidt, // Load Interrupt Descriptor Table Register
111NN_lgs, // Load Full Pointer to GS:xx
112NN_lss, // Load Full Pointer to SS:xx
113NN_lds, // Load Full Pointer to DS:xx
114NN_les, // Load Full Pointer to ES:xx
115NN_lfs, // Load Full Pointer to FS:xx
116NN_lldt, // Load Local Descriptor Table Register
117NN_lmsw, // Load Machine Status Word
118NN_lock, // Assert LOCK# Signal Prefix
119NN_lods, // Load String
120NN_loopw, // Loop while ECX != 0
121NN_loop, // Loop while CX != 0
122NN_loopd, // Loop while ECX != 0
123NN_loopq, // Loop while RCX != 0
124NN_loopwe, // Loop while CX != 0 and ZF=1
125NN_loope, // Loop while rCX != 0 and ZF=1
126NN_loopde, // Loop while ECX != 0 and ZF=1
127NN_loopqe, // Loop while RCX != 0 and ZF=1
128NN_loopwne, // Loop while CX != 0 and ZF=0
129NN_loopne, // Loop while rCX != 0 and ZF=0
130NN_loopdne, // Loop while ECX != 0 and ZF=0
131NN_loopqne, // Loop while RCX != 0 and ZF=0
132NN_lsl, // Load Segment Limit
133NN_ltr, // Load Task Register
134NN_mov, // Move Data
135NN_movsp, // Move to/from Special Registers
136NN_movs, // Move Byte(s) from String to String
137NN_movsx, // Move with Sign-Extend
138NN_movzx, // Move with Zero-Extend
139NN_mul, // Unsigned Multiplication of AL or AX
140NN_neg, // Two's Complement Negation
141NN_nop, // No Operation
142NN_not, // One's Complement Negation
143NN_or, // Logical Inclusive OR
144NN_out, // Output to Port
145NN_outs, // Output Byte(s) to Port
146NN_pop, // Pop a word from the Stack
147NN_popaw, // Pop all General Registers
148NN_popa, // Pop all General Registers
149NN_popad, // Pop all General Registers (use32)
150NN_popaq, // Pop all General Registers (use64)
151NN_popfw, // Pop Stack into Flags Register
152NN_popf, // Pop Stack into Flags Register
153NN_popfd, // Pop Stack into Eflags Register
154NN_popfq, // Pop Stack into Rflags Register
155NN_push, // Push Operand onto the Stack
156NN_pushaw, // Push all General Registers
157NN_pusha, // Push all General Registers
158NN_pushad, // Push all General Registers (use32)
159NN_pushaq, // Push all General Registers (use64)
160NN_pushfw, // Push Flags Register onto the Stack
161NN_pushf, // Push Flags Register onto the Stack
162NN_pushfd, // Push Flags Register onto the Stack (use32)
163NN_pushfq, // Push Flags Register onto the Stack (use64)
164NN_rcl, // Rotate Through Carry Left
165NN_rcr, // Rotate Through Carry Right
166NN_rol, // Rotate Left
167NN_ror, // Rotate Right
168NN_rep, // Repeat String Operation
169NN_repe, // Repeat String Operation while ZF=1
170NN_repne, // Repeat String Operation while ZF=0
171NN_retn, // Return Near from Procedure
172NN_retf, // Return Far from Procedure
173NN_sahf, // Store AH into Flags Register
174NN_sal, // Shift Arithmetic Left
175NN_sar, // Shift Arithmetic Right
176NN_shl, // Shift Logical Left
177NN_shr, // Shift Logical Right
178NN_sbb, // Integer Subtraction with Borrow
179NN_scas, // Compare String
180NN_seta, // Set Byte if Above (CF=0 & ZF=0)
181NN_setae, // Set Byte if Above or Equal (CF=0)
182NN_setb, // Set Byte if Below (CF=1)
183NN_setbe, // Set Byte if Below or Equal (CF=1 | ZF=1)
184NN_setc, // Set Byte if Carry (CF=1)
185NN_sete, // Set Byte if Equal (ZF=1)
186NN_setg, // Set Byte if Greater (ZF=0 & SF=OF)
187NN_setge, // Set Byte if Greater or Equal (SF=OF)
188NN_setl, // Set Byte if Less (SF!=OF)
189NN_setle, // Set Byte if Less or Equal (ZF=1 | SF!=OF)
190NN_setna, // Set Byte if Not Above (CF=1 | ZF=1)
191NN_setnae, // Set Byte if Not Above or Equal (CF=1)
192NN_setnb, // Set Byte if Not Below (CF=0)
193NN_setnbe, // Set Byte if Not Below or Equal (CF=0 & ZF=0)
194NN_setnc, // Set Byte if Not Carry (CF=0)
195NN_setne, // Set Byte if Not Equal (ZF=0)
196NN_setng, // Set Byte if Not Greater (ZF=1 | SF!=OF)
197NN_setnge, // Set Byte if Not Greater or Equal (ZF=1)
198NN_setnl, // Set Byte if Not Less (SF=OF)
199NN_setnle, // Set Byte if Not Less or Equal (ZF=0 & SF=OF)
200NN_setno, // Set Byte if Not Overflow (OF=0)
201NN_setnp, // Set Byte if Not Parity (PF=0)
202NN_setns, // Set Byte if Not Sign (SF=0)
203NN_setnz, // Set Byte if Not Zero (ZF=0)
204NN_seto, // Set Byte if Overflow (OF=1)
205NN_setp, // Set Byte if Parity (PF=1)
206NN_setpe, // Set Byte if Parity Even (PF=1)
207NN_setpo, // Set Byte if Parity Odd (PF=0)
208NN_sets, // Set Byte if Sign (SF=1)
209NN_setz, // Set Byte if Zero (ZF=1)
210NN_sgdt, // Store Global Descriptor Table Register
211NN_sidt, // Store Interrupt Descriptor Table Register
212NN_shld, // Double Precision Shift Left
213NN_shrd, // Double Precision Shift Right
214NN_sldt, // Store Local Descriptor Table Register
215NN_smsw, // Store Machine Status Word
216NN_stc, // Set Carry Flag
217NN_std, // Set Direction Flag
218NN_sti, // Set Interrupt Flag
219NN_stos, // Store String
220NN_str, // Store Task Register
221NN_sub, // Integer Subtraction
222NN_test, // Logical Compare
223NN_verr, // Verify a Segment for Reading
224NN_verw, // Verify a Segment for Writing
225NN_wait, // Wait until BUSY# Pin is Inactive (HIGH)
226NN_xchg, // Exchange Register/Memory with Register
227NN_xlat, // Table Lookup Translation
228NN_xor, // Logical Exclusive OR
229
230//
231// 486 instructions
232//
233
234NN_cmpxchg, // Compare and Exchange
235NN_bswap, // Swap bits in EAX
236NN_xadd, // t<-dest; dest<-src+dest; src<-t
237NN_invd, // Invalidate Data Cache
238NN_wbinvd, // Invalidate Data Cache (write changes)
239NN_invlpg, // Invalidate TLB entry
240
241//
242// Pentium instructions
243//
244
245NN_rdmsr, // Read Machine Status Register
246NN_wrmsr, // Write Machine Status Register
247NN_cpuid, // Get CPU ID
248NN_cmpxchg8b, // Compare and Exchange Eight Bytes
249NN_rdtsc, // Read Time Stamp Counter
250NN_rsm, // Resume from System Management Mode
251
252//
253// Pentium Pro instructions
254//
255
256NN_cmova, // Move if Above (CF=0 & ZF=0)
257NN_cmovb, // Move if Below (CF=1)
258NN_cmovbe, // Move if Below or Equal (CF=1 | ZF=1)
259NN_cmovg, // Move if Greater (ZF=0 & SF=OF)
260NN_cmovge, // Move if Greater or Equal (SF=OF)
261NN_cmovl, // Move if Less (SF!=OF)
262NN_cmovle, // Move if Less or Equal (ZF=1 | SF!=OF)
263NN_cmovnb, // Move if Not Below (CF=0)
264NN_cmovno, // Move if Not Overflow (OF=0)
265NN_cmovnp, // Move if Not Parity (PF=0)
266NN_cmovns, // Move if Not Sign (SF=0)
267NN_cmovnz, // Move if Not Zero (ZF=0)
268NN_cmovo, // Move if Overflow (OF=1)
269NN_cmovp, // Move if Parity (PF=1)
270NN_cmovs, // Move if Sign (SF=1)
271NN_cmovz, // Move if Zero (ZF=1)
272NN_fcmovb, // Floating Move if Below
273NN_fcmove, // Floating Move if Equal
274NN_fcmovbe, // Floating Move if Below or Equal
275NN_fcmovu, // Floating Move if Unordered
276NN_fcmovnb, // Floating Move if Not Below
277NN_fcmovne, // Floating Move if Not Equal
278NN_fcmovnbe, // Floating Move if Not Below or Equal
279NN_fcmovnu, // Floating Move if Not Unordered
280NN_fcomi, // FP Compare, result in EFLAGS
281NN_fucomi, // FP Unordered Compare, result in EFLAGS
282NN_fcomip, // FP Compare, result in EFLAGS, pop stack
283NN_fucomip, // FP Unordered Compare, result in EFLAGS, pop stack
284NN_rdpmc, // Read Performance Monitor Counter
285
286//
287// FPP instructuions
288//
289
290NN_fld, // Load Real
291NN_fst, // Store Real
292NN_fstp, // Store Real and Pop
293NN_fxch, // Exchange Registers
294NN_fild, // Load Integer
295NN_fist, // Store Integer
296NN_fistp, // Store Integer and Pop
297NN_fbld, // Load BCD
298NN_fbstp, // Store BCD and Pop
299NN_fadd, // Add Real
300NN_faddp, // Add Real and Pop
301NN_fiadd, // Add Integer
302NN_fsub, // Subtract Real
303NN_fsubp, // Subtract Real and Pop
304NN_fisub, // Subtract Integer
305NN_fsubr, // Subtract Real Reversed
306NN_fsubrp, // Subtract Real Reversed and Pop
307NN_fisubr, // Subtract Integer Reversed
308NN_fmul, // Multiply Real
309NN_fmulp, // Multiply Real and Pop
310NN_fimul, // Multiply Integer
311NN_fdiv, // Divide Real
312NN_fdivp, // Divide Real and Pop
313NN_fidiv, // Divide Integer
314NN_fdivr, // Divide Real Reversed
315NN_fdivrp, // Divide Real Reversed and Pop
316NN_fidivr, // Divide Integer Reversed
317NN_fsqrt, // Square Root
318NN_fscale, // Scale: st(0) <- st(0) * 2^st(1)
319NN_fprem, // Partial Remainder
320NN_frndint, // Round to Integer
321NN_fxtract, // Extract exponent and significand
322NN_fabs, // Absolute value
323NN_fchs, // Change Sign
324NN_fcom, // Compare Real
325NN_fcomp, // Compare Real and Pop
326NN_fcompp, // Compare Real and Pop Twice
327NN_ficom, // Compare Integer
328NN_ficomp, // Compare Integer and Pop
329NN_ftst, // Test
330NN_fxam, // Examine
331NN_fptan, // Partial tangent
332NN_fpatan, // Partial arctangent
333NN_f2xm1, // 2^x - 1
334NN_fyl2x, // Y * lg2(X)
335NN_fyl2xp1, // Y * lg2(X+1)
336NN_fldz, // Load +0.0
337NN_fld1, // Load +1.0
338NN_fldpi, // Load PI=3.14...
339NN_fldl2t, // Load lg2(10)
340NN_fldl2e, // Load lg2(e)
341NN_fldlg2, // Load lg10(2)
342NN_fldln2, // Load ln(2)
343NN_finit, // Initialize Processor
344NN_fninit, // Initialize Processor (no wait)
345NN_fsetpm, // Set Protected Mode
346NN_fldcw, // Load Control Word
347NN_fstcw, // Store Control Word
348NN_fnstcw, // Store Control Word (no wait)
349NN_fstsw, // Store Status Word
350NN_fnstsw, // Store Status Word (no wait)
351NN_fclex, // Clear Exceptions
352NN_fnclex, // Clear Exceptions (no wait)
353NN_fstenv, // Store Environment
354NN_fnstenv, // Store Environment (no wait)
355NN_fldenv, // Load Environment
356NN_fsave, // Save State
357NN_fnsave, // Save State (no wait)
358NN_frstor, // Restore State
359NN_fincstp, // Increment Stack Pointer
360NN_fdecstp, // Decrement Stack Pointer
361NN_ffree, // Free Register
362NN_fnop, // No Operation
363NN_feni, // (8087 only)
364NN_fneni, // (no wait) (8087 only)
365NN_fdisi, // (8087 only)
366NN_fndisi, // (no wait) (8087 only)
367
368//
369// 80387 instructions
370//
371
372NN_fprem1, // Partial Remainder ( < half )
373NN_fsincos, // t<-cos(st); st<-sin(st); push t
374NN_fsin, // Sine
375NN_fcos, // Cosine
376NN_fucom, // Compare Unordered Real
377NN_fucomp, // Compare Unordered Real and Pop
378NN_fucompp, // Compare Unordered Real and Pop Twice
379
380//
381// Instructions added 28.02.96
382//
383
384NN_setalc, // Set AL to Carry Flag
385NN_svdc, // Save Register and Descriptor
386NN_rsdc, // Restore Register and Descriptor
387NN_svldt, // Save LDTR and Descriptor
388NN_rsldt, // Restore LDTR and Descriptor
389NN_svts, // Save TR and Descriptor
390NN_rsts, // Restore TR and Descriptor
391NN_icebp, // ICE Break Point
392NN_loadall, // Load the entire CPU state from ES:EDI
393
394//
395// MMX instructions
396//
397
398NN_emms, // Empty MMX state
399NN_movd, // Move 32 bits
400NN_movq, // Move 64 bits
401NN_packsswb, // Pack with Signed Saturation (Word->Byte)
402NN_packssdw, // Pack with Signed Saturation (Dword->Word)
403NN_packuswb, // Pack with Unsigned Saturation (Word->Byte)
404NN_paddb, // Packed Add Byte
405NN_paddw, // Packed Add Word
406NN_paddd, // Packed Add Dword
407NN_paddsb, // Packed Add with Saturation (Byte)
408NN_paddsw, // Packed Add with Saturation (Word)
409NN_paddusb, // Packed Add Unsigned with Saturation (Byte)
410NN_paddusw, // Packed Add Unsigned with Saturation (Word)
411NN_pand, // Bitwise Logical And
412NN_pandn, // Bitwise Logical And Not
413NN_pcmpeqb, // Packed Compare for Equal (Byte)
414NN_pcmpeqw, // Packed Compare for Equal (Word)
415NN_pcmpeqd, // Packed Compare for Equal (Dword)
416NN_pcmpgtb, // Packed Compare for Greater Than (Byte)
417NN_pcmpgtw, // Packed Compare for Greater Than (Word)
418NN_pcmpgtd, // Packed Compare for Greater Than (Dword)
419NN_pmaddwd, // Packed Multiply and Add
420NN_pmulhw, // Packed Multiply High
421NN_pmullw, // Packed Multiply Low
422NN_por, // Bitwise Logical Or
423NN_psllw, // Packed Shift Left Logical (Word)
424NN_pslld, // Packed Shift Left Logical (Dword)
425NN_psllq, // Packed Shift Left Logical (Qword)
426NN_psraw, // Packed Shift Right Arithmetic (Word)
427NN_psrad, // Packed Shift Right Arithmetic (Dword)
428NN_psrlw, // Packed Shift Right Logical (Word)
429NN_psrld, // Packed Shift Right Logical (Dword)
430NN_psrlq, // Packed Shift Right Logical (Qword)
431NN_psubb, // Packed Subtract Byte
432NN_psubw, // Packed Subtract Word
433NN_psubd, // Packed Subtract Dword
434NN_psubsb, // Packed Subtract with Saturation (Byte)
435NN_psubsw, // Packed Subtract with Saturation (Word)
436NN_psubusb, // Packed Subtract Unsigned with Saturation (Byte)
437NN_psubusw, // Packed Subtract Unsigned with Saturation (Word)
438NN_punpckhbw, // Unpack High Packed Data (Byte->Word)
439NN_punpckhwd, // Unpack High Packed Data (Word->Dword)
440NN_punpckhdq, // Unpack High Packed Data (Dword->Qword)
441NN_punpcklbw, // Unpack Low Packed Data (Byte->Word)
442NN_punpcklwd, // Unpack Low Packed Data (Word->Dword)
443NN_punpckldq, // Unpack Low Packed Data (Dword->Qword)
444NN_pxor, // Bitwise Logical Exclusive Or
445
446//
447// Undocumented Deschutes processor instructions
448//
449
450NN_fxsave, // Fast save FP context
451NN_fxrstor, // Fast restore FP context
452
453// Pentium II instructions
454
455NN_sysenter, // Fast Transition to System Call Entry Point
456NN_sysexit, // Fast Transition from System Call Entry Point
457
458// 3DNow! instructions
459
460NN_pavgusb, // Packed 8-bit Unsigned Integer Averaging
461NN_pfadd, // Packed Floating-Point Addition
462NN_pfsub, // Packed Floating-Point Subtraction
463NN_pfsubr, // Packed Floating-Point Reverse Subtraction
464NN_pfacc, // Packed Floating-Point Accumulate
465NN_pfcmpge, // Packed Floating-Point Comparison, Greater or Equal
466NN_pfcmpgt, // Packed Floating-Point Comparison, Greater
467NN_pfcmpeq, // Packed Floating-Point Comparison, Equal
468NN_pfmin, // Packed Floating-Point Minimum
469NN_pfmax, // Packed Floating-Point Maximum
470NN_pi2fd, // Packed 32-bit Integer to Floating-Point
471NN_pf2id, // Packed Floating-Point to 32-bit Integer
472NN_pfrcp, // Packed Floating-Point Reciprocal Approximation
473NN_pfrsqrt, // Packed Floating-Point Reciprocal Square Root Approximation
474NN_pfmul, // Packed Floating-Point Multiplication
475NN_pfrcpit1, // Packed Floating-Point Reciprocal First Iteration Step
476NN_pfrsqit1, // Packed Floating-Point Reciprocal Square Root First Iteration Step
477NN_pfrcpit2, // Packed Floating-Point Reciprocal Second Iteration Step
478NN_pmulhrw, // Packed Floating-Point 16-bit Integer Multiply with rounding
479NN_femms, // Faster entry/exit of the MMX or floating-point state
480NN_prefetch, // Prefetch at least a 32-byte line into L1 data cache
481NN_prefetchw, // Prefetch processor cache line into L1 data cache (mark as modified)
482
483
484// Pentium III instructions
485
486NN_addps, // Packed Single-FP Add
487NN_addss, // Scalar Single-FP Add
488NN_andnps, // Bitwise Logical And Not for Single-FP
489NN_andps, // Bitwise Logical And for Single-FP
490NN_cmpps, // Packed Single-FP Compare
491NN_cmpss, // Scalar Single-FP Compare
492NN_comiss, // Scalar Ordered Single-FP Compare and Set EFLAGS
493NN_cvtpi2ps, // Packed signed INT32 to Packed Single-FP conversion
494NN_cvtps2pi, // Packed Single-FP to Packed INT32 conversion
495NN_cvtsi2ss, // Scalar signed INT32 to Single-FP conversion
496NN_cvtss2si, // Scalar Single-FP to signed INT32 conversion
497NN_cvttps2pi, // Packed Single-FP to Packed INT32 conversion (truncate)
498NN_cvttss2si, // Scalar Single-FP to signed INT32 conversion (truncate)
499NN_divps, // Packed Single-FP Divide
500NN_divss, // Scalar Single-FP Divide
501NN_ldmxcsr, // Load Streaming SIMD Extensions Technology Control/Status Register
502NN_maxps, // Packed Single-FP Maximum
503NN_maxss, // Scalar Single-FP Maximum
504NN_minps, // Packed Single-FP Minimum
505NN_minss, // Scalar Single-FP Minimum
506NN_movaps, // Move Aligned Four Packed Single-FP
507NN_movhlps, // Move High to Low Packed Single-FP
508NN_movhps, // Move High Packed Single-FP
509NN_movlhps, // Move Low to High Packed Single-FP
510NN_movlps, // Move Low Packed Single-FP
511NN_movmskps, // Move Mask to Register
512NN_movss, // Move Scalar Single-FP
513NN_movups, // Move Unaligned Four Packed Single-FP
514NN_mulps, // Packed Single-FP Multiply
515NN_mulss, // Scalar Single-FP Multiply
516NN_orps, // Bitwise Logical OR for Single-FP Data
517NN_rcpps, // Packed Single-FP Reciprocal
518NN_rcpss, // Scalar Single-FP Reciprocal
519NN_rsqrtps, // Packed Single-FP Square Root Reciprocal
520NN_rsqrtss, // Scalar Single-FP Square Root Reciprocal
521NN_shufps, // Shuffle Single-FP
522NN_sqrtps, // Packed Single-FP Square Root
523NN_sqrtss, // Scalar Single-FP Square Root
524NN_stmxcsr, // Store Streaming SIMD Extensions Technology Control/Status Register
525NN_subps, // Packed Single-FP Subtract
526NN_subss, // Scalar Single-FP Subtract
527NN_ucomiss, // Scalar Unordered Single-FP Compare and Set EFLAGS
528NN_unpckhps, // Unpack High Packed Single-FP Data
529NN_unpcklps, // Unpack Low Packed Single-FP Data
530NN_xorps, // Bitwise Logical XOR for Single-FP Data
531NN_pavgb, // Packed Average (Byte)
532NN_pavgw, // Packed Average (Word)
533NN_pextrw, // Extract Word
534NN_pinsrw, // Insert Word
535NN_pmaxsw, // Packed Signed Integer Word Maximum
536NN_pmaxub, // Packed Unsigned Integer Byte Maximum
537NN_pminsw, // Packed Signed Integer Word Minimum
538NN_pminub, // Packed Unsigned Integer Byte Minimum
539NN_pmovmskb, // Move Byte Mask to Integer
540NN_pmulhuw, // Packed Multiply High Unsigned
541NN_psadbw, // Packed Sum of Absolute Differences
542NN_pshufw, // Packed Shuffle Word
543NN_maskmovq, // Byte Mask write
544NN_movntps, // Move Aligned Four Packed Single-FP Non Temporal
545NN_movntq, // Move 64 Bits Non Temporal
546NN_prefetcht0, // Prefetch to all cache levels
547NN_prefetcht1, // Prefetch to all cache levels
548NN_prefetcht2, // Prefetch to L2 cache
549NN_prefetchnta, // Prefetch to L1 cache
550NN_sfence, // Store Fence
551
552// Pentium III Pseudo instructions
553
554NN_cmpeqps, // Packed Single-FP Compare EQ
555NN_cmpltps, // Packed Single-FP Compare LT
556NN_cmpleps, // Packed Single-FP Compare LE
557NN_cmpunordps, // Packed Single-FP Compare UNORD
558NN_cmpneqps, // Packed Single-FP Compare NOT EQ
559NN_cmpnltps, // Packed Single-FP Compare NOT LT
560NN_cmpnleps, // Packed Single-FP Compare NOT LE
561NN_cmpordps, // Packed Single-FP Compare ORDERED
562NN_cmpeqss, // Scalar Single-FP Compare EQ
563NN_cmpltss, // Scalar Single-FP Compare LT
564NN_cmpless, // Scalar Single-FP Compare LE
565NN_cmpunordss, // Scalar Single-FP Compare UNORD
566NN_cmpneqss, // Scalar Single-FP Compare NOT EQ
567NN_cmpnltss, // Scalar Single-FP Compare NOT LT
568NN_cmpnless, // Scalar Single-FP Compare NOT LE
569NN_cmpordss, // Scalar Single-FP Compare ORDERED
570
571// AMD K7 instructions
572
573NN_pf2iw, // Packed Floating-Point to Integer with Sign Extend
574NN_pfnacc, // Packed Floating-Point Negative Accumulate
575NN_pfpnacc, // Packed Floating-Point Mixed Positive-Negative Accumulate
576NN_pi2fw, // Packed 16-bit Integer to Floating-Point
577NN_pswapd, // Packed Swap Double Word
578
579// Undocumented FP instructions (thanks to norbert.juffa@amd.com)
580
581NN_fstp1, // Alias of Store Real and Pop
582NN_fcom2, // Alias of Compare Real
583NN_fcomp3, // Alias of Compare Real and Pop
584NN_fxch4, // Alias of Exchange Registers
585NN_fcomp5, // Alias of Compare Real and Pop
586NN_ffreep, // Free Register and Pop
587NN_fxch7, // Alias of Exchange Registers
588NN_fstp8, // Alias of Store Real and Pop
589NN_fstp9, // Alias of Store Real and Pop
590
591// Pentium 4 instructions
592
593NN_addpd, // Add Packed Double-Precision Floating-Point Values
594NN_addsd, // Add Scalar Double-Precision Floating-Point Values
595NN_andnpd, // Bitwise Logical AND NOT of Packed Double-Precision Floating-Point Values
596NN_andpd, // Bitwise Logical AND of Packed Double-Precision Floating-Point Values
597NN_clflush, // Flush Cache Line
598NN_cmppd, // Compare Packed Double-Precision Floating-Point Values
599NN_cmpsd, // Compare Scalar Double-Precision Floating-Point Values
600NN_comisd, // Compare Scalar Ordered Double-Precision Floating-Point Values and Set EFLAGS
601NN_cvtdq2pd, // Convert Packed Doubleword Integers to Packed Single-Precision Floating-Point Values
602NN_cvtdq2ps, // Convert Packed Doubleword Integers to Packed Double-Precision Floating-Point Values
603NN_cvtpd2dq, // Convert Packed Double-Precision Floating-Point Values to Packed Doubleword Integers
604NN_cvtpd2pi, // Convert Packed Double-Precision Floating-Point Values to Packed Doubleword Integers
605NN_cvtpd2ps, // Convert Packed Double-Precision Floating-Point Values to Packed Single-Precision Floating-Point Values
606NN_cvtpi2pd, // Convert Packed Doubleword Integers to Packed Double-Precision Floating-Point Values
607NN_cvtps2dq, // Convert Packed Single-Precision Floating-Point Values to Packed Doubleword Integers
608NN_cvtps2pd, // Convert Packed Single-Precision Floating-Point Values to Packed Double-Precision Floating-Point Values
609NN_cvtsd2si, // Convert Scalar Double-Precision Floating-Point Value to Doubleword Integer
610NN_cvtsd2ss, // Convert Scalar Double-Precision Floating-Point Value to Scalar Single-Precision Floating-Point Value
611NN_cvtsi2sd, // Convert Doubleword Integer to Scalar Double-Precision Floating-Point Value
612NN_cvtss2sd, // Convert Scalar Single-Precision Floating-Point Value to Scalar Double-Precision Floating-Point Value
613NN_cvttpd2dq, // Convert With Truncation Packed Double-Precision Floating-Point Values to Packed Doubleword Integers
614NN_cvttpd2pi, // Convert with Truncation Packed Double-Precision Floating-Point Values to Packed Doubleword Integers
615NN_cvttps2dq, // Convert With Truncation Packed Single-Precision Floating-Point Values to Packed Doubleword Integers
616NN_cvttsd2si, // Convert with Truncation Scalar Double-Precision Floating-Point Value to Doubleword Integer
617NN_divpd, // Divide Packed Double-Precision Floating-Point Values
618NN_divsd, // Divide Scalar Double-Precision Floating-Point Values
619NN_lfence, // Load Fence
620NN_maskmovdqu, // Store Selected Bytes of Double Quadword
621NN_maxpd, // Return Maximum Packed Double-Precision Floating-Point Values
622NN_maxsd, // Return Maximum Scalar Double-Precision Floating-Point Value
623NN_mfence, // Memory Fence
624NN_minpd, // Return Minimum Packed Double-Precision Floating-Point Values
625NN_minsd, // Return Minimum Scalar Double-Precision Floating-Point Value
626NN_movapd, // Move Aligned Packed Double-Precision Floating-Point Values
627NN_movdq2q, // Move Quadword from XMM to MMX Register
628NN_movdqa, // Move Aligned Double Quadword
629NN_movdqu, // Move Unaligned Double Quadword
630NN_movhpd, // Move High Packed Double-Precision Floating-Point Values
631NN_movlpd, // Move Low Packed Double-Precision Floating-Point Values
632NN_movmskpd, // Extract Packed Double-Precision Floating-Point Sign Mask
633NN_movntdq, // Store Double Quadword Using Non-Temporal Hint
634NN_movnti, // Store Doubleword Using Non-Temporal Hint
635NN_movntpd, // Store Packed Double-Precision Floating-Point Values Using Non-Temporal Hint
636NN_movq2dq, // Move Quadword from MMX to XMM Register
637NN_movsd, // Move Scalar Double-Precision Floating-Point Values
638NN_movupd, // Move Unaligned Packed Double-Precision Floating-Point Values
639NN_mulpd, // Multiply Packed Double-Precision Floating-Point Values
640NN_mulsd, // Multiply Scalar Double-Precision Floating-Point Values
641NN_orpd, // Bitwise Logical OR of Double-Precision Floating-Point Values
642NN_paddq, // Add Packed Quadword Integers
643NN_pause, // Spin Loop Hint
644NN_pmuludq, // Multiply Packed Unsigned Doubleword Integers
645NN_pshufd, // Shuffle Packed Doublewords
646NN_pshufhw, // Shuffle Packed High Words
647NN_pshuflw, // Shuffle Packed Low Words
648NN_pslldq, // Shift Double Quadword Left Logical
649NN_psrldq, // Shift Double Quadword Right Logical
650NN_psubq, // Subtract Packed Quadword Integers
651NN_punpckhqdq, // Unpack High Data
652NN_punpcklqdq, // Unpack Low Data
653NN_shufpd, // Shuffle Packed Double-Precision Floating-Point Values
654NN_sqrtpd, // Compute Square Roots of Packed Double-Precision Floating-Point Values
655NN_sqrtsd, // Compute Square Rootof Scalar Double-Precision Floating-Point Value
656NN_subpd, // Subtract Packed Double-Precision Floating-Point Values
657NN_subsd, // Subtract Scalar Double-Precision Floating-Point Values
658NN_ucomisd, // Unordered Compare Scalar Ordered Double-Precision Floating-Point Values and Set EFLAGS
659NN_unpckhpd, // Unpack and Interleave High Packed Double-Precision Floating-Point Values
660NN_unpcklpd, // Unpack and Interleave Low Packed Double-Precision Floating-Point Values
661NN_xorpd, // Bitwise Logical OR of Double-Precision Floating-Point Values
662
663// AMD syscall/sysret instructions
664
665NN_syscall, // Low latency system call
666NN_sysret, // Return from system call
667
668// AMD64 instructions
669
670NN_swapgs, // Exchange GS base with KernelGSBase MSR
671
672// New Pentium instructions (SSE3)
673
674NN_movddup, // Move One Double-FP and Duplicate
675NN_movshdup, // Move Packed Single-FP High and Duplicate
676NN_movsldup, // Move Packed Single-FP Low and Duplicate
677
678// Missing AMD64 instructions
679
680NN_movsxd, // Move with Sign-Extend Doubleword
681NN_cmpxchg16b, // Compare and Exchange 16 Bytes
682
683// SSE3 instructions
684
685NN_addsubpd, // Add /Sub packed DP FP numbers
686NN_addsubps, // Add /Sub packed SP FP numbers
687NN_haddpd, // Add horizontally packed DP FP numbers
688NN_haddps, // Add horizontally packed SP FP numbers
689NN_hsubpd, // Sub horizontally packed DP FP numbers
690NN_hsubps, // Sub horizontally packed SP FP numbers
691NN_monitor, // Set up a linear address range to be monitored by hardware
692NN_mwait, // Wait until write-back store performed within the range specified by the MONITOR instruction
693NN_fisttp, // Store ST in intXX (chop) and pop
694NN_lddqu, // Load unaligned integer 128-bit
695
696// SSSE3 instructions
697
698NN_psignb, // Packed SIGN Byte
699NN_psignw, // Packed SIGN Word
700NN_psignd, // Packed SIGN Doubleword
701NN_pshufb, // Packed Shuffle Bytes
702NN_pmulhrsw, // Packed Multiply High with Round and Scale
703NN_pmaddubsw, // Multiply and Add Packed Signed and Unsigned Bytes
704NN_phsubsw, // Packed Horizontal Subtract and Saturate
705NN_phaddsw, // Packed Horizontal Add and Saturate
706NN_phaddw, // Packed Horizontal Add Word
707NN_phaddd, // Packed Horizontal Add Doubleword
708NN_phsubw, // Packed Horizontal Subtract Word
709NN_phsubd, // Packed Horizontal Subtract Doubleword
710NN_palignr, // Packed Align Right
711NN_pabsb, // Packed Absolute Value Byte
712NN_pabsw, // Packed Absolute Value Word
713NN_pabsd, // Packed Absolute Value Doubleword
714
715// VMX instructions
716
717NN_vmcall, // Call to VM Monitor
718NN_vmclear, // Clear Virtual Machine Control Structure
719NN_vmlaunch, // Launch Virtual Machine
720NN_vmresume, // Resume Virtual Machine
721NN_vmptrld, // Load Pointer to Virtual Machine Control Structure
722NN_vmptrst, // Store Pointer to Virtual Machine Control Structure
723NN_vmread, // Read Field from Virtual Machine Control Structure
724NN_vmwrite, // Write Field from Virtual Machine Control Structure
725NN_vmxoff, // Leave VMX Operation
726NN_vmxon, // Enter VMX Operation
727
728// Undefined Instruction
729
730NN_ud2, // Undefined Instruction
731
732// Added with x86-64
733
734NN_rdtscp, // Read Time-Stamp Counter and Processor ID
735
736// Geode LX 3DNow! extensions
737
738NN_pfrcpv, // Reciprocal Approximation for a Pair of 32-bit Floats
739NN_pfrsqrtv, // Reciprocal Square Root Approximation for a Pair of 32-bit Floats
740
741// SSE2 pseudoinstructions
742
743NN_cmpeqpd, // Packed Double-FP Compare EQ
744NN_cmpltpd, // Packed Double-FP Compare LT
745NN_cmplepd, // Packed Double-FP Compare LE
746NN_cmpunordpd, // Packed Double-FP Compare UNORD
747NN_cmpneqpd, // Packed Double-FP Compare NOT EQ
748NN_cmpnltpd, // Packed Double-FP Compare NOT LT
749NN_cmpnlepd, // Packed Double-FP Compare NOT LE
750NN_cmpordpd, // Packed Double-FP Compare ORDERED
751NN_cmpeqsd, // Scalar Double-FP Compare EQ
752NN_cmpltsd, // Scalar Double-FP Compare LT
753NN_cmplesd, // Scalar Double-FP Compare LE
754NN_cmpunordsd, // Scalar Double-FP Compare UNORD
755NN_cmpneqsd, // Scalar Double-FP Compare NOT EQ
756NN_cmpnltsd, // Scalar Double-FP Compare NOT LT
757NN_cmpnlesd, // Scalar Double-FP Compare NOT LE
758NN_cmpordsd, // Scalar Double-FP Compare ORDERED
759
760// SSSE4.1 instructions
761
762NN_blendpd, // Blend Packed Double Precision Floating-Point Values
763NN_blendps, // Blend Packed Single Precision Floating-Point Values
764NN_blendvpd, // Variable Blend Packed Double Precision Floating-Point Values
765NN_blendvps, // Variable Blend Packed Single Precision Floating-Point Values
766NN_dppd, // Dot Product of Packed Double Precision Floating-Point Values
767NN_dpps, // Dot Product of Packed Single Precision Floating-Point Values
768NN_extractps, // Extract Packed Single Precision Floating-Point Value
769NN_insertps, // Insert Packed Single Precision Floating-Point Value
770NN_movntdqa, // Load Double Quadword Non-Temporal Aligned Hint
771NN_mpsadbw, // Compute Multiple Packed Sums of Absolute Difference
772NN_packusdw, // Pack with Unsigned Saturation
773NN_pblendvb, // Variable Blend Packed Bytes
774NN_pblendw, // Blend Packed Words
775NN_pcmpeqq, // Compare Packed Qword Data for Equal
776NN_pextrb, // Extract Byte
777NN_pextrd, // Extract Dword
778NN_pextrq, // Extract Qword
779NN_phminposuw, // Packed Horizontal Word Minimum
780NN_pinsrb, // Insert Byte
781NN_pinsrd, // Insert Dword
782NN_pinsrq, // Insert Qword
783NN_pmaxsb, // Maximum of Packed Signed Byte Integers
784NN_pmaxsd, // Maximum of Packed Signed Dword Integers
785NN_pmaxud, // Maximum of Packed Unsigned Dword Integers
786NN_pmaxuw, // Maximum of Packed Word Integers
787NN_pminsb, // Minimum of Packed Signed Byte Integers
788NN_pminsd, // Minimum of Packed Signed Dword Integers
789NN_pminud, // Minimum of Packed Unsigned Dword Integers
790NN_pminuw, // Minimum of Packed Word Integers
791NN_pmovsxbw, // Packed Move with Sign Extend
792NN_pmovsxbd, // Packed Move with Sign Extend
793NN_pmovsxbq, // Packed Move with Sign Extend
794NN_pmovsxwd, // Packed Move with Sign Extend
795NN_pmovsxwq, // Packed Move with Sign Extend
796NN_pmovsxdq, // Packed Move with Sign Extend
797NN_pmovzxbw, // Packed Move with Zero Extend
798NN_pmovzxbd, // Packed Move with Zero Extend
799NN_pmovzxbq, // Packed Move with Zero Extend
800NN_pmovzxwd, // Packed Move with Zero Extend
801NN_pmovzxwq, // Packed Move with Zero Extend
802NN_pmovzxdq, // Packed Move with Zero Extend
803NN_pmuldq, // Multiply Packed Signed Dword Integers
804NN_pmulld, // Multiply Packed Signed Dword Integers and Store Low Result
805NN_ptest, // Logical Compare
806NN_roundpd, // Round Packed Double Precision Floating-Point Values
807NN_roundps, // Round Packed Single Precision Floating-Point Values
808NN_roundsd, // Round Scalar Double Precision Floating-Point Values
809NN_roundss, // Round Scalar Single Precision Floating-Point Values
810
811// SSSE4.2 instructions
812
813NN_crc32, // Accumulate CRC32 Value
814NN_pcmpestri, // Packed Compare Explicit Length Strings, Return Index
815NN_pcmpestrm, // Packed Compare Explicit Length Strings, Return Mask
816NN_pcmpistri, // Packed Compare Implicit Length Strings, Return Index
817NN_pcmpistrm, // Packed Compare Implicit Length Strings, Return Mask
818NN_pcmpgtq, // Compare Packed Data for Greater Than
819NN_popcnt, // Return the Count of Number of Bits Set to 1
820
821// AMD SSE4a instructions
822
823NN_extrq, // Extract Field From Register
824NN_insertq, // Insert Field
825NN_movntsd, // Move Non-Temporal Scalar Double-Precision Floating-Point
826NN_movntss, // Move Non-Temporal Scalar Single-Precision Floating-Point
827NN_lzcnt, // Leading Zero Count
828
829// xsave/xrstor instructions
830
831NN_xgetbv, // Get Value of Extended Control Register
832NN_xrstor, // Restore Processor Extended States
833NN_xsave, // Save Processor Extended States
834NN_xsetbv, // Set Value of Extended Control Register
835
836// Intel Safer Mode Extensions (SMX)
837
838NN_getsec, // Safer Mode Extensions (SMX) Instruction
839
840// AMD-V Virtualization ISA Extension
841
842NN_clgi, // Clear Global Interrupt Flag
843NN_invlpga, // Invalidate TLB Entry in a Specified ASID
844NN_skinit, // Secure Init and Jump with Attestation
845NN_stgi, // Set Global Interrupt Flag
846NN_vmexit, // Stop Executing Guest, Begin Executing Host
847NN_vmload, // Load State from VMCB
848NN_vmmcall, // Call VMM
849NN_vmrun, // Run Virtual Machine
850NN_vmsave, // Save State to VMCB
851
852// VMX+ instructions
853
854NN_invept, // Invalidate Translations Derived from EPT
855NN_invvpid, // Invalidate Translations Based on VPID
856
857// Intel Atom instructions
858
859NN_movbe, // Move Data After Swapping Bytes
860
861// Intel AES instructions
862
863NN_aesenc, // Perform One Round of an AES Encryption Flow
864NN_aesenclast, // Perform the Last Round of an AES Encryption Flow
865NN_aesdec, // Perform One Round of an AES Decryption Flow
866NN_aesdeclast, // Perform the Last Round of an AES Decryption Flow
867NN_aesimc, // Perform the AES InvMixColumn Transformation
868NN_aeskeygenassist, // AES Round Key Generation Assist
869
870// Carryless multiplication
871
872NN_pclmulqdq, // Carry-Less Multiplication Quadword
873
874// Returns modifies by operand size prefixes
875
876NN_retnw, // Return Near from Procedure (use16)
877NN_retnd, // Return Near from Procedure (use32)
878NN_retnq, // Return Near from Procedure (use64)
879NN_retfw, // Return Far from Procedure (use16)
880NN_retfd, // Return Far from Procedure (use32)
881NN_retfq, // Return Far from Procedure (use64)
882
883// RDRAND support
884
885NN_rdrand, // Read Random Number
886
887// new GPR instructions
888
889NN_adcx, // Unsigned Integer Addition of Two Operands with Carry Flag
890NN_adox, // Unsigned Integer Addition of Two Operands with Overflow Flag
891NN_andn, // Logical AND NOT
892NN_bextr, // Bit Field Extract
893NN_blsi, // Extract Lowest Set Isolated Bit
894NN_blsmsk, // Get Mask Up to Lowest Set Bit
895NN_blsr, // Reset Lowest Set Bit
896NN_bzhi, // Zero High Bits Starting with Specified Bit Position
897NN_clac, // Clear AC Flag in EFLAGS Register
898NN_mulx, // Unsigned Multiply Without Affecting Flags
899NN_pdep, // Parallel Bits Deposit
900NN_pext, // Parallel Bits Extract
901NN_rorx, // Rotate Right Logical Without Affecting Flags
902NN_sarx, // Shift Arithmetically Right Without Affecting Flags
903NN_shlx, // Shift Logically Left Without Affecting Flags
904NN_shrx, // Shift Logically Right Without Affecting Flags
905NN_stac, // Set AC Flag in EFLAGS Register
906NN_tzcnt, // Count the Number of Trailing Zero Bits
907NN_xsaveopt, // Save Processor Extended States Optimized
908NN_invpcid, // Invalidate Processor Context ID
909NN_rdseed, // Read Random Seed
910NN_rdfsbase, // Read FS Segment Base
911NN_rdgsbase, // Read GS Segment Base
912NN_wrfsbase, // Write FS Segment Base
913NN_wrgsbase, // Write GS Segment Base
914
915// new AVX instructions
916
917NN_vaddpd, // Add Packed Double-Precision Floating-Point Values
918NN_vaddps, // Packed Single-FP Add
919NN_vaddsd, // Add Scalar Double-Precision Floating-Point Values
920NN_vaddss, // Scalar Single-FP Add
921NN_vaddsubpd, // Add /Sub packed DP FP numbers
922NN_vaddsubps, // Add /Sub packed SP FP numbers
923NN_vaesdec, // Perform One Round of an AES Decryption Flow
924NN_vaesdeclast, // Perform the Last Round of an AES Decryption Flow
925NN_vaesenc, // Perform One Round of an AES Encryption Flow
926NN_vaesenclast, // Perform the Last Round of an AES Encryption Flow
927NN_vaesimc, // Perform the AES InvMixColumn Transformation
928NN_vaeskeygenassist, // AES Round Key Generation Assist
929NN_vandnpd, // Bitwise Logical AND NOT of Packed Double-Precision Floating-Point Values
930NN_vandnps, // Bitwise Logical And Not for Single-FP
931NN_vandpd, // Bitwise Logical AND of Packed Double-Precision Floating-Point Values
932NN_vandps, // Bitwise Logical And for Single-FP
933NN_vblendpd, // Blend Packed Double Precision Floating-Point Values
934NN_vblendps, // Blend Packed Single Precision Floating-Point Values
935NN_vblendvpd, // Variable Blend Packed Double Precision Floating-Point Values
936NN_vblendvps, // Variable Blend Packed Single Precision Floating-Point Values
937NN_vbroadcastf128, // Broadcast 128 Bits of Floating-Point Data
938NN_vbroadcasti128, // Broadcast 128 Bits of Integer Data
939NN_vbroadcastsd, // Broadcast Double-Precision Floating-Point Element
940NN_vbroadcastss, // Broadcast Single-Precision Floating-Point Element
941NN_vcmppd, // Compare Packed Double-Precision Floating-Point Values
942NN_vcmpps, // Packed Single-FP Compare
943NN_vcmpsd, // Compare Scalar Double-Precision Floating-Point Values
944NN_vcmpss, // Scalar Single-FP Compare
945NN_vcomisd, // Compare Scalar Ordered Double-Precision Floating-Point Values and Set EFLAGS
946NN_vcomiss, // Scalar Ordered Single-FP Compare and Set EFLAGS
947NN_vcvtdq2pd, // Convert Packed Doubleword Integers to Packed Single-Precision Floating-Point Values
948NN_vcvtdq2ps, // Convert Packed Doubleword Integers to Packed Double-Precision Floating-Point Values
949NN_vcvtpd2dq, // Convert Packed Double-Precision Floating-Point Values to Packed Doubleword Integers
950NN_vcvtpd2ps, // Convert Packed Double-Precision Floating-Point Values to Packed Single-Precision Floating-Point Values
951NN_vcvtph2ps, // Convert 16-bit FP Values to Single-Precision FP Values
952NN_vcvtps2dq, // Convert Packed Single-Precision Floating-Point Values to Packed Doubleword Integers
953NN_vcvtps2pd, // Convert Packed Single-Precision Floating-Point Values to Packed Double-Precision Floating-Point Values
954NN_vcvtps2ph, // Convert Single-Precision FP value to 16-bit FP value
955NN_vcvtsd2si, // Convert Scalar Double-Precision Floating-Point Value to Doubleword Integer
956NN_vcvtsd2ss, // Convert Scalar Double-Precision Floating-Point Value to Scalar Single-Precision Floating-Point Value
957NN_vcvtsi2sd, // Convert Doubleword Integer to Scalar Double-Precision Floating-Point Value
958NN_vcvtsi2ss, // Scalar signed INT32 to Single-FP conversion
959NN_vcvtss2sd, // Convert Scalar Single-Precision Floating-Point Value to Scalar Double-Precision Floating-Point Value
960NN_vcvtss2si, // Scalar Single-FP to signed INT32 conversion
961NN_vcvttpd2dq, // Convert With Truncation Packed Double-Precision Floating-Point Values to Packed Doubleword Integers
962NN_vcvttps2dq, // Convert With Truncation Packed Single-Precision Floating-Point Values to Packed Doubleword Integers
963NN_vcvttsd2si, // Convert with Truncation Scalar Double-Precision Floating-Point Value to Doubleword Integer
964NN_vcvttss2si, // Scalar Single-FP to signed INT32 conversion (truncate)
965NN_vdivpd, // Divide Packed Double-Precision Floating-Point Values
966NN_vdivps, // Packed Single-FP Divide
967NN_vdivsd, // Divide Scalar Double-Precision Floating-Point Values
968NN_vdivss, // Scalar Single-FP Divide
969NN_vdppd, // Dot Product of Packed Double Precision Floating-Point Values
970NN_vdpps, // Dot Product of Packed Single Precision Floating-Point Values
971NN_vextractf128, // Extract Packed Floating-Point Values
972NN_vextracti128, // Extract Packed Integer Values
973NN_vextractps, // Extract Packed Floating-Point Values
974NN_vfmadd132pd, // Fused Multiply-Add of Packed Double-Precision Floating-Point Values
975NN_vfmadd132ps, // Fused Multiply-Add of Packed Single-Precision Floating-Point Values
976NN_vfmadd132sd, // Fused Multiply-Add of Scalar Double-Precision Floating-Point Values
977NN_vfmadd132ss, // Fused Multiply-Add of Scalar Single-Precision Floating-Point Values
978NN_vfmadd213pd, // Fused Multiply-Add of Packed Double-Precision Floating-Point Values
979NN_vfmadd213ps, // Fused Multiply-Add of Packed Single-Precision Floating-Point Values
980NN_vfmadd213sd, // Fused Multiply-Add of Scalar Double-Precision Floating-Point Values
981NN_vfmadd213ss, // Fused Multiply-Add of Scalar Single-Precision Floating-Point Values
982NN_vfmadd231pd, // Fused Multiply-Add of Packed Double-Precision Floating-Point Values
983NN_vfmadd231ps, // Fused Multiply-Add of Packed Single-Precision Floating-Point Values
984NN_vfmadd231sd, // Fused Multiply-Add of Scalar Double-Precision Floating-Point Values
985NN_vfmadd231ss, // Fused Multiply-Add of Scalar Single-Precision Floating-Point Values
986NN_vfmaddsub132pd, // Fused Multiply-Alternating Add/Subtract of Packed Double-Precision Floating-Point Values
987NN_vfmaddsub132ps, // Fused Multiply-Alternating Add/Subtract of Packed Single-Precision Floating-Point Values
988NN_vfmaddsub213pd, // Fused Multiply-Alternating Add/Subtract of Packed Double-Precision Floating-Point Values
989NN_vfmaddsub213ps, // Fused Multiply-Alternating Add/Subtract of Packed Single-Precision Floating-Point Values
990NN_vfmaddsub231pd, // Fused Multiply-Alternating Add/Subtract of Packed Double-Precision Floating-Point Values
991NN_vfmaddsub231ps, // Fused Multiply-Alternating Add/Subtract of Packed Single-Precision Floating-Point Values
992NN_vfmsub132pd, // Fused Multiply-Subtract of Packed Double-Precision Floating-Point Values
993NN_vfmsub132ps, // Fused Multiply-Subtract of Packed Single-Precision Floating-Point Values
994NN_vfmsub132sd, // Fused Multiply-Subtract of Scalar Double-Precision Floating-Point Values
995NN_vfmsub132ss, // Fused Multiply-Subtract of Scalar Single-Precision Floating-Point Values
996NN_vfmsub213pd, // Fused Multiply-Subtract of Packed Double-Precision Floating-Point Values
997NN_vfmsub213ps, // Fused Multiply-Subtract of Packed Single-Precision Floating-Point Values
998NN_vfmsub213sd, // Fused Multiply-Subtract of Scalar Double-Precision Floating-Point Values
999NN_vfmsub213ss, // Fused Multiply-Subtract of Scalar Single-Precision Floating-Point Values
1000NN_vfmsub231pd, // Fused Multiply-Subtract of Packed Double-Precision Floating-Point Values
1001NN_vfmsub231ps, // Fused Multiply-Subtract of Packed Single-Precision Floating-Point Values
1002NN_vfmsub231sd, // Fused Multiply-Subtract of Scalar Double-Precision Floating-Point Values
1003NN_vfmsub231ss, // Fused Multiply-Subtract of Scalar Single-Precision Floating-Point Values
1004NN_vfmsubadd132pd, // Fused Multiply-Alternating Subtract/Add of Packed Double-Precision Floating-Point Values
1005NN_vfmsubadd132ps, // Fused Multiply-Alternating Subtract/Add of Packed Single-Precision Floating-Point Values
1006NN_vfmsubadd213pd, // Fused Multiply-Alternating Subtract/Add of Packed Double-Precision Floating-Point Values
1007NN_vfmsubadd213ps, // Fused Multiply-Alternating Subtract/Add of Packed Single-Precision Floating-Point Values
1008NN_vfmsubadd231pd, // Fused Multiply-Alternating Subtract/Add of Packed Double-Precision Floating-Point Values
1009NN_vfmsubadd231ps, // Fused Multiply-Alternating Subtract/Add of Packed Single-Precision Floating-Point Values
1010NN_vfnmadd132pd, // Fused Negative Multiply-Add of Packed Double-Precision Floating-Point Values
1011NN_vfnmadd132ps, // Fused Negative Multiply-Add of Packed Single-Precision Floating-Point Values
1012NN_vfnmadd132sd, // Fused Negative Multiply-Add of Scalar Double-Precision Floating-Point Values
1013NN_vfnmadd132ss, // Fused Negative Multiply-Add of Scalar Single-Precision Floating-Point Values
1014NN_vfnmadd213pd, // Fused Negative Multiply-Add of Packed Double-Precision Floating-Point Values
1015NN_vfnmadd213ps, // Fused Negative Multiply-Add of Packed Single-Precision Floating-Point Values
1016NN_vfnmadd213sd, // Fused Negative Multiply-Add of Scalar Double-Precision Floating-Point Values
1017NN_vfnmadd213ss, // Fused Negative Multiply-Add of Scalar Single-Precision Floating-Point Values
1018NN_vfnmadd231pd, // Fused Negative Multiply-Add of Packed Double-Precision Floating-Point Values
1019NN_vfnmadd231ps, // Fused Negative Multiply-Add of Packed Single-Precision Floating-Point Values
1020NN_vfnmadd231sd, // Fused Negative Multiply-Add of Scalar Double-Precision Floating-Point Values
1021NN_vfnmadd231ss, // Fused Negative Multiply-Add of Scalar Single-Precision Floating-Point Values
1022NN_vfnmsub132pd, // Fused Negative Multiply-Subtract of Packed Double-Precision Floating-Point Values
1023NN_vfnmsub132ps, // Fused Negative Multiply-Subtract of Packed Single-Precision Floating-Point Values
1024NN_vfnmsub132sd, // Fused Negative Multiply-Subtract of Scalar Double-Precision Floating-Point Values
1025NN_vfnmsub132ss, // Fused Negative Multiply-Subtract of Scalar Single-Precision Floating-Point Values
1026NN_vfnmsub213pd, // Fused Negative Multiply-Subtract of Packed Double-Precision Floating-Point Values
1027NN_vfnmsub213ps, // Fused Negative Multiply-Subtract of Packed Single-Precision Floating-Point Values
1028NN_vfnmsub213sd, // Fused Negative Multiply-Subtract of Scalar Double-Precision Floating-Point Values
1029NN_vfnmsub213ss, // Fused Negative Multiply-Subtract of Scalar Single-Precision Floating-Point Values
1030NN_vfnmsub231pd, // Fused Negative Multiply-Subtract of Packed Double-Precision Floating-Point Values
1031NN_vfnmsub231ps, // Fused Negative Multiply-Subtract of Packed Single-Precision Floating-Point Values
1032NN_vfnmsub231sd, // Fused Negative Multiply-Subtract of Scalar Double-Precision Floating-Point Values
1033NN_vfnmsub231ss, // Fused Negative Multiply-Subtract of Scalar Single-Precision Floating-Point Values
1034NN_vgatherdps, // Gather Packed SP FP Values Using Signed Dword Indices
1035NN_vgatherdpd, // Gather Packed DP FP Values Using Signed Dword Indices
1036NN_vgatherqps, // Gather Packed SP FP Values Using Signed Qword Indices
1037NN_vgatherqpd, // Gather Packed DP FP Values Using Signed Qword Indices
1038NN_vhaddpd, // Add horizontally packed DP FP numbers
1039NN_vhaddps, // Add horizontally packed SP FP numbers
1040NN_vhsubpd, // Sub horizontally packed DP FP numbers
1041NN_vhsubps, // Sub horizontally packed SP FP numbers
1042NN_vinsertf128, // Insert Packed Floating-Point Values
1043NN_vinserti128, // Insert Packed Integer Values
1044NN_vinsertps, // Insert Packed Single Precision Floating-Point Value
1045NN_vlddqu, // Load Unaligned Packed Integer Values
1046NN_vldmxcsr, // Load Streaming SIMD Extensions Technology Control/Status Register
1047NN_vmaskmovdqu, // Store Selected Bytes of Double Quadword with NT Hint
1048NN_vmaskmovpd, // Conditionally Load Packed Double-Precision Floating-Point Values
1049NN_vmaskmovps, // Conditionally Load Packed Single-Precision Floating-Point Values
1050NN_vmaxpd, // Return Maximum Packed Double-Precision Floating-Point Values
1051NN_vmaxps, // Packed Single-FP Maximum
1052NN_vmaxsd, // Return Maximum Scalar Double-Precision Floating-Point Value
1053NN_vmaxss, // Scalar Single-FP Maximum
1054NN_vminpd, // Return Minimum Packed Double-Precision Floating-Point Values
1055NN_vminps, // Packed Single-FP Minimum
1056NN_vminsd, // Return Minimum Scalar Double-Precision Floating-Point Value
1057NN_vminss, // Scalar Single-FP Minimum
1058NN_vmovapd, // Move Aligned Packed Double-Precision Floating-Point Values
1059NN_vmovaps, // Move Aligned Four Packed Single-FP
1060NN_vmovd, // Move 32 bits
1061NN_vmovddup, // Move One Double-FP and Duplicate
1062NN_vmovdqa, // Move Aligned Double Quadword
1063NN_vmovdqu, // Move Unaligned Double Quadword
1064NN_vmovhlps, // Move High to Low Packed Single-FP
1065NN_vmovhpd, // Move High Packed Double-Precision Floating-Point Values
1066NN_vmovhps, // Move High Packed Single-FP
1067NN_vmovlhps, // Move Low to High Packed Single-FP
1068NN_vmovlpd, // Move Low Packed Double-Precision Floating-Point Values
1069NN_vmovlps, // Move Low Packed Single-FP
1070NN_vmovmskpd, // Extract Packed Double-Precision Floating-Point Sign Mask
1071NN_vmovmskps, // Move Mask to Register
1072NN_vmovntdq, // Store Double Quadword Using Non-Temporal Hint
1073NN_vmovntdqa, // Load Double Quadword Non-Temporal Aligned Hint
1074NN_vmovntpd, // Store Packed Double-Precision Floating-Point Values Using Non-Temporal Hint
1075NN_vmovntps, // Move Aligned Four Packed Single-FP Non Temporal
1076NN_vmovq, // Move 64 bits
1077NN_vmovsd, // Move Scalar Double-Precision Floating-Point Values
1078NN_vmovshdup, // Move Packed Single-FP High and Duplicate
1079NN_vmovsldup, // Move Packed Single-FP Low and Duplicate
1080NN_vmovss, // Move Scalar Single-FP
1081NN_vmovupd, // Move Unaligned Packed Double-Precision Floating-Point Values
1082NN_vmovups, // Move Unaligned Four Packed Single-FP
1083NN_vmpsadbw, // Compute Multiple Packed Sums of Absolute Difference
1084NN_vmulpd, // Multiply Packed Double-Precision Floating-Point Values
1085NN_vmulps, // Packed Single-FP Multiply
1086NN_vmulsd, // Multiply Scalar Double-Precision Floating-Point Values
1087NN_vmulss, // Scalar Single-FP Multiply
1088NN_vorpd, // Bitwise Logical OR of Double-Precision Floating-Point Values
1089NN_vorps, // Bitwise Logical OR for Single-FP Data
1090NN_vpabsb, // Packed Absolute Value Byte
1091NN_vpabsd, // Packed Absolute Value Doubleword
1092NN_vpabsw, // Packed Absolute Value Word
1093NN_vpackssdw, // Pack with Signed Saturation (Dword->Word)
1094NN_vpacksswb, // Pack with Signed Saturation (Word->Byte)
1095NN_vpackusdw, // Pack with Unsigned Saturation
1096NN_vpackuswb, // Pack with Unsigned Saturation (Word->Byte)
1097NN_vpaddb, // Packed Add Byte
1098NN_vpaddd, // Packed Add Dword
1099NN_vpaddq, // Add Packed Quadword Integers
1100NN_vpaddsb, // Packed Add with Saturation (Byte)
1101NN_vpaddsw, // Packed Add with Saturation (Word)
1102NN_vpaddusb, // Packed Add Unsigned with Saturation (Byte)
1103NN_vpaddusw, // Packed Add Unsigned with Saturation (Word)
1104NN_vpaddw, // Packed Add Word
1105NN_vpalignr, // Packed Align Right
1106NN_vpand, // Bitwise Logical And
1107NN_vpandn, // Bitwise Logical And Not
1108NN_vpavgb, // Packed Average (Byte)
1109NN_vpavgw, // Packed Average (Word)
1110NN_vpblendd, // Blend Packed Dwords
1111NN_vpblendvb, // Variable Blend Packed Bytes
1112NN_vpblendw, // Blend Packed Words
1113NN_vpbroadcastb, // Broadcast a Byte Integer
1114NN_vpbroadcastd, // Broadcast a Dword Integer
1115NN_vpbroadcastq, // Broadcast a Qword Integer
1116NN_vpbroadcastw, // Broadcast a Word Integer
1117NN_vpclmulqdq, // Carry-Less Multiplication Quadword
1118NN_vpcmpeqb, // Packed Compare for Equal (Byte)
1119NN_vpcmpeqd, // Packed Compare for Equal (Dword)
1120NN_vpcmpeqq, // Compare Packed Qword Data for Equal
1121NN_vpcmpeqw, // Packed Compare for Equal (Word)
1122NN_vpcmpestri, // Packed Compare Explicit Length Strings, Return Index
1123NN_vpcmpestrm, // Packed Compare Explicit Length Strings, Return Mask
1124NN_vpcmpgtb, // Packed Compare for Greater Than (Byte)
1125NN_vpcmpgtd, // Packed Compare for Greater Than (Dword)
1126NN_vpcmpgtq, // Compare Packed Data for Greater Than
1127NN_vpcmpgtw, // Packed Compare for Greater Than (Word)
1128NN_vpcmpistri, // Packed Compare Implicit Length Strings, Return Index
1129NN_vpcmpistrm, // Packed Compare Implicit Length Strings, Return Mask
1130NN_vperm2f128, // Permute Floating-Point Values
1131NN_vperm2i128, // Permute Integer Values
1132NN_vpermd, // Full Doublewords Element Permutation
1133NN_vpermilpd, // Permute Double-Precision Floating-Point Values
1134NN_vpermilps, // Permute Single-Precision Floating-Point Values
1135NN_vpermpd, // Permute Double-Precision Floating-Point Elements
1136NN_vpermps, // Permute Single-Precision Floating-Point Elements
1137NN_vpermq, // Qwords Element Permutation
1138NN_vpextrb, // Extract Byte
1139NN_vpextrd, // Extract Dword
1140NN_vpextrq, // Extract Qword
1141NN_vpextrw, // Extract Word
1142NN_vpgatherdd, // Gather Packed Dword Values Using Signed Dword Indices
1143NN_vpgatherdq, // Gather Packed Qword Values Using Signed Dword Indices
1144NN_vpgatherqd, // Gather Packed Dword Values Using Signed Qword Indices
1145NN_vpgatherqq, // Gather Packed Qword Values Using Signed Qword Indices
1146NN_vphaddd, // Packed Horizontal Add Doubleword
1147NN_vphaddsw, // Packed Horizontal Add and Saturate
1148NN_vphaddw, // Packed Horizontal Add Word
1149NN_vphminposuw, // Packed Horizontal Word Minimum
1150NN_vphsubd, // Packed Horizontal Subtract Doubleword
1151NN_vphsubsw, // Packed Horizontal Subtract and Saturate
1152NN_vphsubw, // Packed Horizontal Subtract Word
1153NN_vpinsrb, // Insert Byte
1154NN_vpinsrd, // Insert Dword
1155NN_vpinsrq, // Insert Qword
1156NN_vpinsrw, // Insert Word
1157NN_vpmaddubsw, // Multiply and Add Packed Signed and Unsigned Bytes
1158NN_vpmaddwd, // Packed Multiply and Add
1159NN_vpmaskmovd, // Conditionally Store Dword Values Using Mask
1160NN_vpmaskmovq, // Conditionally Store Qword Values Using Mask
1161NN_vpmaxsb, // Maximum of Packed Signed Byte Integers
1162NN_vpmaxsd, // Maximum of Packed Signed Dword Integers
1163NN_vpmaxsw, // Packed Signed Integer Word Maximum
1164NN_vpmaxub, // Packed Unsigned Integer Byte Maximum
1165NN_vpmaxud, // Maximum of Packed Unsigned Dword Integers
1166NN_vpmaxuw, // Maximum of Packed Word Integers
1167NN_vpminsb, // Minimum of Packed Signed Byte Integers
1168NN_vpminsd, // Minimum of Packed Signed Dword Integers
1169NN_vpminsw, // Packed Signed Integer Word Minimum
1170NN_vpminub, // Packed Unsigned Integer Byte Minimum
1171NN_vpminud, // Minimum of Packed Unsigned Dword Integers
1172NN_vpminuw, // Minimum of Packed Word Integers
1173NN_vpmovmskb, // Move Byte Mask to Integer
1174NN_vpmovsxbd, // Packed Move with Sign Extend
1175NN_vpmovsxbq, // Packed Move with Sign Extend
1176NN_vpmovsxbw, // Packed Move with Sign Extend
1177NN_vpmovsxdq, // Packed Move with Sign Extend
1178NN_vpmovsxwd, // Packed Move with Sign Extend
1179NN_vpmovsxwq, // Packed Move with Sign Extend
1180NN_vpmovzxbd, // Packed Move with Zero Extend
1181NN_vpmovzxbq, // Packed Move with Zero Extend
1182NN_vpmovzxbw, // Packed Move with Zero Extend
1183NN_vpmovzxdq, // Packed Move with Zero Extend
1184NN_vpmovzxwd, // Packed Move with Zero Extend
1185NN_vpmovzxwq, // Packed Move with Zero Extend
1186NN_vpmuldq, // Multiply Packed Signed Dword Integers
1187NN_vpmulhrsw, // Packed Multiply High with Round and Scale
1188NN_vpmulhuw, // Packed Multiply High Unsigned
1189NN_vpmulhw, // Packed Multiply High
1190NN_vpmulld, // Multiply Packed Signed Dword Integers and Store Low Result
1191NN_vpmullw, // Packed Multiply Low
1192NN_vpmuludq, // Multiply Packed Unsigned Doubleword Integers
1193NN_vpor, // Bitwise Logical Or
1194NN_vpsadbw, // Packed Sum of Absolute Differences
1195NN_vpshufb, // Packed Shuffle Bytes
1196NN_vpshufd, // Shuffle Packed Doublewords
1197NN_vpshufhw, // Shuffle Packed High Words
1198NN_vpshuflw, // Shuffle Packed Low Words
1199NN_vpsignb, // Packed SIGN Byte
1200NN_vpsignd, // Packed SIGN Doubleword
1201NN_vpsignw, // Packed SIGN Word
1202NN_vpslld, // Packed Shift Left Logical (Dword)
1203NN_vpslldq, // Shift Double Quadword Left Logical
1204NN_vpsllq, // Packed Shift Left Logical (Qword)
1205NN_vpsllvd, // Variable Bit Shift Left Logical (Dword)
1206NN_vpsllvq, // Variable Bit Shift Left Logical (Qword)
1207NN_vpsllw, // Packed Shift Left Logical (Word)
1208NN_vpsrad, // Packed Shift Right Arithmetic (Dword)
1209NN_vpsravd, // Variable Bit Shift Right Arithmetic
1210NN_vpsraw, // Packed Shift Right Arithmetic (Word)
1211NN_vpsrld, // Packed Shift Right Logical (Dword)
1212NN_vpsrldq, // Shift Double Quadword Right Logical (Qword)
1213NN_vpsrlq, // Packed Shift Right Logical (Qword)
1214NN_vpsrlvd, // Variable Bit Shift Right Logical (Dword)
1215NN_vpsrlvq, // Variable Bit Shift Right Logical (Qword)
1216NN_vpsrlw, // Packed Shift Right Logical (Word)
1217NN_vpsubb, // Packed Subtract Byte
1218NN_vpsubd, // Packed Subtract Dword
1219NN_vpsubq, // Subtract Packed Quadword Integers
1220NN_vpsubsb, // Packed Subtract with Saturation (Byte)
1221NN_vpsubsw, // Packed Subtract with Saturation (Word)
1222NN_vpsubusb, // Packed Subtract Unsigned with Saturation (Byte)
1223NN_vpsubusw, // Packed Subtract Unsigned with Saturation (Word)
1224NN_vpsubw, // Packed Subtract Word
1225NN_vptest, // Logical Compare
1226NN_vpunpckhbw, // Unpack High Packed Data (Byte->Word)
1227NN_vpunpckhdq, // Unpack High Packed Data (Dword->Qword)
1228NN_vpunpckhqdq, // Unpack High Packed Data (Qword->Xmmword)
1229NN_vpunpckhwd, // Unpack High Packed Data (Word->Dword)
1230NN_vpunpcklbw, // Unpack Low Packed Data (Byte->Word)
1231NN_vpunpckldq, // Unpack Low Packed Data (Dword->Qword)
1232NN_vpunpcklqdq, // Unpack Low Packed Data (Qword->Xmmword)
1233NN_vpunpcklwd, // Unpack Low Packed Data (Word->Dword)
1234NN_vpxor, // Bitwise Logical Exclusive Or
1235NN_vrcpps, // Packed Single-FP Reciprocal
1236NN_vrcpss, // Scalar Single-FP Reciprocal
1237NN_vroundpd, // Round Packed Double Precision Floating-Point Values
1238NN_vroundps, // Round Packed Single Precision Floating-Point Values
1239NN_vroundsd, // Round Scalar Double Precision Floating-Point Values
1240NN_vroundss, // Round Scalar Single Precision Floating-Point Values
1241NN_vrsqrtps, // Packed Single-FP Square Root Reciprocal
1242NN_vrsqrtss, // Scalar Single-FP Square Root Reciprocal
1243NN_vshufpd, // Shuffle Packed Double-Precision Floating-Point Values
1244NN_vshufps, // Shuffle Single-FP
1245NN_vsqrtpd, // Compute Square Roots of Packed Double-Precision Floating-Point Values
1246NN_vsqrtps, // Packed Single-FP Square Root
1247NN_vsqrtsd, // Compute Square Rootof Scalar Double-Precision Floating-Point Value
1248NN_vsqrtss, // Scalar Single-FP Square Root
1249NN_vstmxcsr, // Store Streaming SIMD Extensions Technology Control/Status Register
1250NN_vsubpd, // Subtract Packed Double-Precision Floating-Point Values
1251NN_vsubps, // Packed Single-FP Subtract
1252NN_vsubsd, // Subtract Scalar Double-Precision Floating-Point Values
1253NN_vsubss, // Scalar Single-FP Subtract
1254NN_vtestpd, // Packed Double-Precision Floating-Point Bit Test
1255NN_vtestps, // Packed Single-Precision Floating-Point Bit Test
1256NN_vucomisd, // Unordered Compare Scalar Ordered Double-Precision Floating-Point Values and Set EFLAGS
1257NN_vucomiss, // Scalar Unordered Single-FP Compare and Set EFLAGS
1258NN_vunpckhpd, // Unpack and Interleave High Packed Double-Precision Floating-Point Values
1259NN_vunpckhps, // Unpack High Packed Single-FP Data
1260NN_vunpcklpd, // Unpack and Interleave Low Packed Double-Precision Floating-Point Values
1261NN_vunpcklps, // Unpack Low Packed Single-FP Data
1262NN_vxorpd, // Bitwise Logical OR of Double-Precision Floating-Point Values
1263NN_vxorps, // Bitwise Logical XOR for Single-FP Data
1264NN_vzeroall, // Zero All YMM Registers
1265NN_vzeroupper, // Zero Upper Bits of YMM Registers
1266
1267// Transactional Synchronization Extensions
1268
1269NN_xabort, // Transaction Abort
1270NN_xbegin, // Transaction Begin
1271NN_xend, // Transaction End
1272NN_xtest, // Test If In Transactional Execution
1273
1274// Virtual PC synthetic instructions
1275
1276NN_vmgetinfo, // Virtual PC - Get VM Information
1277NN_vmsetinfo, // Virtual PC - Set VM Information
1278NN_vmdxdsbl, // Virtual PC - Disable Direct Execution
1279NN_vmdxenbl, // Virtual PC - Enable Direct Execution
1280NN_vmcpuid, // Virtual PC - Virtualized CPU Information
1281NN_vmhlt, // Virtual PC - Halt
1282NN_vmsplaf, // Virtual PC - Spin Lock Acquisition Failed
1283NN_vmpushfd, // Virtual PC - Push virtualized flags register
1284NN_vmpopfd, // Virtual PC - Pop virtualized flags register
1285NN_vmcli, // Virtual PC - Clear Interrupt Flag
1286NN_vmsti, // Virtual PC - Set Interrupt Flag
1287NN_vmiretd, // Virtual PC - Return From Interrupt
1288NN_vmsgdt, // Virtual PC - Store Global Descriptor Table
1289NN_vmsidt, // Virtual PC - Store Interrupt Descriptor Table
1290NN_vmsldt, // Virtual PC - Store Local Descriptor Table
1291NN_vmstr, // Virtual PC - Store Task Register
1292NN_vmsdte, // Virtual PC - Store to Descriptor Table Entry
1293NN_vpcext, // Virtual PC - ISA extension
1294
1295// AMD FMA4
1296
1297NN_vfmaddsubps, // Multiply with Alternating Add/Subtract of Packed Single-Precision Floating-Point
1298NN_vfmaddsubpd, // Multiply with Alternating Add/Subtract of Packed Double-Precision Floating-Point
1299NN_vfmsubaddps, // Multiply with Alternating Subtract/Add of Packed Single-Precision Floating-Point
1300NN_vfmsubaddpd, // Multiply with Alternating Subtract/Add of Packed Double-Precision Floating-Point
1301NN_vfmaddps, // Multiply and Add Packed Single-Precision Floating-Point
1302NN_vfmaddpd, // Multiply and Add Packed Double-Precision Floating-Point
1303NN_vfmaddss, // Multiply and Add Scalar Single-Precision Floating-Point
1304NN_vfmaddsd, // Multiply and Add Scalar Double-Precision Floating-Point
1305NN_vfmsubps, // Multiply and Subtract Packed Single-Precision Floating-Point
1306NN_vfmsubpd, // Multiply and Subtract Packed Double-Precision Floating-Point
1307NN_vfmsubss, // Multiply and Subtract Scalar Single-Precision Floating-Point
1308NN_vfmsubsd, // Multiply and Subtract Scalar Double-Precision Floating-Point
1309NN_vfnmaddps, // Negative Multiply and Add Packed Single-Precision Floating-Point
1310NN_vfnmaddpd, // Negative Multiply and Add Packed Double-Precision Floating-Point
1311NN_vfnmaddss, // Negative Multiply and Add Scalar Single-Precision Floating-Point
1312NN_vfnmaddsd, // Negative Multiply and Add Double Single-Precision Floating-Point
1313NN_vfnmsubps, // Negative Multiply and Subtract Packed Single-Precision Floating-Point
1314NN_vfnmsubpd, // Negative Multiply and Subtract Packed Double-Precision Floating-Point
1315NN_vfnmsubss, // Negative Multiply and Subtract Scalar Single-Precision Floating-Point
1316NN_vfnmsubsd, // Negative Multiply and Subtract Double Single-Precision Floating-Point
1317
1318// Intel Memory Protection Extensions (MPX)
1319
1320NN_bndmk, // Make Bounds
1321NN_bndcl, // Check Lower Bound
1322NN_bndcu, // Check Upper Bound
1323NN_bndcn, // Check Upper Bound
1324NN_bndmov, // Move Bounds
1325NN_bndldx, // Load Extended Bounds Using Address Translation
1326NN_bndstx, // Store Extended Bounds Using Address Translation
1327
1328// New xstate instructions
1329
1330NN_xrstors, // Restore Processor Extended States Supervisor
1331NN_xsavec, // Save Processor Extended States with Compaction
1332NN_xsaves, // Save Processor Extended States Supervisor
1333
1334// PREFETCHWT1 support
1335
1336NN_prefetchwt1, // Prefetch Vector Data Into Caches with Intent to Write and T1 Hint
1337
1338// Memory instructions
1339
1340NN_clflushopt, // Flush a Cache Line Optimized
1341NN_clwb, // Cache Line Write Back
1342NN_pcommit, // Persistent Commit (deprecated by Intel)
1343
1344// Protection Key Rights for User Pages
1345
1346NN_rdpkru, // Read Protection Key Rights for User Pages
1347NN_wrpkru, // Write Data to User Page Key Register
1348
1349// AVX comparison pseudo-ops
1350
1351NN_vcmpeqpd, // Compare Packed Double-Precision Floating-Point Values - Equal (ordered, non-signaling)
1352NN_vcmpltpd, // Compare Packed Double-Precision Floating-Point Values - Less-than (ordered, signaling)
1353NN_vcmplepd, // Compare Packed Double-Precision Floating-Point Values - Less-than-or-equal (ordered, signaling)
1354NN_vcmpunordpd, // Compare Packed Double-Precision Floating-Point Values - Unordered (non-signaling)
1355NN_vcmpneqpd, // Compare Packed Double-Precision Floating-Point Values - Not-equal (unordered, non-signaling)
1356NN_vcmpnltpd, // Compare Packed Double-Precision Floating-Point Values - Not-less-than (unordered, signaling)
1357NN_vcmpnlepd, // Compare Packed Double-Precision Floating-Point Values - Not-less-than-or-equal (unordered, signaling)
1358NN_vcmpordpd, // Compare Packed Double-Precision Floating-Point Values - Ordered (non-signaling)
1359NN_vcmpeq_uqpd, // Compare Packed Double-Precision Floating-Point Values - Equal (unordered, non-signaling)
1360NN_vcmpngepd, // Compare Packed Double-Precision Floating-Point Values - Not-greater-than-or-equal (unordered, signaling)
1361NN_vcmpngtpd, // Compare Packed Double-Precision Floating-Point Values - Not-greater-than (unordered, signaling)
1362NN_vcmpfalsepd, // Compare Packed Double-Precision Floating-Point Values - False (ordered, non-signaling)
1363NN_vcmpneq_oqpd, // Compare Packed Double-Precision Floating-Point Values - Not-equal (ordered, non-signaling)
1364NN_vcmpgepd, // Compare Packed Double-Precision Floating-Point Values - Greater-than-or-equal (ordered, signaling)
1365NN_vcmpgtpd, // Compare Packed Double-Precision Floating-Point Values - Greater-than (ordered, signaling)
1366NN_vcmptruepd, // Compare Packed Double-Precision Floating-Point Values - True (unordered, non-signaling)
1367NN_vcmpeq_ospd, // Compare Packed Double-Precision Floating-Point Values - Equal (ordered, signaling)
1368NN_vcmplt_oqpd, // Compare Packed Double-Precision Floating-Point Values - Less-than (ordered, non-signaling)
1369NN_vcmple_oqpd, // Compare Packed Double-Precision Floating-Point Values - Less-than-or-equal (ordered, non-signaling)
1370NN_vcmpunord_spd, // Compare Packed Double-Precision Floating-Point Values - Unordered (signaling)
1371NN_vcmpneq_uspd, // Compare Packed Double-Precision Floating-Point Values - Not-equal (unordered, signaling)
1372NN_vcmpnlt_uqpd, // Compare Packed Double-Precision Floating-Point Values - Not-less-than (unordered, non-signaling)
1373NN_vcmpnle_uqpd, // Compare Packed Double-Precision Floating-Point Values - Not-less-than-or-equal (unordered, non-signaling)
1374NN_vcmpord_spd, // Compare Packed Double-Precision Floating-Point Values - Ordered (signaling)
1375NN_vcmpeq_uspd, // Compare Packed Double-Precision Floating-Point Values - Equal (unordered, signaling)
1376NN_vcmpnge_uqpd, // Compare Packed Double-Precision Floating-Point Values - Not-greater-than-or-equal (unordered, non-signaling)
1377NN_vcmpngt_uqpd, // Compare Packed Double-Precision Floating-Point Values - Not-greater-than (unordered, non-signaling)
1378NN_vcmpfalse_ospd, // Compare Packed Double-Precision Floating-Point Values - False (ordered, signaling)
1379NN_vcmpneq_ospd, // Compare Packed Double-Precision Floating-Point Values - Not-equal (ordered, signaling)
1380NN_vcmpge_oqpd, // Compare Packed Double-Precision Floating-Point Values - Greater-than-or-equal (ordered, non-signaling)
1381NN_vcmpgt_oqpd, // Compare Packed Double-Precision Floating-Point Values - Greater-than (ordered, non-signaling)
1382NN_vcmptrue_uspd, // Compare Packed Double-Precision Floating-Point Values - True (unordered, signaling)
1383
1384NN_vcmpeqps, // Packed Single-FP Compare - Equal (ordered, non-signaling)
1385NN_vcmpltps, // Packed Single-FP Compare - Less-than (ordered, signaling)
1386NN_vcmpleps, // Packed Single-FP Compare - Less-than-or-equal (ordered, signaling)
1387NN_vcmpunordps, // Packed Single-FP Compare - Unordered (non-signaling)
1388NN_vcmpneqps, // Packed Single-FP Compare - Not-equal (unordered, non-signaling)
1389NN_vcmpnltps, // Packed Single-FP Compare - Not-less-than (unordered, signaling)
1390NN_vcmpnleps, // Packed Single-FP Compare - Not-less-than-or-equal (unordered, signaling)
1391NN_vcmpordps, // Packed Single-FP Compare - Ordered (non-signaling)
1392NN_vcmpeq_uqps, // Packed Single-FP Compare - Equal (unordered, non-signaling)
1393NN_vcmpngeps, // Packed Single-FP Compare - Not-greater-than-or-equal (unordered, signaling)
1394NN_vcmpngtps, // Packed Single-FP Compare - Not-greater-than (unordered, signaling)
1395NN_vcmpfalseps, // Packed Single-FP Compare - False (ordered, non-signaling)
1396NN_vcmpneq_oqps, // Packed Single-FP Compare - Not-equal (ordered, non-signaling)
1397NN_vcmpgeps, // Packed Single-FP Compare - Greater-than-or-equal (ordered, signaling)
1398NN_vcmpgtps, // Packed Single-FP Compare - Greater-than (ordered, signaling)
1399NN_vcmptrueps, // Packed Single-FP Compare - True (unordered, non-signaling)
1400NN_vcmpeq_osps, // Packed Single-FP Compare - Equal (ordered, signaling)
1401NN_vcmplt_oqps, // Packed Single-FP Compare - Less-than (ordered, non-signaling)
1402NN_vcmple_oqps, // Packed Single-FP Compare - Less-than-or-equal (ordered, non-signaling)
1403NN_vcmpunord_sps, // Packed Single-FP Compare - Unordered (signaling)
1404NN_vcmpneq_usps, // Packed Single-FP Compare - Not-equal (unordered, signaling)
1405NN_vcmpnlt_uqps, // Packed Single-FP Compare - Not-less-than (unordered, non-signaling)
1406NN_vcmpnle_uqps, // Packed Single-FP Compare - Not-less-than-or-equal (unordered, non-signaling)
1407NN_vcmpord_sps, // Packed Single-FP Compare - Ordered (signaling)
1408NN_vcmpeq_usps, // Packed Single-FP Compare - Equal (unordered, signaling)
1409NN_vcmpnge_uqps, // Packed Single-FP Compare - Not-greater-than-or-equal (unordered, non-signaling)
1410NN_vcmpngt_uqps, // Packed Single-FP Compare - Not-greater-than (unordered, non-signaling)
1411NN_vcmpfalse_osps, // Packed Single-FP Compare - False (ordered, signaling)
1412NN_vcmpneq_osps, // Packed Single-FP Compare - Not-equal (ordered, signaling)
1413NN_vcmpge_oqps, // Packed Single-FP Compare - Greater-than-or-equal (ordered, non-signaling)
1414NN_vcmpgt_oqps, // Packed Single-FP Compare - Greater-than (ordered, non-signaling)
1415NN_vcmptrue_usps, // Packed Single-FP Compare - True (unordered, signaling)
1416
1417NN_vcmpeqsd, // Compare Scalar Double-Precision Floating-Point Values - Equal (ordered, non-signaling)
1418NN_vcmpltsd, // Compare Scalar Double-Precision Floating-Point Values - Less-than (ordered, signaling)
1419NN_vcmplesd, // Compare Scalar Double-Precision Floating-Point Values - Less-than-or-equal (ordered, signaling)
1420NN_vcmpunordsd, // Compare Scalar Double-Precision Floating-Point Values - Unordered (non-signaling)
1421NN_vcmpneqsd, // Compare Scalar Double-Precision Floating-Point Values - Not-equal (unordered, non-signaling)
1422NN_vcmpnltsd, // Compare Scalar Double-Precision Floating-Point Values - Not-less-than (unordered, signaling)
1423NN_vcmpnlesd, // Compare Scalar Double-Precision Floating-Point Values - Not-less-than-or-equal (unordered, signaling)
1424NN_vcmpordsd, // Compare Scalar Double-Precision Floating-Point Values - Ordered (non-signaling)
1425NN_vcmpeq_uqsd, // Compare Scalar Double-Precision Floating-Point Values - Equal (unordered, non-signaling)
1426NN_vcmpngesd, // Compare Scalar Double-Precision Floating-Point Values - Not-greater-than-or-equal (unordered, signaling)
1427NN_vcmpngtsd, // Compare Scalar Double-Precision Floating-Point Values - Not-greater-than (unordered, signaling)
1428NN_vcmpfalsesd, // Compare Scalar Double-Precision Floating-Point Values - False (ordered, non-signaling)
1429NN_vcmpneq_oqsd, // Compare Scalar Double-Precision Floating-Point Values - Not-equal (ordered, non-signaling)
1430NN_vcmpgesd, // Compare Scalar Double-Precision Floating-Point Values - Greater-than-or-equal (ordered, signaling)
1431NN_vcmpgtsd, // Compare Scalar Double-Precision Floating-Point Values - Greater-than (ordered, signaling)
1432NN_vcmptruesd, // Compare Scalar Double-Precision Floating-Point Values - True (unordered, non-signaling)
1433NN_vcmpeq_ossd, // Compare Scalar Double-Precision Floating-Point Values - Equal (ordered, signaling)
1434NN_vcmplt_oqsd, // Compare Scalar Double-Precision Floating-Point Values - Less-than (ordered, non-signaling)
1435NN_vcmple_oqsd, // Compare Scalar Double-Precision Floating-Point Values - Less-than-or-equal (ordered, non-signaling)
1436NN_vcmpunord_ssd, // Compare Scalar Double-Precision Floating-Point Values - Unordered (signaling)
1437NN_vcmpneq_ussd, // Compare Scalar Double-Precision Floating-Point Values - Not-equal (unordered, signaling)
1438NN_vcmpnlt_uqsd, // Compare Scalar Double-Precision Floating-Point Values - Not-less-than (unordered, non-signaling)
1439NN_vcmpnle_uqsd, // Compare Scalar Double-Precision Floating-Point Values - Not-less-than-or-equal (unordered, non-signaling)
1440NN_vcmpord_ssd, // Compare Scalar Double-Precision Floating-Point Values - Ordered (signaling)
1441NN_vcmpeq_ussd, // Compare Scalar Double-Precision Floating-Point Values - Equal (unordered, signaling)
1442NN_vcmpnge_uqsd, // Compare Scalar Double-Precision Floating-Point Values - Not-greater-than-or-equal (unordered, non-signaling)
1443NN_vcmpngt_uqsd, // Compare Scalar Double-Precision Floating-Point Values - Not-greater-than (unordered, non-signaling)
1444NN_vcmpfalse_ossd, // Compare Scalar Double-Precision Floating-Point Values - False (ordered, signaling)
1445NN_vcmpneq_ossd, // Compare Scalar Double-Precision Floating-Point Values - Not-equal (ordered, signaling)
1446NN_vcmpge_oqsd, // Compare Scalar Double-Precision Floating-Point Values - Greater-than-or-equal (ordered, non-signaling)
1447NN_vcmpgt_oqsd, // Compare Scalar Double-Precision Floating-Point Values - Greater-than (ordered, non-signaling)
1448NN_vcmptrue_ussd, // Compare Scalar Double-Precision Floating-Point Values - True (unordered, signaling)
1449
1450NN_vcmpeqss, // Scalar Single-FP Compare - Equal (ordered, non-signaling)
1451NN_vcmpltss, // Scalar Single-FP Compare - Less-than (ordered, signaling)
1452NN_vcmpless, // Scalar Single-FP Compare - Less-than-or-equal (ordered, signaling)
1453NN_vcmpunordss, // Scalar Single-FP Compare - Unordered (non-signaling)
1454NN_vcmpneqss, // Scalar Single-FP Compare - Not-equal (unordered, non-signaling)
1455NN_vcmpnltss, // Scalar Single-FP Compare - Not-less-than (unordered, signaling)
1456NN_vcmpnless, // Scalar Single-FP Compare - Not-less-than-or-equal (unordered, signaling)
1457NN_vcmpordss, // Scalar Single-FP Compare - Ordered (non-signaling)
1458NN_vcmpeq_uqss, // Scalar Single-FP Compare - Equal (unordered, non-signaling)
1459NN_vcmpngess, // Scalar Single-FP Compare - Not-greater-than-or-equal (unordered, signaling)
1460NN_vcmpngtss, // Scalar Single-FP Compare - Not-greater-than (unordered, signaling)
1461NN_vcmpfalsess, // Scalar Single-FP Compare - False (ordered, non-signaling)
1462NN_vcmpneq_oqss, // Scalar Single-FP Compare - Not-equal (ordered, non-signaling)
1463NN_vcmpgess, // Scalar Single-FP Compare - Greater-than-or-equal (ordered, signaling)
1464NN_vcmpgtss, // Scalar Single-FP Compare - Greater-than (ordered, signaling)
1465NN_vcmptruess, // Scalar Single-FP Compare - True (unordered, non-signaling)
1466NN_vcmpeq_osss, // Scalar Single-FP Compare - Equal (ordered, signaling)
1467NN_vcmplt_oqss, // Scalar Single-FP Compare - Less-than (ordered, non-signaling)
1468NN_vcmple_oqss, // Scalar Single-FP Compare - Less-than-or-equal (ordered, non-signaling)
1469NN_vcmpunord_sss, // Scalar Single-FP Compare - Unordered (signaling)
1470NN_vcmpneq_usss, // Scalar Single-FP Compare - Not-equal (unordered, signaling)
1471NN_vcmpnlt_uqss, // Scalar Single-FP Compare - Not-less-than (unordered, non-signaling)
1472NN_vcmpnle_uqss, // Scalar Single-FP Compare - Not-less-than-or-equal (unordered, non-signaling)
1473NN_vcmpord_sss, // Scalar Single-FP Compare - Ordered (signaling)
1474NN_vcmpeq_usss, // Scalar Single-FP Compare - Equal (unordered, signaling)
1475NN_vcmpnge_uqss, // Scalar Single-FP Compare - Not-greater-than-or-equal (unordered, non-signaling)
1476NN_vcmpngt_uqss, // Scalar Single-FP Compare - Not-greater-than (unordered, non-signaling)
1477NN_vcmpfalse_osss, // Scalar Single-FP Compare - False (ordered, signaling)
1478NN_vcmpneq_osss, // Scalar Single-FP Compare - Not-equal (ordered, signaling)
1479NN_vcmpge_oqss, // Scalar Single-FP Compare - Greater-than-or-equal (ordered, non-signaling)
1480NN_vcmpgt_oqss, // Scalar Single-FP Compare - Greater-than (ordered, non-signaling)
1481NN_vcmptrue_usss, // Scalar Single-FP Compare - True (unordered, signaling)
1482
1483// AVX-512 instructions
1484
1485NN_valignd, // Align Doubleword Vectors
1486NN_valignq, // Align Quadword Vectors
1487NN_vblendmpd, // Blend Float64 Vectors Using an OpMask Control
1488NN_vblendmps, // Blend Float32 Vectors Using an OpMask Control
1489NN_vpblendmb, // Blend Byte Vectors Using an Opmask Control
1490NN_vpblendmw, // Blend Word Vectors Using an Opmask Control
1491NN_vpblendmd, // Blend Int32 Vectors Using an OpMask Control
1492NN_vpblendmq, // Blend Int64 Vectors Using an OpMask Control
1493NN_vbroadcastf32x2, // Load with Broadcast Floating-Point Data
1494NN_vbroadcastf32x4, // Load with Broadcast Floating-Point Data
1495NN_vbroadcastf64x2, // Load with Broadcast Floating-Point Data
1496NN_vbroadcastf32x8, // Load with Broadcast Floating-Point Data
1497NN_vbroadcastf64x4, // Load with Broadcast Floating-Point Data
1498NN_vbroadcasti32x2, // Load Integer and Broadcast
1499NN_vbroadcasti32x4, // Load Integer and Broadcast
1500NN_vbroadcasti64x2, // Load Integer and Broadcast
1501NN_vbroadcasti32x8, // Load Integer and Broadcast
1502NN_vbroadcasti64x4, // Load Integer and Broadcast
1503NN_vcompresspd, // Store Sparse Packed Double-Precision Floating-Point Values into Dense Memory
1504NN_vcompressps, // Store Sparse Packed Single-Precision Floating-Point Values into Dense Memory
1505NN_vcvtpd2qq, // Convert Packed Double-Precision Floating-Point Values to Packed Quadword Integers
1506NN_vcvtpd2udq, // Convert Packed Double-Precision Floating-Point Values to Packed Unsigned Doubleword Integers
1507NN_vcvtpd2uqq, // Convert Packed Double-Precision Floating-Point Values to Packed Unsigned Quadword Integers
1508NN_vcvtps2udq, // Convert Packed Single-Precision Floating-Point Values to Packed Unsigned Doubleword Integer Values
1509NN_vcvtps2qq, // Convert Packed Single Precision Floating-Point Values to Packed Singed Quadword Integer Values
1510NN_vcvtps2uqq, // Convert Packed Single Precision Floating-Point Values to Packed Unsigned Quadword Integer Values
1511NN_vcvtqq2pd, // Convert Packed Quadword Integers to Packed Double-Precision Floating-Point Values
1512NN_vcvtqq2ps, // Convert Packed Quadword Integers to Packed Single-Precision Floating-Point Values
1513NN_vcvtsd2usi, // Convert Scalar Double-Precision Floating-Point Value to Unsigned Doubleword Integer
1514NN_vcvtss2usi, // Convert Scalar Single-Precision Floating-Point Value to Unsigned Doubleword Integer
1515NN_vcvttpd2qq, // Convert with Truncation Packed Double-Precision Floating-Point Values to Packed Quadword Integers
1516NN_vcvttpd2udq, // Convert with Truncation Packed Double-Precision Floating-Point Values to Packed Unsigned Doubleword Integers
1517NN_vcvttpd2uqq, // Convert with Truncation Packed Double-Precision Floating-Point Values to Packed Unsigned Quadword Integers
1518NN_vcvttps2udq, // Convert with Truncation Packed Single-Precision Floating-Point Values to Packed Unsigned Doubleword Integer Values
1519NN_vcvttps2qq, // Convert with Truncation Packed Single Precision Floating-Point Values to Packed Singed Quadword Integer Values
1520NN_vcvttps2uqq, // Convert with Truncation Packed Single Precision Floating-Point Values to Packed Unsigned Quadword Integer Values
1521NN_vcvttsd2usi, // Convert with Truncation Scalar Double-Precision Floating-Point Value to Unsigned Integer
1522NN_vcvttss2usi, // Convert with Truncation Scalar Single-Precision Floating-Point Value to Unsigned Integer
1523NN_vcvtudq2pd, // Convert Packed Unsigned Doubleword Integers to Packed Double-Precision Floating-Point Values
1524NN_vcvtudq2ps, // Convert Packed Unsigned Doubleword Integers to Packed Single-Precision Floating-Point Values
1525NN_vcvtuqq2pd, // Convert Packed Unsigned Quadword Integers to Packed Double-Precision Floating-Point Values
1526NN_vcvtuqq2ps, // Convert Packed Unsigned Quadword Integers to Packed Single-Precision Floating-Point Values
1527NN_vcvtusi2sd, // Convert Unsigned Integer to Scalar Double-Precision Floating-Point Value
1528NN_vcvtusi2ss, // Convert Unsigned Integer to Scalar Single-Precision Floating-Point Value
1529NN_vdbpsadbw, // Double Block Packed Sum-Absolute-Differences (SAD) on Unsigned Bytes
1530NN_vexpandpd, // Load Sparse Packed Double-Precision Floating-Point Values from Dense Memory
1531NN_vexpandps, // Load Sparse Packed Single-Precision Floating-Point Values from Dense Memory
1532NN_vextractf32x4, // Extract Packed Floating-Point Values
1533NN_vextractf64x2, // Extract Packed Floating-Point Values
1534NN_vextractf32x8, // Extract Packed Floating-Point Values
1535NN_vextractf64x4, // Extract Packed Floating-Point Values
1536NN_vextracti32x4, // Extract packed Integer Values
1537NN_vextracti64x2, // Extract packed Integer Values
1538NN_vextracti32x8, // Extract packed Integer Values
1539NN_vextracti64x4, // Extract packed Integer Values
1540NN_vfixupimmpd, // Fix Up Special Packed Float64 Values
1541NN_vfixupimmps, // Fix Up Special Packed Float32 Values
1542NN_vfixupimmsd, // Fix Up Special Scalar Float64 Value
1543NN_vfixupimmss, // Fix Up Special Scalar Float32 Value
1544NN_vfpclasspd, // Tests Types Of a Packed Float64 Values
1545NN_vfpclassps, // Tests Types Of a Packed Float32 Values
1546NN_vfpclasssd, // Tests Types Of a Scalar Float64 Values
1547NN_vfpclassss, // Tests Types Of a Scalar Float32 Values
1548NN_vgetexppd, // Convert Exponents of Packed DP FP Values to DP FP Values
1549NN_vgetexpps, // Convert Exponents of Packed SP FP Values to SP FP Values
1550NN_vgetexpsd, // Convert Exponents of Scalar DP FP Values to DP FP Value
1551NN_vgetexpss, // Convert Exponents of Scalar SP FP Values to SP FP Value
1552NN_vgetmantpd, // Extract Float64 Vector of Normalized Mantissas from Float64 Vector
1553NN_vgetmantps, // Extract Float32 Vector of Normalized Mantissas from Float32 Vector
1554NN_vgetmantsd, // Extract Float64 of Normalized Mantissas from Float64 Scalar
1555NN_vgetmantss, // Extract Float32 Vector of Normalized Mantissa from Float32 Vector
1556NN_vinsertf32x4, // Insert Packed Floating-Point Values
1557NN_vinsertf64x2, // Insert Packed Floating-Point Values
1558NN_vinsertf32x8, // Insert Packed Floating-Point Values
1559NN_vinsertf64x4, // Insert Packed Floating-Point Values
1560NN_vinserti32x4, // Insert Packed Integer Values
1561NN_vinserti64x2, // Insert Packed Integer Values
1562NN_vinserti32x8, // Insert Packed Integer Values
1563NN_vinserti64x4, // Insert Packed Integer Values
1564NN_vmovdqa32, // Move Aligned Packed Integer Values
1565NN_vmovdqa64, // Move Aligned Packed Integer Values
1566NN_vmovdqu8, // Move Unaligned Packed Integer Values
1567NN_vmovdqu16, // Move Unaligned Packed Integer Values
1568NN_vmovdqu32, // Move Unaligned Packed Integer Values
1569NN_vmovdqu64, // Move Unaligned Packed Integer Values
1570NN_vpabsq, // Packed Absolute Value
1571NN_vpandd, // Logical AND
1572NN_vpandq, // Logical AND
1573NN_vpandnd, // Logical AND NOT
1574NN_vpandnq, // Logical AND NOT
1575NN_vpbroadcastmb2q, // Broadcast Mask to Vector Register
1576NN_vpbroadcastmw2d, // Broadcast Mask to Vector Register
1577NN_vpcmpb, // Compare Packed Byte Values Into Mask
1578NN_vpcmpub, // Compare Packed Byte Values Into Mask
1579NN_vpcmpd, // Compare Packed Integer Values into Mask
1580NN_vpcmpud, // Compare Packed Integer Values into Mask
1581NN_vpcmpq, // Compare Packed Integer Values into Mask
1582NN_vpcmpuq, // Compare Packed Integer Values into Mask
1583NN_vpcmpw, // Compare Packed Word Values Into Mask
1584NN_vpcmpuw, // Compare Packed Word Values Into Mask
1585NN_vpcompressd, // Store Sparse Packed Doubleword Integer Values into Dense Memory/Register
1586NN_vpcompressq, // Store Sparse Packed Quadword Integer Values into Dense Memory/Register
1587NN_vpconflictd, // Detect Conflicts Within a Vector of Packed Dword Values into Dense Memory/Register
1588NN_vpconflictq, // Detect Conflicts Within a Vector of Packed Qword Values into Dense Memory/Register
1589NN_vpermb, // Permute Packed Bytes Elements
1590NN_vpermw, // Permute Packed Words Elements
1591NN_vpermi2b, // Full Permute of Bytes From Two Tables Overwriting the Index
1592NN_vpermi2w, // Full Permute From Two Tables Overwriting the Index
1593NN_vpermi2d, // Full Permute From Two Tables Overwriting the Index
1594NN_vpermi2q, // Full Permute From Two Tables Overwriting the Index
1595NN_vpermi2ps, // Full Permute From Two Tables Overwriting the Index
1596NN_vpermi2pd, // Full Permute From Two Tables Overwriting the Index
1597NN_vpermt2b, // Full Permute of Bytes From Two Tables Overwriting a Table
1598NN_vpermt2w, // Full Permute from Two Tables Overwriting one Table
1599NN_vpermt2d, // Full Permute from Two Tables Overwriting one Table
1600NN_vpermt2q, // Full Permute from Two Tables Overwriting one Table
1601NN_vpermt2ps, // Full Permute from Two Tables Overwriting one Table
1602NN_vpermt2pd, // Full Permute from Two Tables Overwriting one Table
1603NN_vpexpandd, // Load Sparse Packed Doubleword Integer Values from Dense Memory/Register
1604NN_vpexpandq, // Load Sparse Packed Quadword Integer Values from Dense Memory/Register
1605NN_vplzcntd, // Count the Number of Leading Zero Bits for Packed Dword Values
1606NN_vplzcntq, // Count the Number of Leading Zero Bits for Packed Qword Values
1607NN_vpmadd52luq, // Packed Multiply of Unsigned 52-bit Integers and Add the Low 52-bit Products to Qword Accumulators
1608NN_vpmadd52huq, // Packed Multiply of Unsigned 52-bit Unsigned Integers and Add High 52-bit Products to 64-bit Accumulators
1609NN_vpmaxsq, // Maximum of Packed Signed Integers
1610NN_vpmaxuq, // Maximum of Packed Unsigned Integers
1611NN_vpminsq, // Minimum of Packed Signed Integers
1612NN_vpminuq, // Minimum of Packed Unsigned Integers
1613NN_vpmovm2b, // Convert a Mask Register to a Vector Register
1614NN_vpmovm2w, // Convert a Mask Register to a Vector Register
1615NN_vpmovm2d, // Convert a Mask Register to a Vector Register
1616NN_vpmovm2q, // Convert a Mask Register to a Vector Register
1617NN_vpmovb2m, // Convert a Vector Register to a Mask
1618NN_vpmovw2m, // Convert a Vector Register to a Mask
1619NN_vpmovd2m, // Convert a Vector Register to a Mask
1620NN_vpmovq2m, // Convert a Vector Register to a Mask
1621NN_vpmovqb, // Down Convert QWord to Byte
1622NN_vpmovsqb, // Down Convert QWord to Byte
1623NN_vpmovusqb, // Down Convert QWord to Byte
1624NN_vpmovqw, // Down Convert QWord to Word
1625NN_vpmovsqw, // Down Convert QWord to Word
1626NN_vpmovusqw, // Down Convert QWord to Word
1627NN_vpmovqd, // Down Convert QWord to DWord
1628NN_vpmovsqd, // Down Convert QWord to DWord
1629NN_vpmovusqd, // Down Convert QWord to DWord
1630NN_vpmovdb, // Down Convert DWord to Byte
1631NN_vpmovsdb, // Down Convert DWord to Byte
1632NN_vpmovusdb, // Down Convert DWord to Byte
1633NN_vpmovdw, // Down Convert DWord to Word
1634NN_vpmovsdw, // Down Convert DWord to Word
1635NN_vpmovusdw, // Down Convert DWord to Word
1636NN_vpmovwb, // Down Convert Word to Byte
1637NN_vpmovswb, // Down Convert Word to Byte
1638NN_vpmovuswb, // Down Convert Word to Byte
1639NN_vpmullq, // Multiply Packed Integers and Store Low Result
1640NN_vpmultishiftqb, // Select Packed Unaligned Bytes from Quadword Sources
1641NN_vpord, // Bitwise Logical Or
1642NN_vporq, // Bitwise Logical Or
1643NN_vprold, // Bit Rotate Left
1644NN_vprolvd, // Bit Rotate Left
1645NN_vprolq, // Bit Rotate Left
1646NN_vprolvq, // Bit Rotate Left
1647NN_vprord, // Bit Rotate Right
1648NN_vprorvd, // Bit Rotate Right
1649NN_vprorq, // Bit Rotate Right
1650NN_vprorvq, // Bit Rotate Right
1651NN_vpscatterdd, // Scatter Packed Dword with Signed Dword
1652NN_vpscatterdq, // Scatter Packed Qword with Signed Qword Indices
1653NN_vpscatterqd, // Scatter Packed Dword with Signed Dword
1654NN_vpscatterqq, // Scatter Packed Qword with Signed Qword Indices
1655NN_vpsraq, // Bit Shift Arithmetic Right
1656NN_vpsllvw, // Variable Bit Shift Left Logical
1657NN_vpsrlvw, // Variable Bit Shift Right Logical
1658NN_vptestnmb, // Logical NAND and Set
1659NN_vptestnmw, // Logical NAND and Set
1660NN_vptestnmd, // Logical NAND and Set
1661NN_vptestnmq, // Logical NAND and Set
1662NN_vshuff32x4, // Shuffle Packed Values at 128-bit Granularity
1663NN_vshuff64x2, // Shuffle Packed Values at 128-bit Granularity
1664NN_vshufi32x4, // Shuffle Packed Values at 128-bit Granularity
1665NN_vshufi64x2, // Shuffle Packed Values at 128-bit Granularity
1666NN_vpternlogd, // Bitwise Ternary Logic
1667NN_vpternlogq, // Bitwise Ternary Logic
1668NN_vptestmb, // Logical AND and Set Mask
1669NN_vptestmw, // Logical AND and Set Mask
1670NN_vptestmd, // Logical AND and Set Mask
1671NN_vptestmq, // Logical AND and Set Mask
1672NN_vpsravw, // Variable Bit Shift Right Arithmetic
1673NN_vpsravq, // Variable Bit Shift Right Arithmetic
1674NN_vpxord, // Exclusive Or
1675NN_vpxorq, // Exclusive Or
1676NN_vrangepd, // Range Restriction Calculation For Packed Pairs of Float64 Values
1677NN_vrangeps, // Range Restriction Calculation For Packed Pairs of Float32 Values
1678NN_vrangesd, // Range Restriction Calculation From a pair of Scalar Float64 Values
1679NN_vrangess, // Range Restriction Calculation From a Pair of Scalar Float32 Values
1680NN_vrcp14pd, // Compute Approximate Reciprocals of Packed Float64 Values
1681NN_vrcp14sd, // Compute Approximate Reciprocal of Scalar Float64 Value
1682NN_vrcp14ps, // Compute Approximate Reciprocals of Packed Float32 Values
1683NN_vrcp14ss, // Compute Approximate Reciprocal of Scalar Float32 Value
1684NN_vreducepd, // Perform Reduction Transformation on Packed Float64 Values
1685NN_vreducesd, // Perform a Reduction Transformation on a Scalar Float64 Value
1686NN_vreduceps, // Perform Reduction Transformation on Packed Float32 Values
1687NN_vreducess, // Perform a Reduction Transformation on a Scalar Float32 Value
1688NN_vrndscalepd, // Round Packed Float64 Values To Include A Given Number Of Fraction Bits
1689NN_vrndscalesd, // Round Scalar Float64 Value To Include A Given Number Of Fraction Bits
1690NN_vrndscaleps, // Round Packed Float32 Values To Include A Given Number Of Fraction Bits
1691NN_vrndscaless, // Round Scalar Float32 Value To Include A Given Number Of Fraction Bits
1692NN_vrsqrt14pd, // Compute Approximate Reciprocals of Square Roots of Packed Float64 Values
1693NN_vrsqrt14sd, // Compute Approximate Reciprocal of Square Root of Scalar Float64 Value
1694NN_vrsqrt14ps, // Compute Approximate Reciprocals of Square Roots of Packed Float32 Values
1695NN_vrsqrt14ss, // Compute Approximate Reciprocal of Square Root of Scalar Float32 Value
1696NN_vscalefpd, // Scale Packed Float64 Values With Float64 Values
1697NN_vscalefsd, // Scale Scalar Float64 Values With Float64 Values
1698NN_vscalefps, // Scale Packed Float32 Values With Float32 Values
1699NN_vscalefss, // Scale Scalar Float32 Value With Float32 Value
1700NN_vscatterdps, // Scatter Packed Single, Packed Double with Signed Dword and Qword Indices
1701NN_vscatterdpd, // Scatter Packed Single, Packed Double with Signed Dword and Qword Indices
1702NN_vscatterqps, // Scatter Packed Single, Packed Double with Signed Dword and Qword Indices
1703NN_vscatterqpd, // Scatter Packed Single, Packed Double with Signed Dword and Qword Indices
1704
1705NN_vexp2pd, // Approximation to the Exponential 2^x of Packed Double-Precision Floating-Point Values with Less Than 2^-23 Relative Error
1706NN_vexp2ps, // Approximation to the Exponential 2^x of Packed Single-Precision Floating-Point Values with Less Than 2^-23 Relative Error
1707NN_vrcp28pd, // Approximation to the Reciprocal of Packed Double-Precision Floating-Point Values with Less Than 2^-28 Relative Error
1708NN_vrcp28sd, // Approximation to the Reciprocal of Scalar Double-Precision Floating-Point Value with Less Than 2^-28 Relative Error
1709NN_vrcp28ps, // Approximation to the Reciprocal of Packed Single-Precision Floating-Point Values with Less Than 2^-28 Relative Error
1710NN_vrcp28ss, // Approximation to the Reciprocal of Scalar Single-Precision Floating-Point Value with Less Than 2^-28 Relative Error
1711NN_vrsqrt28pd, // Approximation to the Reciprocal Square Root of Packed Double-Precision Floating-Point Values with Less Than 2^-28 Relative Error
1712NN_vrsqrt28sd, // Approximation to the Reciprocal Square Root of Scalar Double-Precision Floating-Point Value with Less Than 2^-28 Relative Error
1713NN_vrsqrt28ps, // Approximation to the Reciprocal Square Root of Packed Single-Precision Floating-Point Values with Less Than 2^-28 Relative Error
1714NN_vrsqrt28ss, // Approximation to the Reciprocal Square Root of Scalar Single-Precision Floating-Point Value with Less Than 2^-28 Relative Error
1715
1716NN_vgatherpf0dps, // Sparse Prefetch Packed SP/DP Data Values with Signed Dword, Signed Qword Indices Using T0 Hint
1717NN_vgatherpf0qps, // Sparse Prefetch Packed SP/DP Data Values with Signed Dword, Signed Qword Indices Using T0 Hint
1718NN_vgatherpf0dpd, // Sparse Prefetch Packed SP/DP Data Values with Signed Dword, Signed Qword Indices Using T0 Hint
1719NN_vgatherpf0qpd, // Sparse Prefetch Packed SP/DP Data Values with Signed Dword, Signed Qword Indices Using T0 Hint
1720NN_vgatherpf1dps, // Sparse Prefetch Packed SP/DP Data Values with Signed Dword, Signed Qword Indices Using T1 Hint
1721NN_vgatherpf1qps, // Sparse Prefetch Packed SP/DP Data Values with Signed Dword, Signed Qword Indices Using T1 Hint
1722NN_vgatherpf1dpd, // Sparse Prefetch Packed SP/DP Data Values with Signed Dword, Signed Qword Indices Using T1 Hint
1723NN_vgatherpf1qpd, // Sparse Prefetch Packed SP/DP Data Values with Signed Dword, Signed Qword Indices Using T1 Hint
1724NN_vscatterpf0dps, // Sparse Prefetch Packed SP/DP Data Values with Signed Dword, Signed Qword Indices Using T0 Hint with Intent to Write
1725NN_vscatterpf0qps, // Sparse Prefetch Packed SP/DP Data Values with Signed Dword, Signed Qword Indices Using T0 Hint with Intent to Write
1726NN_vscatterpf0dpd, // Sparse Prefetch Packed SP/DP Data Values with Signed Dword, Signed Qword Indices Using T0 Hint with Intent to Write
1727NN_vscatterpf0qpd, // Sparse Prefetch Packed SP/DP Data Values with Signed Dword, Signed Qword Indices Using T0 Hint with Intent to Write
1728NN_vscatterpf1dps, // Sparse Prefetch Packed SP/DP Data Values with Signed Dword, Signed Qword Indices Using T1 Hint with Intent to Write
1729NN_vscatterpf1qps, // Sparse Prefetch Packed SP/DP Data Values with Signed Dword, Signed Qword Indices Using T1 Hint with Intent to Write
1730NN_vscatterpf1dpd, // Sparse Prefetch Packed SP/DP Data Values with Signed Dword, Signed Qword Indices Using T1 Hint with Intent to Write
1731NN_vscatterpf1qpd, // Sparse Prefetch Packed SP/DP Data Values with Signed Dword, Signed Qword Indices Using T1 Hint with Intent to Write
1732
1733// AVX-512 comparison pseudo-ops
1734
1735NN_vpcmpltd, // Compare Packed Integer Values into Mask
1736NN_vpcmpled, // Compare Packed Integer Values into Mask
1737NN_vpcmpneqd, // Compare Packed Integer Values into Mask
1738NN_vpcmpnltd, // Compare Packed Integer Values into Mask
1739NN_vpcmpnled, // Compare Packed Integer Values into Mask
1740
1741NN_vpcmpequd, // Compare Packed Integer Values into Mask
1742NN_vpcmpltud, // Compare Packed Integer Values into Mask
1743NN_vpcmpleud, // Compare Packed Integer Values into Mask
1744NN_vpcmpnequd, // Compare Packed Integer Values into Mask
1745NN_vpcmpnltud, // Compare Packed Integer Values into Mask
1746NN_vpcmpnleud, // Compare Packed Integer Values into Mask
1747
1748NN_vpcmpltq, // Compare Packed Integer Values into Mask
1749NN_vpcmpleq, // Compare Packed Integer Values into Mask
1750NN_vpcmpneqq, // Compare Packed Integer Values into Mask
1751NN_vpcmpnltq, // Compare Packed Integer Values into Mask
1752NN_vpcmpnleq, // Compare Packed Integer Values into Mask
1753
1754NN_vpcmpequq, // Compare Packed Integer Values into Mask
1755NN_vpcmpltuq, // Compare Packed Integer Values into Mask
1756NN_vpcmpleuq, // Compare Packed Integer Values into Mask
1757NN_vpcmpnequq, // Compare Packed Integer Values into Mask
1758NN_vpcmpnltuq, // Compare Packed Integer Values into Mask
1759NN_vpcmpnleuq, // Compare Packed Integer Values into Mask
1760
1761// Opmask instructions
1762
1763NN_kaddw, // ADD Two Masks
1764NN_kaddb, // ADD Two Masks
1765NN_kaddq, // ADD Two Masks
1766NN_kaddd, // ADD Two Masks
1767NN_kandw, // Bitwise Logical AND Masks
1768NN_kandb, // Bitwise Logical AND Masks
1769NN_kandq, // Bitwise Logical AND Masks
1770NN_kandd, // Bitwise Logical AND Masks
1771NN_kandnw, // Bitwise Logical AND NOT Masks
1772NN_kandnb, // Bitwise Logical AND NOT Masks
1773NN_kandnq, // Bitwise Logical AND NOT Masks
1774NN_kandnd, // Bitwise Logical AND NOT Masks
1775NN_kmovw, // Move from and to Mask Registers
1776NN_kmovb, // Move from and to Mask Registers
1777NN_kmovq, // Move from and to Mask Registers
1778NN_kmovd, // Move from and to Mask Registers
1779NN_kunpckbw, // Unpack for Mask Registers
1780NN_kunpckwd, // Unpack for Mask Registers
1781NN_kunpckdq, // Unpack for Mask Registers
1782NN_knotw, // NOT Mask Register
1783NN_knotb, // NOT Mask Register
1784NN_knotq, // NOT Mask Register
1785NN_knotd, // NOT Mask Register
1786NN_korw, // Bitwise Logical OR Masks
1787NN_korb, // Bitwise Logical OR Masks
1788NN_korq, // Bitwise Logical OR Masks
1789NN_kord, // Bitwise Logical OR Masks
1790NN_kortestw, // OR Masks And Set Flags
1791NN_kortestb, // OR Masks And Set Flags
1792NN_kortestq, // OR Masks And Set Flags
1793NN_kortestd, // OR Masks And Set Flags
1794NN_kshiftlw, // Shift Left Mask Registers
1795NN_kshiftlb, // Shift Left Mask Registers
1796NN_kshiftlq, // Shift Left Mask Registers
1797NN_kshiftld, // Shift Left Mask Registers
1798NN_kshiftrw, // Shift Right Mask Registers
1799NN_kshiftrb, // Shift Right Mask Registers
1800NN_kshiftrq, // Shift Right Mask Registers
1801NN_kshiftrd, // Shift Right Mask Registers
1802NN_kxnorw, // Bitwise Logical XNOR Masks
1803NN_kxnorb, // Bitwise Logical XNOR Masks
1804NN_kxnorq, // Bitwise Logical XNOR Masks
1805NN_kxnord, // Bitwise Logical XNOR Masks
1806NN_ktestw, // Packed Bit Test Masks and Set Flags
1807NN_ktestb, // Packed Bit Test Masks and Set Flags
1808NN_ktestq, // Packed Bit Test Masks and Set Flags
1809NN_ktestd, // Packed Bit Test Masks and Set Flags
1810NN_kxorw, // Bitwise Logical XOR Masks
1811NN_kxorb, // Bitwise Logical XOR Masks
1812NN_kxorq, // Bitwise Logical XOR Masks
1813NN_kxord, // Bitwise Logical XOR Masks
1814
1815// SHA Extensions
1816
1817NN_sha1rnds4, // Perform Four Rounds of SHA1 Operation
1818NN_sha1nexte, // Calculate SHA1 State Variable E after Four Rounds
1819NN_sha1msg1, // Perform an Intermediate Calculation for the Next Four SHA1 Message Dwords
1820NN_sha1msg2, // Perform a Final Calculation for the Next Four SHA1 Message Dwords
1821NN_sha256rnds2, // Perform Two Rounds of SHA256 Operation
1822NN_sha256msg1, // Perform an Intermediate Calculation for the Next Four SHA256 Message Dwords
1823NN_sha256msg2, // Perform a Final Calculation for the Next Four SHA256 Message Dwords
1824
1825// Intel Software Guard Extensions
1826
1827NN_encls, // Execute an Enclave System Function of Specified Leaf Number
1828NN_enclu, // Execute an Enclave User Function of Specified Leaf Number
1829
1830// AMD XOP
1831
1832NN_vfrczpd, // Extract Fraction Packed Double-Precision Floating-Point
1833NN_vfrczps, // Extract Fraction Packed Single-Precision Floating-Point
1834NN_vfrczsd, // Extract Fraction Scalar Double-Precision Floating-Point
1835NN_vfrczss, // Extract Fraction Scalar Single-Precision Floating Point
1836NN_vpcmov, // Vector Conditional Moves
1837NN_vpcomb, // Compare Vector Signed Bytes
1838NN_vpcomd, // Compare Vector Signed Doublewords
1839NN_vpcomq, // Compare Vector Signed Quadwords
1840NN_vpcomub, // Compare Vector Unsigned Bytes
1841NN_vpcomud, // Compare Vector Unsigned Doublewords
1842NN_vpcomuq, // Compare Vector Unsigned Quadwords
1843NN_vpcomuw, // Compare Vector Unsigned Words
1844NN_vpcomw, // Compare Vector Signed Words
1845NN_vpermil2pd, // Permute Two-Source Double-Precision Floating-Point Values
1846NN_vpermil2ps, // Permute Two-Source Single-Precision Floating-Point Values
1847NN_vphaddbd, // Packed Horizontal Add Signed Byte to Signed Doubleword
1848NN_vphaddbq, // Packed Horizontal Add Signed Byte to Signed Quadword
1849NN_vphaddbw, // Packed Horizontal Add Signed Byte to Signed Word
1850NN_vphadddq, // Packed Horizontal Add Signed Doubleword to Signed Quadword
1851NN_vphaddubd, // Packed Horizontal Add Unsigned Byte to Doubleword
1852NN_vphaddubq, // Packed Horizontal Add Unsigned Byte to Quadword
1853NN_vphaddubw, // Packed Horizontal Add Unsigned Byte to Word
1854NN_vphaddudq, // Packed Horizontal Add Unsigned Doubleword to Quadword
1855NN_vphadduwd, // Packed Horizontal Add Unsigned Word to Doubleword
1856NN_vphadduwq, // Packed Horizontal Add Unsigned Word to Quadword
1857NN_vphaddwd, // Packed Horizontal Add Signed Word to Signed Doubleword
1858NN_vphaddwq, // Packed Horizontal Add Signed Word to Signed Quadword
1859NN_vphsubbw, // Packed Horizontal Subtract Signed Byte to Signed Word
1860NN_vphsubdq, // Packed Horizontal Subtract Signed Doubleword to Signed Quadword
1861NN_vphsubwd, // Packed Horizontal Subtract Signed Word to Signed Doubleword
1862NN_vpmacsdd, // Packed Multiply Accumulate Signed Doubleword to Signed Doubleword
1863NN_vpmacsdqh, // Packed Multiply Accumulate Signed High Doubleword to Signed Quadword
1864NN_vpmacsdql, // Packed Multiply Accumulate Signed Low Doubleword to Signed Quadword
1865NN_vpmacssdd, // Packed Multiply Accumulate Signed Doubleword to Signed Doubleword with Saturation
1866NN_vpmacssdqh, // Packed Multiply Accumulate Signed High Doubleword to Signed Quadword with Saturation
1867NN_vpmacssdql, // Packed Multiply Accumulate Signed Low Doubleword to Signed Quadword with Saturation
1868NN_vpmacsswd, // Packed Multiply Accumulate Signed Word to Signed Doubleword with Saturation
1869NN_vpmacssww, // Packed Multiply Accumulate Signed Word to Signed Word with Saturation
1870NN_vpmacswd, // Packed Multiply Accumulate Signed Word to Signed Doubleword
1871NN_vpmacsww, // Packed Multiply Accumulate Signed Word to Signed Word
1872NN_vpmadcsswd, // Packed Multiply, Add and Accumulate Signed Word to Signed Doubleword with Saturation
1873NN_vpmadcswd, // Packed Multiply Add and Accumulate Signed Word to Signed Doubleword
1874NN_vpperm, // Packed Permute Bytes
1875NN_vprotb, // Packed Rotate Bytes
1876NN_vprotd, // Packed Rotate Doublewords
1877NN_vprotq, // Packed Rotate Quadwords
1878NN_vprotw, // Packed Rotate Words
1879NN_vpshab, // Packed Shift Arithmetic Bytes
1880NN_vpshad, // Packed Shift Arithmetic Doublewords
1881NN_vpshaq, // Packed Shift Arithmetic Quadwords
1882NN_vpshaw, // Packed Shift Arithmetic Words
1883NN_vpshlb, // Packed Shift Logical Bytes
1884NN_vpshld, // Packed Shift Logical Doublewords
1885NN_vpshlq, // Packed Shift Logical Quadwords
1886NN_vpshlw, // Packed Shift Logical Words
1887
1888// AMD XOP comparison pseudo-ops
1889
1890NN_vpcomltb, // Compare Vector Signed Bytes
1891NN_vpcomleb, // Compare Vector Signed Bytes
1892NN_vpcomgtb, // Compare Vector Signed Bytes
1893NN_vpcomgeb, // Compare Vector Signed Bytes
1894NN_vpcomeqb, // Compare Vector Signed Bytes
1895NN_vpcomneqb, // Compare Vector Signed Bytes
1896NN_vpcomfalseb, // Compare Vector Signed Bytes
1897NN_vpcomtrueb, // Compare Vector Signed Bytes
1898
1899NN_vpcomltw, // Compare Vector Signed Words
1900NN_vpcomlew, // Compare Vector Signed Words
1901NN_vpcomgtw, // Compare Vector Signed Words
1902NN_vpcomgew, // Compare Vector Signed Words
1903NN_vpcomeqw, // Compare Vector Signed Words
1904NN_vpcomneqw, // Compare Vector Signed Words
1905NN_vpcomfalsew, // Compare Vector Signed Words
1906NN_vpcomtruew, // Compare Vector Signed Words
1907
1908NN_vpcomltd, // Compare Vector Signed Doublewords
1909NN_vpcomled, // Compare Vector Signed Doublewords
1910NN_vpcomgtd, // Compare Vector Signed Doublewords
1911NN_vpcomged, // Compare Vector Signed Doublewords
1912NN_vpcomeqd, // Compare Vector Signed Doublewords
1913NN_vpcomneqd, // Compare Vector Signed Doublewords
1914NN_vpcomfalsed, // Compare Vector Signed Doublewords
1915NN_vpcomtrued, // Compare Vector Signed Doublewords
1916
1917NN_vpcomltq, // Compare Vector Signed Quadwords
1918NN_vpcomleq, // Compare Vector Signed Quadwords
1919NN_vpcomgtq, // Compare Vector Signed Quadwords
1920NN_vpcomgeq, // Compare Vector Signed Quadwords
1921NN_vpcomeqq, // Compare Vector Signed Quadwords
1922NN_vpcomneqq, // Compare Vector Signed Quadwords
1923NN_vpcomfalseq, // Compare Vector Signed Quadwords
1924NN_vpcomtrueq, // Compare Vector Signed Quadwords
1925
1926NN_vpcomltub, // Compare Vector Unsigned Bytes
1927NN_vpcomleub, // Compare Vector Unsigned Bytes
1928NN_vpcomgtub, // Compare Vector Unsigned Bytes
1929NN_vpcomgeub, // Compare Vector Unsigned Bytes
1930NN_vpcomequb, // Compare Vector Unsigned Bytes
1931NN_vpcomnequb, // Compare Vector Unsigned Bytes
1932NN_vpcomfalseub, // Compare Vector Unsigned Bytes
1933NN_vpcomtrueub, // Compare Vector Unsigned Bytes
1934
1935NN_vpcomltuw, // Compare Vector Unsigned Words
1936NN_vpcomleuw, // Compare Vector Unsigned Words
1937NN_vpcomgtuw, // Compare Vector Unsigned Words
1938NN_vpcomgeuw, // Compare Vector Unsigned Words
1939NN_vpcomequw, // Compare Vector Unsigned Words
1940NN_vpcomnequw, // Compare Vector Unsigned Words
1941NN_vpcomfalseuw, // Compare Vector Unsigned Words
1942NN_vpcomtrueuw, // Compare Vector Unsigned Words
1943
1944NN_vpcomltud, // Compare Vector Unsigned Doublewords
1945NN_vpcomleud, // Compare Vector Unsigned Doublewords
1946NN_vpcomgtud, // Compare Vector Unsigned Doublewords
1947NN_vpcomgeud, // Compare Vector Unsigned Doublewords
1948NN_vpcomequd, // Compare Vector Unsigned Doublewords
1949NN_vpcomnequd, // Compare Vector Unsigned Doublewords
1950NN_vpcomfalseud, // Compare Vector Unsigned Doublewords
1951NN_vpcomtrueud, // Compare Vector Unsigned Doublewords
1952
1953NN_vpcomltuq, // Compare Vector Unsigned Quadwords
1954NN_vpcomleuq, // Compare Vector Unsigned Quadwords
1955NN_vpcomgtuq, // Compare Vector Unsigned Quadwords
1956NN_vpcomgeuq, // Compare Vector Unsigned Quadwords
1957NN_vpcomequq, // Compare Vector Unsigned Quadwords
1958NN_vpcomnequq, // Compare Vector Unsigned Quadwords
1959NN_vpcomfalseuq, // Compare Vector Unsigned Quadwords
1960NN_vpcomtrueuq, // Compare Vector Unsigned Quadwords
1961
1962// AMD Excavator
1963
1964NN_monitorx, // Setup Monitor Address
1965NN_mwaitx, // Monitor Wait with Timeout
1966
1967// AMD Zen
1968
1969NN_clzero, // Zero out 64 byte cache
1970
1971// Intel Processor Trace
1972
1973NN_ptwrite, // Write Data to a Processor Trace Packet
1974
1975// new Intel AVX-512 instructions (December 2016)
1976
1977NN_v4fmaddps, // Packed Single-Precision Floating-Point Fused Multiply-Add (4-iterations)
1978NN_v4fnmaddps, // Packed Single-Precision Floating-Point Fused Multiply-Add (4-iterations)
1979NN_v4fmaddss, // Scalar Single-Precision Floating-Point Fused Multiply-Add (4-iterations)
1980NN_v4fnmaddss, // Scalar Single-Precision Floating-Point Fused Multiply-Add (4-iterations)
1981NN_vp4dpwssd, // Dot Product of Signed Words with Dword Accumulation (4-iterations)
1982NN_vp4dpwssds, // Dot Product of Signed Words with Dword Accumulation and Saturation (4-iterations)
1983NN_vpopcntd, // Return the Count of Number of Bits Set to 1 in DWORD
1984NN_vpopcntq, // Return the Count of Number of Bits Set to 1 in QWORD
1985
1986// Read Processor ID
1987
1988NN_rdpid, // Read Processor ID
1989
1990// Invoke VM function
1991
1992NN_vmfunc, // Invoke VM function
1993
1994// Control-flow Enforcement
1995
1996NN_incsspd, // Increment Shadow Stack Pointer (by 4)
1997NN_incsspq, // Increment Shadow Stack Pointer (by 8)
1998NN_rdsspd, // Read (low 32 bits of) Shadow Stack Pointer
1999NN_rdsspq, // Read Shadow Stack Pointer
2000NN_saveprevssp, // Save Previous Shadow Stack Pointer
2001NN_rstorssp, // Restore saved Shadow Stack Pointer
2002NN_wrssd, // Write (4 bytes) to shadow stack
2003NN_wrssq, // Write (8 bytes) to shadow stack
2004NN_wrussd, // Write (4 bytes) to User Shadow Stack
2005NN_wrussq, // Write (8 bytes) to User Shadow Stack
2006NN_setssbsy, // Mark Shadow Stack Busy
2007NN_clrssbsy, // Clear Shadow Stack Busy Flag
2008NN_endbr64, // Terminate an Indirect Branch in 64-bit Mode
2009NN_endbr32, // Terminate an Indirect Branch in 32-bit and Compatibility Mode
2010
2011// Undefined Instruction
2012
2013NN_ud0, // Undefined Instruction
2014NN_ud1, // Undefined Instruction
2015
2016// Enqueue Stores
2017
2018NN_enqcmd, // Enqueue Command
2019NN_enqcmds, // Enqueue Command Supervisor
2020
2021// AMD Zen2
2022
2023NN_mcommit, // Commit Stores to Memory
2024NN_rdpru, // Read Processor Register
2025
2026// Intel Tremont instructions
2027
2028NN_cldemote, // Cache Line Demote
2029NN_enclv, // Execute an Enclave VMM Function of Specified Leaf Number
2030
2031// Direct Stores
2032
2033NN_movdiri, // Move Doubleword as Direct Store
2034NN_movdir64b, // Move 64 Bytes as Direct Store
2035
2036// Intel WAITPKG instructions
2037
2038NN_tpause, // Timed PAUSE
2039NN_umonitor, // User Level Set Up Monitor Address
2040NN_umwait, // User Level Monitor Wait
2041
2042// Intel Sapphire Rapids instructions
2043
2044NN_serialize, // Serialize Instruction Execution
2045
2046// Intel TSX
2047
2048NN_xresldtrk, // Resume Tracking Load Addresses
2049NN_xsusldtrk, // Suspend Tracking Load Addresses
2050
2051// Intel Affine Transformation instructions
2052
2053NN_gf2p8mulb, // Galois Field Multiply Bytes
2054NN_gf2p8affineqb, // Computes Affine Transformation
2055NN_gf2p8affineinvqb, // Computes Inverse Affine Transformation
2056
2057// VEX versions
2058NN_vgf2p8mulb, // Galois Field Multiply Bytes
2059NN_vgf2p8affineqb, // Computes Affine Transformation
2060NN_vgf2p8affineinvqb, // Computes Inverse Affine Transformation
2061
2062// Intrinsics for Saving and Restoring the Extended Processor States (64-bits)
2063
2064NN_fxsave64, // Fast save FP context (64-bits)
2065NN_fxrstor64, // Fast restore FP context (64-bits)
2066
2067// AVX-VNNI
2068NN_vpdpbusd, // Multiply and Add Unsigned and Signed Bytes
2069NN_vpdpbusds, // Multiply and Add Unsigned and Signed Bytes With Saturation
2070NN_vpdpwssd, // Multiply and Add Signed Word Integers
2071NN_vpdpwssds, // Multiply and Add Signed Word Integers With Saturation
2072
2073// AVX512-VBMI2
2074NN_vpcompressb, // Store Sparse Packed Byte Integer Values Into Dense Memory/Register
2075NN_vpcompressw, // Store Sparse Packed Word Integer Values Into Dense Memory/Register
2076NN_vpexpandb, // Expand Byte Values
2077NN_vpexpandw, // Expand Word Values
2078NN_vpshldw, // Concatenate and Shift Packed Data Left Logical
2079NN_vpshldd, // Concatenate and Shift Packed Data Left Logical
2080NN_vpshldq, // Concatenate and Shift Packed Data Left Logical
2081NN_vpshldvw, // Concatenate and Variable Shift Packed Data Left Logical
2082NN_vpshldvd, // Concatenate and Variable Shift Packed Data Left Logical
2083NN_vpshldvq, // Concatenate and Variable Shift Packed Data Left Logical
2084NN_vpshrdw, // Concatenate and Shift Packed Data Right Logical
2085NN_vpshrdd, // Concatenate and Shift Packed Data Right Logical
2086NN_vpshrdq, // Concatenate and Shift Packed Data Right Logical
2087NN_vpshrdvw, // Concatenate and Variable Shift Packed Data Right Logical
2088NN_vpshrdvd, // Concatenate and Variable Shift Packed Data Right Logical
2089NN_vpshrdvq, // Concatenate and Variable Shift Packed Data Right Logical
2090
2091// AVX512-BITALG
2092NN_vpopcntb, // Return the Count of Number of Bits Set to 1 in BYTE
2093NN_vpopcntw, // Return the Count of Number of Bits Set to 1 in WORD
2094NN_vpshufbitqmb, // Shuffle Bits From Quadword Elements Using Byte Indexes Into Mask
2095
2096// AVX512-VP2INTERSECT
2097NN_vp2intersectd, // Compute Intersection Between DWORDS to aPair of Mask Registers
2098NN_vp2intersectq, // Compute Intersection Between QUADWORDS to aPair of Mask Registers
2099
2100// AVX512-BF16
2101NN_vcvtne2ps2bf16, // Convert Two Packed Single Data to One Packed BF16 Data
2102NN_vcvtneps2bf16, // Convert Packed Single Data to Packed BF16 Data
2103NN_vdpbf16ps, // Dot Product of BF16 Pairs Accumulated Into Packed Single Precision
2104
2105// AVX512-FP16
2106NN_vaddph, // Add Packed FP16 Values
2107NN_vcmpph, // Compare Packed FP16 Values
2108NN_vcvtdq2ph, // Convert Packed Signed Doubleword Integers to Packed FP16 Values
2109NN_vcvtpd2ph, // Convert Packed Double Precision FP Values to Packed FP16 Values
2110NN_vcvtph2dq, // Convert Packed FP16 Values to Signed Doubleword Integers
2111NN_vcvtph2pd, // Convert Packed FP16 Values to FP64 Values
2112NN_vcvtph2psx, // Convert Packed FP16 Values to Single Precision Floating-Point Values
2113NN_vcvtph2qq, // Convert Packed FP16 Values to Signed Quadword Integer Values
2114NN_vcvtph2udq, // Convert Packed FP16 Values to Unsigned Doubleword Integers
2115NN_vcvtph2uqq, // Convert Packed FP16 Values to Unsigned Quadword Integers
2116NN_vcvtph2uw, // Convert Packed FP16 Values to Unsigned Word Integers
2117NN_vcvtph2w, // Convert Packed FP16 Values to Signed Word Integers
2118NN_vcvtps2phx, // Convert Packed Single Precision Floating-Point Values to Packed FP16 Values
2119NN_vcvtqq2ph, // Convert Packed Signed Quadword Integers to Packed FP16 Values
2120NN_vcvttph2dq, // Convert with Truncation Packed FP16 Values to Signed Doubleword Integers
2121NN_vcvttph2qq, // Convert with Truncation Packed FP16 Values to Signed Quadword Integers
2122NN_vcvttph2udq, // Convert with Truncation Packed FP16 Values to Unsigned Doubleword Integers
2123NN_vcvttph2uqq, // Convert with Truncation Packed FP16 Values to Unsigned Quadword Integers
2124NN_vcvttph2uw, // Convert Packed FP16 Values to Unsigned Word Integers
2125NN_vcvttph2w, // Convert Packed FP16 Values to Signed Word Integers
2126NN_vcvtudq2ph, // Convert Packed Unsigned Doubleword Integers to Packed FP16 Values
2127NN_vcvtuqq2ph, // Convert Packed Unsigned Quadword Integers to Packed FP16 Values
2128NN_vcvtuw2ph, // Convert Packed Unsigned Word Integers to FP16 Values
2129NN_vcvtw2ph, // Convert Packed Signed Word Integers to FP16 Values
2130NN_vdivph, // Divide Packed FP16 Values
2131NN_vfcmaddcph, // Complex Multiply and Accumulate FP16 Values
2132NN_vfcmulcph, // Complex Multiply FP16 Values
2133NN_vfmadd132ph, // Fused Multiply-Add of Packed FP16 Values
2134NN_vfmadd213ph, // Fused Multiply-Add of Packed FP16 Values
2135NN_vfmadd231ph, // Fused Multiply-Add of Packed FP16 Values
2136NN_vfmaddcph, // Complex Multiply and Accumulate FP16 Values
2137NN_vfmaddsub132ph, // Fused Multiply-Alternating Add/Subtract of Packed FP16 Values
2138NN_vfmaddsub213ph, // Fused Multiply-Alternating Add/Subtract of Packed FP16 Values
2139NN_vfmaddsub231ph, // Fused Multiply-Alternating Add/Subtract of Packed FP16 Values
2140NN_vfmsub132ph, // Fused Multiply-Subtract of Packed FP16 Values
2141NN_vfmsub213ph, // Fused Multiply-Subtract of Packed FP16 Values
2142NN_vfmsub231ph, // Fused Multiply-Subtract of Packed FP16 Values
2143NN_vfmsubadd132ph, // Fused Multiply-Alternating Subtract/Add of Packed FP16 Values
2144NN_vfmsubadd213ph, // Fused Multiply-Alternating Subtract/Add of Packed FP16 Values
2145NN_vfmsubadd231ph, // Fused Multiply-Alternating Subtract/Add of Packed FP16 Values
2146NN_vfmulcph, // Complex Multiply FP16 Values
2147NN_vfnmadd132ph, // Fused Multiply-Add of Packed FP16 Values
2148NN_vfnmadd213ph, // Fused Multiply-Add of Packed FP16 Values
2149NN_vfnmadd231ph, // Fused Multiply-Add of Packed FP16 Values
2150NN_vfnmsub132ph, // Fused Multiply-Subtract of Packed FP16 Values
2151NN_vfnmsub213ph, // Fused Multiply-Subtract of Packed FP16 Values
2152NN_vfnmsub231ph, // Fused Multiply-Subtract of Packed FP16 Values
2153NN_vfpclassph, // Test Types of Packed FP16 Values
2154NN_vgetexpph, // Fused Multiply-Subtract of Packed FP16 Values
2155NN_vgetmantph, // Extract FP16 Vector of Normalized Mantissas from FP16 Vector
2156NN_vmaxph, // Return Maximum of Packed FP16 Values
2157NN_vminph, // Return Minimum of Packed FP16 Values
2158NN_vmulph, // Multiply Packed FP16 Values
2159NN_vrcpph, // Compute Reciprocals of Packed FP16 Values
2160NN_vreduceph, // Perform Reduction Transformation on Packed FP16 Values
2161NN_vrndscaleph, // Round Packed FP16 Values to Include a Given Number of Fraction Bits
2162NN_vrsqrtph, // Compute Reciprocals of Square Roots of Packed FP16 Values
2163NN_vscalefph, // Scale Packed FP16 Values with FP16 Values
2164NN_vsqrtph, // Compute Square Root of Packed FP16 Values
2165NN_vsubph, // Subtract Packed FP16 Values
2166
2167// AVX512-FP16-128N
2168NN_vmovw, // Move Word
2169
2170// AVX512-FP16-SCALAR
2171NN_vaddsh, // Add Scalar FP16 Values
2172NN_vcmpsh, // Compare Scalar FP16 Values
2173NN_vcomish, // Compare Scalar Ordered FP16 Values and Set EFLAGS
2174NN_vcvtsd2sh, // Convert Low FP64 Value to an FP16 Value
2175NN_vcvtsh2sd, // Convert Low FP16 Value to an FP64 Value
2176NN_vcvtsh2si, // Convert Low FP16 Value to Signed Integer
2177NN_vcvtsh2ss, // Convert Low FP16 Value to FP32 Value
2178NN_vcvtsh2usi, // Convert Low FP16 Value to Unsigned Integer
2179NN_vcvtsi2sh, // Convert a Signed Doubleword/Quadword Integer to an FP16 Value
2180NN_vcvtss2sh, // Convert Low FP32 Value to an FP16 Value
2181NN_vcvttsh2si, // Convert with Truncation Low FP16 Value to a Signed Integer
2182NN_vcvttsh2usi, // Convert with Truncation Low FP16 Value to an Unsigned Integer
2183NN_vcvtusi2sh, // Convert Unsigned Doubleword Integer to an FP16 Value
2184NN_vdivsh, // Divide Scalar FP16 Values
2185NN_vfcmaddcsh, // Complex Multiply and Accumulate Scalar FP16 Values
2186NN_vfcmulcsh, // Complex Multiply Scalar FP16 Values
2187NN_vfmadd132sh, // Fused Multiply-Add of Scalar FP16 Values
2188NN_vfmadd213sh, // Fused Multiply-Add of Scalar FP16 Values
2189NN_vfmadd231sh, // Fused Multiply-Add of Scalar FP16 Values
2190NN_vfmaddcsh, // Complex Multiply and Accumulate Scalar FP16 Values
2191NN_vfmsub132sh, // Fused Multiply-Subtract of Scalar FP16 Values
2192NN_vfmsub213sh, // Fused Multiply-Subtract of Scalar FP16 Values
2193NN_vfmsub231sh, // Fused Multiply-Subtract of Scalar FP16 Values
2194NN_vfmulcsh, // Complex Multiply Scalar FP16 Values
2195NN_vfnmadd132sh, // Fused Multiply-Add of Scalar FP16 Values
2196NN_vfnmadd213sh, // Fused Multiply-Add of Scalar FP16 Values
2197NN_vfnmadd231sh, // Fused Multiply-Add of Scalar FP16 Values
2198NN_vfnmsub132sh, // Fused Multiply-Subtract of Scalar FP16 Values
2199NN_vfnmsub213sh, // Fused Multiply-Subtract of Scalar FP16 Values
2200NN_vfnmsub231sh, // Fused Multiply-Subtract of Scalar FP16 Values
2201NN_vfpclasssh, // Test Types of Packed FP16 Values
2202NN_vgetexpsh, // Convert Exponents of Packed FP16 Values to FP16 Values
2203NN_vgetmantsh, // Extract FP16 Vector of Normalized Mantissas from FP16 Vector
2204NN_vmaxsh, // Return Maximum of Scalar FP16 Values
2205NN_vminsh, // Return Minimum Scalar FP16 Value
2206NN_vmovsh, // Move Scalar FP16 Value
2207NN_vmulsh, // Multiply Scalar FP16 Values
2208NN_vrcpsh, // Compute Reciprocals of Packed FP16 Values
2209NN_vreducesh, // Perform Reduction Transformation on Packed FP16 Values
2210NN_vrndscalesh, // Round Packed FP16 Values to Include a Given Number of Fraction Bits
2211NN_vrsqrtsh, // Compute Reciprocals of Square Roots of Packed FP16 Values
2212NN_vscalefsh, // Scale Packed FP16 Values with FP16 Values
2213NN_vsqrtsh, // Compute Square Root of Scalar FP16 Value
2214NN_vsubsh, // Subtract Scalar FP16 Value
2215NN_vucomish, // Unordered Compare Scalar FP16 Values and Set EFLAGS
2216
2217// User Interrupt (UINTR)
2218
2219NN_clui, // Clear User Interrupt Flag
2220NN_stui, // Set User Interrupt Flag
2221NN_testui, // Determine User Interrupt Flag
2222NN_uiret, // User-Interrupt Return
2223NN_senduipi, // Send User Interprocessor Interrupts
2224
2225// Prediction history reset (HRESET)
2226NN_hreset, // History Reset
2227
2228
2230
2231 };
2232
2233/*
2234 * Interactive disassembler (IDA).
2235 * Copyright (c) 1990-2025 Hex-Rays
2236 * ALL RIGHTS RESERVED.
2237 *
2238 */
2239
2240
2241
2242enum
2243{
2244I5_null = 0, // Unknown Operation
2245
2246//
2247// Intel 8080-8085 instructions
2248//
2249
2328
2331
2332//
2333// Z80 extensions
2334//
2335
2391Z80_inp, // undocumented
2392Z80_outp, // undocumented
2393Z80_srr, // undocumented
2394
2395//
2396// HD64180 extensions
2397//
2398
2409
2410//
2411// A80 special instructions
2412//
2413
2453
2454// Intel 8085 undocumented instructions
2455// (info from http://oak.oakland.edu/pub/cpm/maclib/i8085.lib)
2456
2457I5_dsub, // (HL) <- (HL)-(BC), affects all flags
2458I5_arhl, // SHIFT HL RIGHT ONE BIT, (H7 IS DUPLICATED, L0 IS SHIFTED INTO CY)
2459I5_rdel, // ROTATE DE LEFT ONE BIT THRU CY, (E0 RECEIVES CY, CY RECEIVES D7)
2460I5_ldhi, // (DE) <- (HL)+arg
2461I5_ldsi, // (DE) <- (SP)+arg
2462I5_shlx, // ((DE)) <- (HL)
2463I5_lhlx, // (HL) <- ((DE))
2464I5_rstv, // RESTART 40H ON V (OVERFLOW)
2465I5_jx5, // JUMP IF X5 SET
2466I5_jnx5, // JUMP IF NOT X5 SET
2467
2468// Z380 instructions
2469
2470Z80_cplw, // Complement HL register
2471Z80_swap, // Swap upper register word with lower register word
2472Z80_inw, // Input word
2473Z80_outw, // Output word
2474Z80_ldw, // Load word
2475Z80_addw, // Add word
2476Z80_subw, // Subtract word
2477Z80_adcw, // Add with carry word
2478Z80_sbcw, // Subtract with borrow word
2479Z80_andw, // AND logical word
2480Z80_xorw, // XOR logical word
2481Z80_orw, // OR logical word
2482Z80_cpw, // Compare word
2483Z80_ddir, // Decoder directive
2484Z80_calr, // Call relative
2485Z80_ldctl, // Load control register
2486Z80_mtest, // Mode test
2487Z80_exxx, // Exchange Index Register with Alternate Bank
2488Z80_exxy, // Exchange Index Register with Alternate Bank
2489Z80_exall, // Exchange all registers with Alternate Bank
2490Z80_setc, // Set control bit
2491Z80_resc, // Reset control bit
2492Z80_rlcw, // Rotate Left Circular Word
2493Z80_rrcw, // Rotate Right Circular Word
2494Z80_rlw, // Rotate Left Word
2495Z80_rrw, // Rotate Right Word
2496Z80_slaw, // Shift Left Arithmetic Word
2497Z80_sraw, // Shift Right Arithmetic Word
2498Z80_srlw, // Shift Right Logical Word
2499Z80_multw, // Multiply Word
2500Z80_multuw, // Multiply Word Unsigned
2501Z80_divuw, // Divide unsigned
2502Z80_outaw, // Output word direct to port address
2503Z80_inaw, // Input word direct from port address
2504Z80_outa, // Output byte direct to port address
2505Z80_ina, // Input byte direct from port address
2506Z80_negw, // Negate word
2507Z80_exts, // Extend byte sign
2508Z80_extsw, // Extend word sign
2509Z80_btest, // Bank test
2510Z80_ldiw, // Load and increment (word)
2511Z80_ldirw, // Load and increment, repeat (word)
2512Z80_lddw, // Load and decrement (word)
2513Z80_lddrw, // Load and decrement, repeat (word)
2514Z80_iniw, // Input and increment (word)
2515Z80_inirw, // Input and increment, repeat (word)
2516Z80_indw, // Input and decrement (word)
2517Z80_indrw, // Input and decrement, repeat (word)
2518Z80_outiw, // Output and increment (word)
2519Z80_otirw, // Output and increment, repeat (word)
2520Z80_outdw, // Output and decrement (word)
2521Z80_otdrw, // Output and decrement, repeat (word)
2522
2523// Gameboy instructions
2524
2527
2529
2530 };
2531
2532/*
2533 * Interactive disassembler (IDA).
2534 * Copyright (c) 1990-2025 Hex-Rays
2535 * ALL RIGHTS RESERVED.
2536 *
2537 */
2538
2539
2540
2541enum
2542{
2543
2544I860_null = 0, // Unknown Operation
2545
2546//
2547// Intel 860 XP instructions
2548//
2549
2629//
2630// iNTEL 860 XP Pipelined F-P instructions
2631//
2694
2696
2697 };
2698
2699/*
2700 * Interactive disassembler (IDA).
2701 * Copyright (c) 1990-2025 Hex-Rays
2702 * ALL RIGHTS RESERVED.
2703 *
2704 */
2705
2706
2707
2708enum
2709{
2710I51_null = 0, // Unknown Operation
2711
2712I51_acall, // Absolute Call
2713I51_add, // Add Second Operand to Acc
2714I51_addc, // Add Second Operand to Acc with carry
2715I51_ajmp, // Absolute Jump
2716I51_anl, // Logical AND (op1 &= op2)
2717I51_cjne, // Compare Operands and JNE
2718I51_clr, // Clear Operand (0)
2719I51_cpl, // Complement Operand
2720I51_da, // Decimal Adjust Accumulator
2721I51_dec, // Decrement Operand
2722I51_div, // Divide Acc by B
2723I51_djnz, // Decrement Operand and JNZ
2724I51_inc, // Increment Operand
2725I51_jb, // Jump if Bit is set
2726I51_jbc, // Jump if Bit is set & clear Bit
2727I51_jc, // Jump if Carry is set
2728I51_jmp, // Jump indirect relative to Data Pointer
2729I51_jnb, // Jump if Bit is clear
2730I51_jnc, // Jump if Carry is clear
2731I51_jnz, // Jump if Acc is not zero
2732I51_jz, // Jump if Acc is zero
2733I51_lcall, // Long Subroutine Call
2734I51_ljmp, // Long Jump
2735I51_mov, // Move (Op1 <- Op2)
2736I51_movc, // Move code byte relative to second op to Acc
2737I51_movx, // Move from/to external RAM
2738I51_mul, // Multiply Acc by B
2739I51_nop, // No operation
2740I51_orl, // Logical OR (op1 |= op2)
2741I51_pop, // Pop from Stack and put in Direct RAM
2742I51_push, // Push from Direct RAM to Stack
2743I51_ret, // Return from subroutine
2744I51_reti, // Return from Interrupt
2745I51_rl, // Rotate Acc left
2746I51_rlc, // Rotate Acc left through Carry
2747I51_rr, // Rotate Acc right
2748I51_rrc, // Rotate Acc right through Carry
2749I51_setb, // Set Direct Bit
2750I51_sjmp, // Short jump
2751I51_subb, // Subtract Second Operand from Acc with Borrow
2752I51_swap, // Swap nibbles of Acc
2753I51_xch, // Exchange Operands
2754I51_xchd, // Exchange Digit in Acc with Indirect RAM
2755I51_xrl, // Exclusive OR (op1 ^= op2)
2756
2757// 80251 instructions
2758
2759I51_jsle, // Jump if less than or equal (signed)
2760I51_jsg, // Jump if greater than (signed)
2761I51_jle, // Jump if less than or equal
2762I51_jg, // Jump if greater than
2763I51_jsl, // Jump if less than (signed)
2764I51_jsge, // Jump if greater than or equal (signed)
2765I51_je, // Jump if equal
2766I51_jne, // Jump if not equal
2767I51_trap, // Trap
2768I51_ejmp, // Extended jump
2769I51_ecall, // Extended call
2770I51_eret, // Extended return
2771I51_movh, // Move immediate 16-bit data to the high word of a dword (double-word) register
2772I51_movz, // Move 8-bit register to 16-bit register with zero extension
2773I51_movs, // Move 8-bit register to 16-bit register with sign extension
2774I51_srl, // Shift logical right by 1 bit
2775I51_sra, // Shift arithmetic right by 1 bit
2776I51_sll, // Shift logical left by 1 bit
2777I51_sub, // Subtract
2778I51_cmp, // Compare
2779
2780// 51mx instructions
2781I51_emov, // Move (A <- @PRi+disp) or (@PRi+disp <- A)
2782
2784
2785 };
2786
2787/*
2788 * Interactive disassembler (IDA).
2789 * Copyright (c) 1990-2025 Hex-Rays
2790 * ALL RIGHTS RESERVED.
2791 *
2792 */
2793
2794
2795
2796enum
2797{
2798TMS_null = 0, // Unknown Operation
2799TMS_abs, // Absolute value of Acc
2800TMS_adcb, // Add ACCB to Acc With Carry
2801TMS_add, // Add to Acc
2802TMS_addb, // Add ACCB to Acc
2803TMS_addc, // Add to Acc With Carry
2804TMS_adds, // Add to Acc With Sign-Extension Suppressed
2805TMS_addt, // Add to Acc With Shift Specified by TREG1
2806TMS_adrk, // Add to Aux Register With Short Immediate
2807TMS_and, // AND With Acc
2808TMS_andb, // AND ACCD With Acc
2809TMS_apac, // Add P Register to Acc
2810TMS_apl, // AND Data Memory Value With DBMR
2811TMS_apl2, // AND Data Memory Value With Long Constant
2812TMS_b, // Branch Unconditionally
2813TMS_bacc, // Branch to Location (Acc)
2814TMS_baccd, // Branch to Location (Acc) Delayed
2815TMS_banz, // Branch on Aux Register Not Zero
2816TMS_banzd, // Branch on Aux Register Not Zero Delayed
2817TMS_bcnd, // Branch Conditionally
2818TMS_bcndd, // Branch Conditionally Delayed
2819TMS_bd, // Branch Unconditionally Delayed
2820TMS_bit, // Test Bit
2821TMS_bitt, // Test Bit Specified by TREG2
2822TMS_bldd, // Block Move From Data Memory to Data Memory
2823TMS_bldp, // Block Move From Data Memory to Program Memory
2824TMS_blpd, // Block Move From Program Memory to Data Memory
2825TMS_bsar, // Barrel Shift
2826TMS_cala, // Call Subroutine at (Acc)
2827TMS_calad, // Call Subroutine at (Acc) Delayed
2828TMS_call, // Call Unconditionally
2829TMS_calld, // Call Unconditionally Delayed
2830TMS_cc, // Call Conditionally
2831TMS_ccd, // Call Conditionally Delayed
2832TMS_clrc, // Clear Control Bit
2833TMS_cmpl, // Complement Acc
2834TMS_cmpr, // Compare Aux Register With ARCR
2835TMS_cpl, // Compare DBMR With Data Value
2836TMS_cpl2, // Compare Long Immediate With Data Value
2837TMS_crgt, // Test for Acc Greater Than ACCB
2838TMS_crlt, // Test for Acc Smaller Than ACCB
2839TMS_dmov, // Data Move in Data Memory
2840TMS_estop, // Emulator Stop
2841TMS_exar, // Exchange ACCB With Acc
2842TMS_idle, // Idle Until Interrupt
2843TMS_idle2, // Idle Until Interrupt - Low Power Mode
2844TMS_in, // Input Data From Port
2845TMS_intr, // Soft Interrupt
2846TMS_lacb, // Load Acc With ACCB
2847TMS_lacc, // Load Acc With Shift
2848TMS_lacl, // Load Low Acc and Clear High Acc
2849TMS_lact, // Load Acc With Shift Specified by TREG1
2850TMS_lamm, // Load Acc With Memory-Mapped Register
2851TMS_lar, // Load Aux Register
2852TMS_ldp, // Load Data Memory Pointer
2853TMS_lmmr, // Load Memory-Mapped Register
2854TMS_lph, // Load Product High Register
2855TMS_lst, // Load Status Register
2856TMS_lt, // Load TREG0
2857TMS_lta, // Load TREG0 and Accumulate Previous Product
2858TMS_ltd, // Load TREG0,Accumulate Previous Product and Move Data
2859TMS_ltp, // Load TREG0 and Store P -> Acc
2860TMS_lts, // Load TREG0 and Subtract Previous Product
2861TMS_mac, // Multiply and Accumulate
2862TMS_macd, // Multiply and Accumulate With Data Move
2863TMS_madd, // Multiply and Accumulate With Data Move and Dynamic Addressing
2864TMS_mads, // Multiply and Accumulate With Dynamic Addressing
2865TMS_mar, // Modify Aux Register
2866TMS_mpy, // Multiply
2867TMS_mpya, // Multiply and Accumulate Previous Product
2868TMS_mpys, // Multiply and Subtract Previous Product
2869TMS_mpyu, // Multiply Unsigned
2870TMS_neg, // Negate Acc
2871TMS_nmi, // Nonmaskable Interrupt
2872TMS_nop, // No Operation
2873TMS_norm, // Normalize Contents of Acc
2874TMS_opl, // OR With DBMS
2875TMS_opl2, // OR With Long Immediate
2876TMS_or, // OR With Acc
2877TMS_orb, // OR ACCB With Accumulator
2878TMS_out, // Out Data to Port
2879TMS_pac, // Load Acc <- P
2880TMS_pop, // Pop Top of Stack to Low Acc
2881TMS_popd, // Pop Top of Stack to Data Memory
2882TMS_pshd, // Push Data Memory Value Onto Stack
2883TMS_push, // Push Low Acc Onto Stack
2884TMS_ret, // Return From Subroutine
2885TMS_retc, // Return Conditionally
2886TMS_retcd, // Return Conditionally Delayed
2887TMS_retd, // Return From Subroutine Delayed
2888TMS_rete, // Enable Interrupts and Return From Interrupt
2889TMS_reti, // Return From Interrupt
2890TMS_rol, // Rotate Acc Left
2891TMS_rolb, // Rotate ACCB and Acc Left
2892TMS_ror, // Rotate Acc Right
2893TMS_rorb, // Rotate ACCB and Acc Right
2894TMS_rpt, // Repeat Next Instruction
2895TMS_rptb, // Repeat Block
2896TMS_rptz, // Repeat Preceded by Clearing Acc and P
2897TMS_sacb, // Store Acc in ACCB
2898TMS_sach, // Store High Acc With Shift
2899TMS_sacl, // Store Low Acc With Shift
2900TMS_samm, // Store Acc in Memory-Mapped Register
2901TMS_sar, // Store Aux Register
2902TMS_sath, // Barrel Shift Acc as Specified by TREG1(4)
2903TMS_satl, // Barrel Shift Acc as Specified by TREG1(3-0)
2904TMS_sbb, // Subtract ACCB From Acc
2905TMS_sbbb, // Subtract ACCB From Acc With Borrow
2906TMS_sbrk, // Subtract From Aux Register Short Immediate
2907TMS_setc, // Set Control Bit
2908TMS_sfl, // Shift Acc Left
2909TMS_sflb, // Shift ACCB and Acc Left
2910TMS_sfr, // Shift Acc Right
2911TMS_sfrb, // Shift ACCB and Acc Right
2912TMS_smmr, // Store Memory-Mapped Register
2913TMS_spac, // Subtract P From Acc
2914TMS_sph, // Store High P Register
2915TMS_spl, // Store Low P Register
2916TMS_splk, // Store Parallel Long Immediate
2917TMS_spm, // Store ACCB and Acc Right
2918TMS_sqra, // Square and Accumulate Previous Product
2919TMS_sqrs, // Square and Subtract Previous Product
2920TMS_sst, // Store Status Register
2921TMS_sub, // Subtract From Acc
2922TMS_subb, // Subtract From Acc With Borrow
2923TMS_subc, // Conditional Subtract
2924TMS_subs, // Subtract From Acc With Sign-Extension Suppressed
2925TMS_subt, // Subtract From Acc With Shift Specified by TREG1
2926TMS_tblr, // Table Read
2927TMS_tblw, // Table Write
2928TMS_trap, // Software Interrupt
2929TMS_xc, // Execute Conditionally
2930TMS_xor, // Exclusive-OR With Acc
2931TMS_xorb, // Exclusive-OR of ACCB With Acc
2932TMS_xpl, // Exclusive-OR Data Memory Value
2933TMS_xpl2, // Exclusive-OR Data Memory Value
2934TMS_zalr, // Zero Low Acc Load High Acc With Rounding
2935TMS_zap, // Zero Acc and P
2936TMS_zpr, // Zero P Register
2937
2938//
2939// TMS320C2x instructions
2940//
2941
2942TMS2_abs, // Absolute value of accumulator
2943TMS2_add, // Add to accumulator with shift
2944TMS2_addc, // Add to accumulator with carry
2945TMS2_addh, // Add to high accumulator
2946TMS2_addk, // Add to accumulator short immediate
2947TMS2_adds, // Add to low accumulator with sign extension suppressed
2948TMS2_addt, // Add to accumulator with shift specified by T register
2949TMS2_adlk, // Add to accumulator long immediate with shift
2950TMS2_adrk, // Add to auxiliary register short immediate
2951TMS2_and, // And with accumulator
2952TMS2_andk, // And immediate with accumulator with shift
2953TMS2_apac, // App P register to accumulator
2954TMS2_b, // Branch unconditionally
2955TMS2_bacc, // Branch to address specified by accumulator
2956TMS2_banz, // Bnrach on auxiliary register not zero
2957TMS2_bbnz, // Branch if tc bit != 0
2958TMS2_bbz, // Branch if tc bit = 0
2959TMS2_bc, // Branch on carry
2960TMS2_bgez, // Branch if accumulator >= 0
2961TMS2_bgz, // Branch if accumulator > 0
2962TMS2_bioz, // Branch on i/o status = 0
2963TMS2_bit, // Test bit
2964TMS2_bitt, // Test bit specifed by T register
2965TMS2_blez, // Branch if accumulator <= 0
2966TMS2_blkd, // Block move from data memory to data memory
2967TMS2_blkp, // Block move from program memory to data memory
2968TMS2_blz, // Branch if accumulator < 0
2969TMS2_bnc, // Branch on no carry
2970TMS2_bnv, // Branch if no overflow
2971TMS2_bnz, // Branch if accumulator != 0
2972TMS2_bv, // Branch on overflow
2973TMS2_bz, // Branch if accumulator = 0
2974TMS2_cala, // Call subroutine indirect
2975TMS2_call, // Call subroutine
2976TMS2_cmpl, // Complement accumulator
2977TMS2_cmpr, // Compare auxiliary register with auxiliary register ar0
2978TMS2_cnfd, // Configure block as data memory
2979TMS2_cnfp, // Configure block as program memory
2980TMS2_conf, // Configure block as data/program memory
2981TMS2_dint, // Disable interrupt
2982TMS2_dmov, // Data move in data memory
2983TMS2_eint, // Enable interrupt
2984TMS2_fort, // Format serial port registers
2985TMS2_idle, // Idle until interrupt
2986TMS2_in, // Input data from port
2987TMS2_lac, // Load accumulator with shift
2988TMS2_lack, // Load accumulator short immediate
2989TMS2_lact, // Load accumulator with shift specified by T register
2990TMS2_lalk, // Load accumulator long immediate with shift
2991TMS2_lar, // Load auxiliary register
2992TMS2_lark, // Load auxiliary register short immediate
2993TMS2_larp, // Load auxiliary register pointer
2994TMS2_ldp, // Load data memory page pointer
2995TMS2_ldpk, // Load data memory page pointer immediate
2996TMS2_lph, // Load high P register
2997TMS2_lrlk, // Load auxiliary register long immediate
2998TMS2_lst, // Load status register ST0
2999TMS2_lst1, // Load status register ST1
3000TMS2_lt, // Load T register
3001TMS2_lta, // Load T register and accumulate previous product
3002TMS2_ltd, // Load T register, accumulate previous product and move data
3003TMS2_ltp, // Load T register and store P register in accumulator
3004TMS2_lts, // Load T register and subtract previous product
3005TMS2_mac, // Multiply and accumulate
3006TMS2_macd, // Multiply and accumulate with data move
3007TMS2_mar, // Modify auxiliary register
3008TMS2_mpy, // Multiply (with T register, store product in P register)
3009TMS2_mpya, // Multiply and accumulate previous product
3010TMS2_mpyk, // Multiply immediate
3011TMS2_mpys, // Multiply and subtract previous product
3012TMS2_mpyu, // Multiply unsigned
3013TMS2_neg, // Negate accumulator
3014TMS2_nop, // No operation
3015TMS2_norm, // Normalize contents of accumulator
3016TMS2_or, // Or with accumulator
3017TMS2_ork, // Or immediate with accumulator with shift
3018TMS2_out, // Output data to port
3019TMS2_pac, // Load accumulator with P register
3020TMS2_pop, // Pop top of stack to low accumulator
3021TMS2_popd, // Pop top of stack to data memory
3022TMS2_pshd, // Push data memory value onto stack
3023TMS2_push, // Push low accumulator onto stack
3024TMS2_rc, // Reset carry bit
3025TMS2_ret, // Return from subroutine
3026TMS2_rfsm, // Reset serial port frame synchronization mode
3027TMS2_rhm, // Reset hold mode
3028TMS2_rol, // Rotate accumulator left
3029TMS2_ror, // Rotate acuumulator right
3030TMS2_rovm, // Reset overflow mode
3031TMS2_rpt, // Repeat instruction as specified by data memory value
3032TMS2_rptk, // Repeat instruction as specified by immediate value
3033TMS2_rsxm, // Reset sign extension mode
3034TMS2_rtc, // Reset test/control flag
3035TMS2_rtxm, // Reset serial port transmit mode
3036TMS2_rxf, // Reset external flag
3037TMS2_sach, // Store high accumulator with shift
3038TMS2_sacl, // Store low accumulator with shift
3039TMS2_sar, // Store auxiliary register
3040TMS2_sblk, // Subtract from accumulator long immediate with shift
3041TMS2_sbrk, // Subtract from auxiliary register short immediate
3042TMS2_sc, // Set carry bit
3043TMS2_sfl, // Shift accumulator left
3044TMS2_sfr, // Shift accumulator right
3045TMS2_sfsm, // Set serial port frame synchronization mode
3046TMS2_shm, // Set hold mode
3047TMS2_sovm, // Set overflow mode
3048TMS2_spac, // Subtract P register from accumulator
3049TMS2_sph, // Store high P register
3050TMS2_spl, // Store low P register
3051TMS2_spm, // Set P register output shift mode
3052TMS2_sqra, // Square and accumulate
3053TMS2_sqrs, // Square and subtract previous product
3054TMS2_sst, // Store status register ST0
3055TMS2_sst1, // Store status register ST1
3056TMS2_ssxm, // Set sign extension mode
3057TMS2_stc, // Set test/control flag
3058TMS2_stxm, // Set serial port transmit mode
3059TMS2_sub, // Subtract from accumulator with shift
3060TMS2_subb, // Subtract from accumulator with borrow
3061TMS2_subc, // Conditional subtract
3062TMS2_subh, // Subtract from high accumulator
3063TMS2_subk, // Subtract from accumulator shoft immediate
3064TMS2_subs, // Subtract from low accumulator with sign extension suppressed
3065TMS2_subt, // Subtract from accumulator with shift specified by T register
3066TMS2_sxf, // Set external flag
3067TMS2_tblr, // Table read
3068TMS2_tblw, // Table write
3069TMS2_trap, // Software interrupt
3070TMS2_xor, // Exclusive or with accumulator
3071TMS2_xork, // Exclusive or immediate with accumulator with shift
3072TMS2_zac, // Zero accumulator
3073TMS2_zalh, // Zero low accumulator and load high accumulator
3074TMS2_zalr, // Zero low accumulator and load high accumulator with rounding
3075TMS2_zals, // Zero low accumulator and load high accumulator with sign extension suppressed
3076
3078
3079 };
3080
3081/*
3082 * Interactive disassembler (IDA).
3083 * Copyright (c) 1990-2025 Hex-Rays
3084 * ALL RIGHTS RESERVED.
3085 *
3086 */
3087
3088
3089
3090enum
3091{
3092 M65_null = 0, // Unknown Operation
3093
3094 // NMOS instructions
3095
3096 M65_adc, // A <- (A) + M + C
3097 M65_anc, // A <- A /\ M, C <- ~A7
3098 M65_and, // A <- (A) /\ M
3099 M65_ane, // M <-[(A)\/$EE] /\ (X)/\‍(M)
3100 M65_arr, // A <- [(A /\ M) >> 1]
3101 M65_asl, // C <- A7, A <- (A) << 1
3102 M65_asr, // A <- [(A /\ M) >> 1]
3103 M65_bcc, // if C=0, PC = PC + offset
3104 M65_bcs, // if C=1, PC = PC + offset
3105 M65_beq, // if Z=1, PC = PC + offset
3106 M65_bit, // Z <- ~(A /\ M) N<-M7 V<-M6
3107 M65_bmi, // if N=1, PC = PC + offset
3108 M65_bne, // if Z=0, PC = PC + offset
3109 M65_bpl, // if N=0, PC = PC + offset
3110 M65_brk, // Stack <- PC, PC <- ($fffe)
3111 M65_bvc, // if V=0, PC = PC + offset
3112 M65_bvs, // if V=1, PC = PC + offset
3113 M65_clc, // C <- 0
3114 M65_cld, // D <- 0
3115 M65_cli, // I <- 0
3116 M65_clv, // V <- 0
3117 M65_cmp, // (A - M) -> NZC
3118 M65_cpx, // (X - M) -> NZC
3119 M65_cpy, // (Y - M) -> NZC
3120 M65_dcp, // M <- (M)-1, (A-M) -> NZC
3121 M65_dec, // M <- (M) - 1
3122 M65_dex, // X <- (X) - 1
3123 M65_dey, // Y <- (Y) - 1
3124 M65_eor, // A <- (A) \-/ M
3125 M65_inc, // M <- (M) + 1
3126 M65_inx, // X <- (X) +1
3127 M65_iny, // Y <- (Y) + 1
3128 M65_isb, // M <- (M) - 1,A <- (A)-M-~C
3129 M65_jmp, // PC <- Address
3130 M65_jmpi, // (PC <- Address)
3131 M65_jsr, // Stack <- PC, PC <- Address
3132 M65_lae, // X,S,A <- (S /\ M)
3133 M65_lax, // A <- M, X <- M
3134 M65_lda, // A <- M
3135 M65_ldx, // X <- M
3136 M65_ldy, // Y <- M
3137 M65_lsr, // C <- A0, A <- (A) >> 1
3138 M65_lxa, // X04 <- (X04) /\ M04, A04 <- (A04) /\ M04
3139 M65_nop, // [no operation]
3140 M65_ora, // A <- (A) V M
3141 M65_pha, // Stack <- (A)
3142 M65_php, // Stack <- (P)
3143 M65_pla, // A <- (Stack)
3144 M65_plp, // A <- (Stack)
3145 M65_rla, // M <- (M << 1) /\ (A)
3146 M65_rol, // C <- A7 & A <- A << 1 + C
3147 M65_ror, // C<-A0 & A<- (A7=C + A>>1)
3148 M65_rra, // M <- (M >> 1) + (A) + C
3149 M65_rti, // P <- (Stack), PC <-(Stack)
3150 M65_rts, // PC <- (Stack)
3151 M65_sax, // M <- (A) /\ (X)
3152 M65_sbc, // A <- (A) - M - ~C
3153 M65_sbx, // X <- (X)/\‍(A) - M
3154 M65_sec, // C <- 1
3155 M65_sed, // D <- 1
3156 M65_sei, // I <- 1
3157 M65_sha, // M <- (A) /\ (X) /\ (PCH+1)
3158 M65_shs, // X <- (A) /\ (X), S <- (X), M <- (X) /\ (PCH+1)
3159 M65_shx, // M <- (X) /\ (PCH+1)
3160 M65_shy, // M <- (Y) /\ (PCH+1)
3161 M65_slo, // M <- (M >> 1) + A + C
3162 M65_sre, // M <- (M >> 1) \-/ A
3163 M65_sta, // M <- (A)
3164 M65_stx, // M <- (X)
3165 M65_sty, // M <- (Y)
3166 M65_tax, // X <- (A)
3167 M65_tay, // Y <- (A)
3168 M65_tsx, // X <- (S)
3169 M65_txa, // A <- (X)
3170 M65_txs, // S <- (X)
3171 M65_tya, // A <- (Y)
3172
3173 // CMOS instructions
3174
3175 M65_bbr0, // Branch if bit 0 reset
3176 M65_bbr1, // Branch if bit 1 reset
3177 M65_bbr2, // Branch if bit 2 reset
3178 M65_bbr3, // Branch if bit 3 reset
3179 M65_bbr4, // Branch if bit 4 reset
3180 M65_bbr5, // Branch if bit 5 reset
3181 M65_bbr6, // Branch if bit 6 reset
3182 M65_bbr7, // Branch if bit 7 reset
3183 M65_bbs0, // Branch if bit 0 set
3184 M65_bbs1, // Branch if bit 1 set
3185 M65_bbs2, // Branch if bit 2 set
3186 M65_bbs3, // Branch if bit 3 set
3187 M65_bbs4, // Branch if bit 4 set
3188 M65_bbs5, // Branch if bit 5 set
3189 M65_bbs6, // Branch if bit 6 set
3190 M65_bbs7, // Branch if bit 7 set
3191 M65_rmb0, // Reset memory bit 0
3192 M65_rmb1, // Reset memory bit 1
3193 M65_rmb2, // Reset memory bit 2
3194 M65_rmb3, // Reset memory bit 3
3195 M65_rmb4, // Reset memory bit 4
3196 M65_rmb5, // Reset memory bit 5
3197 M65_rmb6, // Reset memory bit 6
3198 M65_rmb7, // Reset memory bit 7
3199 M65_smb0, // Set memory bit 0
3200 M65_smb1, // Set memory bit 1
3201 M65_smb2, // Set memory bit 2
3202 M65_smb3, // Set memory bit 3
3203 M65_smb4, // Set memory bit 4
3204 M65_smb5, // Set memory bit 5
3205 M65_smb6, // Set memory bit 6
3206 M65_smb7, // Set memory bit 7
3207 M65_stz, // Store zero
3208 M65_tsb, // Test and set bits
3209 M65_trb, // Test and reset bits
3210 M65_phy, // Push Y register
3211 M65_ply, // Pull Y register
3212 M65_phx, // Push X register
3213 M65_plx, // Pull X register
3214 M65_bra, // Branch always
3215 M65_wai, // Wait for interrupt
3216 M65_stp, // Stop processor
3217
3219};
3220
3221
3222
3223
3224// The instruction types (``itype''s)
3225// m65* CPUs implements.
3226
3228{
3229 // http://www.westerndesigncenter.com/wdc/datasheets/Programmanual.pdf
3230 M65816_null=0, // Unknown Operation
3231 M65816_adc, // Add with carry
3232 M65816_and, // AND A with memory
3233 M65816_asl, // Shift memory or A left
3234 M65816_bcc, // Branch if carry clear
3235 M65816_bcs, // Branch if carry set
3236 M65816_beq, // Branch if equal
3237 M65816_bit, // Test memory bits against A
3238 M65816_bmi, // Branch if minus
3239 M65816_bne, // Branch if not equal
3240 M65816_bpl, // Branch if plus
3241 M65816_bra, // Branch always
3242 M65816_brk, // Software break
3243 M65816_brl, // Branch always long
3244 M65816_bvc, // Branch if overflow clear
3245 M65816_bvs, // Branch if overflow set
3246 M65816_clc, // Clear carry flag
3247 M65816_cld, // Clear decimal mode flag
3248 M65816_cli, // Clear interrupt disable flag
3249 M65816_clv, // Clear overflow flag
3250 M65816_cmp, // Compare A with memory
3251 M65816_cop, // Co-processor enable
3252 M65816_cpx, // Compare X with memory
3253 M65816_cpy, // Compare Y with memory
3254 M65816_dec, // Decrement
3255 M65816_dex, // Decrement X
3256 M65816_dey, // Decrement Y
3257 M65816_eor, // XOR A with M
3258 M65816_inc, // Increment
3259 M65816_inx, // Increment X
3260 M65816_iny, // Increment Y
3261 M65816_jml, // Jump long (inter-bank)
3262 M65816_jmp, // Jump
3263 M65816_jsl, // Jump to subroutine long (inter-bank)
3264 M65816_jsr, // Jump to subroutine
3265 M65816_lda, // Load A from memory
3266 M65816_ldx, // Load X from memory
3267 M65816_ldy, // Load Y from memory
3268 M65816_lsr, // Logical shift memory or A right
3269 M65816_mvn, // Block move next
3270 M65816_mvp, // Block move prev
3272 M65816_ora, // Or A with memory
3273 M65816_pea, // Push effective absolute address
3274 M65816_pei, // Push effective indirect address
3275 M65816_per, // Push effective PC-relative indirect address
3276 M65816_pha, // Push A
3277 M65816_phb, // Push B (data bank register)
3278 M65816_phd, // Push D (direct page register)
3279 M65816_phk, // Push K (program bank register)
3280 M65816_php, // Push processor status
3281 M65816_phx, // Push X
3282 M65816_phy, // Push Y
3283 M65816_pla, // Pull A
3284 M65816_plb, // Pull B
3285 M65816_pld, // Pull D
3286 M65816_plp, // Pull processor status
3287 M65816_plx, // Pull X
3288 M65816_ply, // Pull Y
3289 M65816_rep, // Reset status bits
3290 M65816_rol, // Rotate memory or A left
3291 M65816_ror, // Rotate memory or A right
3292 M65816_rti, // Return from interrupt
3293 M65816_rtl, // Return from subroutine long
3294 M65816_rts, // Return from subroutine
3295 M65816_sbc, // Subtract with borrow from A
3296 M65816_sec, // Set carry flag
3297 M65816_sed, // Set decimal mode flag
3298 M65816_sei, // Set interrupt disable flag
3299 M65816_sep, // Set status bits
3300 M65816_sta, // Store A to memory
3301 M65816_stp, // Stop processor
3302 M65816_stx, // Store X to memory
3303 M65816_sty, // Store Y to memory
3304 M65816_stz, // Store zero to memory
3305 M65816_tax, // Transfer A to X
3306 M65816_tay, // Transfer A to Y
3307 M65816_tcd, // Transfer 16-bit A to D (direct page register)
3308 M65816_tcs, // Transfer A to S
3309 M65816_tdc, // Transfer 16-bit D to A
3310 M65816_trb, // Test and reset memory bits against A
3311 M65816_tsb, // Test and set memory bits against A
3312 M65816_tsc, // Transfer S to A
3313 M65816_tsx, // Transfer S to X
3314 M65816_txa, // Transfer X to A
3315 M65816_txs, // Transfer X to S
3316 M65816_txy, // Transfer X to Y
3317 M65816_tya, // Transfer Y to A
3318 M65816_tyx, // Transfer Y to X
3319 M65816_wai, // Wait for interrupt
3320 M65816_wdm, // Reserved
3321 M65816_xba, // Exchange bytes in A
3322 M65816_xce, // Exchange carry and emulation bits
3324};
3325
3326/*
3327 * Interactive disassembler (IDA)
3328 * Copyright (c) 1990-2025 Hex-Rays
3329 * PDP11 module.
3330 * Copyright (c) 1995-2006 by Iouri Kharon.
3331 * E-mail: yjh@styx.cabel.net
3332 *
3333 * ALL RIGHTS RESERVED.
3334 *
3335 */
3336
3337
3338
3339enum
3340{
3341pdp_null = 0, // Unknown Operation
3342
3343pdp_halt, // Stop CPU
3344pdp_wait, // Wait interrupt
3345pdp_rti, // Interrupt return
3346pdp_bpt, // Trap to Debbuger
3347pdp_iot, // Trap to 20 (i/o)
3348pdp_reset, // Reset CPU and device
3349pdp_rtt, // Interrupt return and ignore dbg-flag
3350pdp_mfpt, // Load Processor Type (* hi model)
3351pdp_jmp, // Absolute jmp
3352pdp_rts, // Return into subroutine
3353pdp_spl, // Set Prior.
3354pdp_nop, // Not operation
3355pdp_clc, // Clear C bit in PSW
3356pdp_clv, // Clear V bit in PSW
3357pdp_clz, // Clear Z bit in PSW
3358pdp_cln, // Clear N bit in PSW
3359pdp_ccc, // Clear All Condition bits in PSW
3360pdp_sec, // Set C bit in PSW
3361pdp_sev, // Set V bit in PSW
3362pdp_sez, // Set Z bit in PSW
3363pdp_sen, // Set N bit in PSW
3364pdp_scc, // Set All Condition bits bit in PSW
3365pdp_swab, // Exchange byte in word
3366pdp_br, // Relative jmp
3367pdp_bne, // Jump if Z=0
3368pdp_beq, // Jump if Z=1
3369pdp_bge, // Jump if N^V=0
3370pdp_blt, // Jump if N^V=1
3371pdp_bgt, // Jump if Z|(N^V)=0
3372pdp_ble, // Jump if Z|(N^V)=1
3373pdp_jsr, // Call procedure
3374pdp_clr, // Clear operand
3375pdp_com, // Inverse operand
3376pdp_inc, // Increment operand
3377pdp_dec, // Decrement operand
3378pdp_neg, // op = -op
3379pdp_adc, // Add with Carry
3380pdp_sbc, // Substract with Carry
3381pdp_tst, // Test operand
3382pdp_ror, // Cyclic shift rignt
3383pdp_rol, // Cyclic shift left
3384pdp_asr, // Arifmetic shift rignt
3385pdp_asl, // Arifmetic shift left
3386pdp_mark, // Return and empty stack
3387pdp_mfpi, // Load from previous instruction space (*hi model)
3388pdp_mtpi, // Store to previous instruction space (*hi model)
3389pdp_sxt, // N=>op
3390pdp_mov, // Move operand
3391pdp_cmp, // Compare operands
3392pdp_bit, // Check Bit's
3393pdp_bic, // Clear Bit's
3394pdp_bis, // Set Bit's
3395pdp_add, // Add operands
3396pdp_sub, // Substract operands
3397pdp_mul, // Multiple Reg (*eis)
3398pdp_div, // Divide Reg (*eis)
3399pdp_ash, // Multistep shift (*eis)
3400pdp_ashc, // Multistep shift 2 reg (*eis)
3401pdp_xor, // Exclusive or (*eis)
3402pdp_fadd, // Floating Add (*fis)
3403pdp_fsub, // Floating Subtract (*fis)
3404pdp_fmul, // Floating Multiple (*fis)
3405pdp_fdiv, // Floating Divide (*fis)
3407pdp_bpl, // Jump if N=0
3408pdp_bmi, // Jump if N=1
3409pdp_bhi, // Jump if (!C)&(!Z)=0
3410pdp_blos, // Jump if C|Z=1
3411pdp_bvc, // Jump if V=0
3412pdp_bvs, // Jump if V=1
3413pdp_bcc, // Jump if C=0
3414pdp_bcs, // Jump if C=1
3415pdp_emt, // Trap to System
3416pdp_trap, // Trap to user/compiler
3417pdp_mtps, // Store PSW (*lsi11 only)
3418pdp_mfpd, // Load from previous data space (*hi model)
3419pdp_mtpd, // Store to previous data space (*hi model)
3420pdp_mfps, // Load PSW (*lsi11 only)
3421 // FPU instruction
3422pdp_cfcc, // Copy cond.codes into FPS to PSW
3423pdp_setf, // Set Float
3424pdp_seti, // Set Integer
3425pdp_setd, // Set Double
3426pdp_setl, // Set Long Integer
3427pdp_ldfps, // Load FPS
3428pdp_stfps, // Store FPS
3429pdp_stst, // Load interrupt status
3430pdp_clrd, // Clear
3431pdp_tstd, // Test
3432pdp_absd, // op = mod(op)
3433pdp_negd, // op = -op
3434pdp_muld, // Multiple
3435pdp_modd, // Get int. part
3437pdp_ldd, // Load in Acc
3438pdp_subd, // Substract
3439pdp_cmpd, // Compare
3440pdp_std, // Store into Acc
3441pdp_divd, // Divide
3442pdp_stexp, // Store exponent
3443pdp_stcdi, // Store and convert double/float to integer/long
3444pdp_stcdf, // Store and convert double/float to float/double
3445pdp_ldexp, // Load exponent
3446pdp_ldcif, // Load and convert integer/long to double/float
3447pdp_ldcfd, // Load and convert float/double to double/float
3448pdp_call, // Jsr PC,
3449pdp_return, // RTS PC
3450pdp_compcc, // Complex Condition Codes
3451
3453
3454 };
3455
3456/*
3457 * Interactive disassembler (IDA).
3458 * Copyright (c) 1990-2025 Hex-Rays
3459 * ALL RIGHTS RESERVED.
3460 *
3461 */
3462
3463
3464
3465enum
3466{
3467 mc_null = 0, // Unknown Operation
3468
3469 mc_abcd, // summa with BCD correction
3470 mc_add, // summa with Dn
3471 mc_adda, // summa with An
3472 mc_addi, // summa with immediate
3473 mc_addq, // -"-
3474 mc_addx, // summa 2 reg and const
3475 mc_and, // logical and
3476 mc_andi, // logical and with immediate
3477 mc_asl, // shift by count
3478 mc_asr, // -"-
3479 mc_b, // branch if cond code
3480 mc_bchg, // bit chang
3481 mc_bclr, // bit clear
3482 mc_bftst, // bit field test
3483 mc_bfchg, // bit field change
3484 mc_bfclr, // bit field set in 0
3485 mc_bfset, // bit field set in 1
3486 mc_bfextu, // bit field extract (unsigned)
3487 mc_bfexts, // bit field extract (signed)
3488 mc_bfffo, // bit field offset
3489 mc_bfins, // bit field include
3490 mc_bgnd, // CPU32- enter backgound mode
3491 mc_bkpt, // disable TRAP at any cycles
3492 mc_bra, // branch
3493 mc_bset, // bit set
3494 mc_bsr, // relative call
3495 mc_btst, // bit test
3496 mc_callm, // call module [descrtiptor] (020)
3497 mc_cas, // compare and swap
3498 mc_cas2, // -"-
3499 mc_chk, // compare and trap
3500 mc_chk2, // -"-
3501 mc_cinv, // invalidate cache
3502 mc_clr, // clear data
3503 mc_cmp, // compare data
3504 mc_cmp2, // -"-
3505 mc_cmpa, // compare address
3506 mc_cmpi, // compare immediate
3507 mc_cmpm, // compare memory
3508 mc_cpush, // invalidate cache
3509 mc_db, // (djnz) if cond code
3510 mc_divs, // sign divide
3511 mc_divsl, // -"-
3512 mc_divu, // unsign didide
3513 mc_divul, // -"-
3514 mc_eor, // logical xor
3515 mc_eori, // logical xor with immediate
3516 mc_exg, // exchange registers
3517 mc_ext, // analog cwd
3518 mc_extb, // analog cwq
3519 mc_fabs, // FP abs
3520 mc_facos, // FP acos
3521 mc_fadd, // FP add
3522 mc_fasin, // FP asin
3523 mc_fatan, // FP atan
3524 mc_fatanh, // FP atanh
3525 mc_fb, // fBcc
3526 mc_fcmp, // FP cmp
3527 mc_fcos, // FP cos
3528 mc_fcosh, // FP cosh
3529 mc_fdabs, // FP abs double rounded
3530 mc_fdadd, // FP add
3531 mc_fdb, // fDBcc
3532 mc_fddiv, // FP div double rounded
3533 mc_fdiv, // FP div
3534 mc_fdmove, // FP mov double rounded
3535 mc_fdmul, // FP mul double rounded
3536 mc_fdneg, // FP neg double rounded
3537 mc_fdsqrt, // FP sqrt double rounded
3538 mc_fdsub, // FP sub double rounded
3539 mc_fetox, // FP e**x
3540 mc_fetoxm1, // FP e**x-1
3541 mc_fgetexp, // FP extract exponent
3542 mc_fgetman, // FP extract mantissa
3543 mc_fint, // FP get integer part
3544 mc_fintrz, // FP get integer part by round
3545 mc_flog2, // FP log[2]
3546 mc_flog10, // FP log[10]
3547 mc_flogn, // FP log[e]
3548 mc_flognp1, // FP log[e] x+1
3549 mc_fmod, // FP mod
3550 mc_fmove, // move float
3551 mc_fmovecr, // move floating const
3552 mc_fmovem, // move float register list
3553 mc_fmul, // FM mul
3554 mc_fneg, // FP neg
3555 mc_fnop, // float nop
3556 mc_frem, // FP rem
3557 mc_frestore, // restore status
3558 mc_fs, // fScc
3559 mc_fsabs, // FP abs single rounded
3560 mc_fsadd, // FP add single rounded
3561 mc_fsave, // Fsave status
3562 mc_fscale, // FP *2**x
3563 mc_fsdiv, // FP div single rounded
3564 mc_fsgldiv, // FP single div
3565 mc_fsglmul, // FP single mul
3566 mc_fsin, // FP sin
3567 mc_fsincos, // FP sin & cos
3568 mc_fsinh, // FP sinh
3569 mc_fsmove, // FP mov single rounded
3570 mc_fsmul, // FP mul single rounded
3571 mc_fsneg, // FP neg single rounded
3572 mc_fsqrt, // FP sqrt
3573 mc_fssqrt, // FP sqrt single rounded
3574 mc_fssub, // FP sub single rounded
3575 mc_fsub, // FP sub
3576 mc_ftan, // FP tan
3577 mc_ftanh, // FP tanh
3578 mc_ftentox, // FP 10**x
3579 mc_ftrap, // fTRAPcc
3580 mc_ftst, // FP tst
3581 mc_ftwotox, // FP 2**x
3582 mc_halt, // (coldfire) Halt the processor
3583 mc_illegal, // trap to vector
3584 mc_jmp, // absolute Jmp
3585 mc_jsr, // absolute jsr
3586 mc_lea, // load effective address
3587 mc_link, // change sp context
3588 mc_lpstop, // cpu32 - stop
3589 mc_lsl, // logical shift
3590 mc_lsr, // -"-
3591 mc_mac, // multiple and accumulate
3592 mc_macl, // multiple and accumulate with register load
3593 mc_move, // move memory
3594 mc_move16, // move 16 byte
3595 mc_movea, // move move with address reg
3596 mc_movec, // move from/to control register
3597 mc_movem, // move register list
3598 mc_movep, // move with data register
3599 mc_moveq, // move with immediate
3600 mc_moves, // mtpd/mfpd
3601 mc_msac, // multiple and subtract
3602 mc_msacl, // multiple and subtract with register load
3603 mc_muls, // sign multiplication
3604 mc_mulu, // unsign multiplication
3605 mc_nbcd, // negative with BCD correct
3606 mc_neg, // negative
3607 mc_negx, // negative with immediate
3608 mc_nop, // null operation
3609 mc_not, // logical not
3610 mc_or, // logical or
3611 mc_ori, // logical or with immediate
3612 mc_pack, // UNP(bcd)+adj -> PACK(bcd)
3613 mc_pea, // lea into stack
3614 mc_pb, // 68851 pbcc
3615 mc_pdb, // 68851 pdbcc
3616 mc_pflush, // invalidate cache
3617 mc_pflushr, // 68851 load root entry
3618 mc_ploadr, // 68851
3619 mc_ploadw, // 68851
3620 mc_pmove, // move MMU register
3621 mc_prestore, // 68851
3622 mc_psave, // 68851
3623 mc_ps, // 68851 pscc
3624 mc_ptestr, // test a logical address
3626 mc_ptrap, // 68851 ptrapcc
3627 mc_pulse, // (coldfire) generate unique PST value
3628 mc_pvalid, // 68851 move AL bit
3629 mc_rol, // cycl. shift
3630 mc_ror, // -"-
3631 mc_roxl, // two op cycl shift
3632 mc_roxr, // -"-
3633 mc_reset, // reset
3634 mc_rtd, // mark
3635 mc_rte, // return with SR
3636 mc_rtm, // reload save module state
3637 mc_rtr, // return with CCR
3638 mc_rts, // return
3639 mc_sbcd, // substract with BCD correction
3640 mc_s, // 1 if cond code else 0
3641 mc_stop, // halt
3642 mc_sub, // substract
3643 mc_suba, // substract address
3644 mc_subi, // substract immediate
3645 mc_subq, // -"-
3646 mc_subx, // substract memory
3647 mc_swap, // hi and low word in register
3648 mc_tas, // test byte sign
3649 mc_tbl, // CPU32-tblu/tblun/tbls/tblsn
3650 mc_trap, // analog int(86) (or trap if cond code)
3651 mc_trapv, // if V then trap
3652 mc_tst, // test destination
3653 mc_unlk, // destroy address ?
3654 mc_unpk, // PACK(bcd)+adj -> UNPACK(bcd)
3655 mc_wddata, // (coldfire) load WDDATA port (pins)
3656 mc_wdebug, // (coldfire) load debug register
3657 mc_atrap, // MacOS atrap
3658
3659 // new ColdFire instructions
3660 mc_bitrev, // bit reverse
3661 mc_byterev, // byte reverse
3662 mc_ff1, // find first one
3663 mc_intouch, // instruction fetch touch
3664 mc_mov3q, // move 3-bit data quick
3665 mc_mvs, // move with sign extend
3666 mc_mvz, // move with zero-fill
3667 mc_sats, // signed saturate
3668 mc_movclr, // move from accumulator and clear
3669 mc_maaac, // Multiply and Add to 1st Accumulator, Add to 2nd Accumulator
3670 mc_masac, // Multiply and Add to 1st Accumulator, Subtract from 2nd Accumulator
3671 mc_msaac, // Multiply and Subtract to 1st Accumulator, Add to 2nd Accumulator
3672 mc_mssac, // Multiply and Subtract to 1st Accumulator, Subtract to 2nd Accumulator
3673
3674 mc_remsl, // Signed Divide Remainder
3675 mc_remul, // Unsigned Divide Remainder
3676
3678};
3679
3680/*
3681 * Interactive disassembler (IDA).
3682 * Copyright (c) 1990-2025 Hex-Rays
3683 * ALL RIGHTS RESERVED.
3684 *
3685 */
3686
3687
3688
3689enum
3690{
3691mc8_null = 0, // Unknown Operation
3692
3693mc8_aba, // Add b to a (11)
3694mc8_ab, // Add b to index register
3695mc8_adc, // Add with carry
3696mc8_add, // Add without carry
3697mc8_addd, // Add 16-bit to D (11)
3698mc8_ais, // Add immediate value to stack pointer (8)
3699mc8_aix, // Add immediate value to index register (H:X) (8)
3700mc8_and, // Logical AND
3701mc8_andcc, // Logical AND immdiate with CCR (9)
3702mc8_asr, // Ariphmetic shift right
3703mc8_bcc, // Branch if carry bit clear
3704mc8_bclr, // Clear bit in memory
3705mc8_bcs, // Branch if carry bit set
3706mc8_beq, // Branch if equal
3707mc8_bge, // Branch if >= (signed)
3708mc8_bgt, // Branch if > (signed)
3709mc8_bhcc, // Branch if half carry bit clear (8)
3710mc8_bhcs, // Branch if half carry bit set (8)
3711mc8_bhi, // Branch if > (unsigned)
3712mc8_bhs, // Branch if >= (unsigned) (11)
3713mc8_bih, // Branch if IRQ pin high (8)
3714mc8_bil, // Branch if IRQ pin low (8)
3715mc8_bit, // Bit test (8)
3716mc8_ble, // Branch if <= (signed) (8)
3717mc8_blo, // Branch if < (unsigned) (11)
3718mc8_bls, // Branch if <= (unsigned) (8)
3719mc8_blt, // Branch if < (signed) (8)
3720mc8_bmc, // Branch if interrupt mask clear (8)
3721mc8_bmi, // Branch if minus
3722mc8_bms, // Branch if interrupt mask set (8)
3723mc8_bne, // Branch if not equal
3724mc8_bpl, // Branch if not plus
3725mc8_bra, // Branch always
3726mc8_brclr, // Branch if bit (n) in memory clear
3727mc8_brn, // Branch never
3728mc8_brset, // Branch if bit (n) in memory set
3729mc8_bset, // Set bit in memory
3730mc8_bsr, // Branch to subroutine
3731mc8_bvc, // Branch if overflow cleared (11)
3732mc8_bvs, // Branch if overflow set (11)
3733mc8_cba, // Compare A to B (11)
3734mc8_cbeq, // Compare and branch if equal (8)
3735mc8_clc, // Clear carry bit
3736mc8_cli, // Clear interrupt mask
3737mc8_clr, // Clear
3738mc8_clv, // Clear overflow flag (11)
3739mc8_cmp, // Compare accumulator with memory
3740mc8_com, // Complement
3741mc8_cp, // Compare index register 16 bit (11)
3742mc8_cpd, // Compare D 16 bit (11)
3743mc8_cphx, // Compare index register with memory (8)
3744mc8_cpx, // Compare X (index register low) with memory (8)
3745mc8_cwai, // Clear CC bits & wait for interrupt (9)
3746mc8_daa, // Decimal adjust accumulator
3747mc8_dbnz, // Decrement and branch if not equal (8)
3748mc8_de, // Decrement index register (11)
3749mc8_dec, // Decrement
3750mc8_des, // Decrement stack pointer (11)
3751mc8_div, // Divide (8)
3752mc8_eor, // Excusive OR memory with accumulator
3753mc8_exg, // Exchange register (9)
3754mc8_fdiv, // Fractional divide 16 by 16 (11)
3755mc8_idiv, // Integer divide 16 by 16 (11)
3756mc8_in, // Increment index register (11)
3757mc8_inc, // Increment
3758mc8_ins, // Increment stack pointer (11)
3759mc8_jmp, // Jump
3760mc8_jsr, // Jump to subroutine
3761mc8_ld, // Load index register (11)
3762mc8_lda, // Load accumulator from memory
3763mc8_ldd, // Load double accumulator (11)
3764mc8_ldhx, // Load index register from memory (8)
3765mc8_lds, // Load stack pointer (11)
3766mc8_ldx, // Load X (index register low) from memory (8)
3767mc8_lea, // Load register from memory (9)
3768mc8_lsl, // Logical (or Ariphmetic) shift left
3769mc8_lsld, // Logical (or Ariphmetic) shift left double (11)
3770mc8_lsr, // Logical shift right
3771mc8_lsrd, // Logical shift right double (11)
3772mc8_mov, // Move (8)
3773mc8_mul, // Unsigned multiply
3774mc8_neg, // Negate
3775mc8_nop, // No Operation
3776mc8_nsa, // Nibble swap accumulator (8)
3777mc8_ora, // Inclusive OR memory with accumulator
3778mc8_orcc, // Inclusive OR immediate with CCR (9)
3779mc8_psh, // Push index register into stack (low first) (11)
3780mc8_psha, // Push accumulator A into stack
3781mc8_pshb, // Push accumulator B into stack (11)
3782mc8_pshh, // Push H (index register high) into stack (8)
3783mc8_pshx, // Push X (index register low) into stack (8)
3784mc8_pul, // Pull index register from stack (hi first) (11)
3785mc8_pula, // Pull accumulator A from stack
3786mc8_pulb, // Pull accumulator B from stack (11)
3787mc8_pulh, // Pull H (index register high) from stack (8)
3788mc8_pulx, // Pull X (index register low) from stack (8)
3789mc8_rol, // Rotate left trough carry
3790mc8_ror, // Rotate right trough carry
3791mc8_rsp, // Reset stack pointer (8)
3792mc8_rti, // Reset from interrupt
3793mc8_rts, // Reset from subroutine
3794mc8_sba, // Subtract B from A (11)
3795mc8_sbc, // Subtract with carry
3796mc8_sec, // Set carry bit
3797mc8_sei, // Set interrupt mask bit
3798mc8_sev, // Set Overflow Flag (11)
3799mc8_sex, // Sign extended (9)
3800mc8_slp, // Sleep (HD63701 extention) (11)
3801mc8_st, // Store index register in memory (11)
3802mc8_sta, // Store accumulator in memory
3803mc8_std, // Store accumulators in memory (11)
3804mc8_sthx, // Store H:X (index reg) (8)
3805mc8_stop, // Enable IRQ pin. Stop oscillator
3806mc8_sts, // Store stack pointer (11)
3807mc8_stx, // Store X (index register low) in memory (8)
3808mc8_sub, // Subtract
3809mc8_subd, // Subtract 16-bit (11)
3810mc8_swi, // Software interrupt
3811mc8_sync, // Syncronisation with interrupt (9)
3812mc8_tab, // Transfer A to B (11)
3813mc8_tap, // Transfer A to CCR
3814mc8_tax, // Transfer accumulator to X (index register low) (8)
3815mc8_tba, // Transfer B to A (11)
3816mc8_test, // Address Bus Counts (in test mode) (11)
3817mc8_tfr, // Transfer register to register (9)
3818mc8_tpa, // Transfer CCR to A
3819mc8_ts, // Transfer SP to index reg (11)
3820mc8_tst, // Test for negative or zero
3821mc8_tsx, // Transfer SP to index reg (8)
3822mc8_txa, // Transfer X (index reg low) to accumulator (8)
3823mc8_txs, // Transfer index reg X to SP
3824mc8_tys, // Transfer index reg Y to SP (11)
3825mc8_wai, // Wait for interrupt (11)
3826mc8_wait, // Enable interrupt. Stop processor (8)
3827mc8_xgd, // Exchange D with index register (11)
3828mc8_1, // Special testing command (11)
3829mc8_2, // Special testing command (11)
3830mc8_os9, // OS9 system call (9)
3831// these instructions must be continuous (HD63701 extention)
3836
3837// new S08 instructions
3838mc8_bgnd, // Background (8)
3839mc8_call, // Call Subroutine (8)
3840mc8_rtc, // Return fom Call (8)
3841
3842// Pseudoinstructions
3843mc8_skip1, // Skip one byte
3844mc8_skip2, // Skip two bytes
3845
3847
3848 };
3849
3850/*
3851 * Interactive disassembler (IDA)
3852 * Copyright (c) 1990-2025 Hex-Rays
3853 * JVM module.
3854 * Copyright (c) 1995-2006 by Iouri Kharon.
3855 * E-mail: yjh@styx.cabel.net
3856 *
3857 * ALL RIGHTS RESERVED.
3858 *
3859 */
3860
3861
3862
3863enum
3864{
3865 j_nop = 0, // 0 Do nothing
3866 j_aconst_null, // 1 Push null object reference
3867 j_iconst_m1, // 2 Push integer constant -1
3868 j_iconst_0, // 3 Push the integer 0
3869 j_iconst_1, // 4 Push the integer 1
3870 j_iconst_2, // 5 Push the integer 2
3871 j_iconst_3, // 6 Push the integer 3
3872 j_iconst_4, // 7 Push the integer 4
3873 j_iconst_5, // 8 Push the integer 5
3874 j_lconst_0, // 9 Push the long integer 0
3875 j_lconst_1, // 10 Push the long integer 1
3876 j_fconst_0, // 11 Push the single-precision foating point 0.0
3877 j_fconst_1, // 12 Push the single-precision foating point 1.0
3878 j_fconst_2, // 13 Push the single-precision foating point 2.0
3879 j_dconst_0, // 14 Push the double-precision foating point 2.0
3880 j_dconst_1, // 15 Push the double-precision foating point 2.0
3881 j_bipush, // 16 Push one byte signed integer
3882 j_sipush, // 17 Push two-byte signed integer
3883 j_ldc, // 18 Push item from constant pool (i1)
3884 j_ldcw, // 19 Push item from constant pool (i2)
3885 j_ldc2w, // 20 Push long or double from constant pool
3886 j_iload, // 21 Push integer value of the local variable
3887 j_lload, // 22 Push long value of the local variable
3888 j_fload, // 23 Push single float value of the local variable
3889 j_dload, // 24 Push double float value of the local variable
3890 j_aload, // 25 Push object reference from the local variable
3891 j_iload_0, // 26 Push integer value of the local variable #0
3892 j_iload_1, // 27 Push integer value of the local variable #1
3893 j_iload_2, // 28 Push integer value of the local variable #2
3894 j_iload_3, // 29 Push integer value of the local variable #3
3895 j_lload_0, // 30 Push long value of the local variable #0
3896 j_lload_1, // 31 Push long value of the local variable #1
3897 j_lload_2, // 32 Push long value of the local variable #2
3898 j_lload_3, // 33 Push long value of the local variable #3
3899 j_fload_0, // 34 Push single float value of the local variable #0
3900 j_fload_1, // 35 Push single float value of the local variable #1
3901 j_fload_2, // 36 Push single float value of the local variable #2
3902 j_fload_3, // 37 Push single float value of the local variable #3
3903 j_dload_0, // 38 Push double float value of the local variable #0
3904 j_dload_1, // 39 Push double float value of the local variable #1
3905 j_dload_2, // 40 Push double float value of the local variable #2
3906 j_dload_3, // 41 Push double float value of the local variable #3
3907 j_aload_0, // 42 Push object reference from the local variable #0
3908 j_aload_1, // 43 Push object reference from the local variable #1
3909 j_aload_2, // 44 Push object reference from the local variable #2
3910 j_aload_3, // 45 Push object reference from the local variable #3
3911 j_iaload, // 46 Push integer from array
3912 j_laload, // 47 Push long from array
3913 j_faload, // 48 Push single float from array
3914 j_daload, // 49 Push double float from array
3915 j_aaload, // 50 Push object refernce from array
3916 j_baload, // 51 Push signed byte from array
3917 j_caload, // 52 Push character from array
3918 j_saload, // 53 Push short from array
3919 j_istore, // 54 Pop integer value into local variable
3920 j_lstore, // 55 Pop long value into local variable
3921 j_fstore, // 56 Pop single float value into local variable
3922 j_dstore, // 57 Pop double float value into local variable
3923 j_astore, // 58 Pop object refernce into local variable
3924 j_istore_0, // 59 Pop integer value into local variable #0
3925 j_istore_1, // 60 Pop integer value into local variable #1
3926 j_istore_2, // 61 Pop integer value into local variable #2
3927 j_istore_3, // 62 Pop integer value into local variable #3
3928 j_lstore_0, // 63 Pop long value into local variable #0
3929 j_lstore_1, // 64 Pop long value into local variable #1
3930 j_lstore_2, // 65 Pop long value into local variable #2
3931 j_lstore_3, // 66 Pop long value into local variable #3
3932 j_fstore_0, // 67 Pop single float value into local variable #0
3933 j_fstore_1, // 68 Pop single float value into local variable #1
3934 j_fstore_2, // 69 Pop single float value into local variable #2
3935 j_fstore_3, // 70 Pop single float value into local variable #3
3936 j_dstore_0, // 71 Pop double float value into local variable
3937 j_dstore_1, // 72 Pop double float value into local variable #0
3938 j_dstore_2, // 73 Pop double float value into local variable #1
3939 j_dstore_3, // 74 Pop double float value into local variable #2
3940 j_astore_0, // 75 Pop object refernce into local variable #0
3941 j_astore_1, // 76 Pop object refernce into local variable #1
3942 j_astore_2, // 77 Pop object refernce into local variable #2
3943 j_astore_3, // 78 Pop object refernce into local variable #3
3944 j_iastore, // 79 Pop integer from array
3945 j_lastore, // 80 Pop long from array
3946 j_fastore, // 81 Pop single float from array
3947 j_dastore, // 82 Pop double float from array
3948 j_aastore, // 83 Pop object refernce from array
3949 j_bastore, // 84 Pop signed byte from array
3950 j_castore, // 85 Pop character from array
3951 j_sastore, // 86 Pop short from array
3952 j_pop, // 87 Pop top stack word
3953 j_pop2, // 88 Pop top two stack word
3954 j_dup, // 89 Duplicate top stack word
3955 j_dup_x1, // 90 Duplicate top stack word and put two down
3956 j_dup_x2, // 91 Duplicate top stack word and put three down
3957 j_dup2, // 92 Duplicate top two stack word
3958 j_dup2_x1, // 93 Duplicate top two stack words and put two down
3959 j_dup2_x2, // 94 Duplicate top two stack words and put three down
3960 j_swap, // 95 Swap two top stack words
3961 j_iadd, // 96 Integer add
3962 j_ladd, // 97 Long add
3963 j_fadd, // 98 Single float add
3964 j_dadd, // 99 Double float add
3965 j_isub, // 100 Integer subtract
3966 j_lsub, // 101 Long subtract
3967 j_fsub, // 102 Single float subtract
3968 j_dsub, // 103 Double Float subtract
3969 j_imul, // 104 Integer multiply
3970 j_lmul, // 105 Long multiply
3971 j_fmul, // 106 Single float multiply
3972 j_dmul, // 107 Double Float multiply
3973 j_idiv, // 108 Integer divide
3974 j_ldiv, // 109 Long divide
3975 j_fdiv, // 110 Single float divide
3976 j_ddiv, // 111 Double Float divide
3977 j_irem, // 112 Integer reminder
3978 j_lrem, // 113 Long reminder
3979 j_frem, // 114 Single float reminder
3980 j_drem, // 115 Double Float reminder
3981 j_ineg, // 116 Integer negate
3982 j_lneg, // 117 Long negate
3983 j_fneg, // 118 Single float negate
3984 j_dneg, // 119 Double Float negate
3985 j_ishl, // 120 Integer shift left
3986 j_lshl, // 121 Long shift left
3987 j_ishr, // 122 Integer logical shift right
3988 j_lshr, // 123 Long logical shift right
3989 j_iushr, // 124 Integer arithmetic shift right
3990 j_lushr, // 125 Long arithmeticshift right
3991 j_iand, // 126 Integer boolean AND
3992 j_land, // 127 Long boolean AND
3993 j_ior, // 128 Integer boolean OR
3994 j_lor, // 129 Long boolean OR
3995 j_ixor, // 130 Integer boolean XOR
3996 j_lxor, // 131 Long boolean XOR
3997 j_iinc, // 132 Add 8-bit signed const to local variable
3998 j_i2l, // 133 Integer to Long conversion
3999 j_i2f, // 134 Integer to single float conversion
4000 j_i2d, // 135 Integer to double float conversion
4001 j_l2i, // 136 Long to Integer conversion
4002 j_l2f, // 137 Long to single float conversion
4003 j_l2d, // 138 Long to double float conversion
4004 j_f2i, // 139 Single float to Integer conversion
4005 j_f2l, // 140 Single float to Long conversion
4006 j_f2d, // 141 Single float to double float conversion
4007 j_d2i, // 142 Double float to Integer conversion
4008 j_d2l, // 143 Double float to Long conversion
4009 j_d2f, // 144 Double float to double float conversion
4010 j_i2b, // 145 Integer to signed byte conversion
4011 j_i2c, // 146 Integer to unsigned short conversion
4012 j_i2s, // 147 Integer to signed short conversion
4013 j_lcmp, // 148 Long compare
4014 j_fcmpl, // 149 Single float compare (-1 on NaN)
4015 j_fcmpg, // 150 Single float compare (1 on NaN)
4016 j_dcmpl, // 151 Double float compare (-1 on NaN)
4017 j_dcmpg, // 152 Double float compare (1 on NaN)
4018 j_ifeq, // 153 Branch if equal to 0
4019 j_ifne, // 154 Branch if not equal to 0
4020 j_iflt, // 155 Branch if less then 0
4021 j_ifge, // 156 Branch if greater than or equal to 0
4022 j_ifgt, // 157 Branch if greater than 0
4023 j_ifle, // 158 Branch if less than or equal to 0
4024 j_if_icmpeq, // 159 Branch if integers equal
4025 j_if_icmpne, // 160 Branch if integers not equal
4026 j_if_icmplt, // 161 Branch if integers less than
4027 j_if_icmpge, // 162 Branch if integers grater than or equal to
4028 j_if_icmpgt, // 163 Branch if integers grater than
4029 j_if_icmple, // 164 Branch if integers less than or equal to
4030 j_if_acmpeq, // 165 Branch if object references are equal
4031 j_if_acmpne, // 166 Branch if object references not equal
4032 j_goto, // 167 Branch always
4033 j_jsr, // 168 Jump subroutine
4034 j_ret, // 169 Return from subroutine
4035 j_tableswitch, // 170 Access jump table by index and jump
4036 j_lookupswitch, // 171 Access jump table by key match and jump
4037 j_ireturn, // 172 Return integer from function
4038 j_lreturn, // 173 Return long from function
4039 j_freturn, // 174 Return single floatr from function
4040 j_dreturn, // 175 Return double float from function
4041 j_areturn, // 176 Return object reference from function
4042 j_return, // 177 Return (void) from procedure
4043 j_getstatic, // 178 Set static field from class
4044 j_putstatic, // 179 Set static field in class
4045 j_getfield, // 180 Fetch field from object
4046 j_putfield, // 181 Set field in object
4047 j_invokevirtual, // 182 invoke instance method
4048 j_invokespecial, // 183 invoke instance method (superclass/init/...)
4049 j_invokestatic, // 184 invoke a class (static) method
4050 j_invokeinterface,// 185 invoke interface method
4051 j_invokedynamic, // 186 invoke instance method (select by paraneter)
4052 j_new, // 187 Create new object
4053 j_newarray, // 188 Allocate new array
4054 j_anewarray, // 189 Allocate new array of refernces to object
4055 j_arraylength, // 190 Get length of array
4056 j_athrow, // 191 Throw exception or error
4057 j_checkcast, // 192 Make sure object is of given type
4058 j_instanceof, // 193 Determine if an object is of given type
4059 j_monitorenter, // 194 Enter monitored region of code
4060 j_monitorexit, // 195 Exit monitored region of code
4061 j_wide, // 196 wide (prefix of command)
4062 j_multianewarray, // 197 Allocate new multi-dimensional array
4063 j_ifnull, // 198 Branch if NULL-ptr
4064 j_ifnonnull, // 199 Branch if not NULL-ptr
4065 j_goto_w, // 200 Branch always (wide index)
4066 j_jsr_w, // 201 Jump subroutine (wide index)
4067 j_breakpoint, // 202 Stop and pass control to breakpoint handler
4068 //
4073 // bottom of table ! (emu)
4076 //
4078};
4079
4110
4111/*
4112 * Interactive disassembler (IDA).
4113 * Copyright (c) 1990-2025 Hex-Rays
4114 * ALL RIGHTS RESERVED.
4115 *
4116 */
4117
4118
4119
4120enum
4121{
4122ARM_null = 0, // Unknown Operation
4123ARM_ret, // Return from Subroutine
4124ARM_nop, // No Operation
4125ARM_b, // Branch
4126ARM_bl, // Branch with Link
4127ARM_asr, // Arithmetic Shift Right
4128ARM_lsl, // Logical Shift Left
4129ARM_lsr, // Logical Shift Right
4130ARM_ror, // Rotate Right
4131ARM_neg, // Negate
4132ARM_and, // 0 Rd = Op1 & Op2
4133ARM_eor, // 1 Rd = Op1 ^ Op2
4134ARM_sub, // 2 Rd = Op1 - Op2
4135ARM_rsb, // 3 Rd = Op2 - Op1
4136ARM_add, // 4 Rd = Op1 + Op2
4137ARM_adc, // 5 Rd = Op1 + Op2 + C
4138ARM_sbc, // 6 Rd = Op1 - Op2 + C - 1
4139ARM_rsc, // 7 Rd = Op2 - Op1 + C - 1
4140ARM_tst, // 8 Set cond. codes on Op1 & Op2
4141ARM_teq, // 9 Set cond. codes on Op1 ^ Op2
4142ARM_cmp, // A Set cond. codes on Op1 - Op2
4143ARM_cmn, // B Set cond. codes on Op1 + Op2
4144ARM_orr, // C Rd = Op1 | Op2
4145ARM_mov, // D Rd = Op2
4146ARM_bic, // E Rd = Op1 & ~Op2
4147ARM_mvn, // F Rd = ~Op2
4148ARM_mrs, // Transfer PSR to Register
4149ARM_msr, // Transfer Register to PSR
4150ARM_mul, // Multiply
4151ARM_mla, // Multiply-Accumulate
4152ARM_ldr, // Load from Memory
4153ARM_ldrpc, // Indirect Jump
4154ARM_str, // Store to Memory
4155ARM_ldm, // Load Block from Memory
4156ARM_stm, // Store Block to Memory
4157ARM_swp, // Single Data Swap
4158ARM_svc, // Supervisor call
4159
4160// Version 4
4161
4162ARM_smull, // Signed Multiply long
4163ARM_smlal, // Signed Multiply-Accumulate long
4164ARM_umull, // Unsigned Multiply long
4165ARM_umlal, // Unsigned Multiply-Accumulate long
4166ARM_bx, // Branch to/from Thumb mode
4167ARM_pop, // Pop registers
4168ARM_push, // Push registers
4169ARM_adr, // Load address
4170
4171// Version 5
4172
4173ARM_bkpt, // Breakpoint
4174ARM_blx1, // Branch with Link and Exchange (immediate address)
4175ARM_blx2, // Branch with Link and Exchange (register indirect)
4176ARM_clz, // Count Leading Zeros
4177
4178// Version 5E
4179
4180ARM_ldrd, // Load pair of registers
4181ARM_pld, // Prepare to load data
4182ARM_qadd, // Saturated addition
4183ARM_qdadd, // Saturated addition with doubling
4184ARM_qdsub, // Saturated subtraction with doubling
4185ARM_qsub, // Saturated subtraction
4186ARM_smlabb, // Signed multiply-accumulate (bottom*bottom)
4187ARM_smlatb, // Signed multiply-accumulate (top*bottom)
4188ARM_smlabt, // Signed multiply-accumulate (bottom*top)
4189ARM_smlatt, // Signed multiply-accumulate (top*top)
4190ARM_smlalbb, // Long signed multiply-accumulate (bottom*bottom)
4191ARM_smlaltb, // Long signed multiply-accumulate (top*bottom)
4192ARM_smlalbt, // Long signed multiply-accumulate (bottom*top)
4193ARM_smlaltt, // Long signed multiply-accumulate (top*top)
4194ARM_smlawb, // Wide signed multiply-accumulate (bottom)
4195ARM_smulwb, // Wide signed multiply (bottom)
4196ARM_smlawt, // Wide signed multiply-accumulate (top)
4197ARM_smulwt, // Wide signed multiply (top)
4198ARM_smulbb, // Signed multiply (bottom*bottom)
4199ARM_smultb, // Signed multiply (top*bottom)
4200ARM_smulbt, // Signed multiply (bottom*top)
4201ARM_smultt, // Signed multiply (top*top)
4202ARM_strd, // Store pair of registers
4203
4204// Intel xScale coprocessor instructions
4205
4206xScale_mia, // Multiply-Internal Accumulate
4207xScale_miaph, // Multiply-Internal Accumulate Packed HalfWords
4208xScale_miabb, // Multiply-Internal Accumulate Bottom-Bottom Halves
4209xScale_miabt, // Multiply-Internal Accumulate Bottom-Top Halves
4210xScale_miatb, // Multiply-Internal Accumulate Top-Bottom Halves
4211xScale_miatt, // Multiply-Internal Accumulate Top-Top Halves
4212xScale_mar, // Move To Internal Accumulator
4213xScale_mra, // Move From Internal Accumulator
4214
4215// Macro instructions
4216
4217ARM_movl, // Move immediate to register
4218ARM_adrl, // Load address
4219ARM_swbkpt, // WinCE Debugger break
4220
4221// Coprocessor instructions
4222
4223ARM_cdp, // Coprocessor Data Processing
4224ARM_cdp2, // Coprocessor Data Processing
4225ARM_ldc, // Load Coprocessor Register
4226ARM_ldc2, // Load Coprocessor Register
4227ARM_stc, // Store Coprocessor Register
4228ARM_stc2, // Store Coprocessor Register
4229ARM_mrc, // Move from Coprocessor to ARM Register
4230ARM_mrc2, // Move from Coprocessor to ARM Register
4231ARM_mcr, // Move from ARM to Coprocessor Register
4232ARM_mcr2, // Move from ARM to Coprocessor Register
4233ARM_mcrr, // Copy pair of registers to coprocessor (5E)
4234ARM_mrrc, // Copy pair of registers from coprocessor (5E)
4235
4236// VFP instructions
4237
4238ARM_fabsd, // Floating point Absolute Value, Double precision
4239ARM_fabss, // Floating point Absolute Value, Single precision
4240ARM_faddd, // Floating point Addition, Double precision
4241ARM_fadds, // Floating point Addition, Single precision
4242ARM_fcmpd, // Floating point Compare, Double precision
4243ARM_fcmps, // Floating point Compare, Single precision
4244ARM_fcmped, // Floating point Compare (NaN Exceptions), Double precision
4245ARM_fcmpes, // Floating point Compare (NaN Exceptions), Single precision
4246ARM_fcmpezd, // Floating point Compare (NaN Exceptions) with Zero, Double precision
4247ARM_fcmpezs, // Floating point Compare (NaN Exceptions) with Zero, Single precision
4248ARM_fcmpzd, // Floating point Compare with Zero, Double precision
4249ARM_fcmpzs, // Floating point Compare with Zero, Single precision
4250ARM_fcpyd, // Floating point Copy, Double precision
4251ARM_fcpys, // Floating point Copy, Single precision
4252ARM_fcvtsd, // Floating point Convert to Single precision from Double precision
4253ARM_fcvtds, // Floating point Convert to Double precision from Single precision
4254ARM_fdivd, // Floating point Divide, Double precision
4255ARM_fdivs, // Floating point Divide, Single precision
4256ARM_fldd, // Floating point Load, Double precision
4257ARM_flds, // Floating point Load, Single precision
4258ARM_fldmd, // Floating point Load Multiple, Double precision
4259ARM_fldms, // Floating point Load Multiple, Single precision
4260ARM_fldmx, // Floating point Load Multiple, Unknown precision
4261ARM_fmacd, // Floating point Multiply and Accumulate, Double precision
4262ARM_fmacs, // Floating point Multiply and Accumulate, Single precision
4263ARM_fmscd, // Floating point Multiply and Subtract, Double precision
4264ARM_fmscs, // Floating point Multiply and Subtract, Single precision
4265ARM_fmstat, // Floating point Move Status
4266ARM_fmuld, // Floating point Multiply, Double precision
4267ARM_fmuls, // Floating point Multiply, Single precision
4268ARM_fnegd, // Floating point Negate, Double precision
4269ARM_fnegs, // Floating point Negate, Single precision
4270ARM_fnmacd, // Floating point Negated Multiply and Accumulate, Double precision
4271ARM_fnmacs, // Floating point Negated Multiply and Accumulate, Single precision
4272ARM_fnmscd, // Floating point Negated Multiply and Subtract, Double precision
4273ARM_fnmscs, // Floating point Negated Multiply and Subtract, Single precision
4274ARM_fnmuld, // Floating point Negated Multiply, Double precision
4275ARM_fnmuls, // Floating point Negated Multiply, Single precision
4276ARM_fsitod, // Floating point Convert Signed Integer to Double precision
4277ARM_fsitos, // Floating point Convert Signed Integer to Single precision
4278ARM_fsqrtd, // Floating point Square Root, Double precision
4279ARM_fsqrts, // Floating point Square Root, Single precision
4280ARM_fstd, // Floating point Store, Double precision
4281ARM_fsts, // Floating point Store, Single precision
4282ARM_fstmd, // Floating point Store Multiple, Double precision
4283ARM_fstms, // Floating point Store Multiple, Single precision
4284ARM_fstmx, // Floating point Store Multiple, Unknown precision
4285ARM_fsubd, // Floating point Subtract, Double precision
4286ARM_fsubs, // Floating point Subtract, Single precision
4287ARM_ftosid, // Floating point Convert to Signed Integer from Double precision
4288ARM_ftosis, // Floating point Convert to Signed Integer from Single precision
4289ARM_ftosizd, // Floating point Convert to Signed Integer from Double precision, RZ mode
4290ARM_ftosizs, // Floating point Convert to Signed Integer from Single precision, RZ mode
4291ARM_ftouid, // Floating point Convert to Unsigned Integer from Double precision
4292ARM_ftouis, // Floating point Convert to Unsigned Integer from Single precision
4293ARM_ftouizd, // Floating point Convert to Unsigned Integer from Double precision, RZ mode
4294ARM_ftouizs, // Floating point Convert to Unsigned Integer from Single precision, RZ mode
4295ARM_fuitod, // Floating point Convert Unsigned Integer to Double precision
4296ARM_fuitos, // Floating point Convert Unsigned Integer to Single precision
4297ARM_fmdhr, // Floating point Move to Double precision High from Register
4298ARM_fmrdh, // Floating point Move to Register from Double precision High
4299ARM_fmdlr, // Floating point Move to Double precision Low from Register
4300ARM_fmrdl, // Floating point Move to Register from Double precision Low
4301ARM_fmxr, // Floating point Move to System Register from Register
4302ARM_fmrx, // Floating point Move to Register from System Register
4303ARM_fmsr, // Floating point Move to Single precision from Register
4304ARM_fmrs, // Floating point Move to Register from Single precision
4305
4306// VFP ARMv5TE extensions
4307
4308ARM_fmdrr, // Floating point Move to Double precision from two Registers
4309ARM_fmrrd, // Floating point Move to two Registers from Double precision
4310ARM_fmsrr, // Floating point Move to two Single precision from two Registers
4311ARM_fmrrs, // Floating point Move to two Registers from two Single precision
4312
4313// ARM v5J instructions
4314
4315ARM_bxj, // Branch to Jazelle
4316
4317// ARM v6 instructions
4318
4319ARM_mcrr2, // Move to Coprocessor from two ARM Registers
4320ARM_mrrc2, // Move to two ARM Registers from Coprocessor
4321ARM_cps, // Change Processor State
4322ARM_cpsid, // Disable Interrupts
4323ARM_cpsie, // Enable Interrupts
4324ARM_ldrex, // Load Register Exclusive
4325ARM_pkhbt, // Pack halfword bottom + top
4326ARM_pkhtb, // Pack halfword top + bottom
4327ARM_qadd16, // Signed saturating arithmetic hafword-wise addition
4328ARM_qadd8, // Signed saturating arithmetic byte-wise addition
4329ARM_qasx, // Saturating Add and Subtract with Exchange
4330ARM_qaddsubx=ARM_qasx, // Signed saturating arithmetic exchange, add, substract (old name)
4331ARM_qsub16, // Signed saturating arithmetic hafword-wise substraction
4332ARM_qsub8, // Signed saturating arithmetic byte-wise substraction
4333ARM_qsax, // Saturating Subtract and Add with Exchange
4334ARM_qsubaddx=ARM_qsax, // Signed saturating arithmetic exchange, substract, add (old name)
4335ARM_rev, // Byte Reverse Word
4336ARM_rev16, // Byte Reverse Packed Halfword
4337ARM_revsh, // Byte Reverse Signed Halfword
4338ARM_rfe, // Return from exception
4339ARM_sadd16, // Signed arithmetic modulo hafword-wise addition
4340ARM_sadd8, // Signed arithmetic modulo byte-wise addition
4341ARM_sasx, // Signed Add and Subtract with Exchange
4342ARM_saddsubx=ARM_sasx, // Signed arithmetic modulo exchange, add, substract (old name)
4343ARM_sel, // Select bytes
4344ARM_setend, // Set Byte Endianness
4345ARM_shadd16, // Signed arithmetic hafword-wise addition, halving results
4346ARM_shadd8, // Signed arithmetic byte-wise addition, halving results
4347ARM_shasx, // Signed Halving Add and Subtract with Exchange
4348ARM_shaddsubx=ARM_shasx,// Signed arithmetic exchange, add, substract, halving results (old name)
4349ARM_shsub16, // Signed arithmetic hafword-wise substraction, halving results
4350ARM_shsub8, // Signed arithmetic byte-wise substraction, halving results
4351ARM_shsax, // Signed Halving Subtract and Add with Exchange
4352ARM_shsubaddx=ARM_shsax,// Signed arithmetic exchange, substract, add, halving results (old name)
4353ARM_smlad, // Dual signed multiply, add and accumulate
4354ARM_smladx, // Dual signed multiply, add and accumulate crossed
4355ARM_smuad, // Dual signed multiply and add
4356ARM_smuadx, // Dual signed multiply and add crossed
4357ARM_smlald, // Dual signed multiply, add and accumulate long
4358ARM_smlaldx, // Dual signed multiply, add and accumulate long crossed
4359ARM_smlsd, // Dual signed multiply, substract and accumulate
4360ARM_smlsdx, // Dual signed multiply, substract and accumulate crossed
4361ARM_smusd, // Dual signed multiply and substract
4362ARM_smusdx, // Dual signed multiply and substract crossed
4363ARM_smlsld, // Dual signed multiply, substract and accumulate long
4364ARM_smlsldx, // Dual signed multiply, substract and accumulate long crossed
4365ARM_smmla, // Signed most significant word multiply and accumulate truncated
4366ARM_smmlar, // Signed most significant word multiply and accumulate rounded
4367ARM_smmul, // Signed most significant word multiply truncated
4368ARM_smmulr, // Signed most significant word multiply rounded
4369ARM_smmls, // Signed most significant word multiply and substract truncated
4370ARM_smmlsr, // Signed most significant word multiply and substract rounded
4371ARM_srs, // Store Return State
4372ARM_ssat, // Signed Saturate
4373ARM_ssat16, // Signed saturate two halfwords
4374ARM_ssub16, // Signed arithmetic hafword-wise substraction
4375ARM_ssub8, // Signed arithmetic byte-wise substraction
4376ARM_ssax, // Signed Subtract and Add with Exchange
4377ARM_ssubaddx=ARM_ssax, // Signed arithmetic exchange, substract, add (old name)
4378ARM_strex, // Store Register Exclusive
4379ARM_sxtab, // Signed extend byte to word, add
4380ARM_sxtb, // Signed extend byte to word
4381ARM_sxtab16, // Signed extend two bytes to halfwords, add
4382ARM_sxtb16, // Signed extend two bytes to halfwords
4383ARM_sxtah, // Signed extend halfword to word, add
4384ARM_sxth, // Signed extend halfword to word
4385ARM_uadd16, // Unsigned arithmetic modulo hafword-wise addition
4386ARM_uadd8, // Unsigned arithmetic modulo byte-wise addition
4387ARM_uasx, // Unsigned Add and Subtract with Exchange
4388ARM_uaddsubx=ARM_uasx, // Unsigned arithmetic modulo exchange, add, substract (old name)
4389ARM_uhadd16, // Unsigned arithmetic hafword-wise addition, halving results
4390ARM_uhadd8, // Unsigned arithmetic byte-wise addition, halving results
4391ARM_uhasx, // Unsigned Halving Add and Subtract with Exchange
4392ARM_uhaddsubx=ARM_uhasx,// Unsigned arithmetic exchange, add, substract, halving results (old name)
4393ARM_uhsub16, // Unsigned arithmetic hafword-wise substraction, halving results
4394ARM_uhsub8, // Unsigned arithmetic byte-wise substraction, halving results
4395ARM_uhsax, // Unsigned Halving Subtract and Add with Exchange
4396ARM_uhsubaddx=ARM_uhsax,// Unsigned arithmetic exchange, substract, add, halving results (old name)
4397ARM_umaal, // Multiply unsigned double accumulate long
4398ARM_uqadd16, // Unsigned saturating arithmetic hafword-wise addition
4399ARM_uqadd8, // Unsigned saturating arithmetic byte-wise addition
4400ARM_uqasx, // Unsigned Saturating Add and Subtract with Exchange
4401ARM_uqaddsubx=ARM_uqasx,// Unsigned saturating arithmetic exchange, add, substract (old name)
4402ARM_uqsub16, // Unsigned saturating arithmetic hafword-wise substraction
4403ARM_uqsub8, // Unsigned saturating arithmetic byte-wise substraction
4404ARM_uqsax, // Unsigned Saturating Subtract and Add with Exchange
4405ARM_uqsubaddx=ARM_uqsax,// Unsigned saturating arithmetic exchange, substract, add (old name)
4406ARM_usada8, // Unsigned sum of absolute differences and accumulate
4407ARM_usad8, // Unsigned sum of absolute differences
4408ARM_usat, // Unsigned saturate word
4409ARM_usat16, // Unsigned saturate two halfwords
4410ARM_usub16, // Unsigned arithmetic hafword-wise substraction
4411ARM_usub8, // Unsigned arithmetic byte-wise substraction
4412ARM_usax, // Unsigned Subtract and Add with Exchange
4413ARM_usubaddx=ARM_usax, // Unsigned arithmetic exchange, substract, add (old name)
4414ARM_uxtab, // Unsigned extend byte to word, add
4415ARM_uxtb, // Unsigned extend byte to word
4416ARM_uxtab16, // Unsigned extend two bytes to halfwords, add
4417ARM_uxtb16, // Unsigned extend two bytes to halfwords
4418ARM_uxtah, // Unsigned extend halfword to word, add
4419ARM_uxth, // Unsigned extend halfword to word
4420
4421// ARM v6zk instructions
4422
4423ARM_clrex, // Clear Exclusive
4424ARM_ldrexb, // Load Byte Exclusive
4425ARM_ldrexd, // Load DoubleWord Exclusive
4426ARM_ldrexh, // Load Halfword Exclusive
4427ARM_strexb, // Store Byte Exclusive
4428ARM_strexd, // Store DoubleWord Exclusive
4429ARM_strexh, // Store Halfword Exclusive
4430ARM_yield, // Yield (hint)
4431ARM_sev, // Send Event (hint)
4432ARM_wfe, // Wait For Event (hint)
4433ARM_wfi, // Wait For Interrupt (hint)
4434ARM_smc, // Secure Monitor Call
4435
4436// ARM Thumb32 instructions
4437
4438ARM_orn, // Rd = Op1 | ~Op2
4439ARM_movt, // Move Top
4440ARM_sbfx, // Signed Bit Field Extract
4441ARM_ubfx, // Unsigned Bit Field Extract
4442ARM_bfi, // Bit Field Insert
4443ARM_bfc, // Bit Field Clear
4444ARM_tbb, // Table Branch Byte
4445ARM_tbh, // Table Branch Halfword
4446ARM_pli, // Prepare to load code
4447ARM_rbit, // Reverse Bits
4448ARM_it, // If Then
4449ARM_mls, // Multiply and Subtract
4450ARM_sdiv, // Signed Divide
4451ARM_udiv, // Unsigned Divide
4452ARM_cbz, // Compare and Branch on Zero
4453ARM_cbnz, // Compare and Branch on Non-Zero
4454ARM_dsb, // Data Synchronization Barrier
4455ARM_dmb, // Data Memory Barrier
4456ARM_isb, // Instruction Synchronization Barrier
4457ARM_dbg, // Debug Hint
4458
4459ARM_und, // Architecturally undefined instruction
4460
4461// missing instructions (not yet decoded)
4462
4463ARM_rrx, // Rotate Right with Extend
4464ARM_enterx, // Enter ThumbEE state
4465ARM_leavex, // Leave ThumbEE state
4466ARM_chka, // Check Array
4467ARM_hb, // Handler Branch
4468ARM_hbl, // Handler Branch with Link
4469ARM_hblp, // Handler Branch with Link and Parameter
4470ARM_hbp, // Handler Branch with Parameter
4471
4472// NEON (Advanced SIMD) and extra VFP instructions
4473
4474ARM_vaba, // Vector Absolute Difference and Accumulate
4475ARM_vabal, // Vector Absolute Difference and Accumulate Long
4476ARM_vabd, // Vector Absolute Difference
4477ARM_vabdl, // Vector Absolute Difference Long
4478ARM_vabs, // Vector Absolute
4479ARM_vacge, // Vector Absolute Compare Greater Than or Equal
4480ARM_vacgt, // Vector Absolute Compare Greater Than
4481ARM_vacle, // Vector Absolute Compare Less Than or Equal
4482ARM_vaclt, // Vector Absolute Compare Less Than
4483ARM_vadd, // Vector Add
4484ARM_vaddhn, // Vector Add and Narrow, returning High Half
4485ARM_vaddl, // Vector Add Long
4486ARM_vaddw, // Vector Add Wide
4487ARM_vand, // Vector Bitwise AND
4488ARM_vbic, // Vector Bitwise Bit Clear
4489ARM_vbif, // Vector Bitwise Insert if False
4490ARM_vbit, // Vector Bitwise Insert if True
4491ARM_vbsl, // Vector Bitwise Select
4492ARM_vceq, // Vector Compare Equal
4493ARM_vcge, // Vector Compare Greater Than or Equal
4494ARM_vcgt, // Vector Compare Greater Than
4495ARM_vcle, // Vector Compare Less Than or Equal
4496ARM_vcls, // Vector Count Leading Sign Bits
4497ARM_vclt, // Vector Compare Less Than
4498ARM_vclz, // Vector Count Leading Zeros
4499ARM_vcmp, // Vector Compare
4500ARM_vcmpe, // Vector Compare (Quiet NaNs trigger Exception)
4501ARM_vcnt, // Vector Count Number of Bits
4502ARM_vcvt, // Vector Convert
4503ARM_vcvtr, // Vector Convert Rounding
4504ARM_vcvtb, // Vector Convert Half-Precision Bottom
4505ARM_vcvtt, // Vector Convert Half-Precision Top
4506ARM_vdiv, // Vector Divide
4507ARM_vdup, // Vector Duplicate
4508ARM_veor, // Vector Bitwise Exclusive OR
4509ARM_vext, // Vector Extract
4510ARM_vfma, // Vector Fused Multiply Accumulate
4511ARM_vfms, // Vector Fused Multiply Substract
4512ARM_vfnma, // Vector Fused Negated Multiply Accumulate
4513ARM_vfnms, // Vector Fused Negated Multiply Substract
4514ARM_vhadd, // Vector Halving Add
4515ARM_vhsub, // Vector Halving Sub
4516ARM_vld1, // Vector Load Single Element
4517ARM_vld2, // Vector Load Two-Element Structures
4518ARM_vld3, // Vector Load Three-Element Structures
4519ARM_vld4, // Vector Load Four-Element Structures
4520ARM_vldm, // Vector Load Multiple
4521ARM_vldr, // Vector Load Register
4522ARM_vmax, // Vector Maximum
4523ARM_vmin, // Vector Minimum
4524ARM_vmla, // Vector Multiply Accumulate
4525ARM_vmlal, // Vector Multiply Accumulate Long
4526ARM_vmls, // Vector Multiply Subtract
4527ARM_vmlsl, // Vector Multiply Subtract Long
4528ARM_vmov, // Vector Move
4529ARM_vmovl, // Vector Move Long
4530ARM_vmovn, // Vector Move and Narrow
4531ARM_vmrs, // Move FPSCR to ARM Register
4532ARM_vmsr, // Move to FPSCR from ARM Register
4533ARM_vmul, // Vector Multiply
4534ARM_vmull, // Vector Multiply Long
4535ARM_vmvn, // Vector Bitwise NOT
4536ARM_vneg, // Vector Negate
4537ARM_vnmla, // Vector Multiply Add Negated
4538ARM_vnmls, // Vector Multiply Substract Negated
4539ARM_vnmul, // Vector Multiply Negated
4540ARM_vorn, // Vector Bitwise OR NOT
4541ARM_vorr, // Vector Bitwise OR
4542ARM_vpadal, // Vector Pairwise Add and Accumulate Long
4543ARM_vpadd, // Vector Pairwise Add
4544ARM_vpaddl, // Vector Pairwise Add Long
4545ARM_vpmax, // Vector Pairwise Maximum
4546ARM_vpmin, // Vector Pairwise Minimum
4547ARM_vpop, // Vector Pop
4548ARM_vpush, // Vector Push
4549ARM_vqabs, // Vector Saturating Absolute
4550ARM_vqadd, // Vector Saturating Add
4551ARM_vqdmlal, // Vector Saturating Doubling Multiply Accumulate Long
4552ARM_vqdmlsl, // Vector Saturating Doubling Multiply Subtract Long
4553ARM_vqdmulh, // Vector Saturating Doubling Multiply Returning High Half
4554ARM_vqdmull, // Vector Saturating Doubling Multiply Long
4555ARM_vqmovn, // Vector Saturating Move and Narrow
4556ARM_vqmovun, // Vector Saturating Move and Narrow, Unsigned result
4557ARM_vqneg, // Vector Saturating Negate
4558ARM_vqrdmulh, // Vector Saturating Rounding Doubling Multiply Returning High Half
4559ARM_vqrshl, // Vector Saturating Rounding Shift Left
4560ARM_vqrshrn, // Vector Saturating Rounding Shift Right, Narrow
4561ARM_vqrshrun, // Vector Saturating Rounding Shift Right, Narrow, Unsigned result
4562ARM_vqshl, // Vector Saturating Shift Left
4563ARM_vqshlu, // Vector Saturating Shift Left, Unsigned result
4564ARM_vqshrn, // Vector Saturating Shift Right, Narrow
4565ARM_vqshrun, // Vector Saturating Shift Right, Narrow, Unsigned result
4566ARM_vqsub, // Vector Saturating Subtract
4567ARM_vraddhn, // Vector Rounding Add and Narrow, returning High Half
4568ARM_vrecpe, // Vector Reciprocal Estimate
4569ARM_vrecps, // Vector Reciprocal Step
4570ARM_vrev16, // Vector Reverse in halfwords
4571ARM_vrev32, // Vector Reverse in words
4572ARM_vrev64, // Vector Reverse in doublewords
4573ARM_vrhadd, // Vector Rounding Halving Add
4574ARM_vrshl, // Vector Rounding Shift Left
4575ARM_vrshr, // Vector Rounding Shift Right
4576ARM_vrshrn, // Vector Rounding Shift Right and Narrow
4577ARM_vrsqrte, // Vector Reciprocal Square Root Estimate
4578ARM_vrsqrts, // Vector Reciprocal Square Root Step
4579ARM_vrsra, // Vector Rounding Shift Right and Accumulate
4580ARM_vrsubhn, // Vector Rounding Subtract and Narrow, returning High Half
4581ARM_vshl, // Vector Shift Left
4582ARM_vshll, // Vector Shift Left Long
4583ARM_vshr, // Vector Shift Right
4584ARM_vshrn, // Vector Shift Right Narrow
4585ARM_vsli, // Vector Shift Left and Insert
4586ARM_vsqrt, // Vector Square Root
4587ARM_vsra, // Vector Shift Right and Accumulate
4588ARM_vsri, // Vector Shift Right and Insert
4589ARM_vst1, // Vector Store Single Element
4590ARM_vst2, // Vector Store Two-Element Structures
4591ARM_vst3, // Vector Store Three-Element Structures
4592ARM_vst4, // Vector Store Four-Element Structures
4593ARM_vstm, // Vector Store Multiple
4594ARM_vstr, // Vector Store Register
4595ARM_vsub, // Vector Subtract
4596ARM_vsubhn, // Vector Subtract and Narrow, returning High Half
4597ARM_vsubl, // Vector Subtract Long
4598ARM_vsubw, // Vector Subtract Wide
4599ARM_vswp, // Vector Swap
4600ARM_vtbl, // Vector Table Lookup
4601ARM_vtbx, // Vector Table Extension
4602ARM_vtrn, // Vector Transpose
4603ARM_vtst, // Vector Test Bits
4604ARM_vuzp, // Vector Unzip
4605ARM_vzip, // Vector Zip
4606
4607// ARMv7 Hypervisor extensions
4608
4609ARM_eret, // Exception Return
4610ARM_hvc, // Hypervisor Call
4611
4612// new ARMv8 instructions for A32 and T32 mode
4613
4614ARM_lda, // Load-Acquire Word/Byte/Halfword
4615ARM_stl, // Store-Release Word/Byte/Halfword
4616ARM_ldaex, // Load-Acquire Exclusive Word/Byte/Halfword
4617ARM_stlex, // Store-Release Exclusive Word/Byte/Halfword
4618ARM_vsel, // Floating-point Conditional Select
4619
4620ARM_vmaxnm, // Vector Maximum Numeric
4621ARM_vminnm, // Vector Minimum Numeric
4622ARM_vcvta, // Vector Convert Round to Nearest with Ties to Away
4623ARM_vcvtn, // Vector Convert Round to Nearest with Ties to Even
4624ARM_vcvtp, // Vector Convert Round towards +Infinity
4625ARM_vcvtm, // Vector Convert Round towards -Infinity
4626ARM_vrintx, // Vector Round to Integral, FPSCR rounding mode and signaling inexactness
4627ARM_vrintr, // Vector Round to Integral, FPSCR rounding mode
4628ARM_vrintz, // Vector Round to Integral, Round toward Zero
4629ARM_vrinta, // Vector Round to Integral, Round to Nearest with Ties to Away
4630ARM_vrintn, // Vector Round to Integral, Round to Nearest with Ties to Even
4631ARM_vrintp, // Vector Round to Integral, Round towards +Infinity
4632ARM_vrintm, // Vector Round to Integral, Round towards -Infinity
4633
4634ARM_aesd, // AES single round decryption
4635ARM_aese, // AES single round encryption
4636ARM_aesimc, // AES inverse mix columns
4637ARM_aesmc, // AES mix columns
4638ARM_sha1c, // SHA1 hash update accelerator, choose
4639ARM_sha1m, // SHA1 hash update accelerator, majority
4640ARM_sha1p, // SHA1 hash update accelerator, parity
4641ARM_sha1h, // SHA1 hash update accelerator, rotate left by 30
4642ARM_sha1su0, // SHA1 schedule update accelerator, first part
4643ARM_sha1su1, // SHA1 schedule update accelerator, second part
4644ARM_sha256h, // SHA256 hash update accelerator
4645ARM_sha256h2, // SHA256 hash update accelerator upper part
4646ARM_sha256su0, // SHA256 schedule update accelerator, first part
4647ARM_sha256su1, // SHA256 schedule update accelerator, second part
4648
4649ARM_dcps1, // Debug Change Processor State to EL1
4650ARM_dcps2, // Debug Change Processor State to EL2
4651ARM_dcps3, // Debug Change Processor State to EL3
4652ARM_hlt, // Halting mode software breakpoint
4653ARM_sevl, // Send Event Locally
4654
4655// ARMv8 AArch64 new instructions
4656
4657ARM_tbz, // Test and Branch Zero
4658ARM_tbnz, // Test and Branch Non-Zero
4659ARM_br, // Branch To Register
4660ARM_blr, // Branch and Link Register
4661ARM_ldur, // Load Single Register (unscaled offset)
4662ARM_stur, // Store Single Register (unscaled offset)
4663ARM_ldp, // Load Pair
4664ARM_stp, // Store Pair
4665ARM_ldnp, // Load Non-temporal Pair
4666ARM_stnp, // Store Non-temporal Pair
4667ARM_ldtr, // Load Unprivileged Register
4668ARM_sttr, // Store Unprivileged Register
4669ARM_ldxr, // Load Exclusive Register
4670ARM_stxr, // Store Exclusive Register
4671ARM_ldxp, // Load Exclusive Pair
4672ARM_stxp, // Store Exclusive Pair
4673ARM_ldar, // Load-Acquire Register
4674ARM_stlr, // Store-Release Register
4675ARM_ldaxr, // Load-Acquire Exclusive Register
4676ARM_stlxr, // Store-Release Exclusive Register
4677ARM_ldaxp, // Load-Acquire Exclusive Pair
4678ARM_stlxp, // Store Exclusive Pair
4679ARM_prfm, // Prefetch Memory
4680ARM_prfum, // Prefetch Memory (unscaled offset)
4681ARM_movi, // Move Immediate
4682ARM_mvni, // Move Inverted Immediate
4683ARM_movz, // Move with Zero
4684ARM_movn, // Move with Not
4685ARM_movk, // Move with Keep
4686ARM_adrp, // Address of Page
4687ARM_bfm, // Bitfield Move
4688ARM_sbfm, // Signed Bitfield Move
4689ARM_ubfm, // Unsigned Bitfield Move
4690// ARM_bfi, // Bitfield Insert
4691ARM_bfxil, // Bitfield Extract and Insert Low
4692ARM_sbfiz, // Signed Bitfield Insert in Zero
4693// ARM_sbfx, // Signed Bitfield Extract
4694ARM_ubfiz, // Signed Bitfield Insert in Zero
4695// ARM_ubfx, // Unsigned Bitfield Extract
4696ARM_extr, // Extract
4697ARM_sxtw, // Signed Extend Word
4698ARM_uxtw, // Unsigned Extend Word (non-existing insn)
4699ARM_eon, // Bitwise exclusive OR NOT
4700ARM_not, // Bitwise NOT
4701ARM_cls, // Count Leading Sign Bits
4702ARM_rev32, // Reverse Bytes in Words
4703ARM_csel, // Conditional Select
4704ARM_csinc, // Conditional Select Increment
4705ARM_csinv, // Conditional Select Invert
4706ARM_csneg, // Conditional Select Negate
4707ARM_cset, // Conditional Set
4708ARM_csetm, // Conditional Set Mask
4709ARM_cinc, // Conditional Increment
4710ARM_cinv, // Conditional Invert
4711ARM_cneg, // Conditional Negate
4712ARM_ngc, // Negate with Carry
4713ARM_ccmn, // Conditional Compare Negative
4714ARM_ccmp, // Conditional Compare
4715ARM_madd, // Multiply-Add
4716ARM_msub, // Multiply-Subtract
4717ARM_mneg, // Multiply-Negate
4718ARM_smaddl, // Signed Multiply-Add Long
4719ARM_smsubl, // Signed Multiply-Subtract Long
4720ARM_smnegl, // Signed Multiply-Negate Long
4721ARM_smulh, // Signed Multiply High
4722ARM_umaddl, // Unsigned Multiply-Add Long
4723ARM_umsubl, // Unsigned Multiply-Subtract Long
4724ARM_umnegl, // Unsigned Multiply-Negate Long
4725ARM_umulh, // Unsigned Multiply High
4726
4727ARM_drps, // Debug Restore Processor State
4728ARM_sys, // System Maintenance Operation
4729ARM_sysl, // System Maintenance Operation With Result
4730ARM_ic, // Instruction Cache Maintenance
4731ARM_dc, // Data Cache Maintenance
4732ARM_at, // Address Translation
4733ARM_tlbi, // TLB Invalidation
4734ARM_hint, // Hint instruction
4735ARM_brk, // Monitor debug-mode breakpoint
4736
4737// AArch64 Advanced SIMD
4738ARM_uaba, // Unsigned Integer Absolute Difference and Accumulate
4739ARM_saba, // Signed Integer Absolute Difference and Accumulate
4740ARM_uabal, // Unsigned Integer Absolute Difference and Accumulate Long
4741ARM_uabal2, // Unsigned Integer Absolute Difference and Accumulate Long (Second Part)
4742ARM_sabal, // Signed Integer Absolute Difference and Accumulate Long
4743ARM_sabal2, // Signed Integer Absolute Difference and Accumulate Long (Second Part)
4744ARM_uabd, // Unsigned Integer Absolute Difference
4745ARM_sabd, // Signed Integer Absolute Difference
4746ARM_fabd, // Floating-point Absolute Difference
4747ARM_uabdl, // Unsigned Integer Absolute Difference Long
4748ARM_uabdl2, // Unsigned Integer Absolute Difference Long (Second Part)
4749ARM_sabdl, // Signed Integer Absolute Difference Long
4750ARM_sabdl2, // Signed Integer Absolute Difference Long (Second Part)
4751ARM_abs, // Integer Absolute Value
4752ARM_fabs, // Floating-point Absolute Value
4753ARM_facge, // Floating-point Absolute Compare Greater Than or Equal
4754ARM_facgt, // Floating-point Absolute Compare Greater Than
4755ARM_facle, // Floating-point Absolute Compare Less Than or Equal
4756ARM_faclt, // Floating-point Absolute Compare Less Than
4757ARM_fadd, // Floating-point Add
4758ARM_addhn, // Integer Vector Add and Narrow High Half
4759ARM_addhn2, // Integer Vector Add and Narrow High Half (second part)
4760ARM_uaddl, // Unsigned Integer Add Long
4761ARM_uaddl2, // Unsigned Integer Add Long (second part)
4762ARM_saddl, // Signed Integer Add Long
4763ARM_saddl2, // Signed Integer Add Long (second part)
4764ARM_uaddw, // Unsigned Integer Add Wide
4765ARM_uaddw2, // Unsigned Integer Add Wide (second part)
4766ARM_saddw, // Signed Integer Add Wide
4767ARM_saddw2, // Signed Integer Add Wide (second part)
4768ARM_bif, // Bitwise Vector Insert if False
4769ARM_bit, // Bitwise Vector Insert if True
4770ARM_bsl, // Bitwise Vector Select
4771ARM_cmeq, // Ingeger Vector Compare Equal
4772ARM_fcmeq, // Floating-point Vector Compare Equal
4773ARM_cmhs, // Unsigned Compare Greater Than or Equal
4774ARM_cmge, // Signed Compare Greater Than or Equal
4775ARM_fcmge, // Floating-point Compare Greater Than or Equal
4776ARM_cmhi, // Unsigned Compare Greater Than
4777ARM_cmgt, // Signed Compare Greater Than
4778ARM_fcmgt, // Floating-point Compare Greater Than
4779ARM_cmls, // Unsigned Compare Less Than or Equal
4780ARM_cmle, // Signed Compare Less Than or Equal
4781ARM_fcmle, // Floating-point Compare Less Than or Equal
4782ARM_cmlo, // Unsigned Compare Less Than
4783ARM_cmlt, // Signed Compare Less Than
4784ARM_fcmlt, // Floating-point Compare Less Than
4785ARM_fcmp, // Floating-point Compare
4786ARM_fcmpe, // Floating-point Signaling Compare
4787ARM_fccmp, // Floating-point Conditional Quiet Compare
4788ARM_fccmpe, // Floating-point Conditional Signaling Compare
4789ARM_fcsel, // Floating-point Conditional Select
4790ARM_cnt, // Vector Count Non-zero Bits
4791ARM_fcvt, // Floating-point convert precision (scalar)
4792ARM_fcvtzs, // Convert Floating-point to Signed Integer (Round to Zero)
4793ARM_fcvtas, // Convert Floating-point to Signed Integer (Round to Nearest, Ties to Away)
4794ARM_fcvtns, // Convert Floating-point to Signed Integer (Round to Nearest, Ties to Even)
4795ARM_fcvtps, // Convert Floating-point to Signed Integer (Round towards +Infinity)
4796ARM_fcvtms, // Convert Floating-point to Signed Integer (Round towards -Infinity)
4797ARM_fcvtzu, // Convert Floating-point to Unsigned Integer (Round to Zero)
4798ARM_fcvtau, // Convert Floating-point to Unsigned Integer (Round to Nearest, Ties to Away)
4799ARM_fcvtnu, // Convert Floating-point to Unsigned Integer (Round to Nearest, Ties to Even)
4800ARM_fcvtpu, // Convert Floating-point to Unsigned Integer (Round towards +Infinity)
4801ARM_fcvtmu, // Convert Floating-point to Unsigned Integer (Round towards -Infinity)
4802ARM_ucvtf, // Convert Unsigned Integer to Floating-point
4803ARM_scvtf, // Convert Signed Integer to Floating-point
4804ARM_fcvtn, // Floating-point Convert Precision, Narrow
4805ARM_fcvtn2, // Floating-point Convert Precision, Narrow (second part)
4806ARM_fcvtl, // Floating-point Convert Precision, Long
4807ARM_fcvtl2, // Floating-point Convert Precision, Long (second part)
4808ARM_fcvtxn, // Floating-point Convert Precision, Narrow (Round to Odd)
4809ARM_fcvtxn2, // Floating-point Convert Precision, Narrow (Round to Odd) (second part)
4810ARM_frinta, // Floating-point Round to Integral (Round to Nearest, Ties to Away)
4811ARM_frinti, // Floating-point Round to Integral (using FPCR rounding mode)
4812ARM_frintm, // Floating-point Round to Integral (Round towards -Infinity)
4813ARM_frintn, // Floating-point Round to Integral (Round to Nearest, Ties to Even)
4814ARM_frintp, // Floating-point Round to Integral (Round towards +Infinity)
4815ARM_frintx, // Floating-point Round to Integral (using FPCR rounding mode, with exactness test)
4816ARM_frintz, // Floating-point Round to Integral (Round towards Zero)
4817ARM_fmadd, // Floating-point scalar fused multiply-add
4818ARM_fmsub, // Floating-point scalar fused multiply-subtract
4819ARM_fnmadd, // Floating-point scalar negated fused multiply-add
4820ARM_fnmsub, // Floating-point scalar negated fused multiply-subtract
4821ARM_fdiv, // Floating-point Divide
4822ARM_dup, // Duplicate Single Element to All Elements
4823ARM_ins, // Insert Single Element in Another Element
4824ARM_ext, // Bitwise Extract
4825ARM_uhadd, // Unsigned Integer Halving Add
4826ARM_shadd, // Signed Integer Halving Add
4827ARM_uhsub, // Unsigned Integer Halving Subtract
4828ARM_shsub, // Signed Integer Halving Subtract
4829ARM_ld1, // Vector Load Single Element
4830ARM_ld2, // Vector Load Two-Element Structures
4831ARM_ld3, // Vector Load Three-Element Structures
4832ARM_ld4, // Vector Load Four-Element Structures
4833ARM_ld1r, // Vector Load Single Element and Replicate
4834ARM_ld2r, // Vector Load Two-Element Structures and Replicate
4835ARM_ld3r, // Vector Load Three-Element Structures and Replicate
4836ARM_ld4r, // Vector Load Four-Element Structures and Replicate
4837ARM_umax, // Unsigned Integer Maximum
4838ARM_smax, // Signed Integer Maximum
4839ARM_fmax, // Floating-point Maximum
4840ARM_fmaxnm, // Floating-point maxNum()
4841ARM_umin, // Unsigned Integer Minimum
4842ARM_smin, // Signed Integer Minimum
4843ARM_fmin, // Floating-point Minimum
4844ARM_fminnm, // Floating-point minNum()
4845ARM_fmla, // Fused Multiply-Add
4846ARM_umlal2, // Unsigned Integer Multiply-Add Long (second part)
4847ARM_smlal2, // Signed Integer Multiply-Add Long (second part)
4848ARM_fmls, // Fused Multiply-Subtract
4849ARM_umlsl, // Unsigned Integer Multiply-Subtract Long
4850ARM_umlsl2, // Unsigned Integer Multiply-Subtract Long (second part)
4851ARM_smlsl, // Signed Integer Multiply-Subtract Long
4852ARM_smlsl2, // Signed Integer Multiply-Subtract Long (second part)
4853ARM_umov, // Unsigned Integer Move
4854ARM_smov, // Signed Integer Move
4855ARM_fmov, // Floating-point Move
4856ARM_uxtl, // Unsigned Integer Vector Lengthen
4857ARM_uxtl2, // Unsigned Integer Vector Lengthen (second part)
4858ARM_sxtl, // Signed Integer Vector Lengthen
4859ARM_sxtl2, // Signed Integer Vector Lengthen (second part)
4860ARM_xtn, // Integer Vector Narrow
4861ARM_xtn2, // Integer Vector Narrow (second part)
4862ARM_fmul, // Floating-point Vector Multiply
4863ARM_pmul, // Polynomial Vector Multiply
4864ARM_fmulx, // Floating-point Multiply Extended
4865ARM_fnmul, // Floating-point Multiply-Negate
4866ARM_umull2, // Unsigned Integer Vector Multiply Long (second part)
4867ARM_smull2, // Signed Integer Vector Multiply Long (second part)
4868ARM_pmull, // Polynomial Vector Multiply Long
4869ARM_pmull2, // Polynomial Vector Multiply Long (second part)
4870ARM_fneg, // Floating-point Negate
4871ARM_uadalp, // Unsigned Integer Vector Add and Accumulate Long Pair
4872ARM_sadalp, // Signed Integer Vector Add and Accumulate Long Pair
4873ARM_addp, // Integer Vector Add Pair
4874ARM_faddp, // Floating-point Vector Add Pair
4875ARM_uaddlp, // Unsigned Integer Vector Add Long Pair
4876ARM_saddlp, // Signed Integer Vector Add Long Pair
4877ARM_umaxp, // Unsigned Integer Maximum Pair
4878ARM_smaxp, // Signed Integer Maximum Pair
4879ARM_fmaxp, // Floating-point Maximum Pair
4880ARM_fmaxnmp, // Floating-point maxNum Pair
4881ARM_uminp, // Unsigned Integer Minimum Pair
4882ARM_sminp, // Signed Integer Minimum Pair
4883ARM_fminp, // Floating-point Minimum Pair
4884ARM_fminnmp, // Floating-point minNum Pair
4885ARM_sqabs, // Signed Integer Saturating Absolute
4886ARM_uqadd, // Unsigned Integer Saturating Add
4887ARM_sqadd, // Signed Integer Saturating Add
4888ARM_suqadd, // Signed Integer Saturating Accumulate of Unsigned Values
4889ARM_usqadd, // Unsigned Integer Saturating Accumulate of Signed Values
4890ARM_sqdmlal, // Signed Integer Saturating Doubling Multiply Add Long
4891ARM_sqdmlal2, // Signed Integer Saturating Doubling Multiply Add Long (second part)
4892ARM_sqdmlsl, // Signed Integer Saturating Doubling Multiply Subtract Long
4893ARM_sqdmlsl2, // Signed Integer Saturating Doubling Multiply Subtract Long (second part)
4894ARM_sqdmulh, // Signed Integer Saturating Doubling Multiply Returning High Half
4895ARM_sqdmull, // Signed Integer Saturating Doubling Multiply Long
4896ARM_sqdmull2, // Signed Integer Saturating Doubling Multiply Long (second part)
4897ARM_uqxtn, // Unsigned Integer Saturating Vector Narrow
4898ARM_uqxtn2, // Unsigned Integer Saturating Vector Narrow (second part)
4899ARM_sqxtn, // Signed Integer Saturating Vector Narrow
4900ARM_sqxtn2, // Signed Integer Saturating Vector Narrow (second part)
4901ARM_sqxtun, // Signed Integer Saturating Vector and Unsigned Narrow
4902ARM_sqxtun2, // Signed Integer Saturating Vector and Unsigned Narrow (second part)
4903ARM_sqneg, // Signed Integer Saturating Negate
4904ARM_sqrdmulh, // Signed Integer Saturating Rounding Doubling Multiply Returning High Half
4905ARM_uqrshl, // Unsigned Integer Saturating Rounding Shift Left
4906ARM_sqrshl, // Signed Integer Saturating Rounding Shift Left
4907ARM_uqrshrn, // Unsigned Integer Saturating Rounding Shift Right, Narrow
4908ARM_uqrshrn2, // Unsigned Integer Saturating Rounding Shift Right, Narrow (second part)
4909ARM_sqrshrn, // Signed Integer Saturating Rounding Shift Right, Narrow
4910ARM_sqrshrn2, // Signed Integer Saturating Rounding Shift Right, Narrow (second part)
4911ARM_sqrshrun, // Signed Integer Saturating Rounding Shift Right, Narrow, Unsigned result
4912ARM_sqrshrun2, // Signed Integer Saturating Rounding Shift Right, Narrow, Unsigned result (second part)
4913ARM_uqshl, // Unsigned Integer Saturating Shift Left
4914ARM_sqshl, // Signed Integer Saturating Shift Left
4915ARM_sqshlu, // Signed Integer Saturating Shift Left, Unsigned result
4916ARM_uqshrn, // Unsigned Integer Saturating Shift Right, Narrow
4917ARM_uqshrn2, // Unsigned Integer Saturating Shift Right, Narrow (second part)
4918ARM_sqshrn, // Signed Integer Saturating Shift Right, Narrow
4919ARM_sqshrn2, // Signed Integer Saturating Shift Right, Narrow (second part)
4920ARM_sqshrun, // Signed Integer Saturating Shift Right, Narrow, Unsigned result
4921ARM_sqshrun2, // Signed Integer Saturating Shift Right, Narrow, Unsigned result (second part)
4922ARM_uqsub, // Unsigned Integer Saturating Subtract
4923ARM_sqsub, // Signed Integer Saturating Subtract
4924ARM_raddhn, // Integer Rounding Add and Narrow, returning High Half
4925ARM_raddhn2, // Integer Rounding Add and Narrow, returning High Half (second part)
4926ARM_urecpe, // Unsigned Integer Reciprocal Estimate
4927ARM_frecpe, // Floating-point Reciprocal Estimate
4928ARM_frecps, // Floating-point Reciprocal Step
4929ARM_frecpx, // Floating-point Reciprocal Exponent
4930ARM_rev64, // Reverse doublewords
4931ARM_urhadd, // Unsigned Integer Rounding Halving Add
4932ARM_srhadd, // Signed Integer Rounding Halving Add
4933ARM_urshl, // Unsigned Integer Rounding Shift Left
4934ARM_srshl, // Signed Integer Rounding Shift Left
4935ARM_urshr, // Unsigned Integer Rounding Shift Right
4936ARM_srshr, // Signed Integer Rounding Shift Right
4937ARM_rshrn, // Integer Rounding Shift Right and Narrow
4938ARM_rshrn2, // Integer Rounding Shift Right and Narrow (second part)
4939ARM_ursqrte, // Unsigned Integer Reciprocal Square Root Estimate
4940ARM_frsqrte, // Floating-point Reciprocal Square Root Estimate
4941ARM_frsqrts, // Floating-point Reciprocal Square Root Step
4942ARM_ursra, // Unsigned Integer Rounding Shift Right and Accumulate
4943ARM_srsra, // Signed Integer Rounding Shift Right and Accumulate
4944ARM_rsubhn, // Integer Subtract and Narrow, returning High Half
4945ARM_rsubhn2, // Integer Subtract and Narrow, returning High Half (second part)
4946ARM_ushl, // Unsigned Integer Shift Left
4947ARM_sshl, // Signed Integer Shift Left
4948ARM_ushll, // Unsigned Integer Shift Left Long
4949ARM_ushll2, // Unsigned Integer Shift Left Long (second part)
4950ARM_sshll, // Signed Integer Shift Left Long
4951ARM_sshll2, // Signed Integer Shift Left Long (second part)
4952ARM_ushr, // Unsigned Integer Shift Right
4953ARM_sshr, // Signed Integer Shift Right
4954ARM_shrn, // Integer Shift Right Narrow
4955ARM_shrn2, // Integer Shift Right Narrow (second part)
4956ARM_shl, // Shift Left
4957ARM_shll, // Shift Left Long
4958ARM_shll2, // Shift Left Long (second part)
4959ARM_sli, // Integer Vector Shift Left and Insert
4960ARM_fsqrt, // Floating-point Square Root
4961ARM_usra, // Unsigned Integer Shift Right and Accumulate
4962ARM_ssra, // Signed Integer Shift Right and Accumulate
4963ARM_sri, // Integer Shift Right and Insert
4964ARM_st1, // Vector Store Single Element
4965ARM_st2, // Vector Store Two-Element Structures
4966ARM_st3, // Vector Store Three-Element Structures
4967ARM_st4, // Vector Store Four-Element Structures
4968ARM_fsub, // Floating-point Subtract
4969ARM_subhn, // Integer Subtract and Narrow, returning High Half
4970ARM_subhn2, // Integer Subtract and Narrow, returning High Half (second part)
4971ARM_usubl, // Unsigned Integer Subtract Long
4972ARM_usubl2, // Unsigned Integer Subtract Long (second part)
4973ARM_ssubl, // Signed Integer Subtract Long
4974ARM_ssubl2, // Signed Integer Subtract Long (second part)
4975ARM_usubw, // Unsigned Integer Subtract Wide
4976ARM_usubw2, // Unsigned Integer Subtract Wide (second part)
4977ARM_ssubw, // Signed Integer Subtract Wide
4978ARM_ssubw2, // Signed Integer Subtract Wide (second part)
4979ARM_tbl, // Vector Table Lookup
4980ARM_tbx, // Vector Table Extension
4981ARM_trn1, // Vector Element Transpose (primary)
4982ARM_trn2, // Vector Element Transpose (secondary)
4983ARM_cmtst, // Integer Compare Mask Bitwise Test
4984ARM_uzp1, // Vector Element Unzip (primary)
4985ARM_uzp2, // Vector Element Unzip (secondary)
4986ARM_zip1, // Vector Element Zip (primary)
4987ARM_zip2, // Vector Element Zip (secondary)
4988ARM_addv, // Integer Sum Elements in Vector
4989ARM_uaddlv, // Unsigned Integer Sum Elements in Vector Long
4990ARM_saddlv, // Signed Integer Sum Elements in Vector Long
4991ARM_umaxv, // Unsigned Integer Max Element in Vector
4992ARM_smaxv, // Signed Integer Max Element in Vector
4993ARM_fmaxv, // Floating-point Max Element in Vector
4994ARM_fmaxnmv, // Floating-point maxNum Element in Vector
4995ARM_uminv, // Unsigned Integer Min Element in Vector
4996ARM_sminv, // Signed Integer Min Element in Vector
4997ARM_fminv, // Floating-point Min Element in Vector
4998ARM_fminnmv, // Floating-point minNum Element in Vector
4999
5000// atomic operations (ARMv8.1/ARMv8.3)
5001// ARM_swp, // Swap value with memory, No memory ordering
5002ARM_swpl, // Swap value with memory, Release
5003ARM_swpa, // Swap value with memory, Acquire
5004ARM_swpal, // Swap value with memory, Acquire and release
5005
5006ARM_ldapr, // Load-Acquire RCpc Register
5007
5008ARM_ldadd, // Atomic add on value in memory (return initial value), No memory ordering
5009ARM_ldaddl, // Atomic add on value in memory (return initial value), Release
5010ARM_ldadda, // Atomic add on value in memory (return initial value), Acquire
5011ARM_ldaddal, // Atomic add on value in memory (return initial value), Acquire and release
5012ARM_stadd, // Atomic add on value in memory (no return), No memory ordering
5013ARM_staddl, // Atomic add on value in memory (no return), Release
5014
5015ARM_ldclr, // Atomic bit clear on value in memory (return initial value), No memory ordering
5016ARM_ldclrl, // Atomic bit clear on value in memory (return initial value), Release
5017ARM_ldclra, // Atomic bit clear on value in memory (return initial value), Acquire
5018ARM_ldclral, // Atomic bit clear on value in memory (return initial value), Acquire and release
5019ARM_stclr, // Atomic bit clear on value in memory (no return), No memory ordering
5020ARM_stclrl, // Atomic bit clear on value in memory (no return), Release
5021
5022ARM_ldeor, // Atomic exclusive OR on value in memory (return initial value), No memory ordering
5023ARM_ldeorl, // Atomic exclusive OR on value in memory (return initial value), Release
5024ARM_ldeora, // Atomic exclusive OR on value in memory (return initial value), Acquire
5025ARM_ldeoral, // Atomic exclusive OR on value in memory (return initial value), Acquire and release
5026ARM_steor, // Atomic exclusive OR on value in memory (no return), No memory ordering
5027ARM_steorl, // Atomic exclusive OR on value in memory (no return), Release
5028
5029ARM_ldset, // Atomic bit set on value in memory (return initial value), No memory ordering
5030ARM_ldsetl, // Atomic bit set on value in memory (return initial value), Release
5031ARM_ldseta, // Atomic bit set on value in memory (return initial value), Acquire
5032ARM_ldsetal, // Atomic bit set on value in memory (return initial value), Acquire and release
5033ARM_stset, // Atomic bit set on value in memory (no return), No memory ordering
5034ARM_stsetl, // Atomic bit set on value in memory (no return), Release
5035
5036ARM_ldsmax, // Atomic signed maximum on value in memory (return initial value), No memory ordering
5037ARM_ldsmaxl, // Atomic signed maximum on value in memory (return initial value), Release
5038ARM_ldsmaxa, // Atomic signed maximum on value in memory (return initial value), Acquire
5039ARM_ldsmaxal, // Atomic signed maximum on value in memory (return initial value), Acquire and release
5040ARM_stsmax, // Atomic signed maximum on value in memory (no return), No memory ordering
5041ARM_stsmaxl, // Atomic signed maximum on value in memory (no return), Release
5042
5043
5044ARM_ldsmin, // Atomic signed minimum on value in memory (return initial value), No memory ordering
5045ARM_ldsminl, // Atomic signed minimum on value in memory (return initial value), Release
5046ARM_ldsmina, // Atomic signed minimum on value in memory (return initial value), Acquire
5047ARM_ldsminal, // Atomic signed minimum on value in memory (return initial value), Acquire and release
5048ARM_stsmin, // Atomic signed minimum on value in memory (no return), No memory ordering
5049ARM_stsminl, // Atomic signed minimum on value in memory (no return), Release
5050
5051ARM_ldumax, // Atomic unsigned maximum on value in memory (return initial value), No memory ordering
5052ARM_ldumaxl, // Atomic unsigned maximum on value in memory (return initial value), Release
5053ARM_ldumaxa, // Atomic unsigned maximum on value in memory (return initial value), Acquire
5054ARM_ldumaxal, // Atomic unsigned maximum on value in memory (return initial value), Acquire and release
5055ARM_stumax, // Atomic unsigned maximum on value in memory (no return), No memory ordering
5056ARM_stumaxl, // Atomic unsigned maximum on value in memory (no return), Release
5057
5058
5059ARM_ldumin, // Atomic unsigned minimum on value in memory (return initial value), No memory ordering
5060ARM_lduminl, // Atomic unsigned minimum on value in memory (return initial value), Release
5061ARM_ldumina, // Atomic unsigned minimum on value in memory (return initial value), Acquire
5062ARM_lduminal, // Atomic unsigned minimum on value in memory (return initial value), Acquire and release
5063ARM_stumin, // Atomic unsigned minimum on value in memory (no return), No memory ordering
5064ARM_stuminl, // Atomic unsigned minimum on value in memory (no return), Release
5065
5066// Compare and Swap (ARMv8.1)
5067
5068ARM_cas, // Compare and Swap , No memory ordering
5069ARM_casl, // Compare and Swap, Release
5070ARM_casa, // Compare and Swap, Acquire
5071ARM_casal, // Compare and Swap, Acquire and release
5072
5073ARM_casp, // Compare and Swap Pair, No memory ordering
5074ARM_caspl, // Compare and Swap Pair, Release
5075ARM_caspa, // Compare and Swap Pair, Acquire
5076ARM_caspal, // Compare and Swap Pair, Acquire and release
5077
5078ARM_ldlar, // Load LOAcquire Register
5079ARM_stllr, // Store LORelease Register
5080
5081ARM_sqrdmlah, // Signed Saturating Rounding Doubling Multiply Accumulate
5082ARM_sqrdmlsh, // Signed Saturating Rounding Doubling Multiply Subtract
5083
5084// Pointer authentication (ARMv8.3)
5085// only completely new instructions are included;
5086// authenticated variations of old ones are represented by instruction flags (see arm.hpp)
5087
5088ARM_pac, // Pointer Authentication Code for Data/Instruction address/generic
5089ARM_aut, // Authenticate Data/Instruction address
5090ARM_xpac, // Strip Pointer Authentication Code
5091
5092// ARM insns for the legacy assembler (2 operands)
5093ARM_ldrd2, // Load pair of registers
5094ARM_strd2, // Store pair of registers
5095
5096// CRC32 (optional in 8.0, mandatory since 8.1)
5097ARM_crc32, // CRC32 using polynomial 0x04C11DB7
5098ARM_crc32c, // CRC32 using polynomial 0x1EDC6F41
5099
5100// Armv8-M Security Extension (TrustZone for Armv8-M)
5101ARM_tt, // Test Target (query the Security state and access permissions of a memory location)
5102ARM_tta, // Test Target Alternate Domain (query the Security state and access permissions of a memory location for a Non-secure access)
5103ARM_sg, // Secure Gateway
5104ARM_vlldm, // Floating-point Lazy Load Multiple
5105ARM_vlstm, // Floating-point Lazy Store Multiple
5106
5107// MP Extension instructions
5108ARM_pldw, // Preload Data for write
5109
5110// ARMv8.1-RDMA (AArh32)
5111ARM_vqrdmlah, // Vector Saturating Rounding Doubling Multiply Accumulate Returning High Half.
5112 // Vector Saturating Rounding Doubling Multiply Accumulate
5113ARM_vqrdmlsh, // Vector Saturating Rounding Doubling Multiply Subtract Returning High Half
5114
5115// ARMv8.2-FP16 (AArch32)
5116
5117ARM_vmovx, // Vector Move extraction
5118ARM_vins, // Vector move Insertion.
5119
5120// ARMv8.3-JSConv (AArch32)
5121ARM_vjcvt, // Javascript Convert to signed fixed-point, rounding toward Zero
5122
5123// ARMv8.3-JSConv (A64)
5124ARM_fjcvtzs, // Javascript Convert to signed fixed-point, rounding toward Zero
5125
5126
5127/*
5128// ARMv8.3-CompNum, SIMD complex number support
5129ARM_fcadd, // Floating-point complex add
5130ARM_fcmla, // Floating-point complex multiply accumulate
5131*/
5132
5133// ARMv8.4-RCPC
5134
5135ARM_ldapur, // Load-Acquire RCpc Register (unscaled offset)
5136ARM_stlur, // Store-Release Register (unscaled offset)
5137
5138// ARMv8.4
5139
5140ARM_cfinv, // Invert Carry Flag
5141ARM_rmif, // Rotate value and mask into flags
5142ARM_setf8, // set flags from value (8-bit)
5143ARM_setf16, // set flags from value (16-bit)
5144ARM_xaflag, // Convert floating-point condition flags to ARM format
5145ARM_axflag, // Convert floating-point condition flags from ARM to external format.
5146
5147// ARMv8.5
5148ARM_addg, // Add with Tag
5149ARM_subg, // Subtract with Tag
5150ARM_subp, // Subtract Pointer
5151ARM_cmpp, // Compare with Tag
5152ARM_irg, // Insert Random Tag
5153ARM_gmi, // Tag Mask Insert
5154ARM_stg, // Store Allocation Tag
5155ARM_stzg, // Store Allocation Tag, Zeroing
5156ARM_stzgm, // Store Tag and Zero Multiple
5157ARM_st2g, // Store Allocation Tags
5158ARM_stz2g, // Store Allocation Tags, Zeroing
5159ARM_stgm, // Store Tag Multiple
5160ARM_stgp, // Store Allocation Tag and Pair of registers
5161ARM_ldg, // Load Allocation Tag
5162ARM_ldgm, // Load Tag Multiple
5163ARM_bti, // Branch Target Identification
5164ARM_sb, // Speculation Barrier
5165ARM_ssbb, // Speculative Store Bypass Barrier
5166ARM_pssbb, // Physical Speculative Store Bypass Barrier
5167
5168
5169//
5170
5171ARM_frint32x, // Floating-point Round to 32-bit Integer, using current rounding mode
5172ARM_frint32z, // Floating-point Round to 32-bit Integer toward Zero
5173ARM_frint64x, // Floating-point Round to 32-bit Integer, using current rounding mode
5174ARM_frint64z, // Floating-point Round to 32-bit Integer toward Zero
5175
5176// ARMv8.2-SHA3 (AArch64)
5177ARM_bcax, // Bit Clear and exclusive-OR
5178ARM_eor3, // Three-way Exclusive-OR
5179ARM_rax1, // Rotate and Exclusive-OR
5180ARM_xar, // Exclusive-OR and Rotate
5181
5182// ARMv8.2-SHA512 (AArch64)
5183ARM_sha512h, // SHA512 Hash update part 1
5184ARM_sha512h2, // SHA512 Hash update part 2
5185ARM_sha512su0, // SHA512 Schedule Update 0
5186ARM_sha512su1, // SHA512 Schedule Update 1
5187
5188// ARMv8.2-SM3 (AArch64)
5196
5197// ARMv8.2-SM4 (AArch64)
5200
5201// ARMv8.6-I8MM (AArch64)
5206
5207// ARMv8.6-DotProd (AArch64)
5210
5211// ARMv8.2-FHM (AArch64)
5216
5217// ARMv8.6-BF16 (AArch64)
5225
5226
5227
5228// Apple custom instructions
5229
5230ARM_trap, // Undefined opcode used for debugging
5231ARM_trap2, // Undefined opcode used for debugging
5232
5233ARM_genter, // Enter guarded execution mode
5234ARM_gexit, // Exit guarded execution mode
5235ARM_wkdmc, // Compress memory page
5236ARM_wkdmd, // Decompress memory page
5237ARM_sdsb, // Strong data synchronization barrier
5238ARM_amx, // AMX instruction
5239ARM_mul53lo, // Multiply 2 53-bit pairs and store low 53 bits
5240ARM_mul53hi, // Multiply 2 53-bit pairs and store high 53 bits
5241
5242// ARMv8.1-M MVE
5243ARM_vbrsr, // Vector Bit Reverse and Shift Right
5244ARM_vcmul, // Vector Complex Multiply
5245ARM_vfmas, // Vector Fused Multiply Accumulate Scalar
5246ARM_vmaxa, // Vector Maximum Absolute
5247ARM_vmaxnma, // Vector Maximum Absolute (floating-point)
5248ARM_vmina, // Vector Minimum Absolute
5249ARM_vminnma, // Vector Minimum Absolute (floating-point)
5250ARM_vmlas, // Vector Multiply Accumulate Scalar
5251ARM_vmovnb, // Vector Move and Narrow Bottom
5252ARM_vmovnt, // Vector Move and Narrow Top
5253ARM_vmulh, // Vector Multiply Returning High Half
5254ARM_vrmulh, // Vector Rounding Multiply Returning High Half
5255ARM_vmullb, // Vector Multiply Long Bottom
5256ARM_vmullt, // Vector Multiply Long Top
5257ARM_vqdmladh, // Vector Saturating Doubling Multiply Add Dual Returning High Half
5258ARM_vqdmladhX, // Vector Saturating Doubling Multiply Add Dual Returning High Half (exchange)
5259ARM_vqrdmladh, // Vector Saturating Rounding Doubling Multiply Add Dual Returning High Half
5260ARM_vqrdmladhX, // Vector Saturating Rounding Doubling Multiply Add Dual Returning High Half (exchange)
5261ARM_vqdmlah, // Vector Saturating Doubling Multiply Accumulate
5262ARM_vqdmlash, // Vector Saturating Doubling Multiply Accumulate Scalar High Half
5263ARM_vqrdmlash, // Vector Saturating Rounding Doubling Multiply Accumulate Scalar High Half
5264ARM_vqdmlsdh, // Vector Saturating Doubling Multiply Subtract Dual Returning High Half
5265ARM_vqdmlsdhX, // Vector Saturating Doubling Multiply Subtract Dual Returning High Half (exchange)
5266ARM_vqrdmlsdh, // Vector Saturating Rounding Doubling Multiply Subtract Dual Returning High Half
5267ARM_vqrdmlsdhX, // Vector Saturating Rounding Doubling Multiply Subtract Dual Returning High Half (exchange)
5268ARM_vqmovnb, // Vector Saturating Move and Narrow Bottom
5269ARM_vqmovnt, // Vector Saturating Move and Narrow Top
5270ARM_vqmovunb, // Vector Saturating Move Unsigned and Narrow Bottom
5271ARM_vqmovunt, // Vector Saturating Move Unsigned and Narrow Top
5272ARM_vshllb, // Vector Shift Left Long Bottom
5273ARM_vshllt, // Vector Shift Left Long Top
5274ARM_vmladav, // Vector Multiply Add Dual Accumulate Across Vector
5275ARM_vmladavX, // Vector Multiply Add Dual Accumulate Across Vector (exchange)
5276ARM_vmladavA, // Vector Multiply Add Dual Accumulate Across Vector (accumulate)
5277ARM_vmladavAX, // Vector Multiply Add Dual Accumulate Across Vector (accumulate, exchange)
5278ARM_vmlsdav, // Vector Multiply Subtract Dual Accumulate Across Vector
5279ARM_vmlsdavX, // Vector Multiply Subtract Dual Accumulate Across Vector (exchange)
5280ARM_vmlsdavA, // Vector Multiply Subtract Dual Accumulate Across Vector (accumulate)
5281ARM_vmlsdavAX, // Vector Multiply Subtract Dual Accumulate Across Vector (accumulate, exchange)
5282ARM_vmlaldav, // Vector Multiply Add Long Dual Accumulate Across Vector
5283ARM_vmlaldavX, // Vector Multiply Add Long Dual Accumulate Across Vector (exchange)
5284ARM_vmlaldavA, // Vector Multiply Add Long Dual Accumulate Across Vector (accumulate)
5285ARM_vmlaldavAX, // Vector Multiply Add Long Dual Accumulate Across Vector (accumulate, exchange)
5286ARM_vmlsldav, // Vector Multiply Subtract Long Dual Accumulate Across Vector
5287ARM_vmlsldavX, // Vector Multiply Subtract Long Dual Accumulate Across Vector (exchange)
5288ARM_vmlsldavA, // Vector Multiply Subtract Long Dual Accumulate Across Vector (accumulate)
5289ARM_vmlsldavAX, // Vector Multiply Subtract Long Dual Accumulate Across Vector (accumulate, exchange)
5290ARM_vrmlsldavh, // Vector Rounding Multiply Subtract Long Dual Accumulate Across Vector Returning High 64 bits
5291ARM_vrmlsldavhX, // Vector Rounding Multiply Subtract Long Dual Accumulate Across Vector Returning High 64 bits (exchange)
5292ARM_vrmlsldavhA, // Vector Rounding Multiply Subtract Long Dual Accumulate Across Vector Returning High 64 bits (accumulate)
5293ARM_vrmlsldavhAX, // Vector Rounding Multiply Subtract Long Dual Accumulate Across Vector Returning High 64 bits (accumulate, exchange)
5294ARM_vidup, // Vector Increment and Duplicate
5295ARM_vddup, // Vector Decrement and Duplicate
5296ARM_viwdup, // Vector Increment with Wrap and Duplicate
5297ARM_vdwdup, // Vector Decrement with Wrap and Duplicate
5298ARM_vhcadd, // Vector Halving Complex Add with Rotate
5299ARM_vcadd, // Vector Complex Add with Rotate
5300ARM_vadc, // Whole Vector Add With Carry
5301ARM_vadcI, // Whole Vector Add With Carry (initial carry is 1)
5302ARM_sbdc, // Whole Vector Subtract With Carry
5303ARM_vsbcI, // Whole Vector Subtract With Carry (initial carry is 1)
5304ARM_vqdmullb, // Vector Multiply Long Bottom
5305ARM_vqdmullt, // Vector Multiply Long Top
5306ARM_vpsel, // Vector Predicated Select
5307ARM_vcmpv, // Vector Compare (vector)
5308ARM_vpt, // Vector Predicate Then
5309ARM_vpnot, // Vector Predicate NOT
5310ARM_vpst, // Vector Predicate Set Then
5311ARM_vmaxv, // Vector Maximum Across Vector
5312ARM_vmaxav, // Vector Maximum Absolute Across Vector
5313ARM_vminv, // Vector Minimum Across Vector
5314ARM_vminav, // Vector Minimum Absolute Across Vector
5315ARM_vmaxnmv, // Vector Maximum Across Vector (floating-point)
5316ARM_vmaxnmav, // Vector Maximum Absolute Across Vector (floating-point)
5317ARM_vminnmv, // Vector Minimum Across Vector (floating-point)
5318ARM_vminnmav, // Vector Minimum Absolute Across Vector (floating-point)
5319ARM_vqshrnb, // Vector Saturating Shift Right and Narrow Bottom
5320ARM_vqshrnt, // Vector Saturating Shift Right and Narrow Top
5321ARM_vqrshrnb, // Vector Saturating Rounding Shift Right and Narrow Bottom
5322ARM_vqrshrnt, // Vector Saturating Rounding Shift Right and Narrow Top
5323ARM_vqshrunb, // Vector Saturating Shift Right Unsigned and Narrow Bottom
5324ARM_vqshrunt, // Vector Saturating Shift Right Unsigned and Narrow Top
5325ARM_vqrshrunb, // Vector Saturating Rounding Shift Right Unsigned and Narrow Bottom
5326ARM_vqrshrunt, // Vector Saturating Rounding Shift Right Unsigned and Narrow Top
5327ARM_vshrnb, // Vector Shift Right and Narrow Bottom
5328ARM_vshrnt, // Vector Shift Right and Narrow Top
5329ARM_vrshrnb, // Vector Rounding Shift Right and Narrow Bottom
5330ARM_vrshrnt, // Vector Rounding Shift Right and Narrow Top
5331ARM_vrmlaldavh, // Vector Rounding Multiply Add Long Dual Accumulate Across Vector Returning High 64 bits
5332ARM_vrmlaldavhX, // Vector Rounding Multiply Add Long Dual Accumulate Across Vector Returning High 64 bits (exchange)
5333ARM_vrmlaldavhA, // Vector Rounding Multiply Add Long Dual Accumulate Across Vector Returning High 64 bits (accumulate)
5334ARM_vrmlaldavhAX, // Vector Rounding Multiply Add Long Dual Accumulate Across Vector Returning High 64 bits (accumulate, exchange)
5335ARM_vabav, // Vector Absolute Difference and Accumulate Across Vector
5336ARM_vaddlv, // Vector Add Long Across Vector
5337ARM_vaddlvA, // Vector Add Long Across Vector (accumulate)
5338ARM_vaddv, // Vector Add Across Vector
5339ARM_vaddvA, // Vector Add Across Vector (accumulate)
5340ARM_vshlc, // Whole Vector Left Shift with Carry
5341ARM_vmovlb, // Vector Move Long Bottom
5342ARM_vmovlt, // Vector Move Long Top
5343ARM_vcmla, // Vector Complex Multiply Accumulate
5344ARM_vscclrm, // Floating-point Secure Context Clear Multiple
5345ARM_vld20, // Vector Deinterleaving Load - Stride 2 (pattern=0)
5346ARM_vld21, // Vector Deinterleaving Load - Stride 2 (pattern=1)
5347ARM_vld40, // Vector Deinterleaving Load - Stride 4 (pattern=0)
5348ARM_vld41, // Vector Deinterleaving Load - Stride 4 (pattern=1)
5349ARM_vld42, // Vector Deinterleaving Load - Stride 4 (pattern=2)
5350ARM_vld43, // Vector Deinterleaving Load - Stride 4 (pattern=3)
5351ARM_vst20, // Vector Interleaving Store - Stride 2 (pattern=0)
5352ARM_vst21, // Vector Interleaving Store - Stride 2 (pattern=1)
5353ARM_vst40, // Vector Interleaving Store - Stride 4 (pattern=0)
5354ARM_vst41, // Vector Interleaving Store - Stride 4 (pattern=1)
5355ARM_vst42, // Vector Interleaving Store - Stride 4 (pattern=2)
5356ARM_vst43, // Vector Interleaving Store - Stride 4 (pattern=3)
5357ARM_vldrb, // Vector Load Register/Vector Gather Load (byte)
5358ARM_vldrh, // Vector Load Register/Vector Gather Load (halfword)
5359ARM_vldrw, // Vector Load Register/Vector Gather Load (word)
5360ARM_vldrd, // Vector Load Register/Vector Gather Load (doubleword)
5361ARM_vstrb, // Vector Store Register/Vector Scatter Store (byte)
5362ARM_vstrh, // Vector Store Register/Vector Scatter Store (halfword)
5363ARM_vstrw, // Vector Store Register/Vector Scatter Store (word)
5364ARM_vstrd, // Vector Store Register/Vector Scatter Store (doubleword)
5365ARM_vmov2, // Vector Move (two general-purpose registers to two 32-bit vector lanes)
5366ARM_lsll, // Logical Shift Left Long
5367ARM_lsrl, // Logical Shift Right Long
5368ARM_asrl, // Arithmetic Shift Right Long
5369ARM_sqshll, // Signed Saturating Shift Left Long
5370ARM_uqshll, // Unsigned Saturating Shift Left Long
5371ARM_urshrl, // Unsigned Rounding Shift Right Long
5372ARM_srshrl, // Signed Rounding Shift Right Long
5373ARM_uqrshll, // Unsigned Saturating Rounding Shift Left Long
5374ARM_sqrshrl, // Signed Saturating Rounding Shift Right Long
5375ARM_sqrshr, // Signed Saturating Rounding Shift Right
5376ARM_lctp, // Loop Clear with Tail Predication
5377ARM_vctp, // Create Vector Tail Predicate
5378// ARMv8.1-M PACBTI
5379ARM_pacbti, // Pointer Authentication Code for the link register with BTI clearing, using key
5380ARM_autg, // Authenticate general value, using key
5381ARM_bxaut, // Branch Exchange after Authenticating the address, using key
5382ARM_pacg, // Pointer Authentication Code for a general value, using key
5383// ARMv8.1-M RAS
5384ARM_esb, // Error Synchronization Barrier
5385// ARMv8.1-M Low Overhead Branch Extension
5386ARM_wls, // While Loop Start
5387ARM_dls, // Do Loop Start
5388ARM_wlstp, // While Loop Start with Tail Predication
5389ARM_dlstp, // Do Loop Start with Tail Predication
5390ARM_le1, // Loop End (count)
5391ARM_le2, // Loop End (forever)
5392ARM_letp, // Loop End with Tail Prediction
5393ARM_bf, // Branch Future
5394ARM_bfx, // Branch Future and Exchange
5395ARM_bfl, // Branch Future with Link
5396ARM_bflx, // Branch Future with Link and Exchange
5397ARM_bfcsel, // Branch Future Conditional Select
5398
5399// ARMv8-M Custom Datapath Extension
5400ARM_cx1, // Custom Instruction Class 1
5401ARM_cx1A, // Custom Instruction Class 1 (accumulator)
5402ARM_cx1d, // Custom Instruction Class 1 (pair)
5403ARM_cx1dA, // Custom Instruction Class 1 (pair, accumulator)
5404ARM_cx2, // Custom Instruction Class 2
5405ARM_cx2A, // Custom Instruction Class 2 (accumulator)
5406ARM_cx2d, // Custom Instruction Class 2 (pair)
5407ARM_cx2dA, // Custom Instruction Class 2 (pair, accumulator)
5408ARM_cx3, // Custom Instruction Class 3
5409ARM_cx3A, // Custom Instruction Class 3 (accumulator)
5410ARM_cx3d, // Custom Instruction Class 3 (pair)
5411ARM_cx3dA, // Custom Instruction Class 3 (pair, accumulator)
5412ARM_vcx1, // Custom Extension Instruction Class 1
5413ARM_vcx1A, // Custom Extension Instruction Class 1 (accumulator)
5414ARM_vcx2, // Custom Extension Instruction Class 2
5415ARM_vcx2A, // Custom Extension Instruction Class 2 (accumulator)
5416ARM_vcx3, // Custom Extension Instruction Class 3
5417ARM_vcx3A, // Custom Extension Instruction Class 3 (accumulator)
5418
5419// FEAT_WFxT
5420ARM_wfet, // Wait For Event with Timeout
5421ARM_wfit, // Wait For Interrupt with Timeout
5422
5424
5425};
5426
5427
5428/*
5429 * Interactive disassembler (IDA).
5430 * Copyright (c) 1990-2025 Hex-Rays
5431 * ALL RIGHTS RESERVED.
5432 *
5433 * TMS320C6xx - VLIW (very long instruction word) architecture
5434 *
5435 */
5436
5437
5438
5439enum
5440{
5441// Original TMS320C62x instructions
5442
5443TMS6_null = 0, // Unknown Operation
5444TMS6_abs, // Absolute value
5445TMS6_add, // Integer addition without saturation (signed)
5446TMS6_addu, // Integer addition without saturation (unsigned)
5447TMS6_addab, // Integer addition using addressing mode (byte)
5448TMS6_addah, // Integer addition using addressing mode (halfword)
5449TMS6_addaw, // Integer addition using addressing mode (word)
5450TMS6_addk, // Integer addition 16bit signed constant
5451TMS6_add2, // Two 16bit Integer adds on register halves
5452TMS6_and, // Logical AND
5453TMS6_b, // Branch
5454TMS6_clr, // Clear a bit field
5455TMS6_cmpeq, // Compare for equality
5456TMS6_cmpgt, // Compare for greater than (signed)
5457TMS6_cmpgtu, // Compare for greater than (unsigned)
5458TMS6_cmplt, // Compare for less than (signed)
5459TMS6_cmpltu, // Compare for less than (unsigned)
5460TMS6_ext, // Extract and sign-extend a bit filed
5461TMS6_extu, // Extract an unsigned bit field
5462TMS6_idle, // Multicycle NOP with no termination until interrupt
5463TMS6_ldb, // Load from memory (signed 8bit)
5464TMS6_ldbu, // Load from memory (unsigned 8bit)
5465TMS6_ldh, // Load from memory (signed 16bit)
5466TMS6_ldhu, // Load from memory (unsigned 16bit)
5467TMS6_ldw, // Load from memory (32bit)
5468TMS6_lmbd, // Leftmost bit detection
5469TMS6_mpy, // Signed Integer Multiply (LSB16 x LSB16)
5470TMS6_mpyu, // Unsigned Integer Multiply (LSB16 x LSB16)
5471TMS6_mpyus, // Integer Multiply Signed*Unsigned (LSB16 x LSB16)
5472TMS6_mpysu, // Integer Multiply Unsigned*Signed (LSB16 x LSB16)
5473TMS6_mpyh, // Signed Integer Multiply (MSB16 x MSB16)
5474TMS6_mpyhu, // Unsigned Integer Multiply (MSB16 x MSB16)
5475TMS6_mpyhus, // Integer Multiply Unsigned*Signed (MSB16 x MSB16)
5476TMS6_mpyhsu, // Integer Multiply Signed*Unsigned (MSB16 x MSB16)
5477TMS6_mpyhl, // Signed Integer Multiply (MSB16 x LSB16)
5478TMS6_mpyhlu, // Unsigned Integer Multiply (MSB16 x LSB16)
5479TMS6_mpyhuls, // Integer Multiply Signed*Unsigned (MSB16 x LSB16)
5480TMS6_mpyhslu, // Integer Multiply Unsigned*Signed (MSB16 x LSB16)
5481TMS6_mpylh, // Signed Integer Multiply (LSB16 x MB16)
5482TMS6_mpylhu, // Unsigned Integer Multiply (LSB16 x MSB16)
5483TMS6_mpyluhs, // Integer Multiply Signed*Unsigned (LSB16 x MSB16)
5484TMS6_mpylshu, // Integer Multiply Unsigned*Signed (LSB16 x MSB16)
5485TMS6_mv, // Move from register to register
5486TMS6_mvc, // Move between the control file & register file
5487TMS6_mvk, // Move a 16bit signed constant into register
5488TMS6_mvkh, // Move a 16bit constant into the upper bits of a register
5489TMS6_mvklh, // Move a 16bit constant into the upper bits of a register
5490TMS6_neg, // Negate
5491TMS6_nop, // No operation
5492TMS6_norm, // Normalize
5493TMS6_not, // Bitwise NOT
5494TMS6_or, // Logical or
5495TMS6_sadd, // Integer addition with saturation
5496TMS6_sat, // Saturate 40bit value to 32bits
5497TMS6_set, // Set a bit field
5498TMS6_shl, // Arithmetic shift left
5499TMS6_shr, // Arithmetic shift right
5500TMS6_shru, // Logical shift left
5501TMS6_smpy, // Integer multiply with left shift & saturation (LSB16*LSB16)
5502TMS6_smpyhl, // Integer multiply with left shift & saturation (MSB16*LSB16)
5503TMS6_smpylh, // Integer multiply with left shift & saturation (LSB16*MSB16)
5504TMS6_smpyh, // Integer multiply with left shift & saturation (MSB16*MSB16)
5505TMS6_sshl, // Shift left with saturation
5506TMS6_ssub, // Integer substraction with saturation
5507TMS6_stb, // Store to memory (signed 8bit)
5508TMS6_stbu, // Store to memory (unsigned 8bit)
5509TMS6_sth, // Store to memory (signed 16bit)
5510TMS6_sthu, // Store to memory (unsigned 16bit)
5511TMS6_stw, // Store to memory (32bit)
5512TMS6_sub, // Integer substaraction without saturation (signed)
5513TMS6_subu, // Integer substaraction without saturation (unsigned)
5514TMS6_subab, // Integer subtraction using addressing mode (byte)
5515TMS6_subah, // Integer subtraction using addressing mode (halfword)
5516TMS6_subaw, // Integer subtraction using addressing mode (word)
5517TMS6_subc, // Conditional subtract & shift (for division)
5518TMS6_sub2, // Two 16bit integer subtractions on register halves
5519TMS6_xor, // Exclusive OR
5520TMS6_zero, // Zero a register
5521
5522// New TMS320C674x instructions
5523
5524TMS6_abs2, // Absolute Value With Saturation, Signed, Packed 16-bit
5525TMS6_absdp, // Absolute Value, Double-Precision Floating-Point
5526TMS6_abssp, // Absolute Value, Single-Precision Floating-Point
5527TMS6_add4, // Add Without Saturation, Four 8-Bit Pairs for Four 8-Bit Results
5528TMS6_addad, // Add Using Doubleword Addressing Mode
5529TMS6_adddp, // Add Two Double-Precision Floating-Point Values
5530TMS6_addkpc, // Add Signed 7-bit Constant to Program Counter
5531TMS6_addsp, // Add Two Single-Precision Floating-Point Values
5532TMS6_addsub, // Parallel ADD and SUB Operations On Common Inputs
5533TMS6_addsub2, // Parallel ADD2 and SUB2 Operations On Common Inputs
5534TMS6_andn, // Bitwise AND Invert
5535TMS6_avg2, // Average, Signed, Packed 16-bit
5536TMS6_avgu4, // Average, Unsigned, Packed 16-bit
5537TMS6_bdec, // Branch and Decrement
5538TMS6_bitc4, // Bit Count, Packed 8-bit
5539TMS6_bitr, // Bit Reverse
5540TMS6_bnop, // Branch With NOP
5541TMS6_bpos, // Branch Positive
5542TMS6_callp, // Call Using a Displacement
5543TMS6_cmpeq2, // Compare for Equality, Packed 16-bit
5544TMS6_cmpeq4, // Compare for Equality, Packed 8-bit
5545TMS6_cmpeqdp, // Compare for Equality, Double-Precision Floating-Point Values
5546TMS6_cmpeqsp, // Compare for Equality, Single-Precision Floating-Point Values
5547TMS6_cmpgt2, // Compare for Greater Than, Packed 16-bit
5548TMS6_cmpgtdp, // Compare for Greater Than, Double-Precision Floating-Point Values
5549TMS6_cmpgtsp, // Compare for Greater Than, Single-Precision Floating-Point Values
5550TMS6_cmpgtu4, // Compare for Greater Than, Unsigned, Packed 8-bit
5551TMS6_cmplt2, // Compare for Less Than, Packed 16-bit
5552TMS6_cmpltdp, // Compare for Less Than, Double-Precision Floating-Point Values
5553TMS6_cmpltsp, // Compare for Less Than, Single-Precision Floating-Point Values
5554TMS6_cmpltu4, // Compare for Less Than, Unsigned, Packed 8-bit
5555TMS6_cmpy, // Complex Multiply Two Pairs, Signed, Packed 16-bit
5556TMS6_cmpyr, // Complex Multiply Two Pairs, Signed, Packed 16-bit With Rounding
5557TMS6_cmpyr1, // Complex Multiply Two Pairs, Signed, Packed 16-bit With Rounding
5558TMS6_ddotp4, // Double Dot Product, Signed, Packed 16-Bit and Signed, Packed 8-Bit
5559TMS6_ddotph2, // Double Dot Product, Two Pairs, Signed, Packed 16-Bit
5560TMS6_ddotph2r, // Double Dot Product With Rounding, Two Pairs, Signed, Packed 16-Bit
5561TMS6_ddotpl2, // Double Dot Product, Two Pairs, Signed, Packed 16-Bit
5562TMS6_ddotpl2r, // Double Dot Product With Rounding, Two Pairs, Signed Packed 16-Bit
5563TMS6_deal, // Deinterleave and Pack
5564TMS6_dint, // Disable Interrupts and Save Previous Enable State
5565TMS6_dmv, // Move Two Independent Registers to Register Pair
5566TMS6_dotp2, // Dot Product, Signed, Packed 16-Bit
5567TMS6_dotpn2, // Dot Product With Negate, Signed, Packed 16-Bit
5568TMS6_dotpnrsu2, // Dot Product With Negate, Shift and Round, Signed by Unsigned, Packed 16-Bit
5569TMS6_dotpnrus2, // Dot Product With Negate, Shift and Round, Unsigned by Signed, Packed 16-Bit
5570TMS6_dotprsu2, // Dot Product With Shift and Round, Signed by Unsigned, Packed 16-Bit
5571TMS6_dotprus2, // Dot Product With Shift and Round, Unsigned by Signed, Packed 16-Bit
5572TMS6_dotpsu4, // Dot Product, Signed by Unsigned, Packed 8-Bit
5573TMS6_dotpu4, // Dot Product, Unsigned, Packed 8-Bit
5574TMS6_dotpus4, // Dot Product, Unsigned by Signed, Packed 8-Bit
5575TMS6_dpack2, // Parallel PACK2 and PACKH2 Operations
5576TMS6_dpackx2, // Parallel PACKLH2 Operations
5577TMS6_dpint, // Convert Double-Precision Floating-Point Value to Integer
5578TMS6_dpsp, // Convert Double-Precision Floating-Point Value to Single-Precision Floating-Point Value
5579TMS6_dptrunc, // Convert Double-Precision Floating-Point Value to Integer With Truncation
5580TMS6_gmpy, // Galois Field Multiply
5581TMS6_gmpy4, // Galois Field Multiply, Packed 8-Bit
5582TMS6_intdp, // Convert Signed Integer to Double-Precision Floating-Point Value
5583TMS6_intdpu, // Convert Unsigned Integer to Double-Precision Floating-Point Value
5584TMS6_intsp, // Convert Signed Integer to Single-Precision Floating-Point Value
5585TMS6_intspu, // Convert Unsigned Integer to Single-Precision Floating-Point Value
5586TMS6_lddw, // Load Doubleword From Memory With a 5-Bit Unsigned Constant Offset or Register Offset
5587TMS6_ldndw, // Load Nonaligned Doubleword From Memory With Constant or Register Offset
5588TMS6_ldnw, // Load Nonaligned Word From Memory With Constant or Register Offset
5589TMS6_max2, // Maximum, Signed, Packed 16-Bit
5590TMS6_maxu4, // Maximum, Unsigned, Packed 8-Bit
5591TMS6_min2, // Minimum, Signed, Packed 16-Bit
5592TMS6_minu4, // Minimum, Unsigned, Packed 8-Bit
5593TMS6_mpy2, // Multiply Signed by Signed, 16 LSB x 16 LSB and 16 MSB x 16 MSB
5594TMS6_mpy2ir, // Multiply Two 16-Bit x 32-Bit, Shifted by 15 to Produce a Rounded 32-Bit Result
5595TMS6_mpy32, // Multiply Signed 32-Bit x Signed 32-Bit Into 32-Bit Result
5596TMS6_mpy32su, // Multiply Signed 32-Bit x Unsigned 32-Bit Into Signed 64-Bit Result
5597TMS6_mpy32u, // Multiply Unsigned 32-Bit x Unsigned 32-Bit Into Unsigned 64-Bit Result
5598TMS6_mpy32us, // Multiply Unsigned 32-Bit x Signed 32-Bit Into Signed 64-Bit Result
5599TMS6_mpydp, // Multiply Two Double-Precision Floating-Point Values
5600TMS6_mpyhi, // Multiply 16 MSB x 32-Bit Into 64-Bit Result
5601TMS6_mpyhir, // Multiply 16 MSB x 32-Bit, Shifted by 15 to Produce a Rounded 32-Bit Result
5602TMS6_mpyi, // Multiply 32-Bit x 32-Bit Into 32-Bit Result
5603TMS6_mpyid, // Multiply 32-Bit x 32-Bit Into 64-Bit Result
5604TMS6_mpyih, // Multiply 32-Bit x 16-MSB Into 64-Bit Result
5605TMS6_mpyihr, // Multiply 32-Bit x 16 MSB, Shifted by 15 to Produce a Rounded 32-Bit Result
5606TMS6_mpyil, // Multiply 32-Bit x 16 LSB Into 64-Bit Result
5607TMS6_mpyilr, // Multiply 32-Bit x 16 LSB, Shifted by 15 to Produce a Rounded 32-Bit Result
5608TMS6_mpyli, // Multiply 16 LSB x 32-Bit Into 64-Bit Result
5609TMS6_mpylir, // Multiply 16 LSB x 32-Bit, Shifted by 15 to Produce a Rounded 32-Bit Result
5610TMS6_mpysp, // Multiply Two Single-Precision Floating-Point Values
5611TMS6_mpysp2dp, // Multiply Two Single-Precision Floating-Point Values for Double-Precision Result
5612TMS6_mpyspdp, // Multiply Single-Precision Floating-Point Value x Double-Precision Floating-Point Value
5613TMS6_mpysu4, // Multiply Signed x Unsigned, Four 8-Bit Pairs for Four 8-Bit Results
5614TMS6_mpyu4, // Multiply Unsigned x Unsigned, Four 8-Bit Pairs for Four 8-Bit Results
5615TMS6_mpyus4, // Multiply Unsigned x Signed, Four 8-Bit Pairs for Four 8-Bit Results
5616TMS6_mvd, // Move From Register to Register, Delayed
5617TMS6_mvkl, // Move Signed Constant Into Register and Sign Extend
5618TMS6_pack2, // Pack Two 16 LSBs Into Upper and Lower Register Halves
5619TMS6_packh2, // Pack Two 16 MSBs Into Upper and Lower Register Halves
5620TMS6_packh4, // Pack Four High Bytes Into Four 8-Bit Halfwords
5621TMS6_packhl2, // Pack 16 MSB Into Upper and 16 LSB Into Lower Register Halves
5622TMS6_packl4, // Pack Four Low Bytes Into Four 8-Bit Halfwords
5623TMS6_packlh2, // Pack 16 LSB Into Upper and 16 MSB Into Lower Register Halves
5624TMS6_rcpdp, // Double-Precision Floating-Point Reciprocal Approximation
5625TMS6_rcpsp, // Single-Precision Floating-Point Reciprocal Approximation
5626TMS6_rint, // Restore Previous Enable State
5627TMS6_rotl, // Rotate Left
5628TMS6_rpack2, // Shift With Saturation and Pack Two 16 MSBs Into Upper and Lower Register Halves
5629TMS6_rsqrdp, // Double-Precision Floating-Point Square-Root Reciprocal Approximation
5630TMS6_rsqrsp, // Single-Precision Floating-Point Square-Root Reciprocal Approximation
5631TMS6_sadd2, // Add Two Signed 16-Bit Integers on Upper and Lower Register Halves With Saturation
5632TMS6_saddsu2, // Add Two Signed and Unsigned 16-Bit Integers on Register Halves With Saturation
5633TMS6_saddsub, // Parallel SADD and SSUB Operations On Common Inputs
5634TMS6_saddsub2, // Parallel SADD2 and SSUB2 Operations On Common Inputs
5635TMS6_saddu4, // Add With Saturation, Four Unsigned 8-Bit Pairs for Four 8-Bit Results
5636TMS6_saddus2, // Add Two Unsigned and Signed 16-Bit Integers on Register Halves With Saturation
5637TMS6_shfl, // Shuffle
5638TMS6_shfl3, // 3-Way Bit Interleave On Three 16-Bit Values Into a 48-Bit Result
5639TMS6_shlmb, // Shift Left and Merge Byte
5640TMS6_shr2, // Arithmetic Shift Right, Signed, Packed 16-Bit
5641TMS6_shrmb, // Shift Right and Merge Byte
5642TMS6_shru2, // Arithmetic Shift Right, Unsigned, Packed 16-Bit
5643TMS6_smpy2, // Multiply Signed by Signed, 16 LSB x 16 LSB and 16 MSB x 16 MSB With Left Shift and Saturation
5644TMS6_smpy32, // Multiply Signed 32-Bit x Signed 32-Bit Into 64-Bit Result With Left Shift and Saturation
5645TMS6_spack2, // Saturate and Pack Two 16 LSBs Into Upper and Lower Register Halves
5646TMS6_spacku4, // Saturate and Pack Four Signed 16-Bit Integers Into Four Unsigned 8-Bit Halfwords
5647TMS6_spdp, // Convert Single-Precision Floating-Point Value to Double-Precision Floating-Point Value
5648TMS6_spint, // Convert Single-Precision Floating-Point Value to Integer
5649TMS6_spkernel, // Software Pipelined Loop (SPLOOP) Buffer Operation Code Boundary
5650TMS6_spkernelr, // Software Pipelined Loop (SPLOOP) Buffer Operation Code Boundary
5651TMS6_sploop, // Software Pipelined Loop (SPLOOP) Buffer Operation
5652TMS6_sploopd, // Software Pipelined Loop (SPLOOP) Buffer Operation With Delayed Testing
5653TMS6_sploopw, // Software Pipelined Loop (SPLOOP) Buffer Operation With Delayed Testing and No Epilog
5654TMS6_spmask, // Software Pipelined Loop (SPLOOP) Buffer Operation Load/Execution Control
5655TMS6_spmaskr, // Software Pipelined Loop (SPLOOP) Buffer Operation Load/Execution Control
5656TMS6_sptrunc, // Convert Single-Precision Floating-Point Value to Integer With Truncation
5657TMS6_sshvl, // Variable Shift Left
5658TMS6_sshvr, // Variable Shift Right
5659TMS6_ssub2, // Subtract Two Signed 16-Bit Integers on Upper and Lower Register Halves With Saturation
5660TMS6_stdw, // Store Doubleword to Memory With a 5-Bit Unsigned Constant Offset or Register Offset
5661TMS6_stndw, // Store Nonaligned Doubleword to Memory With a 5-Bit Unsigned Constant Offset or Register Offset
5662TMS6_stnw, // Store Nonaligned Word to Memory With a 5-Bit Unsigned Constant Offset or Register Offset
5663TMS6_sub4, // Subtract Without Saturation, Four 8-Bit Pairs for Four 8-Bit Results
5664TMS6_subabs4, // Subtract With Absolute Value, Four 8-Bit Pairs for Four 8-Bit Results
5665TMS6_subdp, // Subtract Two Double-Precision Floating-Point Values
5666TMS6_subsp, // Subtract Two Single-Precision Floating-Point Values
5667TMS6_swap2, // Swap Bytes in Upper and Lower Register Halves
5668TMS6_swap4, // Swap Byte Pairs in Upper and Lower Register Halves
5669TMS6_swe, // Software Exception
5670TMS6_swenr, // Software Exception, no Return
5671TMS6_unpkhu4, // Unpack 16 MSB Into Two Lower 8-Bit Halfwords of Upper and Lower Register Halves
5672TMS6_unpklu4, // Unpack 16 LSB Into Two Lower 8-Bit Halfwords of Upper and Lower Register Halves
5673TMS6_xormpy, // Galois Field Multiply With Zero Polynomial
5674TMS6_xpnd2, // Expand Bits to Packed 16-Bit Masks
5675TMS6_xpnd4, // Expand Bits to Packed 8-Bit Masks
5676
5677// New TMS320C66x Instructions
5678
5679TMS6_cmatmpy, // Complex Matrix Multiply, Signed Complex 16-bit (16-bit real/16-bit Imaginary)
5680TMS6_ccmatmpyr1, // Complex Conjugate Matrix Multiply With Rounding, Signed Complex 16-bit (16-bit Real/16-bit Imaginary)
5681TMS6_ccmpy32r1, // Complex Multiply With Rounding and Conjugate, Signed Complex 16-bit (16-bit Real/16-bit Imaginary)
5682TMS6_ccmatmpy, // Complex Conjugate Matrix Multiply, Signed Complex 16-bit (16-bit real/16-bit Imaginary)
5683TMS6_cmatmpyr1, // Complex Matrix Multiply With Rounding, Signed Complex 16-bit (16-bit Real/16-bit Imaginary)
5684TMS6_cmpysp, // Single Precision Complex Floating Point Multiply
5685TMS6_crot90, // Complex Rotate By 90 Degrees, Signed Complex 16-bit (16-bit Real/16-bit Imaginary)
5686TMS6_crot270, // Complex Rotate By 270 Degrees, Signed Complex 16-bit (16-bit Real/16-bit Imaginary)
5687TMS6_dadd, // 2-Way SIMD Addition, Packed Signed 32-bit
5688TMS6_dadd2, // 4-Way SIMD Addition, Packed Signed 16-bit
5689TMS6_daddsp, // 2-Way SIMD Single Precision Floating Point Addition
5690TMS6_dapys2, // 4-Way SIMD Apply Sign Bits to Operand
5691TMS6_davg2, // 4-Way SIMD Average, Signed, Packed 16-bit
5692TMS6_davgnr2, // 4-Way SIMD Average Without Rounding, Signed Packed 16-bit
5693TMS6_davgnru4, // 8-Way SIMD Average Without Rounding, Unsigned Packed 8-bit
5694TMS6_davgu4, // 8-Way SIMD Average, Unsigned Packed 8-bit
5695TMS6_dccmpy, // 2-Way SIMD Complex Multiply With Conjugate, Packed Complex Signed 16-bit (16-bit Real/16-bit Imaginary)
5696TMS6_dccmpyr1, // 2-Way SIMD Complex Multiply With Conjugate and Rounding, Packed Complex 16-bit (16-bit Real/16-bit Imaginary)
5697TMS6_dcmpeq2, // 2-Way SIMD Compare If Equal, Packed 16-bit
5698TMS6_dcmpeq4, // 4-Way SIMD Compare If Equal, Packed 8-bit
5699TMS6_dcmpgt2, // 2-Way SIMD Compare If Greater-Than, Packed 16-bit
5700TMS6_dcmpgtu4, // 4-Way SIMD Compare If Greater-Than, Unsigned Packed 8-bit
5701TMS6_dcmpy, // 2-Way SIMD Complex Multiply, Packed Complex 16-bit (16-bit Real/16-bit Imaginary)
5702TMS6_dcmpyr1, // 2-Way SIMD Complex Multiply With Rounding, Packed Complex 16-bit (16-bit Real/16-bit Imaginary)
5703TMS6_dcrot270, // 2-Way SIMD Rotate Complex Number By 270 Degrees, Packed Complex 16-bit (16-bit Real/16-bit Imaginary)
5704TMS6_dcrot90, // 2-Way SIMD Rotate Complex Number By 90 Degrees, Packed Complex 16-bit (16-bit Real/16-bit Imaginary)
5705TMS6_dinthspu, // 2-Way SIMD Convert 16-bit Unsigned Integer to Single Precision Floating Point
5706TMS6_dintspu, // 2-Way SIMD Convert 32-bit Unsigned Integer to Single Precision Floating Point, Packed Unsigned 32-bit
5707TMS6_dmax2, // 2-Way SIMD Maximum, Packed Signed 16-bit
5708TMS6_dmaxu4, // 4-Way SIMD Maximum, Packed Unsigned 8-bit
5709TMS6_dmin2, // 2-Way SIMD Minimum, Packed Signed 16-bit
5710TMS6_dminu4, // 4-Way SIMD Minimum, Packed Unsigned 8-bit
5711TMS6_dmpy2, // 4-Way SIMD Multiply, Packed Signed 16-bit
5712TMS6_dmpysp, // 2-Way SIMD Multiply, Packed Single Precision Floating Point
5713TMS6_dmpysu4, // 4-Way SIMD Multiply Signed By Unsigned, Packed 8-bit
5714TMS6_dmpyu2, // 4-Way SIMD Multiply Unisgned by Unsigned, Packed 16-bit
5715TMS6_dmpyu4, // 4-Way SIMD Multiply Unsigned By Unsigned, Packed 8-bit
5716TMS6_dmvd, // Move Two Independent Registers to a Register Pair, Delayed
5717TMS6_dpackh2, // 2-Way SIMD Pack 16 MSBs Into Upper and Lower Register Halves
5718TMS6_dpackh4, // 2-Way SIMD Pack Four High Bytes Into Four 8-Bit Halfwords
5719TMS6_dpackhl2, // 2-Way SIMD Pack 16 MSB Into Upper and 16 LSB Into Lower Register Halves
5720TMS6_dpackl2, // 2-Way SIMD Pack 16 LSBSs Into Upper and Lower Register Halves
5721TMS6_dpackl4, // 2-Way SIMD Pack Four Low Bytes Into Four 8-bit Halfwords
5722TMS6_dpacklh2, // 2-Way SIMD Pack 16 LSB Into Upper and 16 MSB Into Lower Register Halves
5723TMS6_dsadd, // 2-Way SIMD Addition With Saturation, Packed Signed 32-bit
5724TMS6_dsadd2, // 4-Way SIMD Addition with Saturation, Packed Signed 16-bit
5725TMS6_dshl, // 2-Way SIMD Shift Left, Packed Signed 32-bit
5726TMS6_dshl2, // 4-Way SIMD Shift Left, Packed Signed 16-bit
5727TMS6_dshr, // 2-Way SIMD Shift Left, Packed Signed 32-bit
5728TMS6_dshr2, // 4-Way SIMD Shift Left, Packed Signed 16-bit
5729TMS6_dshru, // 2-Way SIMD Shift Right, Packed Unsigned 32-bit
5730TMS6_dshru2, // 4-Way SIMD Shift Right, Packed Unsigned 16-bit
5731TMS6_dsmpy2, // 4-Way SIMD Multiply Signed by Signed With Left Shift and Saturation, Packed Signed 16-bit
5732TMS6_dspacku4, // 2-Way SIMD Saturate and Pack Into Unisgned Packed 8-bit
5733TMS6_dspint, // 2-Way SIMD Convert Single Precision Floating Point to Signed 32-bit Integer
5734TMS6_dspinth, // 2-Way SIMD Convert Single Precision Floating Point to Signed 16-bit Integer
5735TMS6_dssub, // 2-Way SIMD Saturating Subtract, Packed Signed 32-bit
5736TMS6_dssub2, // 4-Way SIMD Saturating Subtract, Packed Signed 16-bit
5737TMS6_dsub, // 2-Way SIMD Subtract, Packed Signed 32-bit
5738TMS6_dsub2, // 4-Way SIMD Subtract, Packed Signed 16-bit
5739TMS6_dsubsp, // 2-Way SIMD Subtract, Packed Single Precision Floating Point
5740TMS6_dxpnd2, // Expand Bits to Packed 16-bit Masks
5741TMS6_dxpnd4, // Expand Bits to Packed 8-bit Masks
5742TMS6_fadddp, // Fast Double-Precision Floating Point Add
5743TMS6_faddsp, // Fast Single-Precision Floating Point Add
5744TMS6_fmpydp, // Fast Double-Precision Floating Point Multiply
5745TMS6_fsubdp, // Fast Double-Precision Floating Point Subtract
5746TMS6_fsubsp, // Fast Single-Precision Floating Point Subtract
5747TMS6_land, // Logical AND
5748TMS6_landn, // Logical AND, One Operand Negated
5749TMS6_lor, // Logical OR
5750TMS6_mfence, // Memory Fence
5751TMS6_mpyu2, // Multiply Unsigned by Unsigned, Packed 16-bit
5752TMS6_qmpy32, // 4-Way SIMD Multiply, Packed Signed 32-bit
5753TMS6_qmpysp, // 4-Way SIMD Floating Point Multiply, Packed Single-Precision Floating Point
5754TMS6_qsmpy32r1, // 4-Way SIMD Multiply with Saturation and Rounding, Packed Signed 32-bit
5755TMS6_shl2, // 2-Way SIMD Shift Left, Packed Signed 16-bit
5756TMS6_unpkbu4, // Unpack All Unsigned Packed 8-bit to Unsigned Packed 16-bit
5757TMS6_unpkh2, // Unpack High Signed Packed 16-bit to Packed 32-bit
5758TMS6_unpkhu2, // Unpack High Unsigned Packed 16-bit to Packed 32-bit
5759
5760TMS6_fphead, // Special fake instruction to show the fetch packet header
5762
5763 };
5764
5765/*
5766 * Interactive disassembler (IDA).
5767 * Intel 80196 module
5768 *
5769 */
5770
5771
5772
5773enum
5774{
5775 I196_null = 0, // Unknown Operation
5776
5777 I196_add2, // Add words (2 operands)
5778 I196_add3, // Add words (3 operands)
5779 I196_addb2, // Add bytes (2 operands)
5780 I196_addb3, // Add bytes (3 operands)
5781
5782 I196_addc, // Add words with carry
5783 I196_addcb, // Add bytes with carry
5784
5785 I196_and2, // Logical AND words (2 operands)
5786 I196_and3, // Logical AND words (3 operands)
5787 I196_andb2, // Logical AND bytes (2 operands)
5788 I196_andb3, // Logical AND bytes (3 operands)
5789
5790 I196_bmov, // Block move
5791 I196_bmovi, // Interruptable block move
5792
5793 I196_br, // Branch indirect
5794
5795 I196_clr, // Clear word
5796 I196_clrb, // Clear byte
5797 I196_clrc, // Clear carry flag
5798 I196_clrvt, // Clear overflow-trap flag
5799
5800 I196_cmp, // Compare words
5801 I196_cmpb, // Compare bytes
5802 I196_cmpl, // Compare long
5803
5804 I196_dec, // Decrement word
5805 I196_decb, // Decrement byte
5806
5807 I196_di, // Disable interrupts
5808
5809 I196_div, // Divide integers
5810 I196_divb, // Divide short-integers
5811 I196_divu, // Divide words, unsigned
5812 I196_divub, // Divide bytes, unsigned
5813
5814 I196_djnz, // Decrement and jump if not zero
5815 I196_djnzw, // Decrement and jump if not zero word
5816
5817 I196_dpts, // Disable peripheral transaction server
5818
5819 I196_ei, // Enable interrupts
5820
5821 I196_epts, // Enable peripheral transaction server
5822
5823 I196_ext, // Sign-extend integer into long-integer
5824 I196_extb, // Sign-extend short-integer into integer
5825
5826 I196_idlpd, // Idle/powerdown
5827
5828 I196_inc, // Increment word
5829 I196_incb, // Increment byte
5830
5831 I196_jbc, // Jump if bit is clear
5832 I196_jbs, // Jump if bit is set
5833 I196_jc, // Jump if carry flag is set
5834 I196_je, // Jump if equal
5835 I196_jge, // Jump if signed greater than or equal
5836 I196_jgt, // Jump if signed greater than
5837 I196_jh, // Jump if higher (unsigned)
5838 I196_jle, // Jump if signed less than or equal
5839 I196_jlt, // Jump if signed less than
5840 I196_jnc, // Jump if carry flag is clear
5841 I196_jne, // Jump if not equal
5842 I196_jnh, // Jump if not higher (unsigned)
5843 I196_jnst, // Jump if sticky bit flag is clear
5844 I196_jnv, // Jump if overflow flag is clear
5845 I196_jnvt, // Jump if overflow-trap flag is clear
5846 I196_jst, // Jump if sticky bit flag is set
5847 I196_jv, // Jump if overflow flag is set
5848 I196_jvt, // Jump if overflow-trap flag is set
5849
5850 I196_lcall, // Long call
5851
5852 I196_ld, // Load word
5853 I196_ldb, // Load byte
5854 I196_ldbse, // Load byte sign-extended
5855 I196_ldbze, // Load byte zero-extended
5856
5857 I196_ljmp, // Long jump
5858
5859 I196_mul2, // Multiply integers (2 operands)
5860 I196_mul3, // Multiply integers (3 operands)
5861 I196_mulb2, // Multiply short-integers (2 operands)
5862 I196_mulb3, // Multiply short-integers (3 operands)
5863 I196_mulu2, // Multiply words, unsigned (2 operands)
5864 I196_mulu3, // Multiply words, unsigned (3 operands)
5865 I196_mulub2, // Multiply bytes, unsigned (2 operands)
5866 I196_mulub3, // Multiply bytes, unsigned (3 operands)
5867
5868 I196_neg, // Negate integer
5869 I196_negb, // Negate short-integer
5870
5871 I196_nop, // No operation
5872
5873 I196_norml, // Normalize long-integer
5874
5875 I196_not, // Complement word
5876 I196_notb, // Complement byte
5877
5878 I196_or, // Logical OR words
5879 I196_orb, // Logical OR bytes
5880
5881 I196_pop, // Pop word
5882 I196_popa, // Pop all
5883 I196_popf, // Pop flags
5884 I196_push, // Push word
5885 I196_pusha, // Push all
5886 I196_pushf, // Push flags
5887
5888 I196_ret, // Return from subroutine
5889
5890 I196_rst, // Reset system
5891
5892 I196_scall, // Short call
5893
5894 I196_setc, // Set carry flag
5895
5896 I196_shl, // Shift word left
5897 I196_shlb, // Shift byte left
5898 I196_shll, // Shift double-word left
5899 I196_shr, // Logical right shift word
5900 I196_shra, // Arithmetic right shift word
5901 I196_shrab, // Arithmetic right shift byte
5902 I196_shral, // Arithmetic right shift double-word
5903 I196_shrb, // Logical right shift byte
5904 I196_shrl, // Logical right shift double-word
5905
5906 I196_sjmp, // Short jump
5907
5908 I196_skip, // Two byte no-operation
5909
5910 I196_st, // Store word
5911 I196_stb, // Store byte
5912
5913 I196_sub2, // Subtract words (2 operands)
5914 I196_sub3, // Subtract words (3 operands)
5915 I196_subb2, // Subtract bytes (2 operands)
5916 I196_subb3, // subtract bytes (3 operands)
5917
5918 I196_subc, // Subtract words with borrow
5919 I196_subcb, // Subtract bytes with borrow
5920
5921 I196_tijmp, // Table indirect jump
5922
5923 I196_trap, // Software trap
5924
5925 I196_xch, // Exchange word
5926 I196_xchb, // Exchange byte
5927
5928 I196_xor, // Logical exclusive-or words
5929 I196_xorb, // Logical exclusive-or bytes
5930
5931// 8x196NU, NP instructions
5932
5933 I196_ebmovi, // Extended interruptable block move
5934 I196_ebr, // Extended branch indirect
5935 I196_ecall, // Extended call
5936 I196_ejmp, // Extended jump
5937 I196_eld, // Extended load word
5938 I196_eldb, // Extended load byte
5939 I196_est, // Extended store word
5940 I196_estb, // Extended store byte
5941
5943};
5944
5945/*
5946 * Interactive disassembler (IDA).
5947 * Copyright (c) 1990-2025 Hex-Rays
5948 * ALL RIGHTS RESERVED.
5949 *
5950 * Renesas SuperH - RISC with 16bit instructions
5951 *
5952 */
5953
5954
5955
5956
5957enum
5958{
5959SH3_null = 0, // Unknown Operation
5960
5961SH3_add, // Add binary
5962SH3_addc, // Add with Carry
5963SH3_addv, // Add with V Flag Overflow Check
5964SH3_and, // AND Logical
5965SH3_and_b, // AND Byte Logical
5966SH3_bf, // Branch if False
5967SH3_bf_s, // Branch of False with Delay Slot
5968SH3_bra, // Branch
5969SH3_braf, // Branch Far
5970SH3_bsr, // Branch to Subroutine
5971SH3_bsrf, // Branch to Subroutine Far
5972SH3_bt, // Branch if True
5973SH3_bt_s, // Branch if True with Delay Slot
5974SH3_clrmac, // Clear MAC register
5975SH3_clrs, // Clear S Bit
5976SH3_clrt, // Clear T Bit
5977SH3_cmp_eq, // Compare: Equal
5978SH3_cmp_ge, // Compare: Signed Greater or Equal
5979SH3_cmp_gt, // Compare: Signed Greater
5980SH3_cmp_hi, // Compare: Unsigned Greater
5981SH3_cmp_hs, // Compare: Unsigned Greater or Equal
5982SH3_cmp_pl, // Compare: Positive
5983SH3_cmp_pz, // Compare: Positive or Zero
5984SH3_cmp_str, // Compare: Equal Bytes
5985SH3_div0s, // Divide Step 0 as Signed
5986SH3_div0u, // Divide Step 0 as Unsigned
5987SH3_div1, // Divide Step 1
5988SH3_dmuls_l, // Double-Length Multiply as Signed
5989SH3_dmulu_l, // Double-Length Multiply as Unsigned
5990SH3_dt, // Decrement and Test
5991SH3_exts_b, // Extend as Signed (Byte)
5992SH3_exts_w, // Extend as Signed (Word)
5993SH3_extu_b, // Extend as Unsigned (Byte)
5994SH3_extu_w, // Extend as Unsigned (Word)
5995SH3_jmp, // Jump
5996SH3_jsr, // Jump to Subroutine
5997SH3_ldc, // Load to Control Register
5998SH3_ldc_l, // Load to Control Register Long
5999SH3_lds, // Load to System Register
6000SH3_lds_l, // Load to System Register Long
6001SH3_ldtlb, // Load PTEH/PTEL/PTEA to TLB
6002SH3_mac_w, // Multiply and Accumulate Word
6003SH3_mac_l, // Multiply and Accumulate Long
6004SH3_mov, // Move Data
6005SH3_mov_b, // Move Byte Data
6006SH3_mov_w, // Move Word Data
6007SH3_mov_l, // Move Long Data
6008SH3_movi, // Move Immediate Byte Data
6009SH3_movi_w, // Move Immediate Word Data
6010SH3_movi_l, // Move Immediate Long Data
6011SH3_movp_b, // Move Peripherial Byte Data
6012SH3_movp_w, // Move Peripherial Word Data
6013SH3_movp_l, // Move Peripherial Long Data
6014SH3_movs_b, // Move Structure Byte Data
6015SH3_movs_w, // Move Structure Word Data
6016SH3_movs_l, // Move Structure Long Data
6017SH3_mova, // Move Effective Address
6018SH3_movt, // Move T Bit
6019SH3_mul, // Multiply Long
6020SH3_muls, // Multiply as Signed Word
6021SH3_mulu, // Multiply as Unsigned Word
6022SH3_neg, // Negate
6023SH3_negc, // Negate with Carry
6024SH3_nop, // No Operation
6025SH3_not, // NOT - Logical Complement
6026SH3_or, // OR Logical
6027SH3_or_b, // OR Byte Logical
6028SH3_pref, // Prefetch Data to the Cache
6029SH3_rotcl, // Rotate with Carry Left
6030SH3_rotcr, // Rotate with Carry Right
6031SH3_rotl, // Rotate Left
6032SH3_rotr, // Rotate Right
6033SH3_rte, // Return from Exception
6034SH3_rts, // Return from Subroutine
6035SH3_sets, // Set S Bit
6036SH3_sett, // Set T Bit
6037SH3_shad, // Shift Arithmetic Dynamically
6038SH3_shal, // Shift Arithmetic Left
6039SH3_shar, // Shift Arithmetic Right
6040SH3_shld, // Shift Logical Dynamically
6041SH3_shll, // Shift Logical Left
6042SH3_shll2, // Shift Logical Left 2
6043SH3_shll8, // Shift Logical Left 8
6044SH3_shll16, // Shift Logical Left 16
6045SH3_shlr, // Shift Logical Right
6046SH3_shlr2, // Shift Logical Right 2
6047SH3_shlr8, // Shift Logical Right 8
6048SH3_shlr16, // Shift Logical Right 16
6049SH3_sleep, // Sleep
6050SH3_stc, // Store Control Register
6051SH3_stc_l, // Store Control Register Long
6052SH3_sts, // Store System Register
6053SH3_sts_l, // Store System Register Long
6054SH3_sub, // Subtract Binary
6055SH3_subc, // Subtract with Carry
6056SH3_subv, // Subtract with V Flag Underflow Check
6057SH3_swap_b, // Swap Register Halves (Byte)
6058SH3_swap_w, // Swap Register Halves (Word)
6059SH3_tas_b, // Test and Set
6060SH3_trapa, // Trap Always
6061SH3_tst, // Test Logical
6062SH3_tst_b, // Test Byte Logical
6063SH3_xor, // Exclusive OR Logical
6064SH3_xor_b, // Exclusive OR Byte Logical
6065SH3_xtrct, // Extract
6066
6067SH4_fabs, // Floating-point absolute value
6068SH4_fadd, // Floating-point add
6069SH4_fcmp_eq, // Floating-point compare eqaul
6070SH4_fcmp_gt, // Floating-point compare greater than
6071SH4_fcnvds, // Floating-point convert double to single precision
6072SH4_fcnvsd, // Floating-point convert single to double precision
6073SH4_fdiv, // Floating-point divide
6074SH4_fipr, // Floating-point inner product
6075SH4_fldi0, // Floating-point Load Immediate 0.0
6076SH4_fldi1, // Floating-point Load Immediate 1.0
6077SH4_flds, // Floating-point Load to system register
6078SH4_float, // Floating-point convert from integer
6079SH4_fmac, // Floating-point multiply and accumulate
6080SH4_fmov, // Floating-point move
6081SH4_fmov_s, // Floating-point move single precision
6082SH4_fmovex, // Floating-point move extension
6083SH4_fmul, // Floating-point multiply
6084SH4_fneg, // Floating-Point sign inversion
6085SH4_frchg, // FR-bit change
6086SH4_fschg, // SZ-bit change
6087SH4_fsqrt, // Floating-point square root
6088SH4_fsts, // Floating-point store system register
6089SH4_fsub, // Floating-point subtract
6090SH4_ftrc, // Floating-point truncate and convert to integer
6091SH4_ftrv, // Floating-point transform vector
6092SH4_ftstn, // Floating point square root reciprocal approximate
6093SH4_movca_l, // Move with cache block allocation
6094SH4_ocbi, // Operand Cache Block Invalidate
6095SH4_ocbp, // Operand Cache Block Purge
6096SH4_ocbwb, // Operand Cache Block Write Back
6097SH4_fsca, // Floating point sine and cosine approximate
6098
6099// SH-2a new instructions
6100
6101SH2a_band_b, // Bit And Byte Data
6102SH2a_bandnot_b, // Bit And Not Byte Data
6103SH2a_bclr, // Bit Clear
6104SH2a_bclr_b, // Bit Clear Byte Data
6105SH2a_bld, // Bit Load
6106SH2a_bld_b, // Bit Load Byte Data
6107SH2a_bldnot_b, // Bit Load Not Byte Data
6108SH2a_bor_b, // Bit Or Byte Data
6109SH2a_bornot_b, // Bit Or Not Byte Data
6110SH2a_bset, // Bit Set
6111SH2a_bset_b, // Bit Set Byte Data
6112SH2a_bst, // Bit Store
6113SH2a_bst_b, // Bit Store Byte Data
6114SH2a_bxor_b, // Bit Exclusive Or Byte Data
6115SH2a_clips_b, // Clip as Signed Byte
6116SH2a_clips_w, // Clip as Signed Word
6117SH2a_clipu_b, // Clip as Unsigned Byte
6118SH2a_clipu_w, // Clip as Unsigned Word
6119SH2a_divs, // Divide as Signed
6120SH2a_divu, // Divide as Unsigned
6121SH2a_jsr_n, // Jump to Subroutine with No delay slot
6122SH2a_ldbank, // Load Register Bank
6123SH2a_movi20, // 20-bit immediate data transfer
6124SH2a_movi20s, // 20-bit immediate data transfer, 8-bit left-shift
6125SH2a_movml_l, // Move Multi-register Lower part
6126SH2a_movmu_l, // Move Multi-register Upper part
6127SH2a_movrt, // Move Reverse T bit
6128SH2a_movu_b, // Move Structure Byte Data as Unsigned
6129SH2a_movu_w, // Move Structure Word Data as Unsigned
6130SH2a_mulr, // Multiply to Register
6131SH2a_nott, // Not T bit
6132SH2a_resbank, // Restore From Register Bank
6133SH2a_rts_n, // Return from Subroutine with No delay slot
6134SH2a_rtv_n, // Return to Value and from Subroutine with No delay slot
6135SH2a_stbank, // Store Register Bank
6136
6137// SH-4a new instructions
6138
6139SH4a_movco_l, // Move Conditional
6140SH4a_movli_l, // Move Linked
6141SH4a_movua_l, // Move Unaligned
6142SH4a_icbi, // Instruction Cache Block Invalidate
6143SH4a_prefi, // Prefetch Instruction Cache Block
6144SH4a_synco, // Synchronize Data Operation
6145SH4a_fsrra, // Floating Point Square Reciprocal Approximate
6146SH4a_fpchg, // PR-bit Change
6147
6149
6150 };
6151
6152/*
6153 * Interactive disassembler (IDA).
6154 * Zilog Z8 module
6155 *
6156 */
6157
6158
6159
6160enum
6161{
6162 Z8_null = 0, // Unknown Operation
6163
6164 Z8_adc, // Add with carry
6165 Z8_add, // Add
6166 Z8_and, // Logical AND
6167 Z8_call, // Call procedure
6168 Z8_ccf, // Complement carry flag
6169 Z8_clr, // Clear
6170 Z8_com, // Complement
6171 Z8_cp, // Compare
6172 Z8_da, // Decimal adjust
6173 Z8_dec, // Decrement
6174 Z8_decw, // Decrement word
6175 Z8_di, // Disable interrupts
6176 Z8_djnz, // Decrement and jump if non-zero
6177 Z8_ei, // Enable interrupts
6178 Z8_halt, // Enter HALT mode
6179 Z8_inc, // Increment
6180 Z8_incw, // Increment word
6181 Z8_iret, // Return from interrupt
6182 Z8_jp, // Unconditional jump
6183 Z8_jpcond, // Conditional jump
6184 Z8_jr, // Relative jump
6185 Z8_jrcond, // Conditional relative jump
6186 Z8_ld, // Load data
6187 Z8_ldc, // Load constant
6188 Z8_ldci, // Load constant with auto-increment
6189 Z8_lde, // Load external data
6190 Z8_ldei, // Load external data with auto-increment
6191 Z8_nop, // NOP
6192 Z8_or, // Logical OR
6193 Z8_pop, // Pop
6194 Z8_push, // Push
6195 Z8_rcf, // Reset carry flag
6196 Z8_ret, // Return
6197 Z8_rl, // Rotate left
6198 Z8_rlc, // Rotate left through carry
6199 Z8_rr, // Rotate right
6200 Z8_rrc, // Rotate right through carry
6201 Z8_sbc, // Subtract with carry
6202 Z8_scf, // Set carry flag
6203 Z8_sra, // Shift right arithmetic
6204 Z8_srp, // Set register pointer
6205 Z8_stop, // Enter STOP mode
6206 Z8_sub, // Subtract
6207 Z8_swap, // Swap nibbles
6208 Z8_tm, // Test under mask
6209 Z8_tcm, // Test complement under mask
6210 Z8_xor, // Logical EXCLUSIVE OR
6211 Z8_wdh, // Enable WATCH-DOG in HALT mode
6212 Z8_wdt, // Clear WATCH-DOG timer
6213
6215};
6216
6217/*
6218 * Interactive disassembler (IDA).
6219 * Copyright (c) 1990-2025 Hex-Rays
6220 * ALL RIGHTS RESERVED.
6221 *
6222 * Atmel AVR - 8-bit RISC processor
6223 *
6224 */
6225
6226
6227
6228enum
6229{
6230
6231AVR_null = 0, // Unknown Operation
6232
6233// ARITHMETIC AND LOGIC INSTRUCTIONS
6234AVR_add, // Add without Carry
6235AVR_adc, // Add with Carry
6236AVR_adiw, // Add Immediate to Word
6237AVR_sub, // Subtract without Carry
6238AVR_subi, // Subtract Immediate
6239AVR_sbc, // Subtract with Carry
6240AVR_sbci, // Subtract Immediate with Carry
6241AVR_sbiw, // Subtract Immediate from Word
6242AVR_and, // Logical AND
6243AVR_andi, // Logical AND with Immediate
6244AVR_or, // Logical OR
6245AVR_ori, // Logical OR with Immediate
6246AVR_eor, // Exclusive OR
6247AVR_com, // One's Complement
6248AVR_neg, // Two's Complement
6249AVR_sbr, // Set Bit(s) in Register
6250AVR_cbr, // Clear Bit(s) in Register
6251AVR_inc, // Increment
6252AVR_dec, // Decrement
6253AVR_tst, // Test for Zero or Minus
6254AVR_clr, // Clear Register
6255AVR_ser, // Set Register
6256AVR_cp, // Compare
6257AVR_cpc, // Compare with Carry
6258AVR_cpi, // Compare with Immediate
6259AVR_mul, // Multiply
6260
6261// BRANCH INSTRUCTIONS
6262AVR_rjmp, // Relative Jump
6263AVR_ijmp, // Indirect Jump to (Z)
6264AVR_jmp, // Jump
6265AVR_rcall, // Relative Call Subroutine
6266AVR_icall, // Indirect Call to (Z)
6267AVR_call, // Call Subroutine
6268AVR_ret, // Subroutine Return
6269AVR_reti, // Interrupt Return
6270AVR_cpse, // Compare, Skip if Equal
6271AVR_sbrc, // Skip if Bit in Register Cleared
6272AVR_sbrs, // Skip if Bit in Register Set
6273AVR_sbic, // Skip if Bit in I/O Register Cleared
6274AVR_sbis, // Skip if Bit in I/O Register Set
6275AVR_brbs, // Branch if Status Flag Set
6276AVR_brbc, // Branch if Status Flag Cleared
6277AVR_breq, // Branch if Equal
6278AVR_brne, // Branch if Not Equal
6279AVR_brcs, // Branch if Carry Set
6280AVR_brcc, // Branch if Carry Cleared
6281AVR_brsh, // Branch if Same or Higher
6282AVR_brlo, // Branch if Lower
6283AVR_brmi, // Branch if Minus
6284AVR_brpl, // Branch if Plus
6285AVR_brge, // Branch if Greater or Equal
6286AVR_brlt, // Branch if Less Than
6287AVR_brhs, // Branch if Half Carry Flag Set
6288AVR_brhc, // Branch if Half Carry Flag Cleared
6289AVR_brts, // Branch if T Flag Set
6290AVR_brtc, // Branch if T Flag Cleared
6291AVR_brvs, // Branch if Overflow Flag is Set
6292AVR_brvc, // Branch if Overflow Flag is Cleared
6293AVR_brie, // Branch if Interrupt Enabled
6294AVR_brid, // Branch if Interrupt Disabled
6295
6296// DATA TRANSFER INSTRUCTIONS
6297AVR_mov, // Copy Register
6298AVR_ldi, // Load Immediate
6299AVR_lds, // Load Direct
6300AVR_ld, // Load Indirect
6301AVR_ldd, // Load Indirect with Displacement
6302AVR_sts, // Store Direct to SRAM
6303AVR_st, // Store Indirect
6304AVR_std, // Store Indirect with Displacement
6305AVR_lpm, // Load Program Memory
6306AVR_in, // In Port
6307AVR_out, // Out Port
6308AVR_push, // Push Register on Stack
6309AVR_pop, // Pop Register from Stack
6310
6311// BIT AND BIT-TEST INSTRUCTIONS
6312AVR_lsl, // Logical Shift Left
6313AVR_lsr, // Logical Shift Right
6314AVR_rol, // Rotate Left Through Carry
6315AVR_ror, // Rotate Right Through Carry
6316AVR_asr, // Arithmetic Shift Right
6317AVR_swap, // Swap Nibbles
6318AVR_bset, // Flag Set
6319AVR_bclr, // Flag Clear
6320AVR_sbi, // Set Bit in I/O Register
6321AVR_cbi, // Clear Bit in I/O Register
6322AVR_bst, // Bit Store from Register to T
6323AVR_bld, // Bit load from T to Register
6324AVR_sec, // Set Carry
6325AVR_clc, // Clear Carry
6326AVR_sen, // Set Negative Flag
6327AVR_cln, // Clear Negative Flag
6328AVR_sez, // Set Zero Flag
6329AVR_clz, // Clear Zero Flag
6330AVR_sei, // Global Interrupt Enable
6331AVR_cli, // Global Interrupt Disable
6332AVR_ses, // Set Signed Test Flag
6333AVR_cls, // Clear Signed Test Flag
6334AVR_sev, // Set Two's Complement Overflow
6335AVR_clv, // Clear Two's Complement Overflow
6336AVR_set, // Set T in SREG
6337AVR_clt, // Clear T in SREG
6338AVR_seh, // Set Half Carry Flag in SREG
6339AVR_clh, // Clear Half Carry Flag in SREG
6340AVR_nop, // No Operation
6341AVR_sleep, // Sleep
6342AVR_wdr, // Watchdog Reset
6343
6344// New MegaAVR instructions
6345
6346AVR_elpm, // Extended Load Program Memory
6347AVR_espm, // Extended Store Program Memory
6348AVR_fmul, // Fractional Multiply Unsigned
6349AVR_fmuls, // Fractional Multiply Signed
6350AVR_fmulsu, // Fractional Multiply Signed with Unsigned
6351AVR_movw, // Copy Register Word
6352AVR_muls, // Multiply Signed
6353AVR_mulsu, // Multiply Signed with Unsigned
6354AVR_spm, // Store Program Memory
6355AVR_eicall, // Extended Indirect Call to Subroutine
6356AVR_eijmp, // Extended Indirect Jump
6357
6358// New XMega instructions
6359
6360AVR_des, // Data Encryption Standard
6361AVR_lac, // Load And Clear
6362AVR_las, // Load And Set
6363AVR_lat, // Load And Toggle
6364AVR_xch, // Exchange
6365
6367
6368 };
6369
6370/*
6371 * Interactive disassembler (IDA).
6372 * Copyright (c) 1990-2025 Hex-Rays
6373 * ALL RIGHTS RESERVED.
6374 *
6375 */
6376
6377
6378
6379
6380enum
6381{
6382MIPS_null = 0, // Unknown Operation
6383
6384// The core processor instructions
6385
6387MIPS_addu, // Add Unsigned
6389MIPS_dadd, // Doubleword Add
6390MIPS_daddu, // Doubleword Add Unsigned
6391MIPS_dsub, // Doubleword Subtract
6392MIPS_dsubu, // Doubleword Subtract Unsigned
6395MIPS_slt, // Set on Less Than
6396MIPS_sltu, // Set on Less Than Unsigned
6397MIPS_sub, // Subtract
6398MIPS_subu, // Subtract Unsigned
6399MIPS_xor, // Exclusive OR
6400MIPS_dsll, // Doubleword Shift Left Logical
6401MIPS_dsll32, // Doubleword Shift Left Logical + 32
6402MIPS_dsra, // Doubleword Shift Right Arithmetic
6403MIPS_dsra32, // Doubleword Shift Right Arithmetic + 32
6404MIPS_dsrl, // Doubleword Shift Right Logical
6405MIPS_dsrl32, // Doubleword Shift Right Logical + 32
6406MIPS_sll, // Shift Left Logical
6407MIPS_sra, // Shift Right Arithmetic
6408MIPS_srl, // Shift Right Logical
6409MIPS_dsllv, // Doubleword Shift Left Logical Variable
6410MIPS_dsrav, // Doubleword Shift Right Arithmetic Variable
6411MIPS_dsrlv, // Doubleword Shift Right Logical Variable
6412MIPS_sllv, // Shift Left Logical Variable
6413MIPS_srav, // Shift Right Arithmetic Variable
6414MIPS_srlv, // Shift Right Logical Variable
6415MIPS_addi, // Add Immediate
6416MIPS_addiu, // Add Immediate Unsigned
6417MIPS_daddi, // Doubleword Add Immediate
6418MIPS_daddiu, // Doubleword Add Immediate Unsigned
6419MIPS_slti, // Set on Less Than Immediate
6420MIPS_sltiu, // Set on Less Than Immediate Unsigned
6421MIPS_andi, // AND Immediate
6422MIPS_ori, // OR Immediate
6423MIPS_xori, // Exclusive OR Immediate
6424MIPS_teq, // Trap if Equal
6425MIPS_tge, // Trap if Greater Than or Equal
6426MIPS_tgeu, // Trap if Greater Than or Equal Unsigned
6427MIPS_tlt, // Trap if Less Than
6428MIPS_tltu, // Trap if Less Than Unsigned
6429MIPS_tne, // Trap if Not Equal
6430MIPS_cfc1, // Move Control From FPU
6431MIPS_cfc2, // Move Control From Coprocessor 2
6432MIPS_ctc1, // Move Control to FPU
6433MIPS_ctc2, // Move Control to Coprocessor 2
6434MIPS_dmfc0, // Doubleword Move From CP0
6435MIPS_qmfc2, // Quadword Move From CP2
6436MIPS_dmtc0, // Doubleword Move To CP0
6437MIPS_qmtc2, // Quadword Move To CP2
6438MIPS_mfc0, // Move from CP0
6439MIPS_mfc1, // Move from FPU
6440MIPS_mfc2, // Move from CP2
6441MIPS_mtc0, // Move to CP0
6442MIPS_mtc1, // Move to FPU
6443MIPS_mtc2, // Move to CP2
6444MIPS_teqi, // Trap if Equal Immediate
6445MIPS_tgei, // Trap if Greater Than or Equal Immediate
6446MIPS_tgeiu, // Trap if Greater Than or Equal Immediate Unsigned
6447MIPS_tlti, // Trap if Less Than Immediate
6448MIPS_tltiu, // Trap if Less Than Immediate Unsigned
6449MIPS_tnei, // Trap if Not Equal Immediate
6450MIPS_ddiv, // Doubleword Divide
6451MIPS_ddivu, // Doubleword Divide Unsigned
6452MIPS_div, // Divide
6453MIPS_divu, // Divide Unsigned
6454MIPS_dmult, // Doubleword Multiply
6455MIPS_dmultu, // Doubleword Multiply Unsigned
6456MIPS_mult, // Multiply
6457MIPS_multu, // Multiply Unsigned
6458MIPS_mthi, // Move To HI
6459MIPS_mtlo, // Move To LO
6460MIPS_mfhi, // Move From HI
6461MIPS_mflo, // Move From LO
6462MIPS_cop0, // Coprocessor 0 Operation
6463MIPS_cop1, // FPU Operation
6464MIPS_cop2, // Coprocessor 2 Operation
6465MIPS_break, // Break
6466MIPS_syscall, // System Call
6467MIPS_bc0f, // Branch on Coprocessor 0 False
6468MIPS_bc1f, // Branch on FPU False
6469MIPS_bc2f, // Branch on Coprocessor 2 False
6470MIPS_bc3f, // Branch on Coprocessor 3 False
6471MIPS_bc0fl, // Branch on Coprocessor 0 False Likely
6472MIPS_bc1fl, // Branch on FPU False Likely
6473MIPS_bc2fl, // Branch on Coprocessor 2 False Likely
6474MIPS_bc3fl, // Branch on Coprocessor 3 False Likely
6475MIPS_bc0t, // Branch on Coprocessor 0 True
6476MIPS_bc1t, // Branch on FPU True
6477MIPS_bc2t, // Branch on Coprocessor 2 True
6478MIPS_bc3t, // Branch on Coprocessor 3 True
6479MIPS_bc0tl, // Branch on Coprocessor 0 True Likely
6480MIPS_bc1tl, // Branch on FPU True Likely
6481MIPS_bc2tl, // Branch on Coprocessor 2 True Likely
6482MIPS_bc3tl, // Branch on Coprocessor 3 True Likely
6483MIPS_bgez, // Branch on Greater Than or Equal to Zero
6484MIPS_bgezal, // Branch on Greater Than or Equal to Zero And Link
6485MIPS_bgezall, // Branch on Greater Than or Equal to Zero And Link Likely
6486MIPS_bgezl, // Branch on Greater Than or Equal to Zero Likely
6487MIPS_bgtz, // Branch on Greater Than Zero
6488MIPS_bgtzl, // Branch on Greater Than Zero Likely
6489MIPS_blez, // Branch on Less Than or Equal to Zero
6490MIPS_blezl, // Branch on Less Than or Equal to Zero Likely
6491MIPS_bltz, // Branch on Less Than Zero
6492MIPS_bltzal, // Branch on Less Than Zero And Link
6493MIPS_bltzall, // Branch on Less Than Zero And Link Likely
6494MIPS_bltzl, // Branch on Less Than Zero Likely
6495MIPS_beq, // Branch on Equal
6496MIPS_beql, // Branch on Equal Likely
6497MIPS_bne, // Branch on Not Equal
6498MIPS_bnel, // Branch on Not Equal Likely
6499MIPS_jalr, // Jump And Link Register
6500MIPS_j, // Jump
6501MIPS_jr, // Jump Register
6502MIPS_jal, // Jump And Link
6503MIPS_jalx, // Jump And Link And Exchange
6504MIPS_cache, // Cache Operation
6505MIPS_lb, // Load Byte
6506MIPS_lbu, // Load Byte Unsigned
6507MIPS_ldl, // Load Doubleword Left
6508MIPS_ldr, // Load Doubleword Right
6509MIPS_lwl, // Load Word Left
6510MIPS_lwr, // Load Word Right
6511MIPS_ld, // Load Doubleword
6512MIPS_lld, // Load Linked Doubleword
6513MIPS_ldc1, // Load Double FPU
6514MIPS_ldc2, // Load Double Coprocessor 2
6515MIPS_ll, // Load Linked
6516MIPS_lw, // Load Word
6517MIPS_lwu, // Load Word Unsigned
6518MIPS_lh, // Load Halfword
6519MIPS_lhu, // Load Halfword Unsigned
6520MIPS_lui, // Load Upper Immediate
6521MIPS_lwc1, // Load Word to FPU
6522MIPS_lwc2, // Load Word to Coprocessor 2
6523MIPS_sb, // Store Byte
6524MIPS_sdl, // Store Doubleword Left
6525MIPS_sdr, // Store Doubleword Right
6526MIPS_swl, // Store Word Left
6527MIPS_swr, // Store Word Right
6528MIPS_scd, // Store Conditional Doubleword
6529MIPS_sd, // Store Doubleword
6530MIPS_sdc1, // Store Double FPU
6531MIPS_sdc2, // Store Double Coprocessor 2
6532MIPS_sc, // Store Conditional
6533MIPS_sw, // Store Word
6534MIPS_sh, // Store Halfword
6535MIPS_swc1, // Store Word from FPU
6536MIPS_swc2, // Store Word from Coprocessor 2
6538
6539// Coprocessor 0 instructions
6540
6541MIPS_eret, // Exception Return
6542MIPS_tlbp, // Probe TLB for Matching Entry
6543MIPS_tlbr, // Read Indexed TLB Entry
6544MIPS_tlbwi, // Write Indexed TLB Entry
6545MIPS_tlbwr, // Write Random TLB Entry
6546
6547
6548// Coprocessor 1 (FPU) instructions
6549
6550MIPS_fadd, // Floating-point Add
6551MIPS_fsub, // Floating-point Subtract
6552MIPS_fmul, // Floating-point Multiply
6553MIPS_fdiv, // Floating-point Divide
6554MIPS_fabs, // Floating-point Absolute Value
6555MIPS_fcvt_s, // Floating-point Convert to Single Fixed-Point Format
6556MIPS_fcvt_d, // Floating-point Convert to Double Floating-Point Format
6557MIPS_fcvt_w, // Floating-point Convert to Fixed-Point Format
6558MIPS_fcvt_l, // Floating-point Convert to Long Fixed-Point Format
6559MIPS_fround_l, // Floating-point Round to Long Fixed-Point Format
6560MIPS_ftrunc_l, // Floating-point Truncate to Long Fixed-Point Format
6561MIPS_fceil_l, // Floating-point Ceiling to Long Fixed-Point Format
6562MIPS_ffloor_l, // Floating-point Floor to Long Fixed-Point Format
6563MIPS_fround_w, // Floating-point Round to Single Fixed-Point Format
6564MIPS_ftrunc_w, // Floating-point Truncate to Single Fixed-Point Format
6565MIPS_fceil_w, // Floating-point Ceiling to Single Fixed-Point Format
6566MIPS_ffloor_w, // Floating-point Floor to Single Fixed-Point Format
6567MIPS_fmov, // Floating-point Move
6568MIPS_fneg, // Floating-point Negate
6569MIPS_fsqrt, // Floating-point Square Root
6570MIPS_fc_f, // Floating-point Compare
6571MIPS_fc_un, // Floating-point Compare
6572MIPS_fc_eq, // Floating-point Compare
6573MIPS_fc_ueq, // Floating-point Compare
6574MIPS_fc_olt, // Floating-point Compare
6575MIPS_fc_ult, // Floating-point Compare
6576MIPS_fc_ole, // Floating-point Compare
6577MIPS_fc_ule, // Floating-point Compare
6578MIPS_fc_sf, // Floating-point Compare
6579MIPS_fc_ngle, // Floating-point Compare
6580MIPS_fc_seq, // Floating-point Compare
6581MIPS_fc_ngl, // Floating-point Compare
6582MIPS_fc_lt, // Floating-point Compare
6583MIPS_fc_nge, // Floating-point Compare
6584MIPS_fc_le, // Floating-point Compare
6585MIPS_fc_ngt, // Floating-point Compare
6586
6587// Pseudo instructions
6588
6589MIPS_nop, // No operation
6590MIPS_mov, // Move register
6591MIPS_neg, // Negate
6592MIPS_negu, // Negate Unsigned
6593MIPS_bnez, // Branch on Not Zero
6594MIPS_bnezl, // Branch on Not Zero Likely
6595MIPS_beqz, // Branch on Zero
6596MIPS_beqzl, // Branch on Zero Likely
6597MIPS_b, // Branch Always
6598MIPS_bal, // Branch Always and Link
6599MIPS_li, // Load Immediate
6600MIPS_la, // Load Address
6601
6602// MIPS IV instructions
6603
6604MIPS_pref, // Prefetch
6605MIPS_ldxc1, // Load Doubleword Indexed to Floating Point
6606MIPS_lwxc1, // Load Word Indexed to Floating Point
6607MIPS_sdxc1, // Store Doubleword Indexed from Floating Point
6608MIPS_swxc1, // Store Word Indexed from Floating Point
6609MIPS_madd_s, // Floating-Point Multiply Add
6610MIPS_madd_d, // Floating-Point Multiply Add
6611MIPS_msub_s, // Floating-Point Multiply Subtract
6612MIPS_msub_d, // Floating-Point Multiply Subtract
6613MIPS_movf, // Move Conditional on FP False
6614MIPS_movt, // Move Conditional on FP True
6615MIPS_movn, // Move Conditional on Not Zero
6616MIPS_movz, // Move Conditional on Zero
6617MIPS_fmovf, // Floating-Point Move Conditional on FP False
6618MIPS_fmovt, // Floating-Point Move Conditional on FP True
6619MIPS_fmovn, // Floating-Point Move Conditional on Not Zero
6620MIPS_fmovz, // Floating-Point Move Conditional on Zero
6621MIPS_nmadd_s, // Floating-Pont Negative Multiply Add
6622MIPS_nmadd_d, // Floating-Pont Negative Multiply Add
6623MIPS_nmsub_s, // Floating-Pont Negative Multiply Subtract
6624MIPS_nmsub_d, // Floating-Pont Negative Multiply Subtract
6625MIPS_prefx, // Prefetch Indexed
6626MIPS_frecip, // Reciprocal Approximation
6627MIPS_frsqrt, // Reciprocal Suare Root Approximation
6628
6629// RSP instructions
6630
6631MIPS_lbv, // Load Byte into Vector
6632MIPS_lsv, // Load Short into Vector
6633MIPS_llv, // Load Word into Vector
6634MIPS_ldv, // Load Doubleword into Vector
6635MIPS_lqv, // Load Quadword into Vector
6636MIPS_lrv, // Load Rest Vector
6637MIPS_lpv, // Load Packed Vector
6638MIPS_luv, // Load Unpack Vector
6639MIPS_lhv, // Load Half Vector
6640MIPS_lfv, // Load Fourth Vector
6641MIPS_lwv, // Load Wrap Vector
6642MIPS_ltv, // Load Transpose Vector
6643MIPS_sbv, // Store Byte from Vector
6644MIPS_ssv, // Store Short from Vector
6645MIPS_slv, // Store Word from Vector
6646MIPS_sdv, // Store Doubleword from Vector
6647MIPS_sqv, // Store Quadword from Vector
6648MIPS_srv, // Store Rest Vector
6649MIPS_spv, // Store Packed Vector
6650MIPS_suv, // Store Unpack Vector
6651MIPS_shv, // Store Half Vector
6652MIPS_sfv, // Store Fourth Vector
6653MIPS_swv, // Store Wrap Vector
6654MIPS_stv, // Store Transpose Vector
6655MIPS_vmulf, // Vector (Frac) Multiply
6656MIPS_vmacf, // Vector (Frac) Multiply Accumulate
6657MIPS_vmulu, // Vector (Unsigned Frac) Multiply
6658MIPS_vmacu, // Vector (Unsigned Frac) Multiply Accumulate
6659MIPS_vrndp, // Vector DCT Round (+)
6660MIPS_vrndn, // Vector DCT Round (-)
6661MIPS_vmulq, // Vector (Integer) Multiply
6662MIPS_vmacq, // Vector (Integer) Multiply Accumulate
6663MIPS_vmudh, // Vector (High) Multiply
6664MIPS_vmadh, // Vector (High) Multiply Accumulate
6665MIPS_vmudm, // Vector (Mid-M) Multiply
6666MIPS_vmadm, // Vector (Mid-M) Multiply Accumulate
6667MIPS_vmudn, // Vector (Mid-N) Multiply
6668MIPS_vmadn, // Vector (Mid-N) Multiply Accumulate
6669MIPS_vmudl, // Vector (Low) Multiply
6670MIPS_vmadl, // Vector (Low) Multiply Accumulate
6671MIPS_vadd, // Vector Add
6672MIPS_vsub, // Vector Subtract
6673MIPS_vsut, // Vector SUT (vt - vs)
6674MIPS_vabs, // Vector Absolute Value
6675MIPS_vaddc, // Vector ADDC
6676MIPS_vsubc, // Vector SUBC
6677MIPS_vaddb, // Vector Add Byte
6678MIPS_vsubb, // Vector Subtract Byte
6679MIPS_vaccb, // Vector Add Byte/Add Accumulator
6680MIPS_vsucb, // Vector Subtract Byte/Add Accumulator
6681MIPS_vsad, // Vector SAD
6682MIPS_vsac, // Vector SAC
6683MIPS_vsum, // Vector SUM
6684MIPS_vsaw, // Vector SAW
6685MIPS_vlt, // Vector Less Than
6686MIPS_veq, // Vector Equal To
6687MIPS_vne, // Vector Not Equal To
6688MIPS_vge, // Vector Greater Than or Equal To
6689MIPS_vcl, // Vector Clip Low
6690MIPS_vch, // Vector Clip High
6691MIPS_vcr, // Vector 1's Complement Clip
6692MIPS_vmrg, // Vector Merge
6693MIPS_vand, // Vector Logical AND
6694MIPS_vnand, // Vector Logical NAND
6695MIPS_vor, // Vector Logical OR
6696MIPS_vnor, // Vector Logical NOR
6697MIPS_vxor, // Vector Logical Exclusive OR
6698MIPS_vnxor, // Vector Logical NOT Exclusive OR
6699MIPS_vnoop, // Vector No-Operation
6700MIPS_vmov, // Vector Scalar-Element Move
6701MIPS_vrcp, // Single Precision, Lookup Source, Write Result
6702MIPS_vrsq, // Single Precision, Lookup Source, Write Result
6703MIPS_vrcph, // Set Source, Write Previous Result
6704MIPS_vrsqh, // Set Source, Write Previous Result
6705MIPS_vrcpl, // Lookup Source and Previous, Write Result
6706MIPS_vrsql, // Lookup Source and Previous, Write Result
6707MIPS_vinst, // Vector Insert Triple (5/5/5/1)
6708MIPS_vextt, // Vector Extract Triple (5/5/5/1)
6709MIPS_vinsq, // Vector Insert Quad (4/4/4/4)
6710MIPS_vextq, // Vector Extract Quad (4/4/4/4)
6711MIPS_vinsn, // Vector Insert Nibble (4/4/4/4) Sign-Extended
6712MIPS_vextn, // Vector Insert Nibble (4/4/4/4) Sign-Extended
6713MIPS_cfc0, // Move Control From Coprocessor 0
6714MIPS_ctc0, // Move Control to Coprocessor 0
6715
6716// R5900 (PSX2 or PlayStation2) processor additional commands
6717
6718MIPS_mtsa, // Move To Shift Amount Register
6720MIPS_mfsa, // Move From Shift Amount Register
6721MIPS_mtsab, // Move Byte Count To Shift Amount Register
6722MIPS_mtsah, // Move Halfword Count To Shift Amount Register
6723MIPS_fadda, // Floating-point add to accumulator
6724MIPS_fsuba, // Floating-point subtract to accumulator
6725MIPS_fmula, // Floating-point multiply to accumulator
6726MIPS_fmadda, // Floating-point multiply and add to accumulator
6727MIPS_fmsuba, // Floating-point multiply and subtract from accumulator
6728MIPS_fmadd, // Floating-point multiply and add
6729MIPS_fmsub, // Floating-point multiply and subtract
6730MIPS_fmax, // Floating-point maximum
6731MIPS_fmin, // Floating-point minimum
6732MIPS_plzcw, // Parallel Leading Zero or One Count Word
6733MIPS_mthi1, // Move To HI1 Register
6734MIPS_mtlo1, // Move To LO1 Register
6735MIPS_pmthl_lw, // Parallel Move From HI/LO Register
6736MIPS_pmthi, // Parallel Move To HI Register
6737MIPS_pmtlo, // Parallel Move To LO Register
6738MIPS_div1, // Divide Pipeline 1
6739MIPS_divu1, // Divide Unsigned Pipeline 1
6740MIPS_pdivw, // Parallel Divide Word
6741MIPS_pdivuw, // Parallel Divide Unsigned Word
6742MIPS_pdivbw, // Parallel Divide Broadcast Word
6743MIPS_paddw, // Parallel Add Word
6744MIPS_pmaddw, // Parallel Multiply-Add Word
6745MIPS_mult1, // Multiply Pipeline 1
6746MIPS_multu1, // Multiply Unsigned Pipeline 1
6747MIPS_madd1, // Multiply-Add Pipeline 1
6748MIPS_maddu1, // Multiply-Add Unsigned Pipeline 1
6749MIPS_pmadduw, // Parallel Multiply-Add Unsigned Word
6750MIPS_psubw, // Parallel Subtract HalfWord
6751MIPS_pcgtw, // Parallel Compare for Greater Than Word
6752MIPS_psllvw, // Parallel Shift Left Logical Variable Word
6753MIPS_pceqw, // Parallel Compare for Equal Word
6754MIPS_pmaxw, // Parallel Maximize Word
6755MIPS_psrlvw, // Parallel Shift Right Logical Variable Word
6756MIPS_pminw, // Parallel Minimize Word
6757MIPS_psravw, // Parallel Shift Right Arithmetic Variable Word
6758MIPS_paddh, // Parallel Add Halfword
6759MIPS_pmsubw, // Parallel Multiply-Subtract Word
6760MIPS_padsbh, // Parallel Add/Subtract Halfword
6761MIPS_psubh, // Parallel Subtract Halfword
6762MIPS_pcgth, // Parallel Compare for Greater Than Halfword
6763MIPS_pceqh, // Parallel Compare for Equal Halfword
6764MIPS_pmaxh, // Parallel Maximize Halfword
6765MIPS_pminh, // Parallel Minimize Halfword
6766MIPS_paddb, // Parallel Add Byte
6767MIPS_psubb, // Parallel Subtract Byte
6768MIPS_pcgtb, // Parallel Compare for Greater Than Byte
6769MIPS_pinth, // Parallel Interleave Halfword
6770MIPS_pceqb, // Parallel Compare for Equal Byte
6771MIPS_pintoh, // Parallel Interleave Odd Halfword
6772MIPS_pmultw, // Parallel Multiply Word
6773MIPS_pmultuw, // Parallel Multiply Unsigned Word
6774MIPS_pcpyld, // Parallel Copy Lower Doubleword
6775MIPS_pcpyud, // Parallel Copy Upper Doubleword
6776MIPS_paddsw, // Parallel Add with Signed Saturation Word
6777MIPS_pmaddh, // Parallel Multiply-Add Halfword
6778MIPS_padduw, // Parallel Add with Unsigned Saturation Word
6779MIPS_psubsw, // Parallel Subtract with Signed Saturation Word
6780MIPS_phmadh, // Parallel Horizontal Multiply-Add Halfword
6781MIPS_psubuw, // Parallel Subtract with Unsigned Saturation Word
6782MIPS_pextlw, // Parallel Extend Lower from Word
6783MIPS_pand, // Parallel AND
6784MIPS_pextuw, // Parallel Extend Upper from Word
6785MIPS_por, // Parallel OR
6786MIPS_ppacw, // Paralle Pack to Word
6787MIPS_pxor, // Parallel XOR
6788MIPS_pnor, // Parallel NOR
6789MIPS_paddsh, // Parallel Add with Signed Saturation Halfword
6790MIPS_pmsubh, // Parallel Multiply-Subtract Halfword
6791MIPS_padduh, // Parallel Add with Unsigned Saturation Halfword
6792MIPS_psubsh, // Parallel Subtract with Signed Saturation Halfword
6793MIPS_phmsbh, // Parallel Horizontal Multiply-Subtract Halfword
6794MIPS_psubuh, // Parallel Subtract with Unsigned Saturation Halfword
6795MIPS_pextlh, // Parallel Extend Lower from Halfword
6796MIPS_pextuh, // Parallel Extend Upper from Halfword
6797MIPS_ppach, // Paralle Pack to Halfword
6798MIPS_paddsb, // Parallel Add with Signed Saturation Byte
6799MIPS_paddub, // Parallel Add with Unsigned Saturation Byte
6800MIPS_psubsb, // Parallel Subtract with Signed Saturation Byte
6801MIPS_psubub, // Parallel Subtract with Unsigned Saturation Byte
6802MIPS_pextlb, // Parallel Extend Lower from Byte
6803MIPS_pextub, // Parallel Extend Upper from Byte
6804MIPS_ppacb, // Paralle Pack to Byte
6805MIPS_qfsrv, // Quadword Funnel Shift Right Variable
6806MIPS_pmulth, // Parallel Multiply Halfword
6807MIPS_pabsw, // Parallel Absolute Word
6808MIPS_pabsh, // Parallel Absolute Halfword
6809MIPS_pexoh, // Parallel Exchange Odd Halfword
6810MIPS_pexch, // Parallel Exchange Center Halfword
6811MIPS_prevh, // Parallel Reverse Halfword
6812MIPS_pcpyh, // Parallel Copy Halfword
6813MIPS_pext5, // Parallel Extend Upper from 5 bits
6814MIPS_pexow, // Parallel Exchange Odd Word
6815MIPS_pexcw, // Parallel Exchange Center Word
6816MIPS_ppac5, // Parallel Pack to 5 bits
6817MIPS_prot3w, // Parallel Rotate 3 Words
6818MIPS_psllh, // Parallel Shift Left Logical Halfword
6819MIPS_psrlh, // Parallel Shift Right Logical Halfword
6820MIPS_psrah, // Parallel Shift Right Arithmetic Halfword
6821MIPS_psllw, // Parallel Shift Left Logical Word
6822MIPS_psrlw, // Parallel Shift Right Logical Word
6823MIPS_psraw, // Parallel Shift Right Arithmetic Word
6824MIPS_mfhi1, // Move From HI1 Register
6825MIPS_mflo1, // Move From LO1 Register
6826MIPS_pmfhi, // Parallel Move From HI Register
6827MIPS_pmflo, // Parallel Move From LO Register
6828MIPS_pmfhl, // Parallel Move From HI/LO Register
6829MIPS_lq, // Load Quadword
6830MIPS_sq, // Store Quadword
6831MIPS_lqc2, // Load Quadword Coprocessor 2
6832MIPS_sqc2, // Store Quadword Coprocessor 2
6833MIPS_madd_r5900, // Multiply/Add
6834MIPS_maddu_r5900, // Multiply/Add Unsigned
6836MIPS_mult3, // Multiply (3-operand)
6837MIPS_multu3, // Multiply Unsigned (3-operand)
6838
6839// 16-bit instructions
6840// NOTE: in previous version of IDA, all mips16 instructions
6841// had separate numbers, even for the instructions with the
6842// same mnemonics. Now same mnemonics have the same numbers,
6843// regardless of the encoding.
6844
6845MIPS_bteqz=439, // Branch on T Equal to Zero
6846MIPS_btnez, // Branch on T Not Equal to Zero
6847MIPS_cmp, // Compare
6848MIPS_cmpi, // Compare Immediate
6849MIPS_extend=458, // Extend
6850MIPS_move=473, // Move
6851MIPS_not=477, // Not
6852MIPS_dla=495, // Load 64-bit address
6853
6854// Instructions which belong to MIPS32 but which were not decoded by IDA
6855
6856MIPS_clo=498, // Count Leading Ones in Word
6857MIPS_clz, // Count Leading Zeros in Word
6858MIPS_madd, // Multiply/Add
6859MIPS_maddu, // Multiply/Add Unsigned
6860MIPS_msub, // Multiply and Subtract Word to Hi,Lo
6861MIPS_msubu, // Multiply and Subtract Word to Hi,Lo
6862MIPS_mul, // Multiply Word to GPR
6863MIPS_sdbbp, // Software Debug Breakpoint
6864MIPS_wait, // Enter Standby Mode
6865
6866// New instructions for MIPS32 Release 2.0
6867
6868MIPS_alnv_ps, // Floating Point Align Variable
6869MIPS_deret, // Debug Exception Return
6870MIPS_di, // Disable interrupts
6871MIPS_ehb, // Execution Hazard Barrier
6872MIPS_ei, // Enable interrupts
6873MIPS_ext, // Extract Bit Field
6874MIPS_fcvt_ps, // Floating Point Convert Pair to Paired Single
6875MIPS_fcvt_s_pl, // Floating Point Convert Pair Lower to Single Floating Point
6876MIPS_fcvt_s_pu, // Floating Point Convert Pair Upper to Single Floating Point
6877MIPS_ins, // Insert Bit Field
6878MIPS_jalr_hb, // Jump and Link Register with Hazard Barrier
6879MIPS_jr_hb, // Jump Register with Hazard Barrier
6880MIPS_luxc1, // Load Doubleword Indexed Unaligned to Floating Point
6881MIPS_madd_ps, // Floating Point Multiply Add
6882MIPS_mfhc1, // Move Word from High Half of Floating Point Register
6883MIPS_mfhc2, // Move Word from High Half of Coprocessor 2 Register
6884MIPS_msub_ps, // Floating Point Multiply Subtract
6885MIPS_mthc1, // Move Word to High Half of Floating Point Register
6886MIPS_mthc2, // Move Word to High Half of Coprocessor 2 Register
6887MIPS_nmadd_ps, // Floating Point Negative Multiply Add
6888MIPS_nmsub_ps, // Floating Point Negative Multiply Subtract
6889MIPS_pll, // Pair Lower Lower
6890MIPS_plu, // Pair Lower Upper
6891MIPS_pul, // Pair Upper Lower
6892MIPS_puu, // Pair Upper Upper
6893MIPS_rdhwr, // Read Hardware Register
6894MIPS_rdpgpr, // Read GPR from Previous Shadow Set
6895MIPS_rotr, // Rotate Word Right
6896MIPS_rotrv, // Rotate Word Right Variable
6897MIPS_seb, // Sign-Extend Byte
6898MIPS_seh, // Sign-Extend Halfword
6899MIPS_suxc1, // Store Doubleword Indexed Unaligned from Floating Point
6900MIPS_synci, // Synchronize Caches to Make Instruction Writes Effective
6901MIPS_wrpgpr, // Write GPR to Previous Shadow Set
6902MIPS_wsbh, // Word Swap Bytes Within Halfwords
6903
6904// Missing instructions - for some reason they were not supported before
6905
6906MIPS_dmfc1, // Doubleword Move From CP1
6907MIPS_dmtc1, // Doubleword Move To CP1
6908
6909// additional MIPS16e instructions
6910
6911MIPS_save, // Save Registers and Set Up Stack Frame
6912MIPS_restore, // Restore Registers and Deallocate Stack Frame
6913MIPS_jalrc, // Jump and Link Register, Compact
6914MIPS_jrc, // Jump Register, Compact
6915MIPS_sew, // Sign-Extend Word
6916MIPS_zeb, // Zero-Extend Byte
6917MIPS_zeh, // Zero-Extend Halfword
6918MIPS_zew, // Zero-Extend Word
6919
6920// extra pseudoinstructions
6921MIPS_ssnop, // Superscalar No operation
6922MIPS_li_s, // Load floating-point immediate
6923MIPS_li_d, // Load floating-point immediate
6924MIPS_dneg, // Negate
6925MIPS_dnegu, // Negate Unsigned
6926MIPS_pause, // Wait for the LLBit to clear
6927
6928// Missing instructions from MIPS64 Release 2
6929
6930MIPS_dclo, // Count Leading Ones in Doubleword
6931MIPS_dclz, // Count Leading Zeros in Doubleword
6932MIPS_dext, // Doubleword Extract Bit Field
6933MIPS_dextm, // Doubleword Extract Bit Field Middle
6934MIPS_dextu, // Doubleword Extract Bit Field Upper
6935MIPS_dins, // Doubleword Insert Bit Field
6936MIPS_dinsm, // Doubleword Insert Bit Field Middle
6937MIPS_dinsu, // Doubleword Insert Bit Field Upper
6938MIPS_dmfc2, // Doubleword Move From CP2
6939MIPS_dmtc2, // Doubleword Move To CP2
6940MIPS_drotr, // Doubleword Rotate Right
6941MIPS_drotr32, // Doubleword Rotate Right Plus 32
6942MIPS_drotrv, // Doubleword Rotate Right Variable
6943MIPS_dsbh, // Doubleword Swap Bytes Within Halfwords
6944MIPS_dshd, // Doubleword Swap Halfwords Within Doublewords
6945
6946// cnMIPS (Cavium Networks Octeon) instructions
6947
6948MIPS_baddu, // Unsigned Byte Add
6949MIPS_bbit0, // Branch on Bit Clear
6950MIPS_bbit032, // Branch on Bit Clear Plus 32
6951MIPS_bbit1, // Branch on Bit Set
6952MIPS_bbit132, // Branch on Bit Set Plus 32
6953MIPS_cins, // Clear and Insert a Bit Field
6954MIPS_cins32, // Clear and Insert a Bit Field Plus 32
6955MIPS_dmul, // Multiply Doubleword to GPR
6956MIPS_dpop, // Count Ones in a Doubleword
6957MIPS_exts, // Extract a Signed Bit Field
6958MIPS_exts32, // Extract a Signed Bit Field Plus 32
6959MIPS_mtm0, // Load Multiplier Register MPL0
6960MIPS_mtm1, // Load Multiplier Register MPL1
6961MIPS_mtm2, // Load Multiplier Register MPL2
6962MIPS_mtp0, // Load Multiplier Register P0
6963MIPS_mtp1, // Load Multiplier Register P1
6964MIPS_mtp2, // Load Multiplier Register P2
6965MIPS_pop, // Count Ones in a Word
6966MIPS_saa, // Store Atomic Add Word
6967MIPS_saad, // Store Atomic Add Double Word
6968MIPS_seq, // Set on Equal
6969MIPS_seqi, // Set on Equal Immediate
6970MIPS_sne, // Set on Not Equal
6971MIPS_snei, // Set on Not Equal Immediate
6972MIPS_synciobdma, // Synchronize IOBDMAs
6973MIPS_syncs, // Synchronize Special
6974MIPS_syncw, // Synchronize Stores
6975MIPS_syncws, // Synchronize Stores Special
6976MIPS_uld, // Unaligned Load Doubleword
6977MIPS_ulw, // Unaligned Load Word
6978MIPS_usd, // Unaligned Store Doubleword
6979MIPS_usw, // Unaligned Store Word
6980MIPS_v3mulu, // 192-bit x 64-bit Unsigned Multiply and Add
6981MIPS_vmm0, // 64-bit Unsigned Multiply and Add Move
6982MIPS_vmulu_cn, // 64-bit Unsigned Multiply and Add
6983
6984// NEC VR5432 and PSP instructions
6985
6986MIPS_dbreak, // Debug Break
6987MIPS_dret, // Debug Return
6988MIPS_mfdr, // Move from Debug Register
6989MIPS_mtdr, // Move to Debug Register
6990
6991// Allegrex (Sony PSP) instructions
6992
6993PSP_bitrev, // Bit reverse
6994PSP_max, // Maximum
6995PSP_min, // Minimum
6996PSP_mfic, // Move from interrupt controller
6997PSP_mtic, // Move to interrupt controller
6998PSP_wsbw, // Word Swap Bytes Within Word
6999PSP_sleep, // Sleep
7000
7001// Allegrex VFPU instructions
7002
7003PSP_lv, // Load Vector
7004PSP_lvl, // Load Vector Left
7005PSP_lvr, // Load Vector Right
7006PSP_sv, // Store Vector
7007PSP_svl, // Store Vector Left
7008PSP_svr, // Store Vector Right
7009PSP_mfv, // Move from VFPU
7010PSP_mtv, // Move to VFPU
7011PSP_mfvc, // Move Control from VFPU
7012PSP_mtvc, // Move Control to VFPU
7013PSP_bvf, // Branch on VFPU False
7014PSP_bvt, // Branch on VFPU True
7015PSP_bvfl, // Branch on VFPU False Likely
7016PSP_bvtl, // Branch on VFPU True Likely
7017PSP_vnop, // VFPU no-op
7018PSP_vflush, // VFPU flush
7019PSP_vsync, // VFPU sync
7020PSP_vabs, // Vector absolute value
7021PSP_vadd, // Vector add
7022PSP_vasin, // Vector arcsine
7023PSP_vavg, // Vector average
7024PSP_vbfy1, // IDCT butterfly 1
7025PSP_vbfy2, // IDCT butterfly 2
7026PSP_vc2i, // Vector convert signed char to integer
7027PSP_vcmovf, // Vector move if condition field is true
7028PSP_vcmovt, // Vector move if condition field is false
7029PSP_vcmp, // Vector compare and set condition fields
7030PSP_vcos, // Vector cosine
7031PSP_vcrs, // Vector cross multiplication: vd = [y1*z2, z1*x2, x1*y2]
7032PSP_vcrsp, // Vector cross product
7033PSP_vcst, // Set constant
7034PSP_vdet, // Determinant
7035PSP_vdiv, // Vector divide
7036PSP_vdot, // Vector dot product
7037PSP_vexp2, // Vector exponent of 2 (2^x)
7038PSP_vf2h, // Vector convert float single to half precision
7039PSP_vf2id, // Vector convert float to integer, round down
7040PSP_vf2in, // Vector convert float to integer, round to nearest
7041PSP_vf2iu, // Vector convert float to integer, round up
7042PSP_vf2iz, // Vector convert float to integer, round toward zero
7043PSP_vfad, // Vector funnel add (sum components)
7044PSP_vfim, // Set floating-point immediate
7045PSP_vh2f, // Vector convert float half to single precision
7046PSP_vhdp, // Vector homogenous dot product
7047PSP_vhtfm2, // Homogenous transform vector by matrix
7048PSP_vhtfm3, // Homogenous transform vector by matrix
7049PSP_vhtfm4, // Homogenous transform vector by matrix
7050PSP_vi2c, // Vector convert integer to signed char
7051PSP_vi2f, // Vector convert integer to float
7052PSP_vi2s, // Vector convert integer to signed short
7053PSP_vi2uc, // Vector convert integer to unsigned char
7054PSP_vi2us, // Vector convert integer to unsigned short
7055PSP_vidt, // Set vector to identity
7056PSP_viim, // Set integer immediate
7057PSP_vlgb, // Vector log binary (extract exponent)
7058PSP_vlog2, // Vector logarithm base 2
7059PSP_vmax, // Vector maximum values
7060PSP_vmfvc, // Vector move from control register
7061PSP_vmidt, // Set matrix to identity
7062PSP_vmin, // Vector minimum values
7063PSP_vmmov, // Move matrix
7064PSP_vmmul, // Matrix multiply
7065PSP_vmone, // Set matrix to ones
7066PSP_vmov, // Move vector
7067PSP_vmscl, // Scale matrix by
7068PSP_vmtvc, // Vector move to control register
7069PSP_vmul, // Vector multiply
7070PSP_vmzero, // Set matrix to zeroes
7071PSP_vneg, // Vector negate
7072PSP_vnrcp, // Vector negative reciprocal (-1/x)
7073PSP_vnsin, // Vector negative sine
7074PSP_vocp, // Vector one complement (1-x)
7075PSP_vone, // Set vector to ones
7076PSP_vpfxd, // Set prefix operation for vd
7077PSP_vpfxs, // Set prefix operation for vs
7078PSP_vpfxt, // Set prefix operation for vt
7079PSP_vqmul, // Quaternion multiply
7080PSP_vrcp, // Vector reciprocal (1/x)
7081PSP_vrexp2, // Vector reciprocal exponent of 2 (1/(2^x))
7082PSP_vrndf1, // Vector generate pseudorandom float (1.0 ~ 2.0)
7083PSP_vrndf2, // Vector generate pseudorandom float (2.0 ~ 4.0)
7084PSP_vrndi, // Vector generate pseudorandom integer
7085PSP_vrnds, // Vector set pseudorandom seed
7086PSP_vrot, // Rotate vector
7087PSP_vrsq, // Vector reciprocal square root (1/sqrt(x))
7088PSP_vs2i, // Vector convert signed short to integer
7089PSP_vsat0, // Vector saturate to range 0..1
7090PSP_vsat1, // Vector saturate to range -1..1
7091PSP_vsbn, // Vector scale by 2^x, round to nearest
7092PSP_vsbz, // Vector scale by 2^x, round towards zero
7093PSP_vscl, // Vector scale by
7094PSP_vscmp, // Vector set signed compare
7095PSP_vsge, // Vector set results for greater than or equal
7096PSP_vsgn, // Vector get sign
7097PSP_vsin, // Vector sine
7098PSP_vslt, // Vector set results for less
7099PSP_vsocp, // Vector split and one complement
7100PSP_vsqrt, // Vector square root
7101PSP_vsrt1, // Vector sort 1: vd = min(x,y), max(x,y), min(z,w), max(z,w)
7102PSP_vsrt2, // Vector sort 2: vd = min(x,w), max(y,z), min(y,z), max(x,w)
7103PSP_vsrt3, // Vector sort 3: vd = max(x,y), min(x,y), max(z,w), min(z,w)
7104PSP_vsrt4, // Vector sort 4: vd = max(x,w), max(y,z), min(y,z), max(x,w)
7105PSP_vsub, // Vector subtract
7106PSP_vt4444, // Transform color RGBA8888 to RGBA4444
7107PSP_vt5551, // Transform color RGBA8888 to RGBA5551
7108PSP_vt5650, // Transform color RGB888 to RGB565
7109PSP_vtfm2, // Transform vector by matrix
7110PSP_vtfm3, // Transform vector by matrix
7111PSP_vtfm4, // Transform vector by matrix
7112PSP_vuc2i, // Vector convert unsigned char to integer
7113PSP_vus2i, // Vector convert unsigned short to integer
7114PSP_vwbn, // Wrap BigNum
7115PSP_vzero, // VFPU set vector to zeroes
7116
7117// PSP Media Engine instructions
7118PSP_mfvme, // move from VME
7119PSP_mtvme, // move to VME
7120
7121// Toshiba TX19a instructions
7122MIPS_ac0iu, // Add Coprocessor 0 Immediate Unsigned
7123MIPS_bs1f, // Bit Search One Forward
7124MIPS_bfins, // Bit field insert
7125MIPS_addmiu, // Add Immediate to Memory Word
7126MIPS_sadd, // Saturated Add
7127MIPS_ssub, // Saturated Subtract
7128MIPS_btst, // Bit Test
7129MIPS_bclr, // Bit Clear
7130MIPS_bset, // Bit Set
7131MIPS_bins, // Bit Insert
7132MIPS_bext, // Bit Extract
7133MIPS_dive, // Divide, with Overflow Exception
7134MIPS_diveu, // Divide unsigned, with Overflow Exception
7135MIPS_min, // Minimum signed
7136MIPS_max, // Maximum signed
7137
7138MIPS_madd3, // Multiply/Add (3-operand)
7139MIPS_maddu3, // Multiply/Add Unsigned (3-operand)
7140MIPS_msub3, // Multiply and Subtract Word to Hi,Lo (3-operand)
7141MIPS_msubu3, // Multiply and Subtract Word to Hi,Lo (3-operand)
7142
7143// MIPS-MT
7144MIPS_dvpe, // Disable Virtual Processor Execution
7145MIPS_evpe, // Enable Virtual Processor Execution
7146MIPS_dmt, // Disable Multi-Threaded Execution
7147MIPS_emt, // Enable Multi-Threaded Execution
7148MIPS_fork, // Allocate and Schedule a New Thread
7149MIPS_yield, // Conditionally Deschedule or Deallocate the Current Thread
7150MIPS_mftr, // Move From Thread Context
7151MIPS_mftc0, // Move From Thread Context (CP0 register, low-order half)
7152MIPS_mfthc0, // Move From Thread Context (CP0 register, high-order half)
7153MIPS_mftlo, // Move From Thread Context (LO register)
7154MIPS_mfthi, // Move From Thread Context (HI register)
7155MIPS_mftacx, // Move From Thread Context (ACX register)
7156MIPS_mftdsp, // Move From Thread Context (DSPControl register)
7157MIPS_mfthc1, // Move From Thread Context (CP1 register, high-order half)
7158MIPS_mftc1, // Move From Thread Context (CP1 register, low-order half)
7159MIPS_cftc1, // Move From Thread Context (CP1 control register)
7160MIPS_mfthc2, // Move From Thread Context (CP2 register, high-order half)
7161MIPS_mftc2, // Move From Thread Context (CP2 register, low-order half)
7162MIPS_cftc2, // Move From Thread Context (CP2 control register)
7163MIPS_mftgpr, // Move From Thread Context (general-purpose register)
7164MIPS_mttr, // Move To Thread Context
7165MIPS_mttc0, // Move To Thread Context (CP0 register, low-order half)
7166MIPS_mtthc0, // Move To Thread Context (CP0 register, high-order half)
7167MIPS_mttlo, // Move To Thread Context (LO register)
7168MIPS_mtthi, // Move To Thread Context (HI register)
7169MIPS_mttacx, // Move To Thread Context (ACX register)
7170MIPS_mttdsp, // Move To Thread Context (DSPControl register)
7171MIPS_mtthc1, // Move To Thread Context (CP1 register, high-order half)
7172MIPS_mttc1, // Move To Thread Context (CP1 register, low-order half)
7173MIPS_cttc1, // Move To Thread Context (CP1 control register)
7174MIPS_mtthc2, // Move To Thread Context (CP2 register, high-order half)
7175MIPS_mttc2, // Move To Thread Context (CP2 register, low-order half)
7176MIPS_cttc2, // Move To Thread Context (CP2 control register)
7177MIPS_mttgpr, // Move To Thread Context (general-purpose register)
7178
7179// MIPS-3D
7180MIPS_faddr, // Floating-point Reduction Addition
7181MIPS_bc1any2f, // Branch on Any of Two Floating Point Condition Codes False
7182MIPS_bc1any2t, // Branch on Any of Two Floating Point Condition Codes True
7183MIPS_bc1any4f, // Branch on Any of Four Floating Point Condition Codes False
7184MIPS_bc1any4t, // Branch on Any of Four Floating Point Condition Codes True
7185MIPS_fcabs_f, // Floating-point Absolute Compare
7186MIPS_fcabs_un, // Floating-point Absolute Compare
7187MIPS_fcabs_eq, // Floating-point Absolute Compare
7188MIPS_fcabs_ueq, // Floating-point Absolute Compare
7189MIPS_fcabs_olt, // Floating-point Absolute Compare
7190MIPS_fcabs_ult, // Floating-point Absolute Compare
7191MIPS_fcabs_ole, // Floating-point Absolute Compare
7192MIPS_fcabs_ule, // Floating-point Absolute Compare
7193MIPS_fcabs_sf, // Floating-point Absolute Compare
7194MIPS_fcabs_ngle, // Floating-point Absolute Compare
7195MIPS_fcabs_seq, // Floating-point Absolute Compare
7196MIPS_fcabs_ngl, // Floating-point Absolute Compare
7197MIPS_fcabs_lt, // Floating-point Absolute Compare
7198MIPS_fcabs_nge, // Floating-point Absolute Compare
7199MIPS_fcabs_le, // Floating-point Absolute Compare
7200MIPS_fcabs_ngt, // Floating-point Absolute Compare
7201MIPS_fcvt_pw_ps, // Floating-point Convert Paired Single to Paired Word
7202MIPS_fcvt_ps_pw, // Floating-point Convert Paired Word to Paired Single
7203MIPS_fmulr, // Floating-point Reduction Multiply
7204MIPS_frecip1, // Floating-point Reduced Precision Reciprocal (Step 1)
7205MIPS_frecip2, // Floating-point Reduced Precision Reciprocal (Step 2)
7206MIPS_frsqrt1, // Floating-point Reduced Precision Reciprocal Square Root (Step 1)
7207MIPS_frsqrt2, // Floating-point Reduced Precision Reciprocal Square Root (Step 2)
7208
7209// smartMIPS
7210MIPS_lwxs, // Load Word Indexed, Scaled
7211MIPS_maddp, // Multiply and Add Polynomial Basis Word to Hi,Lo
7212MIPS_mflhxu, // Move from Extended Carry, Hi and Lo (Unsigned)
7213MIPS_mtlhx, // Move to Lo, Hi, and Extended Carry
7214MIPS_multp, // Multiply Binary Polynomial Basis Word
7215MIPS_pperm, // Partial Permutation of Word Data into ACX-Hi-Lo Accumulator
7216
7217// microMIPS
7218MIPS_jals, // Jump and Link, Short Delay Slot
7219MIPS_lwp, // Load Word Pair
7220MIPS_ldp, // Load Doubleword Pair
7221MIPS_lwm, // Load Word Multiple
7222MIPS_ldm, // Load Doubleword Multiple
7223MIPS_swp, // Store Word Pair
7224MIPS_sdp, // Store Doubleword Pair
7225MIPS_swm, // Store Word Multiple
7226MIPS_sdm, // Store Doubleword Multiple
7227MIPS_bnezc, // Branch on Not Equal to Zero, Compact
7228MIPS_bltzals, // Branch on Less Than Zero and Link, Short Delay-Slot
7229MIPS_beqzc, // Branch on Equal to Zero, Compact
7230MIPS_bgezals, // Branch on Greater Than or Equal to Zero and Link, Short Delay-Slot
7231MIPS_jraddiusp, // Jump Register, Adjust Stack Pointer
7232MIPS_jalrs, // Jump and Link Register, Short Delay Slot
7233MIPS_jalrs_hb, // Jump and Link Register with Hazard Barrier, Short Delay-Slot
7234MIPS_movep, // Move a Pair of Registers
7235
7236// had been missed; 64-bit MIPS pseudoinstruction
7237MIPS_dli, // Doubleword Load Immediate
7238
7239// DSP ASE instructions
7240MIPS_insv, // Insert Bit Field Variable
7241MIPS_dinsv, // Doubleword Insert Variable Bit Field
7242MIPS_bposge32, // Branch on Greater Than or Equal To Value 32 in DSPControl Pos Field
7243MIPS_bposge64, // Branch on Greater Than or Equal To Value 64 in DSPControl Pos Field
7244MIPS_addu_qb, // Unsigned Add Quad Byte Vectors
7245MIPS_addu_ph, // Unsigned Add Integer Halfwords
7246MIPS_addsc, // Add Signed Word and Set Carry Bit
7247MIPS_subu_qb, // Subtract Unsigned Quad Byte Vector
7248MIPS_subu_ph, // Subtract Unsigned Integer Halfwords
7249MIPS_addwc, // Add Word with Carry Bit
7250MIPS_addq_ph, // Add Fractional Halfword Vectors
7251MIPS_modsub, // Modular Subtraction on an Index Value
7252MIPS_subq_ph, // Subtract Fractional Halfword Vector
7253MIPS_addu_s_qb, // Unsigned Add Quad Byte Vectors
7254MIPS_addu_s_ph, // Unsigned Add Integer Halfwords
7255MIPS_raddu_w_qb, // Unsigned Reduction Add Vector Quad Bytes
7256MIPS_muleq_s_w_phl, // Multiply Vector Fractional Left Halfwords to Expanded Width Products
7257MIPS_subu_s_qb, // Subtract Unsigned Quad Byte Vector
7258MIPS_subu_s_ph, // Subtract Unsigned Integer Halfwords
7259MIPS_muleq_s_w_phr, // Multiply Vector Fractional Right Halfwords to Expanded Width Products
7260MIPS_muleu_s_ph_qbl, // Multiply Unsigned Vector Left Bytes by Halfwords to Halfword Products
7261MIPS_addq_s_ph, // Add Fractional Halfword Vectors
7262MIPS_addq_s_w, // Add Fractional Words
7263MIPS_mulq_s_ph, // Multiply Vector Fractional Half-Words to Same Size Products
7264MIPS_muleu_s_ph_qbr, // Multiply Unsigned Vector Right Bytes with halfwords to Half Word Products
7265MIPS_subq_s_ph, // Subtract Fractional Halfword Vector
7266MIPS_subq_s_w, // Subtract Fractional Word
7267MIPS_mulq_rs_ph, // Multiply Vector Fractional Halfwords to Fractional Halfword Products
7268MIPS_addu_ob, // Unsigned Add Octal Byte Vectors
7269MIPS_subu_ob, // Subtract Unsigned Octal Byte Vector
7270MIPS_addq_qh, // Add Fractional Halfword Vectors
7271MIPS_addq_pw, // Add Fractional Word Vectors
7272MIPS_subq_qh, // Subtract Fractional Halfword Vector
7273MIPS_subq_pw, // Subtract Fractional Word Vector
7274MIPS_addu_s_ob, // Unsigned Add Octal Byte Vectors
7275MIPS_raddu_l_ob, // Unsigned Reduction Add Vector Octal Bytes
7276MIPS_muleq_s_pw_qhl, // Multiply Vector Fractional Left Halfwords to Expanded Width Products
7277MIPS_subu_s_ob, // Subtract Unsigned Octal Byte Vector
7278MIPS_muleq_s_pw_qhr, // Multiply Vector Fractional Right Halfwords to Expanded Width Products
7279MIPS_muleu_s_qh_obl, // Multiply Unsigned Vector Left Bytes by Halfwords to Halfword Products
7280MIPS_addq_s_qh, // Add Fractional Halfword Vectors
7281MIPS_addq_s_pw, // Add Fractional Word Vectors
7282MIPS_muleu_s_qh_obr, // Multiply Unsigned Vector Right Bytes by Halfwords to Halfword Products
7283MIPS_subq_s_qh, // Subtract Fractional Halfword Vector
7284MIPS_subq_s_pw, // Subtract Fractional Word Vector
7285MIPS_mulq_rs_qh, // Multiply Vector Fractional Halfwords to Fractional Halfword Products
7286MIPS_cmpu_eq_qb, // Compare Vectors of Unsigned Byte Values
7287MIPS_cmp_eq_ph, // Compare Vectors of Signed Integer Halfword Values
7288MIPS_cmpgdu_eq_qb, // Compare Unsigned Vector of Four Bytes and Write Result to GPR and DSPControl
7289MIPS_cmpu_lt_qb, // Compare Vectors of Unsigned Byte Values
7290MIPS_cmp_lt_ph, // Compare Vectors of Signed Integer Halfword Values
7291MIPS_cmpgdu_lt_qb, // Compare Unsigned Vector of Four Bytes and Write Result to GPR and DSPControl
7292MIPS_cmpu_le_qb, // Compare Vectors of Unsigned Byte Values
7293MIPS_cmp_le_ph, // Compare Vectors of Signed Integer Halfword Values
7294MIPS_cmpgdu_le_qb, // Compare Unsigned Vector of Four Bytes and Write Result to GPR and DSPControl
7295MIPS_pick_qb, // Pick a Vector of Byte Values Based on Condition Code Bits
7296MIPS_pick_ph, // Pick a Vector of Halfword Values Based on Condition Code Bits
7297MIPS_cmpgu_eq_qb, // Compare Vectors of Unsigned Byte Values and Write Results to a GPR
7298MIPS_precrq_qb_ph, // Precision Reduce Four Fractional Halfwords to Four Bytes
7299MIPS_precrq_ph_w, // Precision Reduce Fractional Words to Fractional Halfwords
7300MIPS_cmpgu_lt_qb, // Compare Vectors of Unsigned Byte Values and Write Results to a GPR
7301MIPS_precr_qb_ph, // Precision Reduce Four Integer Halfwords to Four Bytes
7302MIPS_precrq_rs_ph_w, // Precision Reduce Fractional Words to Halfwords With Rounding and Saturation
7303MIPS_cmpgu_le_qb, // Compare Vectors of Unsigned Byte Values and Write Results to a GPR
7304MIPS_packrl_ph, // Pack a Vector of Halfwords from Vector Halfword Sources
7305MIPS_precr_sra_ph_w, // Precision Reduce Two Integer Words to Halfwords after a Right Shift
7306MIPS_precrqu_s_qb_ph, // Precision Reduce Fractional Halfwords to Unsigned Bytes With Saturation
7307MIPS_precr_sra_r_ph_w, // Precision Reduce Two Integer Words to Halfwords after a Right Shift
7308MIPS_cmpu_eq_ob, // Compare Vectors of Unsigned Byte Values
7309MIPS_cmp_eq_qh, // Compare Vectors of Signed Integer Halfword Values
7310MIPS_cmp_eq_pw, // Compare Vectors of Signed Integer Word Values
7311MIPS_cmpu_lt_ob, // Compare Vectors of Unsigned Byte Values
7312MIPS_cmp_lt_qh, // Compare Vectors of Signed Integer Halfword Values
7313MIPS_cmp_lt_pw, // Compare Vectors of Signed Integer Word Values
7314MIPS_cmpu_le_ob, // Compare Vectors of Unsigned Byte Values
7315MIPS_cmp_le_qh, // Compare Vectors of Signed Integer Halfword Values
7316MIPS_cmp_le_pw, // Compare Vectors of Signed Integer Word Values
7317MIPS_pick_ob, // Pick a Vector of Byte Values Based on Condition Code Bits
7318MIPS_pick_qh, // Pick a Vector of Halfword Values Based on Condition Code Bits
7319MIPS_pick_pw, // Pick a Vector of Word Values Based on Condition Code Bits
7320MIPS_cmpgu_eq_ob, // Compare Vectors of Unsigned Byte Values and Write Results to a GPR
7321MIPS_precrq_ob_qh, // Precision Reduce Fractional Halfwords to Fractional Bytes
7322MIPS_precrq_qh_pw, // Precision Reduce Fractional Words to Fractional Halfwords
7323MIPS_precrq_pw_l, // Precision Reduce Fractional Doublewords to Fractional Words
7324MIPS_cmpgu_lt_ob, // Compare Vectors of Unsigned Byte Values and Write Results to a GPR
7325MIPS_precrq_rs_qh_pw, // Precision Reduce Fractional Words to Halfwords With Rounding and Saturation
7326MIPS_cmpgu_le_ob, // Compare Vectors of Unsigned Byte Values and Write Results to a GPR
7327MIPS_packrl_pw, // Pack a Vector of Words from Vector Word Sources
7328MIPS_precrqu_s_ob_qh, // Precision Reduce Fractional Halfwords to Unsigned Bytes With Saturation
7329MIPS_absq_s_qb, // Find Absolute Value of Four Fractional Byte Values
7330MIPS_absq_s_ph, // Find Absolute Value of Two Fractional Halfwords
7331MIPS_absq_s_w, // Find Absolute Value of Fractional Word
7332MIPS_repl_qb, // Replicate Immediate Integer into all Vector Element Positions
7333MIPS_repl_ph, // Replicate Immediate Integer into all Vector Element Positions
7334MIPS_replv_qb, // Replicate Byte into all Vector Element Positions
7335MIPS_replv_ph, // Replicate a Halfword into all Vector Element Positions
7336MIPS_bitrev, // Bit-Reverse Halfword
7337MIPS_precequ_ph_qbl, // Precision Expand two Unsigned Bytes to Fractional Halfword Values
7338MIPS_preceq_w_phl, // Precision Expand Fractional Halfword to Fractional Word Value
7339MIPS_preceu_ph_qbl, // Precision Expand Two Unsigned Bytes to Unsigned Halfword Values
7340MIPS_precequ_ph_qbr, // Precision Expand two Unsigned Bytes to Fractional Halfword Values
7341MIPS_preceq_w_phr, // Precision Expand Fractional Halfword to Fractional Word Value
7342MIPS_preceu_ph_qbr, // Precision Expand two Unsigned Bytes to Unsigned Halfword Values
7343MIPS_precequ_ph_qbla, // Precision Expand two Unsigned Bytes to Fractional Halfword Values
7344MIPS_preceu_ph_qbla, // Precision Expand Two Unsigned Bytes to Unsigned Halfword Values
7345MIPS_precequ_ph_qbra, // Precision Expand two Unsigned Bytes to Fractional Halfword Values
7346MIPS_preceu_ph_qbra, // Precision Expand Two Unsigned Bytes to Unsigned Halfword Values
7347MIPS_absq_s_qh, // Find Absolute Value of Four Fractional Halfwords
7348MIPS_absq_s_pw, // Find Absolute Value of Two Fractional Words
7349MIPS_repl_ob, // Replicate Immediate Integer into all Vector Element Positions
7350MIPS_repl_qh, // Replicate Immediate Integer into all Vector Element Positions
7351MIPS_repl_pw, // Replicate Immediate Integer into all Vector Element Positions
7352MIPS_replv_ob, // Replicate Byte into all Vector Element Positions
7353MIPS_replv_qh, // Replicate a Halfword into all Vector Element Positions
7354MIPS_replv_pw, // Replicate Word into all Vector Element Positions
7355MIPS_precequ_pw_qhl, // Precision Expand two Unsigned Bytes to Fractional Halfword Values
7356MIPS_preceq_pw_qhl, // Precision Expand Two Fractional Halfwords to Fractional Word Values
7357MIPS_preceq_s_l_pwl, // Precision Expand Fractional Word to Fractional Doubleword Value
7358MIPS_preceu_qh_obl, // Precision Expand Four Unsigned Bytes to Unsigned Halfword Values
7359MIPS_precequ_pw_qhr, // Precision Expand two Unsigned Bytes to Fractional Halfword Values
7360MIPS_preceq_pw_qhr, // Precision Expand Two Fractional Halfwords to Fractional Word Values
7361MIPS_preceq_s_l_pwr, // Precision Expand Fractional Word to Fractional Doubleword Value
7362MIPS_preceu_qh_obr, // Precision Expand Four Unsigned Bytes to Unsigned Halfword Values
7363MIPS_precequ_pw_qhla, // Precision Expand two Unsigned Bytes to Fractional Halfword Values
7364MIPS_preceq_pw_qhla, // Precision Expand Two Fractional Halfwords to Fractional Word Values
7365MIPS_preceu_qh_obla, // Precision Expand Four Unsigned Bytes to Unsigned Halfword Values
7366MIPS_precequ_pw_qhra, // Precision Expand two Unsigned Bytes to Fractional Halfword Values
7367MIPS_preceq_pw_qhra, // Precision Expand Two Fractional Halfwords to Fractional Word Values
7368MIPS_preceu_qh_obra, // Precision Expand Four Unsigned Bytes to Unsigned Halfword Values
7369MIPS_shll_qb, // Shift Left Logical Vector Quad Bytes
7370MIPS_shll_ph, // Shift Left Logical Vector Pair Halfwords
7371MIPS_shrl_qb, // Shift Right Logical Vector Quad Bytes
7372MIPS_shra_ph, // Shift Right Arithmetic Vector Pair Halfwords
7373MIPS_shrl_ph, // Shift Right Logical Two Halfwords
7374MIPS_shllv_qb, // Shift Left Logical Variable Vector Quad Bytes
7375MIPS_shllv_ph, // Shift Left Logical Variable Vector Pair Halfwords
7376MIPS_shrlv_qb, // Shift Right Logical Variable Vector Quad Bytes
7377MIPS_shrav_ph, // Shift Right Arithmetic Variable Vector Pair Halfwords
7378MIPS_shrlv_ph, // Shift Variable Right Logical Pair of Halfwords
7379MIPS_shra_qb, // Shift Right Arithmetic Vector of Four Bytes
7380MIPS_shll_s_ph, // Shift Left Logical Vector Pair Halfwords
7381MIPS_shll_s_w, // Shift Left Logical Word with Saturation
7382MIPS_shra_r_qb, // Shift Right Arithmetic Vector of Four Bytes
7383MIPS_shra_r_ph, // Shift Right Arithmetic Vector Pair Halfwords
7384MIPS_shra_r_w, // Shift Right Arithmetic Word with Rounding
7385MIPS_shrav_qb, // Shift Right Arithmetic Variable Vector of Four Bytes
7386MIPS_shllv_s_ph, // Shift Left Logical Variable Vector Pair Halfwords
7387MIPS_shllv_s_w, // Shift Left Logical Variable Vector Word
7388MIPS_shrav_r_qb, // Shift Right Arithmetic Variable Vector of Four Bytes
7389MIPS_shrav_r_ph, // Shift Right Arithmetic Variable Vector Pair Halfwords
7390MIPS_shrav_r_w, // Shift Right Arithmetic Variable Word with Rounding
7391MIPS_shll_ob, // Shift Left Logical Vector Octal Bytes
7392MIPS_shll_qh, // Shift Left Logical Vector Quad Halfwords
7393MIPS_shll_pw, // Shift Left Logical Vector Pair Words
7394MIPS_shrl_ob, // Shift Right Logical Vector Octal Bytes
7395MIPS_shra_qh, // Shift Right Arithmetic Vector Quad Halfwords
7396MIPS_shra_pw, // Shift Right Arithmetic Vector Pair Words
7397MIPS_shllv_ob, // Shift Left Logical Variable Vector Octal Bytes
7398MIPS_shllv_qh, // Shift Left Logical Variable Vector Quad Halfwords
7399MIPS_shllv_pw, // Shift Left Logical Variable Vector Pair Words
7400MIPS_shrlv_ob, // Shift Right Logical Variable Vector Octal Bytes
7401MIPS_shrav_qh, // Shift Right Arithmetic Variable Vector Quad Halfwords
7402MIPS_shrav_pw, // Shift Right Arithmetic Variable Vector Pair Words
7403MIPS_shll_s_qh, // Shift Left Logical Vector Quad Halfwords
7404MIPS_shll_s_pw, // Shift Left Logical Vector Pair Words
7405MIPS_shra_r_qh, // Shift Right Arithmetic Vector Quad Halfwords
7406MIPS_shra_r_pw, // Shift Right Arithmetic Vector Pair Words
7407MIPS_shllv_s_qh, // Shift Left Logical Variable Vector Quad Halfwords
7408MIPS_shllv_s_pw, // Shift Left Logical Variable Vector Pair Words
7409MIPS_shrav_r_qh, // Shift Right Arithmetic Variable Vector Quad Halfwords
7410MIPS_shrav_r_pw, // Shift Right Arithmetic Variable Vector Pair Words
7411MIPS_lwx, // Load Word Indexed
7412MIPS_ldx, // Load Doubleword Indexed
7413MIPS_lhx, // Load Halfword Indexed
7414MIPS_lbux, // Load Unsigned Byte Indexed
7415MIPS_dpa_w_ph, // Dot Product with Accumulate on Vector Integer Halfword Elements
7416MIPS_dpax_w_ph, // Cross Dot Product with Accumulate on Vector Integer Halfword Elements
7417MIPS_maq_sa_w_phl, // Multiply with Accumulate Single Vector Fractional Halfword Element
7418MIPS_dpaqx_s_w_ph, // Cross Dot Product with Accumulation on Fractional Halfword Elements
7419MIPS_dps_w_ph, // Dot Product with Subtract on Vector Integer Half-Word Elements
7420MIPS_dpsx_w_ph, // Cross Dot Product with Subtract on Vector Integer Halfword Elements
7421MIPS_dpsqx_s_w_ph, // Cross Dot Product with Subtraction on Fractional Halfword Elements
7422MIPS_mulsa_w_ph, // Multiply and Subtract Vector Integer Halfword Elements and Accumulate
7423MIPS_maq_sa_w_phr, // Multiply with Accumulate Single Vector Fractional Halfword Element
7424MIPS_dpaqx_sa_w_ph, // Cross Dot Product with Accumulation on Fractional Halfword Elements
7425MIPS_dpau_h_qbl, // Dot Product with Accumulate on Vector Unsigned Byte Elements
7426MIPS_dpsu_h_qbl, // Dot Product with Subtraction on Vector Unsigned Byte Elements
7427MIPS_dpsqx_sa_w_ph, // Cross Dot Product with Subtraction on Fractional Halfword Elements
7428MIPS_dpaq_s_w_ph, // Dot Product with Accumulation on Fractional Halfword Elements
7429MIPS_dpaq_sa_l_w, // Dot Product with Accumulate on Fractional Word Element
7430MIPS_maq_s_w_phl, // Multiply with Accumulate Single Vector Fractional Halfword Element
7431MIPS_dpsq_s_w_ph, // Dot Product with Subtraction on Fractional Halfword Elements
7432MIPS_dpsq_sa_l_w, // Dot Product with Subtraction on Fractional Word Element
7433MIPS_mulsaq_s_w_ph, // Multiply And Subtract Vector Fractional Halfwords And Accumulate
7434MIPS_maq_s_w_phr, // Multiply with Accumulate Single Vector Fractional Halfword Element
7435MIPS_dpau_h_qbr, // Dot Product with Accumulate on Vector Unsigned Byte Elements
7436MIPS_dpsu_h_qbr, // Dot Product with Subtraction on Vector Unsigned Byte Elements
7437MIPS_maq_sa_w_qhll, // Multiply with Accumulate Single Vector Fractional Halfword Element
7438MIPS_maq_sa_w_qhlr, // Multiply with Accumulate Single Vector Fractional Halfword Element
7439MIPS_dmadd, // Multiply Vector Words And Accumulate
7440MIPS_dmsub, // Multiply Vector Words And Subtract From Accumulator
7441MIPS_maq_sa_w_qhrl, // Multiply with Accumulate Single Vector Fractional Halfword Element
7442MIPS_dpau_h_obl, // Dot Product with Accumulate on Vector Unsigned Byte Elements
7443MIPS_dpsu_h_obl, // Dot Product with Subtract on Vector Unsigned Byte Elements
7444MIPS_maq_sa_w_qhrr, // Multiply with Accumulate Single Vector Fractional Halfword Element
7445MIPS_dpaq_s_w_qh, // Dot Product with Accumulation on Fractional Halfword Elements
7446MIPS_dpaq_sa_l_pw, // Dot Product with Accumulate on Fractional Word Elements
7447MIPS_maq_s_w_qhll, // Multiply with Accumulate Single Vector Fractional Halfword Element
7448MIPS_maq_s_l_pwl, // Multiply with Accumulate Single Vector Fractional Word Element
7449MIPS_dpsq_s_w_qh, // Dot Product with Subtraction on Fractional Halfword Elements
7450MIPS_dpsq_sa_l_pw, // Dot Product with Subtraction on Fractional Word Elements
7451MIPS_maq_s_w_qhlr, // Multiply with Accumulate Single Vector Fractional Halfword Element
7452MIPS_dmaddu, // Multiply Vector Unsigned Words And Accumulate
7453MIPS_mulsaq_s_w_qh, // Multiply And Subtract Vector Fractional Halfwords And Accumulate
7454MIPS_mulsaq_s_l_pw, // Multiply And Subtract Vector Fractional Words And Accumulate
7455MIPS_maq_s_w_qhrl, // Multiply with Accumulate Single Vector Fractional Halfword Element
7456MIPS_maq_s_l_pwr, // Multiply with Accumulate Single Vector Fractional Word Element
7457MIPS_dpau_h_obr, // Dot Product with Accumulate on Vector Unsigned Byte Elements
7458MIPS_dpsu_h_obr, // Dot Product with Subtract on Vector Unsigned Byte Elements
7459MIPS_maq_s_w_qhrr, // Multiply with Accumulate Single Vector Fractional Halfword Element
7460MIPS_dmsubu, // Multiply Vector Unsigned Words And Subtract From Accumulator
7461MIPS_extr_w, // Extract Word Value With Right Shift From Accumulator to GPR
7462MIPS_extrv_w, // Extract Word Value With Variable Right Shift From Accumulator to GPR
7463MIPS_extp, // Extract Fixed Bitfield From Arbitrary Position in Accumulator to GPR
7464MIPS_extpdp, // Extract Fixed Bitfield From Arbitrary Position in Accumulator to GPR and Decrement Pos
7465MIPS_rddsp, // Read DSPControl Register Fields to a GPR
7466MIPS_shilo, // Shift an Accumulator Value Leaving the Result in the Same Accumulator
7467MIPS_extpv, // Extract Variable Bitfield From Arbitrary Position in Accumulator to GPR
7468MIPS_extpdpv, // Extract Variable Bitfield From Arbitrary Position in Accumulator to GPR and Decrement Pos
7469MIPS_wrdsp, // Write Fields to DSPControl Register from a GPR
7470MIPS_shilov, // Variable Shift of Accumulator Value Leaving the Result in the Same Accumulator
7471MIPS_extr_r_w, // Extract Word Value With Right Shift And Rounding From Accumulator to GPR
7472MIPS_extrv_r_w, // Extract Word Value With Variable Right Shift And Rounding From Accumulator to GPR
7473MIPS_extr_rs_w, // Extract Word Value With Right Shift From Accumulator to GPR
7474MIPS_extr_s_h, // Extract Halfword Value From Accumulator to GPR With Right Shift and Saturate
7475MIPS_extrv_rs_w, // Extract Word Value With Variable Right Shift From Accumulator to GPR
7476MIPS_extrv_s_h, // Extract Halfword Value Variable From Accumulator to GPR With Right Shift and Saturate
7477MIPS_mthlip, // Copy LO to HI and a GPR to LO and Increment Pos by 32
7478MIPS_dextr_w, // Extract Word Value With Right Shift From Accumulator to GPR
7479MIPS_dextr_l, // Extract Doubleword Value With Right Shift From Accumulator to GPR
7480MIPS_dextrv_w, // Extract Word Value With Variable Right Shift From Accumulator to GPR
7481MIPS_dextrv_l, // Extract Doubleword Value With Variable Right Shift From Accumulator to GPR
7482MIPS_dextp, // Extract Fixed Bitfield From Arbitrary Position in Accumulator to GPR
7483MIPS_dextpdp, // Extract Fixed Bitfield From Arbitrary Position in Accumulator to GPR and Decrement Pos
7484MIPS_dshilo, // Shift an Accumulator Value Leaving the Result in the Same Accumulator
7485MIPS_dextpv, // Extract Variable Bitfield From Arbitrary Position in Accumulator to GPR
7486MIPS_dextpdpv, // Extract Variable Bitfield From Arbitrary Position in Accumulator to GPR and Decrement Pos
7487MIPS_dshilov, // Variable Shift of Accumulator Value Leaving the Result in the Same Accumulator
7488MIPS_dextr_r_w, // Extract Word Value With Right Shift And Rounding From Accumulator to GPR
7489MIPS_dextr_r_l, // Extract Doubleword Value With Right Shift And Rounding From Accumulator to GPR
7490MIPS_dextrv_r_w, // Extract Word Value With Variable Right Shift And Rounding From Accumulator to GPR
7491MIPS_dextrv_r_l, // Extract Doubleword Value With Variable Right Shift And Rounding From Accumulator to GPR
7492MIPS_dextr_rs_w, // Extract Word Value With Right Shift From Accumulator to GPR
7493MIPS_dextr_s_h, // Extract Halfword Value From Accumulator to GPR With Right Shift and Saturate
7494MIPS_dextr_rs_l, // Extract Doubleword Value With Right Shift From Accumulator to GPR
7495MIPS_dextrv_rs_w, // Extract Word Value With Variable Right Shift From Accumulator to GPR
7496MIPS_dextrv_s_h, // Extract Halfword Value Variable From Accumulator to GPR With Right Shift and Saturate
7497MIPS_dextrv_rs_l, // Extract Doubleword Value With Variable Right Shift From Accumulator to GPR
7498MIPS_dmthlip, // Copy LO to HI and a GPR to LO and Increment Pos by 64
7499MIPS_adduh_qb, // Unsigned Add Vector Quad-Bytes And Right Shift to Halve Results
7500MIPS_addqh_ph, // Add Fractional Halfword Vectors And Shift Right to Halve Results
7501MIPS_addqh_w, // Add Fractional Words And Shift Right to Halve Results
7502MIPS_subuh_qb, // Subtract Unsigned Bytes And Right Shift to Halve Results
7503MIPS_subqh_ph, // Subtract Fractional Halfword Vectors And Shift Right to Halve Results
7504MIPS_subqh_w, // Subtract Fractional Words And Shift Right to Halve Results
7505MIPS_adduh_r_qb, // Unsigned Add Vector Quad-Bytes And Right Shift to Halve Results
7506MIPS_addqh_r_ph, // Add Fractional Halfword Vectors And Shift Right to Halve Results
7507MIPS_addqh_r_w, // Add Fractional Words And Shift Right to Halve Results
7508MIPS_subuh_r_qb, // Subtract Unsigned Bytes And Right Shift to Halve Results
7509MIPS_subqh_r_ph, // Subtract Fractional Halfword Vectors And Shift Right to Halve Results
7510MIPS_subqh_r_w, // Subtract Fractional Words And Shift Right to Halve Results
7511MIPS_mul_ph, // Multiply Vector Integer HalfWords to Same Size Products
7512MIPS_mul_s_ph, // Multiply Vector Integer HalfWords to Same Size Products
7513MIPS_mulq_s_w, // Multiply Fractional Words to Same Size Product with Saturation
7514MIPS_mulq_rs_w, // Multiply Fractional Words to Same Size Product with Saturation and Rounding
7515MIPS_append, // Left Shift and Append Bits to the LSB
7516MIPS_balign, // Byte Align Contents from Two Registers
7517MIPS_prepend, // Right Shift and Prepend Bits to the MSB
7518
7519// Cavium Octeon II instructions
7520MIPS_laa, // Load Atomic Add Word
7521MIPS_laad, // Load Atomic Add Doubleword
7522MIPS_lac, // Load Atomic Clear Word
7523MIPS_lacd, // Load Atomic Clear Doubleword
7524MIPS_lad, // Load Atomic Decrement Word
7525MIPS_ladd, // Load Atomic Decrement Doubleword
7526MIPS_lai, // Load Atomic Increment Word
7527MIPS_laid, // Load Atomic Increment Doubleword
7528MIPS_las, // Load Atomic Set Word
7529MIPS_lasd, // Load Atomic Set Doubleword
7530MIPS_law, // Load Atomic Swap Word
7531MIPS_lawd, // Load Atomic Swap Doubleword
7532// we don't know the following mnemonics for sure
7533MIPS_lbx, // Load Byte Indexed
7534MIPS_lhux, // Load Halfword Unsigned Indexed
7535MIPS_lwux, // Load Word Unsigned Indexed
7536MIPS_qmac_00, // Q15 Multiply Accumulate
7537MIPS_qmac_01, // Q15 Multiply Accumulate
7538MIPS_qmac_02, // Q15 Multiply Accumulate
7539MIPS_qmac_03, // Q15 Multiply Accumulate
7540MIPS_qmacs_00, // Q15 Multiply Accumulate
7541MIPS_qmacs_01, // Q15 Multiply Accumulate
7542MIPS_qmacs_02, // Q15 Multiply Accumulate
7543MIPS_qmacs_03, // Q15 Multiply Accumulate
7544MIPS_zcb, // Zero Cache Block
7545MIPS_zcbt, // Zero Cache Block
7546
7547// MSA ASE
7548// some of these have the same name as existing mnemonics; to avoid ambiguity
7549// we use an msa_ prefix on all of them
7550MIPS_msa_sll_b, // Vector Shift Left
7551MIPS_msa_sll_h, // Vector Shift Left
7552MIPS_msa_sll_w, // Vector Shift Left
7553MIPS_msa_sll_d, // Vector Shift Left
7554MIPS_msa_slli_b, // Immediate Shift Left
7555MIPS_msa_slli_h, // Immediate Shift Left
7556MIPS_msa_slli_w, // Immediate Shift Left
7557MIPS_msa_slli_d, // Immediate Shift Left
7558MIPS_msa_sra_b, // Vector Shift Right Arithmetic
7559MIPS_msa_sra_h, // Vector Shift Right Arithmetic
7560MIPS_msa_sra_w, // Vector Shift Right Arithmetic
7561MIPS_msa_sra_d, // Vector Shift Right Arithmetic
7562MIPS_msa_srai_b, // Immediate Shift Right Arithmetic
7563MIPS_msa_srai_h, // Immediate Shift Right Arithmetic
7564MIPS_msa_srai_w, // Immediate Shift Right Arithmetic
7565MIPS_msa_srai_d, // Immediate Shift Right Arithmetic
7566MIPS_msa_srl_b, // Vector Shift Right Logical
7567MIPS_msa_srl_h, // Vector Shift Right Logical
7568MIPS_msa_srl_w, // Vector Shift Right Logical
7569MIPS_msa_srl_d, // Vector Shift Right Logical
7570MIPS_msa_srli_b, // Immediate Shift Right Logical
7571MIPS_msa_srli_h, // Immediate Shift Right Logical
7572MIPS_msa_srli_w, // Immediate Shift Right Logical
7573MIPS_msa_srli_d, // Immediate Shift Right Logical
7574MIPS_msa_bclr_b, // Vector Bit Clear
7575MIPS_msa_bclr_h, // Vector Bit Clear
7576MIPS_msa_bclr_w, // Vector Bit Clear
7577MIPS_msa_bclr_d, // Vector Bit Clear
7578MIPS_msa_bclri_b, // Immediate Bit Clear
7579MIPS_msa_bclri_h, // Immediate Bit Clear
7580MIPS_msa_bclri_w, // Immediate Bit Clear
7581MIPS_msa_bclri_d, // Immediate Bit Clear
7582MIPS_msa_bset_b, // Vector Bit Set
7583MIPS_msa_bset_h, // Vector Bit Set
7584MIPS_msa_bset_w, // Vector Bit Set
7585MIPS_msa_bset_d, // Vector Bit Set
7586MIPS_msa_bseti_b, // Immediate Bit Set
7587MIPS_msa_bseti_h, // Immediate Bit Set
7588MIPS_msa_bseti_w, // Immediate Bit Set
7589MIPS_msa_bseti_d, // Immediate Bit Set
7590MIPS_msa_bneg_b, // Vector Bit Negate
7591MIPS_msa_bneg_h, // Vector Bit Negate
7592MIPS_msa_bneg_w, // Vector Bit Negate
7593MIPS_msa_bneg_d, // Vector Bit Negate
7594MIPS_msa_bnegi_b, // Immediate Bit Negate
7595MIPS_msa_bnegi_h, // Immediate Bit Negate
7596MIPS_msa_bnegi_w, // Immediate Bit Negate
7597MIPS_msa_bnegi_d, // Immediate Bit Negate
7598MIPS_msa_binsl_b, // Vector Bit Insert Left
7599MIPS_msa_binsl_h, // Vector Bit Insert Left
7600MIPS_msa_binsl_w, // Vector Bit Insert Left
7601MIPS_msa_binsl_d, // Vector Bit Insert Left
7602MIPS_msa_binsli_b, // Immediate Bit Insert Left
7603MIPS_msa_binsli_h, // Immediate Bit Insert Left
7604MIPS_msa_binsli_w, // Immediate Bit Insert Left
7605MIPS_msa_binsli_d, // Immediate Bit Insert Left
7606MIPS_msa_binsr_b, // Vector Bit Insert Right
7607MIPS_msa_binsr_h, // Vector Bit Insert Right
7608MIPS_msa_binsr_w, // Vector Bit Insert Right
7609MIPS_msa_binsr_d, // Vector Bit Insert Right
7610MIPS_msa_binsri_b, // Immediate Bit Insert Right
7611MIPS_msa_binsri_h, // Immediate Bit Insert Right
7612MIPS_msa_binsri_w, // Immediate Bit Insert Right
7613MIPS_msa_binsri_d, // Immediate Bit Insert Right
7614MIPS_msa_addv_b, // Vector Add
7615MIPS_msa_addv_h, // Vector Add
7616MIPS_msa_addv_w, // Vector Add
7617MIPS_msa_addv_d, // Vector Add
7618MIPS_msa_addvi_b, // Immediate Add
7619MIPS_msa_addvi_h, // Immediate Add
7620MIPS_msa_addvi_w, // Immediate Add
7621MIPS_msa_addvi_d, // Immediate Add
7622MIPS_msa_subv_b, // Vector Subtract
7623MIPS_msa_subv_h, // Vector Subtract
7624MIPS_msa_subv_w, // Vector Subtract
7625MIPS_msa_subv_d, // Vector Subtract
7626MIPS_msa_subvi_b, // Immediate Subtract
7627MIPS_msa_subvi_h, // Immediate Subtract
7628MIPS_msa_subvi_w, // Immediate Subtract
7629MIPS_msa_subvi_d, // Immediate Subtract
7630MIPS_msa_max_s_b, // Vector Signed Maximum
7631MIPS_msa_max_s_h, // Vector Signed Maximum
7632MIPS_msa_max_s_w, // Vector Signed Maximum
7633MIPS_msa_max_s_d, // Vector Signed Maximum
7634MIPS_msa_maxi_s_b, // Immediate Signed Maximum
7635MIPS_msa_maxi_s_h, // Immediate Signed Maximum
7636MIPS_msa_maxi_s_w, // Immediate Signed Maximum
7637MIPS_msa_maxi_s_d, // Immediate Signed Maximum
7638MIPS_msa_max_u_b, // Vector Unsigned Maximum
7639MIPS_msa_max_u_h, // Vector Unsigned Maximum
7640MIPS_msa_max_u_w, // Vector Unsigned Maximum
7641MIPS_msa_max_u_d, // Vector Unsigned Maximum
7642MIPS_msa_maxi_u_b, // Immediate Unsigned Maximum
7643MIPS_msa_maxi_u_h, // Immediate Unsigned Maximum
7644MIPS_msa_maxi_u_w, // Immediate Unsigned Maximum
7645MIPS_msa_maxi_u_d, // Immediate Unsigned Maximum
7646MIPS_msa_min_s_b, // Vector Signed Minimum
7647MIPS_msa_min_s_h, // Vector Signed Minimum
7648MIPS_msa_min_s_w, // Vector Signed Minimum
7649MIPS_msa_min_s_d, // Vector Signed Minimum
7650MIPS_msa_mini_s_b, // Immediate Signed Minimum
7651MIPS_msa_mini_s_h, // Immediate Signed Minimum
7652MIPS_msa_mini_s_w, // Immediate Signed Minimum
7653MIPS_msa_mini_s_d, // Immediate Signed Minimum
7654MIPS_msa_min_u_b, // Vector Unsigned Minimum
7655MIPS_msa_min_u_h, // Vector Unsigned Minimum
7656MIPS_msa_min_u_w, // Vector Unsigned Minimum
7657MIPS_msa_min_u_d, // Vector Unsigned Minimum
7658MIPS_msa_mini_u_b, // Immediate Unsigned Minimum
7659MIPS_msa_mini_u_h, // Immediate Unsigned Minimum
7660MIPS_msa_mini_u_w, // Immediate Unsigned Minimum
7661MIPS_msa_mini_u_d, // Immediate Unsigned Minimum
7662MIPS_msa_max_a_b, // Vector Maximum Based on Absolute Values
7663MIPS_msa_max_a_h, // Vector Maximum Based on Absolute Values
7664MIPS_msa_max_a_w, // Vector Maximum Based on Absolute Values
7665MIPS_msa_max_a_d, // Vector Maximum Based on Absolute Values
7666MIPS_msa_min_a_b, // Vector Minimum Based on Absolute Value
7667MIPS_msa_min_a_h, // Vector Minimum Based on Absolute Value
7668MIPS_msa_min_a_w, // Vector Minimum Based on Absolute Value
7669MIPS_msa_min_a_d, // Vector Minimum Based on Absolute Value
7670MIPS_msa_ceq_b, // Vector Compare Equal
7671MIPS_msa_ceq_h, // Vector Compare Equal
7672MIPS_msa_ceq_w, // Vector Compare Equal
7673MIPS_msa_ceq_d, // Vector Compare Equal
7674MIPS_msa_ceqi_b, // Immediate Compare Equal
7675MIPS_msa_ceqi_h, // Immediate Compare Equal
7676MIPS_msa_ceqi_w, // Immediate Compare Equal
7677MIPS_msa_ceqi_d, // Immediate Compare Equal
7678MIPS_msa_clt_s_b, // Vector Compare Signed Less Than
7679MIPS_msa_clt_s_h, // Vector Compare Signed Less Than
7680MIPS_msa_clt_s_w, // Vector Compare Signed Less Than
7681MIPS_msa_clt_s_d, // Vector Compare Signed Less Than
7682MIPS_msa_clti_s_b, // Immediate Compare Signed Less Than
7683MIPS_msa_clti_s_h, // Immediate Compare Signed Less Than
7684MIPS_msa_clti_s_w, // Immediate Compare Signed Less Than
7685MIPS_msa_clti_s_d, // Immediate Compare Signed Less Than
7686MIPS_msa_clt_u_b, // Vector Compare Unsigned Less Than
7687MIPS_msa_clt_u_h, // Vector Compare Unsigned Less Than
7688MIPS_msa_clt_u_w, // Vector Compare Unsigned Less Than
7689MIPS_msa_clt_u_d, // Vector Compare Unsigned Less Than
7690MIPS_msa_clti_u_b, // Immediate Compare Unsigned Less Than
7691MIPS_msa_clti_u_h, // Immediate Compare Unsigned Less Than
7692MIPS_msa_clti_u_w, // Immediate Compare Unsigned Less Than
7693MIPS_msa_clti_u_d, // Immediate Compare Unsigned Less Than
7694MIPS_msa_cle_s_b, // Vector Compare Signed Less Than or Equal
7695MIPS_msa_cle_s_h, // Vector Compare Signed Less Than or Equal
7696MIPS_msa_cle_s_w, // Vector Compare Signed Less Than or Equal
7697MIPS_msa_cle_s_d, // Vector Compare Signed Less Than or Equal
7698MIPS_msa_clei_s_b, // Immediate Compare Signed Less Than or Equal
7699MIPS_msa_clei_s_h, // Immediate Compare Signed Less Than or Equal
7700MIPS_msa_clei_s_w, // Immediate Compare Signed Less Than or Equal
7701MIPS_msa_clei_s_d, // Immediate Compare Signed Less Than or Equal
7702MIPS_msa_cle_u_b, // Vector Compare Unsigned Less Than or Equal
7703MIPS_msa_cle_u_h, // Vector Compare Unsigned Less Than or Equal
7704MIPS_msa_cle_u_w, // Vector Compare Unsigned Less Than or Equal
7705MIPS_msa_cle_u_d, // Vector Compare Unsigned Less Than or Equal
7706MIPS_msa_clei_u_b, // Immediate Compare Unsigned Less Than or Equal
7707MIPS_msa_clei_u_h, // Immediate Compare Unsigned Less Than or Equal
7708MIPS_msa_clei_u_w, // Immediate Compare Unsigned Less Than or Equal
7709MIPS_msa_clei_u_d, // Immediate Compare Unsigned Less Than or Equal
7710MIPS_msa_ld_b, // Vector Load
7711MIPS_msa_ld_h, // Vector Load
7712MIPS_msa_ld_w, // Vector Load
7713MIPS_msa_ld_d, // Vector Load
7714MIPS_msa_st_b, // Vector Store
7715MIPS_msa_st_h, // Vector Store
7716MIPS_msa_st_w, // Vector Store
7717MIPS_msa_st_d, // Vector Store
7718MIPS_msa_sat_s_b, // Immediate Signed Saturate
7719MIPS_msa_sat_s_h, // Immediate Signed Saturate
7720MIPS_msa_sat_s_w, // Immediate Signed Saturate
7721MIPS_msa_sat_s_d, // Immediate Signed Saturate
7722MIPS_msa_sat_u_b, // Immediate Unsigned Saturate
7723MIPS_msa_sat_u_h, // Immediate Unsigned Saturate
7724MIPS_msa_sat_u_w, // Immediate Unsigned Saturate
7725MIPS_msa_sat_u_d, // Immediate Unsigned Saturate
7726MIPS_msa_add_a_b, // Vector Add Absolute Values
7727MIPS_msa_add_a_h, // Vector Add Absolute Values
7728MIPS_msa_add_a_w, // Vector Add Absolute Values
7729MIPS_msa_add_a_d, // Vector Add Absolute Values
7730MIPS_msa_adds_a_b, // Vector Saturated Add of Absolute Values
7731MIPS_msa_adds_a_h, // Vector Saturated Add of Absolute Values
7732MIPS_msa_adds_a_w, // Vector Saturated Add of Absolute Values
7733MIPS_msa_adds_a_d, // Vector Saturated Add of Absolute Values
7734MIPS_msa_adds_s_b, // Vector Signed Saturated Add of Signed Values
7735MIPS_msa_adds_s_h, // Vector Signed Saturated Add of Signed Values
7736MIPS_msa_adds_s_w, // Vector Signed Saturated Add of Signed Values
7737MIPS_msa_adds_s_d, // Vector Signed Saturated Add of Signed Values
7738MIPS_msa_adds_u_b, // Vector Unsigned Saturated Add of Unsigned Values
7739MIPS_msa_adds_u_h, // Vector Unsigned Saturated Add of Unsigned Values
7740MIPS_msa_adds_u_w, // Vector Unsigned Saturated Add of Unsigned Values
7741MIPS_msa_adds_u_d, // Vector Unsigned Saturated Add of Unsigned Values
7742MIPS_msa_ave_s_b, // Vector Signed Average
7743MIPS_msa_ave_s_h, // Vector Signed Average
7744MIPS_msa_ave_s_w, // Vector Signed Average
7745MIPS_msa_ave_s_d, // Vector Signed Average
7746MIPS_msa_ave_u_b, // Vector Unsigned Average
7747MIPS_msa_ave_u_h, // Vector Unsigned Average
7748MIPS_msa_ave_u_w, // Vector Unsigned Average
7749MIPS_msa_ave_u_d, // Vector Unsigned Average
7750MIPS_msa_aver_s_b, // Vector Signed Average Rounded
7751MIPS_msa_aver_s_h, // Vector Signed Average Rounded
7752MIPS_msa_aver_s_w, // Vector Signed Average Rounded
7753MIPS_msa_aver_s_d, // Vector Signed Average Rounded
7754MIPS_msa_aver_u_b, // Vector Unsigned Average Rounded
7755MIPS_msa_aver_u_h, // Vector Unsigned Average Rounded
7756MIPS_msa_aver_u_w, // Vector Unsigned Average Rounded
7757MIPS_msa_aver_u_d, // Vector Unsigned Average Rounded
7758MIPS_msa_subs_s_b, // Vector Signed Saturated Subtract of Signed Values
7759MIPS_msa_subs_s_h, // Vector Signed Saturated Subtract of Signed Values
7760MIPS_msa_subs_s_w, // Vector Signed Saturated Subtract of Signed Values
7761MIPS_msa_subs_s_d, // Vector Signed Saturated Subtract of Signed Values
7762MIPS_msa_subs_u_b, // Vector Unsigned Saturated Subtract of Unsigned Values
7763MIPS_msa_subs_u_h, // Vector Unsigned Saturated Subtract of Unsigned Values
7764MIPS_msa_subs_u_w, // Vector Unsigned Saturated Subtract of Unsigned Values
7765MIPS_msa_subs_u_d, // Vector Unsigned Saturated Subtract of Unsigned Values
7766MIPS_msa_subsus_u_b, // Vector Unsigned Saturated Subtract of Signed from Unsigned
7767MIPS_msa_subsus_u_h, // Vector Unsigned Saturated Subtract of Signed from Unsigned
7768MIPS_msa_subsus_u_w, // Vector Unsigned Saturated Subtract of Signed from Unsigned
7769MIPS_msa_subsus_u_d, // Vector Unsigned Saturated Subtract of Signed from Unsigned
7770MIPS_msa_subsuu_s_b, // Vector Signed Saturated Subtract of Unsigned Values
7771MIPS_msa_subsuu_s_h, // Vector Signed Saturated Subtract of Unsigned Values
7772MIPS_msa_subsuu_s_w, // Vector Signed Saturated Subtract of Unsigned Values
7773MIPS_msa_subsuu_s_d, // Vector Signed Saturated Subtract of Unsigned Values
7774MIPS_msa_asub_s_b, // Vector Absolute Values of Signed Subtract
7775MIPS_msa_asub_s_h, // Vector Absolute Values of Signed Subtract
7776MIPS_msa_asub_s_w, // Vector Absolute Values of Signed Subtract
7777MIPS_msa_asub_s_d, // Vector Absolute Values of Signed Subtract
7778MIPS_msa_asub_u_b, // Vector Absolute Values of Unsigned Subtract
7779MIPS_msa_asub_u_h, // Vector Absolute Values of Unsigned Subtract
7780MIPS_msa_asub_u_w, // Vector Absolute Values of Unsigned Subtract
7781MIPS_msa_asub_u_d, // Vector Absolute Values of Unsigned Subtract
7782MIPS_msa_mulv_b, // Vector Multiply
7783MIPS_msa_mulv_h, // Vector Multiply
7784MIPS_msa_mulv_w, // Vector Multiply
7785MIPS_msa_mulv_d, // Vector Multiply
7786MIPS_msa_maddv_b, // Vector Multiply and Add
7787MIPS_msa_maddv_h, // Vector Multiply and Add
7788MIPS_msa_maddv_w, // Vector Multiply and Add
7789MIPS_msa_maddv_d, // Vector Multiply and Add
7790MIPS_msa_msubv_b, // Vector Multiply and Subtract
7791MIPS_msa_msubv_h, // Vector Multiply and Subtract
7792MIPS_msa_msubv_w, // Vector Multiply and Subtract
7793MIPS_msa_msubv_d, // Vector Multiply and Subtract
7794MIPS_msa_div_s_b, // Vector Signed Divide
7795MIPS_msa_div_s_h, // Vector Signed Divide
7796MIPS_msa_div_s_w, // Vector Signed Divide
7797MIPS_msa_div_s_d, // Vector Signed Divide
7798MIPS_msa_div_u_b, // Vector Unsigned Divide
7799MIPS_msa_div_u_h, // Vector Unsigned Divide
7800MIPS_msa_div_u_w, // Vector Unsigned Divide
7801MIPS_msa_div_u_d, // Vector Unsigned Divide
7802MIPS_msa_mod_s_b, // Vector Signed Modulo
7803MIPS_msa_mod_s_h, // Vector Signed Modulo
7804MIPS_msa_mod_s_w, // Vector Signed Modulo
7805MIPS_msa_mod_s_d, // Vector Signed Modulo
7806MIPS_msa_mod_u_b, // Vector Unsigned Modulo
7807MIPS_msa_mod_u_h, // Vector Unsigned Modulo
7808MIPS_msa_mod_u_w, // Vector Unsigned Modulo
7809MIPS_msa_mod_u_d, // Vector Unsigned Modulo
7810MIPS_msa_dotp_s_h, // Vector Signed Dot Product
7811MIPS_msa_dotp_s_w, // Vector Signed Dot Product
7812MIPS_msa_dotp_s_d, // Vector Signed Dot Product
7813MIPS_msa_dotp_u_h, // Vector Unsigned Dot Product
7814MIPS_msa_dotp_u_w, // Vector Unsigned Dot Product
7815MIPS_msa_dotp_u_d, // Vector Unsigned Dot Product
7816MIPS_msa_dpadd_s_h, // Vector Signed Dot Product and Add
7817MIPS_msa_dpadd_s_w, // Vector Signed Dot Product and Add
7818MIPS_msa_dpadd_s_d, // Vector Signed Dot Product and Add
7819MIPS_msa_dpadd_u_h, // Vector Unsigned Dot Product and Add
7820MIPS_msa_dpadd_u_w, // Vector Unsigned Dot Product and Add
7821MIPS_msa_dpadd_u_d, // Vector Unsigned Dot Product and Add
7822MIPS_msa_dpsub_s_h, // Vector Signed Dot Product and Subtract
7823MIPS_msa_dpsub_s_w, // Vector Signed Dot Product and Subtract
7824MIPS_msa_dpsub_s_d, // Vector Signed Dot Product and Subtract
7825MIPS_msa_dpsub_u_h, // Vector Unsigned Dot Product and Subtract
7826MIPS_msa_dpsub_u_w, // Vector Unsigned Dot Product and Subtract
7827MIPS_msa_dpsub_u_d, // Vector Unsigned Dot Product and Subtract
7828MIPS_msa_sld_b, // GPR Columns Slide
7829MIPS_msa_sld_h, // GPR Columns Slide
7830MIPS_msa_sld_w, // GPR Columns Slide
7831MIPS_msa_sld_d, // GPR Columns Slide
7832MIPS_msa_sldi_b, // Immediate Columns Slide
7833MIPS_msa_sldi_h, // Immediate Columns Slide
7834MIPS_msa_sldi_w, // Immediate Columns Slide
7835MIPS_msa_sldi_d, // Immediate Columns Slide
7836MIPS_msa_splat_b, // GPR Element Splat
7837MIPS_msa_splat_h, // GPR Element Splat
7838MIPS_msa_splat_w, // GPR Element Splat
7839MIPS_msa_splat_d, // GPR Element Splat
7840MIPS_msa_splati_b, // Immediate Element Splat
7841MIPS_msa_splati_h, // Immediate Element Splat
7842MIPS_msa_splati_w, // Immediate Element Splat
7843MIPS_msa_splati_d, // Immediate Element Splat
7844MIPS_msa_pckev_b, // Vector Pack Even
7845MIPS_msa_pckev_h, // Vector Pack Even
7846MIPS_msa_pckev_w, // Vector Pack Even
7847MIPS_msa_pckev_d, // Vector Pack Even
7848MIPS_msa_pckod_b, // Vector Pack Odd
7849MIPS_msa_pckod_h, // Vector Pack Odd
7850MIPS_msa_pckod_w, // Vector Pack Odd
7851MIPS_msa_pckod_d, // Vector Pack Odd
7852MIPS_msa_ilvl_b, // Vector Interleave Left
7853MIPS_msa_ilvl_h, // Vector Interleave Left
7854MIPS_msa_ilvl_w, // Vector Interleave Left
7855MIPS_msa_ilvl_d, // Vector Interleave Left
7856MIPS_msa_ilvr_b, // Vector Interleave Right
7857MIPS_msa_ilvr_h, // Vector Interleave Right
7858MIPS_msa_ilvr_w, // Vector Interleave Right
7859MIPS_msa_ilvr_d, // Vector Interleave Right
7860MIPS_msa_ilvev_b, // Vector Interleave Even
7861MIPS_msa_ilvev_h, // Vector Interleave Even
7862MIPS_msa_ilvev_w, // Vector Interleave Even
7863MIPS_msa_ilvev_d, // Vector Interleave Even
7864MIPS_msa_ilvod_b, // Vector Interleave Odd
7865MIPS_msa_ilvod_h, // Vector Interleave Odd
7866MIPS_msa_ilvod_w, // Vector Interleave Odd
7867MIPS_msa_ilvod_d, // Vector Interleave Odd
7868MIPS_msa_vshf_b, // Vector Data Preserving Shuffle
7869MIPS_msa_vshf_h, // Vector Data Preserving Shuffle
7870MIPS_msa_vshf_w, // Vector Data Preserving Shuffle
7871MIPS_msa_vshf_d, // Vector Data Preserving Shuffle
7872MIPS_msa_srar_b, // Vector Shift Right Arithmetic Rounded
7873MIPS_msa_srar_h, // Vector Shift Right Arithmetic Rounded
7874MIPS_msa_srar_w, // Vector Shift Right Arithmetic Rounded
7875MIPS_msa_srar_d, // Vector Shift Right Arithmetic Rounded
7876MIPS_msa_srari_b, // Immediate Shift Right Arithmetic Rounded
7877MIPS_msa_srari_h, // Immediate Shift Right Arithmetic Rounded
7878MIPS_msa_srari_w, // Immediate Shift Right Arithmetic Rounded
7879MIPS_msa_srari_d, // Immediate Shift Right Arithmetic Rounded
7880MIPS_msa_srlr_b, // Vector Shift Right Logical Rounded
7881MIPS_msa_srlr_h, // Vector Shift Right Logical Rounded
7882MIPS_msa_srlr_w, // Vector Shift Right Logical Rounded
7883MIPS_msa_srlr_d, // Vector Shift Right Logical Rounded
7884MIPS_msa_srlri_b, // Immediate Shift Right Logical Rounded
7885MIPS_msa_srlri_h, // Immediate Shift Right Logical Rounded
7886MIPS_msa_srlri_w, // Immediate Shift Right Logical Rounded
7887MIPS_msa_srlri_d, // Immediate Shift Right Logical Rounded
7888MIPS_msa_hadd_s_h, // Vector Signed Horizontal Add
7889MIPS_msa_hadd_s_w, // Vector Signed Horizontal Add
7890MIPS_msa_hadd_s_d, // Vector Signed Horizontal Add
7891MIPS_msa_hadd_u_h, // Vector Unsigned Horizontal Add
7892MIPS_msa_hadd_u_w, // Vector Unsigned Horizontal Add
7893MIPS_msa_hadd_u_d, // Vector Unsigned Horizontal Add
7894MIPS_msa_hsub_s_h, // Vector Signed Horizontal Subtract
7895MIPS_msa_hsub_s_w, // Vector Signed Horizontal Subtract
7896MIPS_msa_hsub_s_d, // Vector Signed Horizontal Subtract
7897MIPS_msa_hsub_u_h, // Vector Unsigned Horizontal Subtract
7898MIPS_msa_hsub_u_w, // Vector Unsigned Horizontal Subtract
7899MIPS_msa_hsub_u_d, // Vector Unsigned Horizontal Subtract
7900MIPS_msa_and_v, // Vector Logical And
7901MIPS_msa_andi_b, // Immediate Logical And
7902MIPS_msa_or_v, // Vector Logical Or
7903MIPS_msa_ori_b, // Immediate Logical Or
7904MIPS_msa_nor_v, // Vector Logical Negated Or
7905MIPS_msa_nori_b, // Immediate Logical Negated Or
7906MIPS_msa_xor_v, // Vector Logical Exclusive Or
7907MIPS_msa_xori_b, // Immediate Logical Exclusive Or
7908MIPS_msa_bmnz_v, // Vector Bit Move If Not Zero
7909MIPS_msa_bmnzi_b, // Immediate Bit Move If Not Zero
7910MIPS_msa_bmz_v, // Vector Bit Move If Zero
7911MIPS_msa_bmzi_b, // Immediate Bit Move If Zero
7912MIPS_msa_bsel_v, // Vector Bit Select
7913MIPS_msa_bseli_b, // Immediate Bit Select
7914MIPS_msa_shf_b, // Immediate Set Shuffle Elements
7915MIPS_msa_shf_h, // Immediate Set Shuffle Elements
7916MIPS_msa_shf_w, // Immediate Set Shuffle Elements
7917MIPS_msa_bnz_v, // Immediate Branch If Not Zero (At Least One Element of Any Format Is Not Zero)
7918MIPS_msa_bz_v, // Immediate Branch If Zero (All Elements of Any Format Are Zero)
7919MIPS_msa_fill_b, // Vector Fill from GPR
7920MIPS_msa_fill_h, // Vector Fill from GPR
7921MIPS_msa_fill_w, // Vector Fill from GPR
7922MIPS_msa_fill_d, // Vector Fill from GPR
7923MIPS_msa_pcnt_b, // Vector Population Count
7924MIPS_msa_pcnt_h, // Vector Population Count
7925MIPS_msa_pcnt_w, // Vector Population Count
7926MIPS_msa_pcnt_d, // Vector Population Count
7927MIPS_msa_nloc_b, // Vector Leading Ones Count
7928MIPS_msa_nloc_h, // Vector Leading Ones Count
7929MIPS_msa_nloc_w, // Vector Leading Ones Count
7930MIPS_msa_nloc_d, // Vector Leading Ones Count
7931MIPS_msa_nlzc_b, // Vector Leading Zeros Count
7932MIPS_msa_nlzc_h, // Vector Leading Zeros Count
7933MIPS_msa_nlzc_w, // Vector Leading Zeros Count
7934MIPS_msa_nlzc_d, // Vector Leading Zeros Count
7935MIPS_msa_copy_s_b, // Element Copy to GPR Signed
7936MIPS_msa_copy_s_h, // Element Copy to GPR Signed
7937MIPS_msa_copy_s_w, // Element Copy to GPR Signed
7938MIPS_msa_copy_s_d, // Element Copy to GPR Signed
7939MIPS_msa_copy_u_b, // Element Copy to GPR Unsigned
7940MIPS_msa_copy_u_h, // Element Copy to GPR Unsigned
7941MIPS_msa_copy_u_w, // Element Copy to GPR Unsigned
7942MIPS_msa_copy_u_d, // Element Copy to GPR Unsigned
7943MIPS_msa_insert_b, // GPR Insert Element
7944MIPS_msa_insert_h, // GPR Insert Element
7945MIPS_msa_insert_w, // GPR Insert Element
7946MIPS_msa_insert_d, // GPR Insert Element
7947MIPS_msa_insve_b, // Element Insert Element
7948MIPS_msa_insve_h, // Element Insert Element
7949MIPS_msa_insve_w, // Element Insert Element
7950MIPS_msa_insve_d, // Element Insert Element
7951MIPS_msa_bnz_b, // Immediate Branch If All Elements Are Not Zero
7952MIPS_msa_bnz_h, // Immediate Branch If All Elements Are Not Zero
7953MIPS_msa_bnz_w, // Immediate Branch If All Elements Are Not Zero
7954MIPS_msa_bnz_d, // Immediate Branch If All Elements Are Not Zero
7955MIPS_msa_bz_b, // Immediate Branch If At Least One Element Is Zero
7956MIPS_msa_bz_h, // Immediate Branch If At Least One Element Is Zero
7957MIPS_msa_bz_w, // Immediate Branch If At Least One Element Is Zero
7958MIPS_msa_bz_d, // Immediate Branch If At Least One Element Is Zero
7959MIPS_msa_ldi_b, // Immediate Load
7960MIPS_msa_ldi_h, // Immediate Load
7961MIPS_msa_ldi_w, // Immediate Load
7962MIPS_msa_ldi_d, // Immediate Load
7963MIPS_msa_fcaf_w, // Vector Floating-Point Quiet Compare Always False
7964MIPS_msa_fcaf_d, // Vector Floating-Point Quiet Compare Always False
7965MIPS_msa_fcun_w, // Vector Floating-Point Quiet Compare Unordered
7966MIPS_msa_fcun_d, // Vector Floating-Point Quiet Compare Unordered
7967MIPS_msa_fceq_w, // Vector Floating-Point Quiet Compare Equal
7968MIPS_msa_fceq_d, // Vector Floating-Point Quiet Compare Equal
7969MIPS_msa_fcueq_w, // Vector Floating-Point Quiet Compare Unordered or Equal
7970MIPS_msa_fcueq_d, // Vector Floating-Point Quiet Compare Unordered or Equal
7971MIPS_msa_fclt_w, // Vector Floating-Point Quiet Compare Less Than
7972MIPS_msa_fclt_d, // Vector Floating-Point Quiet Compare Less Than
7973MIPS_msa_fcult_w, // Vector Floating-Point Quiet Compare Unordered or Less Than
7974MIPS_msa_fcult_d, // Vector Floating-Point Quiet Compare Unordered or Less Than
7975MIPS_msa_fcle_w, // Vector Floating-Point Quiet Compare Less or Equal
7976MIPS_msa_fcle_d, // Vector Floating-Point Quiet Compare Less or Equal
7977MIPS_msa_fcule_w, // Vector Floating-Point Quiet Compare Unordered or Less or Equal
7978MIPS_msa_fcule_d, // Vector Floating-Point Quiet Compare Unordered or Less or Equal
7979MIPS_msa_fsaf_w, // Vector Floating-Point Signaling Compare Always False
7980MIPS_msa_fsaf_d, // Vector Floating-Point Signaling Compare Always False
7981MIPS_msa_fsun_w, // Vector Floating-Point Signaling Compare Unordered
7982MIPS_msa_fsun_d, // Vector Floating-Point Signaling Compare Unordered
7983MIPS_msa_fseq_w, // Vector Floating-Point Signaling Compare Equal
7984MIPS_msa_fseq_d, // Vector Floating-Point Signaling Compare Equal
7985MIPS_msa_fsueq_w, // Vector Floating-Point Signaling Compare Unordered or Equal
7986MIPS_msa_fsueq_d, // Vector Floating-Point Signaling Compare Unordered or Equal
7987MIPS_msa_fslt_w, // Vector Floating-Point Signaling Compare Less Than
7988MIPS_msa_fslt_d, // Vector Floating-Point Signaling Compare Less Than
7989MIPS_msa_fsult_w, // Vector Floating-Point Signaling Compare Unordered or Less Than
7990MIPS_msa_fsult_d, // Vector Floating-Point Signaling Compare Unordered or Less Than
7991MIPS_msa_fsle_w, // Vector Floating-Point Signaling Compare Less or Equal
7992MIPS_msa_fsle_d, // Vector Floating-Point Signaling Compare Less or Equal
7993MIPS_msa_fsule_w, // Vector Floating-Point Signaling Compare Unordered or Less or Equal
7994MIPS_msa_fsule_d, // Vector Floating-Point Signaling Compare Unordered or Less or Equal
7995MIPS_msa_fadd_w, // Vector Floating-Point Addition
7996MIPS_msa_fadd_d, // Vector Floating-Point Addition
7997MIPS_msa_fsub_w, // Vector Floating-Point Subtraction
7998MIPS_msa_fsub_d, // Vector Floating-Point Subtraction
7999MIPS_msa_fmul_w, // Vector Floating-Point Multiplication
8000MIPS_msa_fmul_d, // Vector Floating-Point Multiplication
8001MIPS_msa_fdiv_w, // Vector Floating-Point Division
8002MIPS_msa_fdiv_d, // Vector Floating-Point Division
8003MIPS_msa_fmadd_w, // Vector Floating-Point Multiply-Add
8004MIPS_msa_fmadd_d, // Vector Floating-Point Multiply-Add
8005MIPS_msa_fmsub_w, // Vector Floating-Point Multiply-Sub
8006MIPS_msa_fmsub_d, // Vector Floating-Point Multiply-Sub
8007MIPS_msa_fexp2_w, // Vector Floating-Point Base 2 Exponentiation
8008MIPS_msa_fexp2_d, // Vector Floating-Point Base 2 Exponentiation
8009MIPS_msa_fexdo_h, // Vector Floating-Point Down-Convert Interchange Format
8010MIPS_msa_fexdo_w, // Vector Floating-Point Down-Convert Interchange Format
8011MIPS_msa_ftq_h, // Vector Floating-Point Convert to Fixed-Point
8012MIPS_msa_ftq_w, // Vector Floating-Point Convert to Fixed-Point
8013MIPS_msa_fmin_w, // Vector Floating-Point Minimum
8014MIPS_msa_fmin_d, // Vector Floating-Point Minimum
8015MIPS_msa_fmin_a_w, // Vector Floating-Point Minimum Based on Absolute Values
8016MIPS_msa_fmin_a_d, // Vector Floating-Point Minimum Based on Absolute Values
8017MIPS_msa_fmax_w, // Vector Floating-Point Maximum
8018MIPS_msa_fmax_d, // Vector Floating-Point Maximum
8019MIPS_msa_fmax_a_w, // Vector Floating-Point Maximum Based on Absolute Values
8020MIPS_msa_fmax_a_d, // Vector Floating-Point Maximum Based on Absolute Values
8021MIPS_msa_fcor_w, // Vector Floating-Point Quiet Compare Ordered
8022MIPS_msa_fcor_d, // Vector Floating-Point Quiet Compare Ordered
8023MIPS_msa_fcune_w, // Vector Floating-Point Quiet Compare Unordered or Not Equal
8024MIPS_msa_fcune_d, // Vector Floating-Point Quiet Compare Unordered or Not Equal
8025MIPS_msa_fcne_w, // Vector Floating-Point Quiet Compare Not Equal
8026MIPS_msa_fcne_d, // Vector Floating-Point Quiet Compare Not Equal
8027MIPS_msa_mul_q_h, // Vector Fixed-Point Multiply
8028MIPS_msa_mul_q_w, // Vector Fixed-Point Multiply
8029MIPS_msa_madd_q_h, // Vector Fixed-Point Multiply and Add
8030MIPS_msa_madd_q_w, // Vector Fixed-Point Multiply and Add
8031MIPS_msa_msub_q_h, // Vector Fixed-Point Multiply and Subtract
8032MIPS_msa_msub_q_w, // Vector Fixed-Point Multiply and Subtract
8033MIPS_msa_fsor_w, // Vector Floating-Point Signaling Compare Ordered
8034MIPS_msa_fsor_d, // Vector Floating-Point Signaling Compare Ordered
8035MIPS_msa_fsune_w, // Vector Floating-Point Signaling Compare Unordered or Not Equal
8036MIPS_msa_fsune_d, // Vector Floating-Point Signaling Compare Unordered or Not Equal
8037MIPS_msa_fsne_w, // Vector Floating-Point Signaling Compare Not Equal
8038MIPS_msa_fsne_d, // Vector Floating-Point Signaling Compare Not Equal
8039MIPS_msa_mulr_q_h, // Vector Fixed-Point Multiply Rounded
8040MIPS_msa_mulr_q_w, // Vector Fixed-Point Multiply Rounded
8041MIPS_msa_maddr_q_h, // Vector Fixed-Point Multiply and Add Rounded
8042MIPS_msa_maddr_q_w, // Vector Fixed-Point Multiply and Add Rounded
8043MIPS_msa_msubr_q_h, // Vector Fixed-Point Multiply and Subtract Rounded
8044MIPS_msa_msubr_q_w, // Vector Fixed-Point Multiply and Subtract Rounded
8045MIPS_msa_fclass_w, // Vector Floating-Point Class Mask
8046MIPS_msa_fclass_d, // Vector Floating-Point Class Mask
8047MIPS_msa_ftrunc_s_w, // Vector Floating-Point Truncate and Convert to Signed Integer
8048MIPS_msa_ftrunc_s_d, // Vector Floating-Point Truncate and Convert to Signed Integer
8049MIPS_msa_ftrunc_u_w, // Vector Floating-Point Truncate and Convert to Unsigned Integer
8050MIPS_msa_ftrunc_u_d, // Vector Floating-Point Truncate and Convert to Unsigned Integer
8051MIPS_msa_fsqrt_w, // Vector Floating-Point Square Root
8052MIPS_msa_fsqrt_d, // Vector Floating-Point Square Root
8053MIPS_msa_frsqrt_w, // Vector Approximate Floating-Point Reciprocal of Square Root
8054MIPS_msa_frsqrt_d, // Vector Approximate Floating-Point Reciprocal of Square Root
8055MIPS_msa_frcp_w, // Vector Approximate Floating-Point Reciprocal
8056MIPS_msa_frcp_d, // Vector Approximate Floating-Point Reciprocal
8057MIPS_msa_frint_w, // Vector Floating-Point Round to Integer
8058MIPS_msa_frint_d, // Vector Floating-Point Round to Integer
8059MIPS_msa_flog2_w, // Vector Floating-Point Base 2 Logarithm
8060MIPS_msa_flog2_d, // Vector Floating-Point Base 2 Logarithm
8061MIPS_msa_fexupl_w, // Vector Floating-Point Up-Convert Interchange Format Left
8062MIPS_msa_fexupl_d, // Vector Floating-Point Up-Convert Interchange Format Left
8063MIPS_msa_fexupr_w, // Vector Floating-Point Up-Convert Interchange Format Right
8064MIPS_msa_fexupr_d, // Vector Floating-Point Up-Convert Interchange Format Right
8065MIPS_msa_ffql_w, // Vector Floating-Point Convert from Fixed-Point Left
8066MIPS_msa_ffql_d, // Vector Floating-Point Convert from Fixed-Point Left
8067MIPS_msa_ffqr_w, // Vector Floating-Point Convert from Fixed-Point Right
8068MIPS_msa_ffqr_d, // Vector Floating-Point Convert from Fixed-Point Right
8069MIPS_msa_ftint_s_w, // Vector Floating-Point Convert to Signed Integer
8070MIPS_msa_ftint_s_d, // Vector Floating-Point Convert to Signed Integer
8071MIPS_msa_ftint_u_w, // Vector Floating-Point Round and Convert to Unsigned Integer
8072MIPS_msa_ftint_u_d, // Vector Floating-Point Round and Convert to Unsigned Integer
8073MIPS_msa_ffint_s_w, // Vector Floating-Point Round and Convert from Signed Integer
8074MIPS_msa_ffint_s_d, // Vector Floating-Point Round and Convert from Signed Integer
8075MIPS_msa_ffint_u_w, // Vector Floating-Point Convert from Unsigned Integer
8076MIPS_msa_ffint_u_d, // Vector Floating-Point Convert from Unsigned Integer
8077MIPS_msa_ctcmsa, // GPR Copy to MSA Control Register
8078MIPS_msa_cfcmsa, // GPR Copy from MSA Control Register
8079MIPS_msa_move_v, // Vector Move
8080
8081// MIPS R6 (LSA is also part of MSA)
8082MIPS_lsa, // Left Shift Add
8083MIPS_dlsa, // Doubleword Left Shift Add
8084
8085// MIPS R3 EVA
8086MIPS_lbe, // Load Byte EVA
8087MIPS_lbue, // Load Byte Unsigned EVA
8088MIPS_lhe, // Load Halfword EVA
8089MIPS_lhue, // Load Halfword Unsigned EVA
8090MIPS_lwe, // Load Word EVA
8091MIPS_sbe, // Store Byte EVA
8092MIPS_she, // Store Halfword EVA
8093MIPS_swe, // Store Word EVA
8094MIPS_lle, // Load Linked Word EVA
8095MIPS_sce, // Store Conditional Word EVA
8096MIPS_cachee, // Perform Cache Operation EVA
8097MIPS_prefe, // Prefetch EVA
8098MIPS_lwle, // Load Word Left EVA
8099MIPS_lwre, // Load Word Right EVA
8100MIPS_swle, // Store Word Left EVA
8101MIPS_swre, // Store Word Right EVA
8102
8103// new MIPS16e2 instructions
8104MIPS_movtz, // Move Conditional on T Equal to Zero
8105MIPS_movtn, // Move Zero Conditional on T Not Equal to Zero
8106
8107// interAptiv core custom instructions
8108MIPS_copyw, // Copy Data to Aligned Memory Location
8109MIPS_ucopyw, // Copy Data to Unaligned Memory Location
8110
8111// MIPSr6 instructions for NanoMIPS
8112MIPS_muh, // Multiply High
8113MIPS_mulu, // Multiply Unsigned
8114MIPS_muhu, // Multiply High Unsigned
8115MIPS_mod, // Modulo
8116MIPS_modu, // Modulo Unsigned
8117MIPS_sov, // Set on Overflow
8118MIPS_crc32b, // CRC32 Byte
8119MIPS_crc32h, // CRC32 Half
8120MIPS_crc32w, // CRC32 Word
8121MIPS_crc32cb, // CRC32 Castagnoli Byte
8122MIPS_crc32ch, // CRC32 Castagnoli Half
8123MIPS_crc32cw, // CRC32 Castagnoli Word
8124MIPS_sbx, // Store Byte indeXed
8125MIPS_shx, // Store Half indeXed
8126MIPS_shxs, // Store Half indeXed Scaled
8127MIPS_swx, // Store Word indeXed
8128MIPS_swxs, // Store Word indeXed Scaled
8129MIPS_lhxs, // Load Half indeXed Scaled
8130MIPS_lhuxs, // Load Half Unsigned indeXed Scaled
8131MIPS_mfhc0, // Move From High Coprocessor 0
8132MIPS_mthc0, // Move To High Coprocessor 0
8133MIPS_extw, // Extend Word
8134MIPS_tlbinv, // TLB Invalidate
8135MIPS_tlbinvf, // TLB Invalidate Flush
8136MIPS_ginvt, // Globally Invalidate TLBs
8137MIPS_ginvi, // Globally Invalidate Instruction caches
8138MIPS_eretnc, // Exception Return Not Clearing LLBit
8139MIPS_lwpc, // Load Word PC relative
8140MIPS_swpc, // Store Word PC relative
8141MIPS_rotx, // Rotate and eXchange
8142MIPS_llwp, // Load Linked Word Pair
8143MIPS_llwpe, // Load Linked Word Pair using EVA addressing
8144MIPS_scwp, // Load Linked Word Pair
8145MIPS_scwpe, // Load Linked Word Pair using EVA addressing
8146MIPS_ualwm, // Unaligned Load Word Multiple
8147MIPS_uaswm, // Unaligned Store Word Multiple
8148MIPS_ualh, // Unaligned Load Half
8149MIPS_uash, // Unaligned Store Half
8150MIPS_syncie, // SYNChronize Instruction cache using EVA addressing
8151MIPS_dvp, // Disable Virtual Processor
8152MIPS_evp, // Enable Virtual Processor
8153MIPS_sigrie, // Signal Reserved Instruction Exception
8154MIPS_bc, // Branch Always, Compact
8155MIPS_balc, // Branch Always and Link, Compact
8156MIPS_restore_jrc, // Restore callee saved registers and Jump to Return address, Compact
8157MIPS_move_balc, // Move and Branch and Link, Compact
8158MIPS_addiupc, // Add Immediate (Untrapped) to PC
8159MIPS_jalrc_hb, // Jump And Link Register, Compact, with Hazard Barrier
8160MIPS_aluipc, // Add aLigned Upper Immediate to PC
8161MIPS_beqic, // Branch if Equal to Immediate, Compact
8162MIPS_bbeqzc, // Branch if Bit Equals Zero, Compact
8163MIPS_bgeic, // Branch if Greater than or Equal to Immediate, Compact
8164MIPS_bgeiuc, // Branch if Greater than or Equal to Immediate Unsigned, Compact
8165MIPS_bneic, // Branch if Not Equal to Immediate, Compact
8166MIPS_bbnezc, // Branch if Bit Not Equal to Zero, Compact
8167MIPS_bltic, // Branch if Less Than Immediate, Compact
8168MIPS_bltiuc, // Branch if Less Than Immediate Unsigned Compact
8169MIPS_bnec, // Branch Not Equal, Compact
8170MIPS_bltc, // Branch if Less Than, Compact
8171MIPS_bltuc, // Branch if Less Than Unsigned, Compact
8172MIPS_beqc, // Branch if Equal, Compact
8173MIPS_bgec, // Branch if Greater than or Equal, Compact
8174MIPS_bgeuc, // Branch if Greater than or Equal to Unsigned, Compact
8175MIPS_brsc, // Branch Register Scaled, Compact
8176MIPS_balrsc, // Branch And Link Register Scaled, Compact
8177MIPS_bitrevw, // Reverse all bits
8178MIPS_bitrevh, // Reverse bits in halfs
8179MIPS_bitrevb, // Reverse bits in bytes
8180MIPS_byterevw, // Reverse all bytes
8181MIPS_byterevh, // Reverse bytes in halfs
8182MIPS_lwm2, // Load Word Multiple (w/o reglist)
8183MIPS_swm2, // Store Word Multiple (w/o reglist)
8184
8186
8187};
8188
8189/*
8190 * Interactive disassembler (IDA).
8191 * Copyright (c) 1990-2025 Hex-Rays
8192 * ALL RIGHTS RESERVED.
8193 *
8194 */
8195
8196
8197
8198enum
8199{
8200
8201H8_null = 0, // Unknown Operation
8202
8203H8_add, // Add binary
8204H8_adds, // Add with sign extension
8205H8_addx, // Add with extend carry
8206H8_and, // Logical AND
8207H8_andc, // Logical AND with control register
8208H8_band, // Bit AND
8209H8_bra, // Branch always
8210H8_brn, // Branch never
8211H8_bhi, // Branch if higher
8212H8_bls, // Branch if lower or same
8213H8_bcc, // Branch if carry clear (higher or same)
8214H8_bcs, // Branch if carry set (lower)
8215H8_bne, // Branch if not equal
8216H8_beq, // Branch if equal
8217H8_bvc, // Branch if overflow clear
8218H8_bvs, // Branch if overflow set
8219H8_bpl, // Branch if plus
8220H8_bmi, // Branch if minus
8221H8_bge, // Branch if greates or equal
8222H8_blt, // Branch if less
8223H8_bgt, // Branch if greater
8224H8_ble, // Branch if less or equal
8225H8_bclr, // Bit clear
8226H8_biand, // Bit invert AND
8227H8_bild, // Bit invert load
8228H8_bior, // Bit invert OR
8229H8_bist, // Bit invert store
8230H8_bixor, // Bit invert XOR
8231H8_bld, // Bit load
8232H8_bnot, // Bit NOT
8233H8_bor, // Bit OR
8234H8_bset, // Bit set
8235H8_bsr, // Branch to subroutine
8236H8_bst, // Bit store
8237H8_btst, // Bit test
8238H8_bxor, // Bit XOR
8239H8_clrmac, // Clear MAC register
8240H8_cmp, // Compare
8241H8_daa, // Decimal adjust add
8242H8_das, // Decimal adjust subtract
8243H8_dec, // Decrement
8244H8_divxs, // Divide extended as signed
8245H8_divxu, // Divide extended as unsigned
8246H8_eepmov, // Move data to EEPROM
8247H8_exts, // Extend as signed
8248H8_extu, // Extend as unsigned
8249H8_inc, // Increment
8250H8_jmp, // Jump
8251H8_jsr, // Jump to subroutine
8252H8_ldc, // Load to control register
8253H8_ldm, // Load to multiple registers
8254H8_ldmac, // Load to MAC register
8255H8_mac, // Multiply and accumulate
8256H8_mov, // Move data
8257H8_movfpe, // Move from peripheral with E clock
8258H8_movtpe, // Move to peripheral with E clock
8259H8_mulxs, // Multiply extend as signed
8260H8_mulxu, // Multiply extend as unsigned
8261H8_neg, // Negate
8262H8_nop, // No operation
8263H8_not, // Logical complement
8264H8_or, // Logical OR
8265H8_orc, // Logical OR with control register
8266H8_pop, // Pop data from stack
8267H8_push, // Push data on stack
8268H8_rotl, // Rotate left
8269H8_rotr, // Rotate right
8270H8_rotxl, // Rotate with extend carry left
8271H8_rotxr, // Rotate with extend carry right
8272H8_rte, // Return from exception
8273H8_rts, // Return from subroutine
8274H8_shal, // Shift arithmetic left
8275H8_shar, // Shift arithmetic right
8276H8_shll, // Shift logical left
8277H8_shlr, // Shift logical right
8278H8_sleep, // Power down mode
8279H8_stc, // Store from control register
8280H8_stm, // Store from multiple registers
8281H8_stmac, // Store from MAC register
8282H8_sub, // Subtract binary
8283H8_subs, // Subtract with sign extension
8284H8_subx, // Subtract with extend carry
8285H8_tas, // Test and set
8286H8_trapa, // Trap always
8287H8_xor, // Logical XOR
8288H8_xorc, // Logical XOR with control register
8289
8290// H8SX
8291H8_rtel, // Returns from an exception, restoring data to multiple general registers
8292H8_rtsl, // Returns from a subroutine, restoring data to multiple general registers
8293H8_movmd, // Transfers a data block
8294H8_movsd, // Transfers a data block with zero detection
8295H8_bras, // Branch always after the next instruction (delay slot)
8296H8_movab, // MOVe effective Address/B
8297H8_movaw, // MOVe effective Address/W
8298H8_moval, // MOVe effective Address/L
8299H8_bsetne, // Bit SET if Not Equal
8300H8_bseteq, // Bit SET if EQual
8301H8_bclrne, // Bit CLeaR if Not Equal
8302H8_bclreq, // Bit CLeaR if Equal
8303H8_bstz, // Bit STore Zero flag
8304H8_bistz, // Bit Invert STore Zero flag
8305H8_bfld, // Bit Field LoaD
8306H8_bfst, // Bit Field STore
8307H8_muls, // MULtiply as Signed
8308H8_divs, // DIVide as Signed
8309H8_mulu, // MULtiply as Unsigned
8310H8_divu, // DIVide as Unsigned
8311H8_mulsu, // MULtiply as Signed
8312H8_muluu, // MULtiply as Unsigned
8313H8_brabc, // BRAnch if Bit Cleared
8314H8_brabs, // BRAnch if Bit Set
8315H8_bsrbc, // Branch to SubRoutine if Bit Cleared
8316H8_bsrbs, // Branch to SubRoutine if Bit Set
8317
8319
8320};
8321
8322/*
8323 * Interactive disassembler (IDA).
8324 * Copyright (c) 1990-2025 Hex-Rays
8325 * ALL RIGHTS RESERVED.
8326 *
8327 */
8328
8329
8330
8331enum
8332{
8333
8334PIC_null = 0, // Unknown Operation
8335
8336// BYTE-ORIENTED FILE REGISTER OPERATIONS
8337
8338PIC_addwf, // Add W and f
8339PIC_andwf, // AND W with f
8340PIC_clrf, // Clear f
8341PIC_clrw, // Clear W
8342PIC_comf, // Complement f
8343PIC_decf, // Decrement f
8344PIC_decfsz, // Decrement f, Skip if 0
8345PIC_incf, // Increment f
8346PIC_incfsz, // Increment f, Skip if 0
8347PIC_iorwf, // Inclusive OR W with f
8348PIC_movf, // Move f
8349PIC_movwf, // Move W to f
8350PIC_nop, // No Operation
8351PIC_rlf, // Rotate Left f through Carry
8352PIC_rrf, // Rotate Right f through Carry
8353PIC_subwf, // Subtract W from f
8354PIC_swapf, // Swap nibbles in f
8355PIC_xorwf, // Exclusive OR W with f
8356
8357// BIT-ORIENTED FILE REGISTER OPERATIONS
8358
8359PIC_bcf, // Bit Clear f
8360PIC_bsf, // Bit Set f
8361PIC_btfsc, // Bit Test f, Skip if Clear
8362PIC_btfss, // Bit Test f, Skip if Set
8363
8364
8365// LITERAL AND CONTROL OPERATIONS
8366
8367PIC_addlw, // Add literal and W
8368PIC_andlw, // AND literal with W
8369PIC_call, // Call subroutine
8370PIC_clrwdt, // Clear Watchdog Timer
8371PIC_goto, // Go to address
8372PIC_iorlw, // Inclusive OR literal with W
8373PIC_movlw, // Move literal to W
8374PIC_retfie, // Return from interrupt
8375PIC_retlw, // Return with literal in W
8376PIC_return, // Return from Subroutine
8377PIC_sleep, // Go into standby mode
8378PIC_sublw, // Subtract W from literal
8379PIC_xorlw, // Exclusive OR literal with W
8380
8381// ADDITIONAL INSTRUCTIONS TO MAINTAIN COMPITIBILITY WITH 12C5xx,16C5x
8382
8383PIC_option, // Load OPTION register
8384PIC_tris, // Load TRIS Register
8385
8386// MACROS
8387
8388PIC_movfw, // Move Contents of File Reg to W
8389PIC_tstf, // Test Contents of File Register
8390PIC_negf, // Negate File Register Contents
8391PIC_b, // Branch to Address
8392PIC_clrc, // Clear Carry
8393PIC_clrdc, // Clear Digit Carry
8394PIC_clrz, // Clear Zero
8395PIC_setc, // Set Carry
8396PIC_setdc, // Set Digit Carry
8397PIC_setz, // Set Zero
8398PIC_skpc, // Skip on Carry
8399PIC_skpdc, // Skip on Digit Carry
8400PIC_skpnc, // Skip on No Carry
8401PIC_skpndc, // Skip on No Digit Carry
8402PIC_skpnz, // Skip on No Zero
8403PIC_skpz, // Skip on Zero
8404PIC_bc, // Branch on Carry to Address k
8405PIC_bdc, // Branch on Digit Carry to k
8406PIC_bnc, // Branch on No Carry to k
8407PIC_bndc, // Branch on No Digit Carry to k
8408PIC_bnz, // Branch on No Zero to Address
8409PIC_bz, // Branch on Zero to Address k
8410PIC_addcf, // Add Carry to File Register
8411PIC_adddcf, // Add Digit to File Register
8412PIC_subcf, // Subtract Carry from File Reg
8413
8414// ADDITIONAL INSTRUCTIONS FOR 18Cxx
8415
8416// BYTE-ORIENTED FILE REGISTER OPERATIONS
8417
8418PIC_addwf3, // Add W and f
8419PIC_addwfc3, // Add W and Carry to f
8420PIC_andwf3, // AND W with f
8421PIC_clrf2, // Clear f
8422PIC_comf3, // Complement f
8423PIC_cpfseq2, // Compare f with W, Skip if ==
8424PIC_cpfsgt2, // Compare f with W, Skip if >
8425PIC_cpfslt2, // Compare f with W, Skip if <
8426PIC_decf3, // Decrement f
8427PIC_decfsz3, // Decrement f, Skip if 0
8428PIC_dcfsnz3, // Decrement f, Skip if not 0
8429PIC_incf3, // Increment f
8430PIC_incfsz3, // Increment f, Skip if 0
8431PIC_infsnz3, // Increment f, Skip if not 0
8432PIC_iorwf3, // Inclusive OR W with f
8433PIC_movf3, // Move f
8434PIC_movff2, // Move fs to fd
8435PIC_movwf2, // Move W to f
8436PIC_mulwf2, // Multiply W with f
8437PIC_negf2, // Negate f
8438PIC_rlcf3, // Rotate Left f through Carry
8439PIC_rlncf3, // Rotate Left f
8440PIC_rrcf3, // Rotate Right f through Carry
8441PIC_rrncf3, // Rotate Right f
8442PIC_setf2, // Set f
8443PIC_subfwb3, // Substract f from W with borrow
8444PIC_subwf3, // Substract W from f
8445PIC_subwfb3, // Substract W from f with borrow
8446PIC_swapf3, // Swap nibbles in f
8447PIC_tstfsz2, // Test f, Skip if 0
8448PIC_xorwf3, // Exclusive OR W with f
8449
8450// BIT-ORIENTED FILE REGISTER OPERATIONS
8451
8452PIC_bcf3, // Bit Clear f
8453PIC_bsf3, // Bit Set f
8454PIC_btfsc3, // Bit Test f, Skip if Clear
8455PIC_btfss3, // Bit Test f, Skip if Set
8456PIC_btg3, // Bit Toggle f
8457
8458// CONTROL OPERATIONS
8459
8460PIC_bc1, // Branch if Carry
8461PIC_bn1, // Branch if Negative
8462PIC_bnc1, // Branch if not Carry
8463PIC_bnn1, // Branch if not Negative
8464PIC_bnov1, // Branch if not Overflow
8465PIC_bnz1, // Branch if not Zero
8466PIC_bov1, // Branch if Overflow
8467PIC_bra1, // Branch unconditionally
8468PIC_bz1, // Branch if Zero
8469PIC_call2, // Call subroutine
8470// PIC_clrwdt
8471PIC_daw0, // Decimal Adjust W
8472// PIC_goto
8473// PIC_nop
8474// PIC_nop
8475PIC_pop0, // Pop top of return stack
8476PIC_push0, // Push top of return stack
8477PIC_rcall1, // Relative Call subroutine
8478PIC_reset0, // Software device Reset
8479PIC_retfie1, // Return from interrupt enable
8480// PIC_retlw
8481PIC_return1, // Return from Subroutine
8482// PIC_sleep
8483
8484// LITERAL OPERATIONS
8485
8486// PIC_addlw
8487// PIC_andlw
8488// PIC_iorlw
8489PIC_lfsr2, // Move literal to FSR
8490PIC_movlb1, // Move literal to BSR
8491// PIC_movlw
8492PIC_mullw1, // Multiply literal with W
8493// PIC_retlw
8494// PIC_sublw
8495// PIC_xorlw
8496
8497// DATA MEMORY <-> PROGRAM MEMORY OPERATIONS
8498
8499PIC_tblrd0, // Table Read
8500PIC_tblrd0p, // Table Read with post-increment
8501PIC_tblrd0m, // Table Read with post-decrement
8502PIC_tblrdp0, // Table Read with pre-increment
8503PIC_tblwt0, // Table Write
8504PIC_tblwt0p, // Table Write with post-increment
8505PIC_tblwt0m, // Table Write with post-decrement
8506PIC_tblwtp0, // Table Write with pre-increment
8507
8508// ADDITIONAL INSTRUCTIONS FOR 16F1x and 12F1x
8509
8510PIC_addwfc, // Add W and Carry to f
8511PIC_movlp, // Move literal to PCLATH
8512PIC_movlb, // Move literal to BSR
8513PIC_addfsr, // Add Literal to FSRn
8514PIC_asrf, // Arithmetic Right Shift
8515PIC_lslf, // Logical Left Shift
8516PIC_lsrf, // Logical Right Shift
8517PIC_subwfb, // Subtract with Borrow W from f
8518PIC_bra, // Relative Branch
8519PIC_brw, // Relative Branch with W
8520PIC_callw, // Call Subroutine with W
8521PIC_reset, // Software device Reset
8522PIC_moviw, // Move INDFn to W
8523PIC_movwi, // Move W to INDFn
8524
8526
8527 };
8528
8529/*
8530 * Interactive disassembler (IDA).
8531 * Copyright (c) 1990-2025 Hex-Rays
8532 * ALL RIGHTS RESERVED.
8533 *
8534 */
8535
8536
8537
8538enum
8539{
8540
8541PIC16_null = 0, // Unknown Operation
8542
8543// Move Instructions
8544PIC16_EXCH, // Exchange Wns and Wnd
8546PIC16_SWAP, // Byte or Nibble Swap Wn
8547PIC16_TBLRDH, // Table Read High
8548PIC16_TBLRDL, // Table Read Low
8549PIC16_TBLWTH, // Table Write High
8550PIC16_TBLWTL, // Table Write Low
8551// Only for PIC24E and dsPIC33E
8552PIC16_MOVPAG, // Move to Page Register
8553
8554// Math Instructions
8556PIC16_ADDC, // Add with carry
8557PIC16_DAWB, // Decimal Adjust Wn
8558PIC16_DEC, // Decrement
8559PIC16_DEC2, // Decrement by 2
8560PIC16_DIV, // Signed/Unsigned Integer Divide
8561PIC16_INC, // Increment
8562PIC16_INC2, // Increment by 2
8563PIC16_MUL, // Integer Multiply
8564PIC16_SE, // Sign-Extend Ws
8565PIC16_SUB, // Subtract
8566PIC16_SUBB, // Subtract with Borrow
8567PIC16_SUBBR, // Subtract with Borrow
8568PIC16_SUBR, // Subtract
8569PIC16_ZE, // Zero - Extend Ws
8570// Only for PIC24E and dsPIC33E
8571PIC16_MULW, // Integer Multiply with 16-bit Result
8572// Only for dsPIC
8573PIC16_DIVF, // Fractional Divide
8574
8575// Logic Instructions
8577PIC16_CLR, // Clear f or WREG | Clear Wd
8578PIC16_COM, // Complement f | Complement Ws
8579PIC16_IOR, // Inclusive OR
8580PIC16_NEG, // Negate f | Negate Ws
8581PIC16_SETM, // Set f or WREG | Set Ws
8582PIC16_XOR, // Exclusive OR
8583
8584// Rotate/Shift Instructions
8585PIC16_ASR, // Arithmetic Shift Right
8586PIC16_LSR, // Logical Shift Right
8587PIC16_RLC, // Rotate Left through Carry
8588PIC16_RLNC, // Rotate Left without Carry
8589PIC16_RRC, // Rotate Right through Carry
8590PIC16_RRNC, // Rotate Right without Carry
8591PIC16_SL, // Shift Left
8592
8593// Bit Instructions
8594PIC16_BCLR, // Bit Clear f | Bit Clear in Ws
8595PIC16_BSET, // Bit Set f | Bit Set in Ws
8596PIC16_BSW, // Bit Write in Ws
8597PIC16_BTG, // Bit Toggle f | Bit Toggle in Ws
8598PIC16_BTST, // Bit Test f | Bit Test in Ws
8599PIC16_BTSTS, // Bit Test/Set f | Bit Test/Set in Ws
8600PIC16_FBCL, // Find First Bit Change from Left
8601PIC16_FF1L, // Find First One from Left
8602PIC16_FF1R, // Find First One from Right
8603
8604
8605// Compare/Skip and Compare/Branch Instructions
8606PIC16_BTSC, // Bit Test, Skip if Clear
8607PIC16_BTSS, // Bit Test, Skip if Set
8608PIC16_CP, // Compare, Set Status Flags
8609PIC16_CP0, // Compare, Set Status Flags
8610PIC16_CPB, // Compare using Borrow, set Status Flags
8611PIC16_CPSEQ, // Compare Wb with Wn, Skip if Equal (Wb = Wn)
8612PIC16_CPSGT, // Signed Compare Wb with Wn, Skip if Greater Than (Wb > Wn)
8613PIC16_CPSLT, // Signed Compare Wb with Wn, Skip if Less Than (Wb < Wn)
8614PIC16_CPSNE, // Signed Compare Wb with Wn, Skip if Not Equal (Wb != Wn)
8615// Only for PIC24E and dsPIC33E
8616PIC16_CPBEQ, // Compare Wb with Wn, branch if =
8617PIC16_CPBNE, // Compare Wb with Wn, Branch if Not Equal (Wb != Wn)
8618PIC16_CPBGT, // Signed Compare Wb with Wn, Branch if Greater Than (Wb > Wn)
8619PIC16_CPBLT, // Signed Compare Wb with Wn, Branch if Less Than (Wb < Wn)
8620
8621// Program Flow Instructions
8622PIC16_BRA, // Branch unconditionally/conditionally
8623PIC16_CALL, // Call Subroutine | Call Indirect Subroutine
8624PIC16_GOTO, // Unconditional Jump
8625PIC16_RCALL, // Relative Call | Relative Call
8626PIC16_REPEAT, // Repeat next instruction
8627PIC16_RETFIE, // Return from Interrupt
8628PIC16_RETLW, // Return with Literal in Wn
8630// Only for dsPIC
8631PIC16_DO, // Initialize Hardware Loop
8632
8633// Shadow/Stack Instructions
8634PIC16_LNK, // Allocate Stack Frame
8635PIC16_POP, // Pop TOS | Pop Shadow Registers
8636PIC16_PUSH, // Push to TOS | Push Shadow Registers
8637PIC16_ULNK, // De-allocate Stack Frame
8638
8639// Control Instructions
8640PIC16_CLRWDT, // Clear Watchdog Timer
8641PIC16_DISI, // Disable Interrupts Temporarily
8642PIC16_NOP, // No operation
8643PIC16_NOPR, // No operation
8644PIC16_PWRSAV, // Enter Power Saving Mode
8646
8647// DSP Instructions [Only for dsPIC30F, dsPIC33F and dsPIC33E]
8648PIC16_LAC, // Load Accumulator
8649PIC16_SAC, // Store Accumulator
8650PIC16_SFTAC, // Arithmetic Shift Accumulator
8651PIC16_CLR1, // Clear Accumulator, Prefetch Operands
8652PIC16_ED, // Euclidean Distance (No Accumulate)
8653PIC16_EDAC, // Euclidean Distance
8654PIC16_MAC, // Multiply and Accumulate
8655PIC16_MOVSAC, // Prefetch Operands and Store Accumulator
8656PIC16_MPY, // Multiply to Accumulator
8657PIC16_MSC, // Multiply and Subtract from Accumulator
8658
8659// ICD instructions
8660PIC16_BREAK, // ICD Break
8661PIC16_URUN, // ICD Run
8662PIC16_SSTEP, // ICD Single Step
8663PIC16_FEX, // ICD Execute
8664
8666
8667 };
8668/*
8669 * Interactive disassembler (IDA).
8670 * Copyright (c) 1990-2025 Hex-Rays
8671 * ALL RIGHTS RESERVED.
8672 *
8673 */
8674
8675
8676
8677enum
8678{
8679SPARC_null = 0, // Unknown Operation
8680
8681// SPARC V9 instructions
8682
8684SPARC_addcc, // Add and modify condition codes
8685SPARC_addc, // Add with carry
8686SPARC_addccc, // Add with carry and modify condition codes
8688SPARC_andcc, // And and modify condition codes
8689SPARC_andn, // And not
8690SPARC_andncc, // And not (and modify condition codes)
8691SPARC_b, // Branch on integer condition codes
8692SPARC_bp, // Branch on integer condition codes with prediction
8693SPARC_bpr, // Branch on contents of integer register with prediction
8694SPARC_call, // Call and link
8695SPARC_casa, // Compare and swap word in alternate space
8696SPARC_casxa, // Compare and swap doubleword in alternate space
8697SPARC_done, // Return from trap
8698SPARC_fabs, // Floating-point absolute value
8699SPARC_fadd, // Floating-point add
8700SPARC_fbp, // Branch on floating-point condition codes with prediction
8701SPARC_fb, // Branch on floating-point condition codes
8702SPARC_fcmp, // Floating-point compare
8703SPARC_fcmpe, // Floating-point compare (exception if unordered)
8704SPARC_fdiv, // Floating-point divide
8705SPARC_fdmulq, // Floating-point multiply double to quad
8706SPARC_flush, // Flush instruction memory
8707SPARC_flushw, // Flush register windows
8708SPARC_fmov, // Floating-point move
8709SPARC_fmovcc, // Conditional floating-point move
8710SPARC_fmovr, // Move floating-point register if integer register contents satisfy condition
8711SPARC_fmul, // Floating-point multiply
8712SPARC_fneg, // Floating-point negate
8713SPARC_fsmuld, // Floating-point multiply single to double
8714SPARC_fsqrt, // Floating-point square root
8715SPARC_fsub, // Floating-point subtract
8716SPARC_fstox, // Convert single floating point to 64-bit integer
8717SPARC_fdtox, // Convert doublee floating point to 64-bit integer
8718SPARC_fqtox, // Convert quad floating point to 64-bit integer
8719SPARC_fxtos, // Convert 64-bit integer to single floating point
8720SPARC_fxtod, // Convert 64-bit integer to double floating point
8721SPARC_fxtoq, // Convert 64-bit integer to quad floating point
8722SPARC_fitos, // Convert 32-bit integer to single floating point
8723SPARC_fdtos, // Convert single floating point to single floating point
8724SPARC_fqtos, // Convert quade floating point to single floating point
8725SPARC_fitod, // Convert 32-bit integer to double floating point
8726SPARC_fstod, // Convert single floating point to double floating point
8727SPARC_fqtod, // Convert quade floating point to double floating point
8728SPARC_fitoq, // Convert 32-bit integer to quad floating point
8729SPARC_fstoq, // Convert single floating point to quad floating point
8730SPARC_fdtoq, // Convert quade floating point to quad floating point
8731SPARC_fstoi, // Convert single floating point to 32-bit integer
8732SPARC_fdtoi, // Convert doublee floating point to 32-bit integer
8733SPARC_fqtoi, // Convert quad floating point to 32-bit integer
8734SPARC_illtrap, // Illegal instruction
8735SPARC_impdep1, // Implementation-dependent instruction
8736SPARC_impdep2, // Implementation-dependent instruction
8737SPARC_jmpl, // Jump and link
8738SPARC_ldd, // Load doubleword
8739SPARC_ldda, // Load doubleword from alternate space
8740SPARC_lddf, // Load double floating-point
8741SPARC_lddfa, // Load double floating-point from alternate space
8742SPARC_ldf, // Load floating-point
8743SPARC_ldfa, // Load floating-point from alternate space
8744SPARC_ldfsr, // Load floating-point state register lower
8745SPARC_ldqf, // Load quad floating-point
8746SPARC_ldqfa, // Load quad floating-point from alternate space
8747SPARC_ldsb, // Load signed byte
8748SPARC_ldsba, // Load signed byte from alternate space
8749SPARC_ldsh, // Load signed halfword
8750SPARC_ldsha, // Load signed halfword from alternate space
8751SPARC_ldstub, // Load-store unsigned byte
8752SPARC_ldstuba, // Load-store unsigned byte in alternate space
8753SPARC_ldsw, // Load signed word
8754SPARC_ldswa, // Load signed word from alternate space
8755SPARC_ldub, // Load unsigned byte
8756SPARC_lduba, // Load unsigned byte from alternate space
8757SPARC_lduh, // Load unsigned halfword
8758SPARC_lduha, // Load unsigned halfword from alternate space
8759SPARC_lduw, // Load unsigned word
8760SPARC_lduwa, // Load unsigned word from alternate space
8761SPARC_ldx, // Load extended
8762SPARC_ldxa, // Load extended from alternate space
8763SPARC_ldxfsr, // Load extended floating-point state register
8764SPARC_membar, // Memory barrier
8765SPARC_mov, // Move integer register if condition is satisfied
8766SPARC_movr, // Move integer register on contents of integer register
8767SPARC_mulscc, // Multiply step and modify condition codes
8768SPARC_mulx, // Multiply 64-bit integers
8769SPARC_nop, // No operation
8770SPARC_or, // Inclusive-or
8771SPARC_orcc, // Inclusive-or (and modify condition codes)
8772SPARC_orn, // Inclusive-or not
8773SPARC_orncc, // Inclusive-or not (and modify condition codes)
8774SPARC_popc, // Population count
8775SPARC_prefetch, // Prefetch data
8776SPARC_prefetcha, // Prefetch data from alternate space
8777SPARC_rd, // Read state register
8778SPARC_rdpr, // Read privileged register
8779SPARC_restore, // Restore caller's window
8780SPARC_restored, // Window has been restored
8781SPARC_retry, // Return from trap and retry
8783SPARC_save, // Save caller's window
8784SPARC_saved, // Window has been saved
8785SPARC_sdiv, // 32-bit signed integer divide
8786SPARC_sdivcc, // 32-bit signed integer divide and modify condition codes
8787SPARC_sdivx, // 64-bit signed integer divide
8788SPARC_sethi, // Set high 22 bits of low word of integer register
8789SPARC_sir, // Software-initiated reset
8790SPARC_sll, // Shift left logical
8791SPARC_sllx, // Shift left logical, extended
8792SPARC_smul, // Signed integer multiply
8793SPARC_smulcc, // Signed integer multiply (and modify condition codes)
8794SPARC_sra, // Shift right arithmetic
8795SPARC_srax, // Shift right arithmetic, extended
8796SPARC_srl, // Shift right logical
8797SPARC_srlx, // Shift right logical, extended
8798SPARC_stb, // Store byte
8799SPARC_stba, // Store byte into alternate space
8800SPARC_stbar, // Store barrier
8801SPARC_std, // Store doubleword
8802SPARC_stda, // Store doubleword into alternate space
8803SPARC_stdf, // Store double floating-point
8804SPARC_stdfa, // Store double floating-point into alternate space
8805SPARC_stf, // Store floating-point
8806SPARC_stfa, // Store floating-point into alternate space
8807SPARC_stfsr, // Store floating-point state register
8808SPARC_sth, // Store halfword
8809SPARC_stha, // Store halfword into alternate space
8810SPARC_stqf, // Store quad floating-point
8811SPARC_stqfa, // Store quad floating-point into alternate space
8812SPARC_stw, // Store word
8813SPARC_stwa, // Store word into alternate space
8814SPARC_stx, // Store extended
8815SPARC_stxa, // Store extended into alternate space
8816SPARC_stxfsr, // Store extended floating-point state register
8817SPARC_sub, // Subtract
8818SPARC_subcc, // Subtract and modify condition codes
8819SPARC_subc, // Subtract with carry
8820SPARC_subccc, // Subtract with carry and modify condition codes
8821SPARC_swap, // Swap integer register with memory
8822SPARC_swapa, // Swap integer register with memory in alternate space
8823SPARC_taddcc, // Tagged add and modify condition codes
8824SPARC_taddcctv, // Tagged add and modify condition codes (trap on overflow)
8825SPARC_tsubcc, // Tagged subtract and modify condition codes
8826SPARC_tsubcctv, // Tagged subtract and modify condition codes (trap on overflow)
8827SPARC_t, // Trap on integer condition codes
8828SPARC_udiv, // Unsigned integer divide
8829SPARC_udivcc, // Unsigned integer divide and modify condition codes
8830SPARC_udivx, // 64-bit unsigned integer divide
8831SPARC_umul, // Unsigned integer multiply
8832SPARC_umulcc, // Unsigned integer multiply and modify condition codes
8833SPARC_wr, // Write Y register
8834SPARC_wrpr, // Write privileged register
8835SPARC_xnor, // Exclusive-nor
8836SPARC_xnorcc, // Exclusive-nor (and modify condition codes)
8837SPARC_xor, // Exclusive-or
8838SPARC_xorcc, // Exclusive-or (and modify condition codes)
8839
8840// Synthetic instructions
8841
8842SPARC_cmp, // Compare
8844SPARC_iprefetch, // Instruction prefetch
8846SPARC_ret, // Return from subroutine
8847SPARC_retl, // Return from leaf subroutine
8848SPARC_setuw, // Load unsigned constant
8849SPARC_setsw, // Load signed constant
8850SPARC_setx, // Load 64-bit constant
8851SPARC_signx, // Sign-extend 32-bit value to 64 bits
8852SPARC_not, // One's complement
8853SPARC_neg, // Two's complement
8854SPARC_cas, // Compare and swap
8855SPARC_casl, // Compare and swap, little endian
8856SPARC_casx, // Compare and swap extended
8857SPARC_casxl, // Compare and swap extended, little endian
8858SPARC_inc, // Increment
8859SPARC_inccc, // Increment and modify condition codes
8860SPARC_dec, // Deccrement
8861SPARC_deccc, // Decrement and modify condition codes
8862SPARC_btst, // Bit test
8863SPARC_bset, // Bit set
8864SPARC_bclr, // Bit clear
8865SPARC_btog, // Bit toggle
8866SPARC_clr, // Clear
8867SPARC_clrb, // Clear byte
8868SPARC_clrh, // Clear halfword
8869SPARC_clrx, // Clear extended word
8870SPARC_clruw, // Clear upper word
8871SPARC_pseudo_mov, // Move register
8872
8873// UtlraSPARC II extensions
8874
8875SPARC_alignaddress, // Calculate address for misaligned data access
8876SPARC_array, // 3-D address to blocked byte address conversion
8877SPARC_edge, // Edge boundary processing {little-endian}
8878SPARC_faligndata, // Perform data alignment for misaligned data
8879SPARC_fandnot1, // Negated src1 AND src2 (single precision)
8880SPARC_fandnot2, // src1 AND negated src2 (single precision)
8881SPARC_fand, // Logical AND (single precision)
8882SPARC_fcmpeq, // Four 16-bit/two 32-bit compare; set integer dest if src1 = src2
8883SPARC_fcmpgt, // Four 16-bit/two 32-bit compare; set integer dest if src1 > src2
8884SPARC_fcmple, // Four 16-bit/two 32-bit compare; set integer dest if src1 <= src2
8885SPARC_fcmpne, // Four 16-bit/two 32-bit compare; set integer dest if src1 != src2
8886SPARC_fexpand, // Four 8-bit to 16-bit expands
8887SPARC_fmul8sux16, // Signed upper 8/16-bit partitioned product of corresponding components
8888SPARC_fmul8ulx16, // Unsigned lower 8/16-bit partitioned product of corresponding components
8889SPARC_fmul8x16, // 8/16-bit partitioned product of corresponding components
8890SPARC_fmul8x16al, // 8/16-bit lower a partitioned product of 4 components
8891SPARC_fmul8x16au, // 8/16-bit upper a partitioned product of 4 components
8892SPARC_fmuld8sux16, // Signed upper 8/16-bit multiply 32-bit partitioned product of components
8893SPARC_fmuld8ulx16, // Unsigned lower 8/16-bit multiply 32-bit partitioned product of components
8894SPARC_fnand, // Logical NAND (single precision)
8895SPARC_fnor, // Logical NOR (single precision)
8896SPARC_fnot1, // Negate (1's complement) src1 (single precision)
8897SPARC_fnot2, // Negate (1's complement) src2 (single precision)
8898SPARC_fone, // One fill (single precision)
8899SPARC_fornot1, // Negated src1 OR src2 (single precision)
8900SPARC_fornot2, // src1 OR negated src2 (single precision)
8901SPARC_for, // Logical OR (single precision)
8902SPARC_fpackfix, // Two 32-bit to 16-bit fixed pack
8903SPARC_fpack, // Four 16-bit/two 32-bit pixel pack
8904SPARC_fpadd, // Four 16-bit/two 32-bit partitioned add (single precision)
8905SPARC_fpmerge, // Two 32-bit pixel to 64-bit pixel merge
8906SPARC_fpsub, // Four 16-bit/two 32-bit partitioned subtract (single precision)
8907SPARC_fsrc1, // Copy src1 (single precision)
8908SPARC_fsrc2, // Copy src2 (single precision)
8909SPARC_fxnor, // Logical XNOR (single precision)
8910SPARC_fxor, // Logical XOR (single precision)
8911SPARC_fzero, // Zero fill (single precision)
8912SPARC_pdist, // Distance between 8 8-bit components
8913SPARC_shutdown, // Power-down support
8914// SPARC_stdfa, // 8/16-bit store from a double precision FP register
8915
8916// V8 only instructions
8917SPARC_rett, // Return from trap
8918
8919// UA 2005 instructions
8920SPARC_bmask, // Byte Mask
8921SPARC_bshuffle, // Byte Shuffle
8922SPARC_edgen, // Edge boundary processing (no CC) {little-endian}
8923SPARC_rdhpr, // Read Hyperprivileged Register
8924SPARC_wrhpr, // Write Hyperprivileged Register
8925SPARC_siam, // Set Interval Arithmetic Mode
8926
8928
8929};
8930
8931/*
8932 * Interactive disassembler (IDA).
8933 * Copyright (c) 1990-2025 Hex-Rays
8934 * ALL RIGHTS RESERVED.
8935 *
8936 */
8937
8938
8939
8940enum
8941{
8942HPPA_null = 0, // Unknown Operation
8943
8945HPPA_addb, // Add and Branch
8946HPPA_addi, // Add to Immediate
8947HPPA_addib, // Add Immediate and Branch
8948HPPA_addil, // Add to Immediate Left
8950HPPA_andcm, // AND complement
8951HPPA_b, // Branch
8952HPPA_bb, // Branch on Bit
8953HPPA_be, // Branch External
8954HPPA_blr, // Branch and Link Register
8955HPPA_break, // Break
8956HPPA_bv, // Branch Vectored
8957HPPA_bve, // Branch Vectored External
8958HPPA_cldd, // Coprocessor Load Doubleword
8959HPPA_cldw, // Coprocessor Load Word
8960HPPA_clrbts, // Clear Branch Target Stack
8961HPPA_cmpb, // Compare and Branch
8962HPPA_cmpclr, // Compare and Clear
8963HPPA_cmpib, // Compare Immediate and Branch
8964HPPA_cmpiclr, // Compare Immediate and Clear
8965HPPA_copr, // Coprocessor Operation
8966HPPA_cstd, // Coprocessor Store Doubleword
8967HPPA_cstw, // Coprocessor Store Word
8968HPPA_dcor, // Decimal Correct
8969HPPA_depd, // Deposit Doubleword
8970HPPA_depdi, // Deposit Doubleword Immediate
8971HPPA_depw, // Deposit Word
8972HPPA_depwi, // Deposit Word Immediate
8973HPPA_diag, // Diagnose
8974HPPA_ds, // Divide Step
8975HPPA_extrd, // Extract Doubleword
8976HPPA_extrw, // Extract Word
8977HPPA_fdc, // Flush Data Cache
8978HPPA_fdce, // Flush Data Cache Entry
8979HPPA_fic, // Flush Instruction Cache
8980HPPA_fice, // Flush Instruction Cache Entry
8981HPPA_hadd, // Halfword Parallel Add
8982HPPA_havg, // Halfword Parallel Average
8983HPPA_hshl, // Halfword Parallel Shift Left
8984HPPA_hshladd, // Halfword Parallel Shift Left and Add
8985HPPA_hshr, // Halfword Parallel Shift Right
8986HPPA_hshradd, // Halfword Parallel Shift Right and Add
8987HPPA_hsub, // Halfword Parallel Subtract
8988HPPA_idtlbt, // Insert Data TLB Translation
8989HPPA_iitlbt, // Insert Instruction TLB Translation
8990HPPA_lci, // Load Coherence Index
8991HPPA_ldb, // Load Byte
8992HPPA_ldcd, // Load and Clear Doubleword
8993HPPA_ldcw, // Load and Clear Word
8994HPPA_ldd, // Load Doubleword
8995HPPA_ldda, // Load Doubleword Absolute
8996HPPA_ldh, // Load Halfword
8997HPPA_ldil, // Load Immediate Left
8998HPPA_ldo, // Load Offset
8999HPPA_ldsid, // Load Space Identifier
9000HPPA_ldw, // Load Word
9001HPPA_ldwa, // Load Word Absolute
9002HPPA_lpa, // Load Physical Address
9003HPPA_mfctl, // Move From Control Register
9004HPPA_mfia, // Move From Instruction Address
9005HPPA_mfsp, // Move From Space Register
9006HPPA_mixh, // Mix Halfwords
9007HPPA_mixw, // Mix Words
9008HPPA_movb, // Move and Branch
9009HPPA_movib, // Move Immediate and Branch
9010HPPA_mtctl, // Move To Control Register
9011HPPA_mtsarcm, // Move To Shift Amount Register Complement
9012HPPA_mtsm, // Move To System Mask
9013HPPA_mtsp, // Move To Space Register
9014HPPA_or, // Inclusive OR
9015HPPA_pdc, // Purge Data Cache
9016HPPA_pdtlb, // Purge Data TLB
9017HPPA_pdtlbe, // Purge Data TLB Entry
9018HPPA_permh, // Permute Halfwords
9019HPPA_pitlb, // Purge Instruction TLB
9020HPPA_pitlbe, // Purge Instruction TLB Entry
9021HPPA_popbts, // Pop Branch Target Stack
9022HPPA_probe, // Probe Access
9023HPPA_probei, // Probe Access Immediate
9024HPPA_pushbts, // Push Branch Target Stack
9025HPPA_pushnom, // Push Nominated
9026HPPA_rfi, // Return From Interruption
9027HPPA_rsm, // Reset System Mask
9028HPPA_shladd, // Shift Left and Add
9029HPPA_shrpd, // Sihft Right Pair Doubleword
9030HPPA_shrpw, // Sihft Right Pair Word
9031HPPA_spop0, // Special Operation Zero
9032HPPA_spop1, // Special Operation One
9033HPPA_spop2, // Special Operation Two
9034HPPA_spop3, // Special Operation Three
9035HPPA_ssm, // Set System Mask
9036HPPA_stb, // Store Byte
9037HPPA_stby, // Store Bytes
9038HPPA_std, // Store Doubleword
9039HPPA_stda, // Store Doubleword Absolute
9040HPPA_stdby, // Store Doubleword Bytes
9041HPPA_sth, // Store Halfword
9042HPPA_stw, // Store Word
9043HPPA_stwa, // Store Word Absolute
9044HPPA_sub, // Subtract
9045HPPA_subi, // Subtract from Immediate
9046HPPA_sync, // Synchronize Caches
9047HPPA_syncdma, // Synchronize DMA
9048HPPA_uaddcm, // Unit Add Complement
9049HPPA_uxor, // Unit XOR
9050HPPA_xor, // Exclusive OR
9051
9052// Floating point instructions
9053
9054HPPA_fabs, // Floating-Point Absolute Value
9055HPPA_fadd, // Floating-Point Add
9056HPPA_fcmp, // Floating-Point Compare
9057HPPA_fcnv, // Floating-Point Convert
9058HPPA_fcpy, // Floating-Point Copy
9059HPPA_fdiv, // Floating-Point Divide
9060HPPA_fid, // Floating-Point Identity
9061HPPA_fldd, // Floating-Point Load Doubleword
9062HPPA_fldw, // Floating-Point Load Word
9063HPPA_fmpy, // Floating-Point Multiply
9064HPPA_fmpyadd, // Floating-Point Multiply/Add
9065HPPA_fmpyfadd, // Floating-Point Multiply Fused Add
9066HPPA_fmpynfadd, // Floating-Point Multiply Negate Fused Add
9067HPPA_fmpysub, // Floating-Point Multiply/Subtract
9068HPPA_fneg, // Floating-Point Negate
9069HPPA_fnegabs, // Floating-Point Negate Absolute Value
9070HPPA_frem, // Floating-Point Remainder
9071HPPA_frnd, // Floating-Point Round to Integer
9072HPPA_fsqrt, // Floating-Point Square Root
9073HPPA_fstd, // Floating-Point Store Doubleword
9074HPPA_fstw, // Floating-Point Store Word
9075HPPA_fsub, // Floating-Point Subtract
9076HPPA_ftest, // Floating-Point Test
9077HPPA_xmpyu, // Fixed-Point Multiply Unsigned
9078
9079// Performance Monitor Coprocessor
9080
9081HPPA_pmdis, // Performance Monitor Disable
9082HPPA_pmenb, // Performance Monitor Enable
9083
9084// Macros
9085
9086HPPA_call, // Call Subroutine
9087HPPA_ret, // Return From Subroutine
9088HPPA_shld, // Shift Left Doubleword
9089HPPA_shlw, // Shift Left Word
9090HPPA_shrd, // Shift Right Doubleword
9091HPPA_shrw, // Shift Right Word
9092HPPA_ldi, // Load Immediate
9093HPPA_copy, // Copy Register
9094HPPA_mtsar, // Move To %SAR
9095HPPA_nop, // No Operation
9096
9098
9099};
9100
9101/*
9102 * Interactive disassembler (IDA).
9103 * Copyright (c) 1990-2025 Hex-Rays
9104 * ALL RIGHTS RESERVED.
9105 *
9106 */
9107
9108
9109
9110enum
9111{
9112
9113H8500_null = 0, // Unknown Operation
9114
9115// Data transfer
9116
9117H8500_mov_g, // B/W Move data
9118H8500_mov_e, // B Move data
9119H8500_mov_i, // W Move data
9120H8500_mov_f, // B/W Move data
9121H8500_mov_l, // B/W Move data
9122H8500_mov_s, // B/W Move data
9123H8500_ldm, // W Pop data from the stack to one or more registers
9124H8500_stm, // W Push data from one or more registers onto the stack
9125H8500_xch, // W Exchange data between two general registers
9126H8500_swap, // B Exchange the upper and lower bytes in a general register
9127H8500_movtpe, // B Transfer data from a general register to memory
9128H8500_movfpe, // B Transfer data from memory to a general register
9129
9130// Arithmetic operations
9131
9132H8500_add_g, // B/W Addition
9133H8500_add_q, // B/W Addition
9134H8500_sub, // B/W Subtraction
9135H8500_adds, // B/W Addition
9136H8500_subs, // B/W Subtraction
9137H8500_addx, // B/W Addition with carry
9138H8500_subx, // B/W Subtraction with borrow
9139H8500_dadd, // B Decimal addition
9140H8500_dsub, // B Decimal subtraction
9141H8500_mulxu, // B/W Unsigned multiplication
9142H8500_divxu, // B/W Unsigned division
9143H8500_cmp_g, // B/W Compare data
9144H8500_cmp_e, // B Compare data
9145H8500_cmp_i, // W Compare data
9146H8500_exts, // B Convert byte to word by extending the sign bit
9147H8500_extu, // B Convert byte to word data by padding with zero bits
9148H8500_tst, // B/W Compare with 0
9149H8500_neg, // B/W Negate
9150H8500_clr, // B/W Make zero
9151H8500_tas, // B Test and set
9152
9153// Logic Operations
9154
9155H8500_and, // B/W Logical AND
9156H8500_or, // B/W Logical OR
9157H8500_xor, // B/W Exclusive OR
9158H8500_not, // B/W Bitwise NOT
9159
9160// Shift Operations
9161
9162H8500_shal, // B/W Arithmetic shift left
9163H8500_shar, // B/W Arithmetic shift right
9164H8500_shll, // B/W Logical shift left
9165H8500_shlr, // B/W Logical shift right
9166H8500_rotl, // B/W Rotate left
9167H8500_rotr, // B/W Rotate right
9168H8500_rotxl, // B/W Rotate through carry left
9169H8500_rotxr, // B/W Rotate through carry right
9170
9171// Bit Manipulations
9172
9173H8500_bset, // B/W Test bit and set
9174H8500_bclr, // B/W Test bit and clear
9175H8500_bnot, // B/W Test bit and invert
9176H8500_btst, // B/W Test bit
9177
9178// Branching Instructions
9179
9180H8500_bra, // Branch Always
9181H8500_brn, // Branch Never
9182H8500_bhi, // Branch if High (C|Z = 0)
9183H8500_bls, // Branch if Low or Same (C|Z = 1)
9184H8500_bcc, // Branch if Carry Clear (C = 0)
9185H8500_bcs, // Branch if Carry Set (C = 1)
9186H8500_bne, // Branch if Not Equal (Z = 0)
9187H8500_beq, // Branch if Equal (Z = 1)
9188H8500_bvc, // Branch if Overflow Clear (V = 0)
9189H8500_bvs, // Branch if Overflow Set (V = 1)
9190H8500_bpl, // Branch if Plus (N = 0)
9191H8500_bmi, // Branch if Minus (N = 1)
9192H8500_bge, // Branch if Greater or Equal (N^V = 0)
9193H8500_blt, // Branch if Less Than (N^V = 1)
9194H8500_bgt, // Branch if Greater Than (Z|(N^V) = 0)
9195H8500_ble, // Branch if Less or Equal (Z|(N^V) = 1)
9196H8500_jmp, // Branch unconditionally (same page)
9197H8500_pjmp, // Branch unconditionally (specified page)
9198H8500_bsr, // Branch to subroutine (same page)
9199H8500_jsr, // Branch to subroutine (same page)
9200H8500_pjsr, // Branch to subroutine (specified page)
9201H8500_rts, // Return from subroutine (same page)
9202H8500_prts, // Return from subroutine (different page)
9203H8500_rtd, // Return from subroutine (same page) and adjust SP
9204H8500_prtd, // Return from subroutine (different page) and adjust SP
9205H8500_scb, // Control loop
9206
9207// System Control Instructions
9208
9209H8500_trapa, // Generate trap exception
9210H8500_trap_vs, // Generate trap exception if the V bit is set
9211H8500_rte, // Return from exception-handling routine
9212H8500_link, // Create stack frame
9213H8500_unlk, // Deallocate stack frame
9214H8500_sleep, // Go to power-down state
9215H8500_ldc, // B/W Move to control register
9216H8500_stc, // B/W Move from control register
9217H8500_andc, // B/W Logically AND control register
9218H8500_orc, // B/W Logically OR control register
9219H8500_xorc, // B/W Logically exclusive-OR control register
9220H8500_nop, // No operation
9222
9224
9225 };
9226
9227
9228
9229
9230enum
9231{
9232DSP56_null = 0, // Unknown Operation
9233
9234DSP56_abs, // Absolute Value
9235DSP56_adc, // Add Long with Carry
9236DSP56_add, // Addition
9237DSP56_addl, // Shift Left and Add
9238DSP56_addr, // Shift Right and Add
9239DSP56_and, // Logical AND
9240DSP56_andi, // AND Immediate to Control Register
9241DSP56_asl, // Arithmetic Shift Left
9242DSP56_asl4, // Arithmetic Shift Left 4
9243DSP56_asr, // Arithmetic Shift Right
9244DSP56_asr4, // Arithmetic Shift Right 4
9245DSP56_asr16, // Arithmetic Shift Right 16
9246DSP56_bfchg, // Test Bit Field and Change
9247DSP56_bfclr, // Clear Bit Field
9248DSP56_bfset, // Set Bit Field
9249DSP56_bftsth, // Test Bit Field High
9250DSP56_bftstl, // Test Bit Field Low
9251DSP56_bcc, // Branch Conditionaly
9252DSP56_bchg, // Bit Test and Change
9253DSP56_bclr, // Bit Test and Clear
9254DSP56_bra, // Branch Always
9255DSP56_brclr, // Branch if Bit Clear
9256DSP56_brkcc, // Exit Current DO Loop Conditionally
9257DSP56_brset, // Branch if Bit Set
9258DSP56_bscc, // Branch to Subroutine Conditionaly
9259DSP56_bsclr, // Branch to Subroutine if Bit Clear
9260DSP56_bset, // Bit Test and Set
9261DSP56_bsr, // Branch to Subroutine
9262DSP56_bsset, // Branch to Subroutine if Bit Set
9263DSP56_btst, // Bit Test on Memory and Registers
9264DSP56_chkaau, // Check address ALU result
9265DSP56_clb, // Count Leading Bits
9266DSP56_clr, // Clear an Operand
9267DSP56_clr24, // Clear 24 MS-bits of Accumulator
9268DSP56_cmp, // Compare
9269DSP56_cmpm, // Compare Magnitude
9270DSP56_cmpu, // Compare Unsigned
9271DSP56_debug, // Enter Debug Mode
9272DSP56_debugcc, // Enter Debug Mode Conditionally
9273DSP56_dec, // Decrement by One
9274DSP56_dec24, // Decrement 24 MS-bit of Accumulator
9275DSP56_div, // Divide Iteration
9276DSP56_dmac, // Double-Precision Multiply-Accumulate With Right Shift
9277DSP56_do, // Start Hardware Loop
9278DSP56_do_f, // Start Infinite Loop
9279DSP56_dor, // Start PC-Relative Hardware Loop
9280DSP56_dor_f, // Start PC-Relative Infinite Loop
9281DSP56_enddo, // Exit from Hardware Loop
9282DSP56_eor, // Logical Exclusive OR
9283DSP56_extract, // Extract Bit Field
9284DSP56_extractu, // Extract Unsigned Bit Field
9285DSP56_ext, // Sign Extend Accumulator
9286DSP56_ill, // Illegal Instruction
9287DSP56_imac, // Integer Multiply-Accumulate
9288DSP56_impy, // Integer Multiply
9289DSP56_inc, // Increment by One
9290DSP56_inc24, // Increment 24 MS-bit of Accumulator
9291DSP56_insert, // Insert Bit Field
9292DSP56_jcc, // Jump Conditionally
9293DSP56_jclr, // Jump if Bit Clear
9295DSP56_jscc, // Jump to Subroutine Conditionally
9296DSP56_jsclr, // Jump to Subroutine if Bit Clear
9297DSP56_jset, // Jump if Bit Set
9298DSP56_jsr, // Jump to Subroutine
9299DSP56_jsset, // Jump to Subroutine if Bit Set
9300DSP56_lra, // Load PC-Reliative Address
9301DSP56_lsl, // Logical Shift Left
9302DSP56_lsr, // Logical Shift Right
9303DSP56_lua, // Load Updated Address
9304DSP56_lea, // Load Updated Address
9305DSP56_mac, // Signed Multiply-Accumulate
9306DSP56_maci, // Signed Multiply-Accumulate With Immediate Operand
9307DSP56_mac_s_u, // Mixed Multiply-Accumulate
9308DSP56_macr, // Signed Multiply-Accumulate and Round
9309DSP56_macri, // Signed Multiply-Accumulate and Round With Immediate Operand
9310DSP56_max, // Transfer by Signed Value
9311DSP56_maxm, // Transfer by Magnitude
9312DSP56_merge, // Merge Two Half Words
9313DSP56_move, // Move Data
9314DSP56_movec, // Move Control Register
9315DSP56_movei, // Move Immediate Short
9316DSP56_movem, // Move Program Memory
9317DSP56_movep, // Move Peripheral Data
9318DSP56_moves, // Move Absolute Short
9319DSP56_mpy, // Signed Multiply
9320DSP56_mpyi, // Signed Multiply With Immediate Operand
9321DSP56_mpy_s_u, // Mixed Multiply
9322DSP56_mpyr, // Signed Multiply and Round
9323DSP56_mpyri, // Signed Multiply and Round With Immediate Operand
9324DSP56_neg, // Negate Accumulator
9325DSP56_negc, // Negate Accumulator
9326DSP56_nop, // No Operation
9327DSP56_norm, // Norm Accumulator Iteration
9328DSP56_normf, // Fast Accumulator Normalization
9329DSP56_not, // Logical Complement
9330DSP56_or, // Logical Inclusive OR
9331DSP56_ori, // OR Immediate to Control Register
9332DSP56_pflush, // Program Cache Flush
9333DSP56_pflushun, // Program Cache Flush Unlocked Sectors
9334DSP56_pfree, // Program Cache Global Unlock
9335DSP56_plock, // Lock Instruction Cache Sector
9336DSP56_plockr, // Lock Instruction Cache Relative Sector
9337DSP56_punlock, // Unlock Instruction Cache Sector
9338DSP56_punlockr, // Unlock Instruction Cache Relative Sector
9339DSP56_rep, // Repeat Next Instruction
9340DSP56_repcc, // Repeat Next Instruction
9341DSP56_reset, // Reset On-Chip Peripheral Devices
9342DSP56_rnd, // Round Accumulator
9343DSP56_rol, // Rotate Left
9344DSP56_ror, // Rotate Right
9345DSP56_rti, // Return from Interrupt
9346DSP56_rts, // Return from Subroutine
9347DSP56_sbc, // Subtract Long with Carry
9348DSP56_stop, // Stop Processing (Low-Power Standby)
9349DSP56_sub, // Subtract
9350DSP56_subl, // Shift Left and Subtract
9351DSP56_subr, // Shift Right and Subtract
9352DSP56_swap, // Swap Accumulator Words
9353DSP56_tcc, // Transfer Conditionally
9354DSP56_tfr, // Transfer Data ALU Register
9355DSP56_tfr2, // Transfer Data ALU Register
9356DSP56_tfr3, // Transfer Data ALU Register
9357DSP56_trap, // Software Interrupt
9358DSP56_trapcc, // Software Interrupt Conditionally
9359DSP56_tst, // Test an Operand
9360DSP56_tst2, // Test an Operand
9361DSP56_vsl, // Viterbi Shift Left
9362DSP56_wait, // Wait for Interrupt or DMA Request (Low-Power Standby)
9363DSP56_zero, // Zero Extend Accumulator
9364DSP56_swi, // Software Interrupt (only for 56000)
9365DSP56_pmov, // Pseudo insn
9367
9368};
9369
9370
9371
9372
9373enum
9374{
9375DSP96_null = 0, // Unknown Operation
9376
9377DSP96_abs, // Absolute Value
9378DSP96_add, // Addition
9379DSP96_addc, // Add with Carry
9380DSP96_and, // Logical AND
9381DSP96_andc, // AND Immediate with Complement
9382DSP96_andi, // AND Immediate to Control Register
9383DSP96_asl, // Arithmetic Shift Left
9384DSP96_asr, // Arithmetic Shift Right
9385DSP96_bcc, // Branch Conditionally (indirect)
9386DSP96_bccd, // Branch Conditionally (direct)
9387DSP96_bchg, // Bit Test and Change
9388DSP96_bclr, // Bit Test and Clear
9389DSP96_bfind, // Find Leading One
9390DSP96_bra, // Branch Always
9391DSP96_brclr, // Branch if Bit Clear
9392DSP96_brset, // Branch if Bit Set
9393DSP96_bscc, // Branch to Subroutine Conditionally (indirect)
9394DSP96_bsccd, // Branch to Subroutine Conditionally (direct)
9395DSP96_bsclr, // Branch to Subroutine if Bit Clear
9396DSP96_bset, // Bit Test and Set
9397DSP96_bsr, // Branch to Subroutine (indirect)
9398DSP96_bsrd, // Branch to Subroutine (direct)
9399DSP96_bsset, // Branch to Subroutine if Bit Set
9400DSP96_btst, // Bit Test on Memory and Registers
9401DSP96_clr, // Clear an Operand
9402DSP96_cmp, // Compare
9403DSP96_cmpg, // Graphics Compare with Trivial Accept.Reject Flags
9404DSP96_debugcc, // Enter Debug Mode Conditionally
9405DSP96_dec, // Decrement by One
9406DSP96_do, // Start Hardware Loop
9407DSP96_dor, // Start PC-Relative Hardware Loop
9408DSP96_enddo, // Exit from Hardware Loop
9409DSP96_eor, // Logical Exclusive OR
9410DSP96_ext, // Sign Extend 16-Bit To 32-Bit
9411DSP96_extb, // Sign Extend 8-Bit to 32-Bit
9412DSP96_fabs, // Absolute Value
9414DSP96_faddsub, // Add and Subtract
9415DSP96_fbcc, // Branch Conditionally (Floating-Point Condition) (indirect)
9416DSP96_fbccd, // Branch Conditionally (Floating-Point Condition) (direct)
9417DSP96_fbscc, // Branch to Subroutine Conditionally (Floating-Point Condition) (indirect)
9418DSP96_fbsccd, // Branch to Subroutine Conditionally (Floating-Point Condition) (direct)
9419DSP96_fclr, // Clear a Floating-Point Operand
9420DSP96_fcmp, // Compare
9421DSP96_fcmpg, // Graphics Compare with Trivial Accept.Reject Flags
9422DSP96_fcmpm, // Compare Magnitude
9423DSP96_fcopys, // Copy Sign
9424DSP96_fdebugcc, // Enter Debug Mode Conditionally
9425DSP96_fgetman, // Get Mantissa
9426DSP96_fint, // Convert to Floating-Point Integer
9427DSP96_fjcc, // Jump Conditionally (indirect)
9428DSP96_fjccd, // Jump Conditionally (direct)
9429DSP96_fjscc, // Jump to Subroutine Conditionally (indirect)
9430DSP96_fjsccd, // Jump to Subroutine Conditionally (direct)
9431DSP96_float, // Integer to Floating-Point Conversion
9432DSP96_floatu, // Unsigned Integer to SP Floating-Point Conversion
9433DSP96_floor, // Convert to Floating-Point Integer round to -Infinity
9434DSP96_fmove, // Move FP Data Register(s)
9435DSP96_fmpyfadd, // Multiply and Add
9436// DSP96_fmpyfaddx, // Multiply and Add (Single Extended Precision) (Handled with DSP96_fmpyfadd)
9437DSP96_fmpyfaddsub, // Multiply, Add and Subtract
9438// DSP96_fmpyfaddsubx, // Multiply, Add and Subtract (Single Extended Precision) (Handled with DSP96_fmpyfaddsub)
9439DSP96_fmpyfsub, // Multiply and Subtract
9440// DSP96_fmpyfsubx, // Multiply and Subtract (Single Extended Precision) (Handled with DSP96_fmpyfsub)
9441DSP96_fmpy, // Multiply
9442DSP96_fneg, // Change sign
9443DSP96_fscale, // Scale a Floating-Point Operand
9444DSP96_fseedd, // Reciprocal Approximation
9445DSP96_fseedr, // Square-Root Reciprocal Approximation
9446DSP96_fsub, // Subtract
9447DSP96_ftfr, // Transfer Floating-Point Register
9448DSP96_ftrapcc, // Conditional Software Interrupt
9449DSP96_ftst, // Test a floating-Point Operand
9450DSP96_getexp, // Get Exponent
9451DSP96_illegal, // Illegal Instruction
9452DSP96_inc, // Increment by One
9453DSP96_int, // Floating-Point to Integer Conversion
9454DSP96_intrz, // Floating-Point to Integer Conversion Round to Zero
9455DSP96_intu, // Floating-Point to Unsigned Integer Conversion
9456DSP96_inturz, // Floating-Point to Unsigned Integer Conversion Round to Zero
9457DSP96_jcc, // Jump Conditionally (indirect)
9458DSP96_jccd, // Jump Conditionally (direct)
9459DSP96_jclr, // Jump if Bit Clear
9460// DSP96_jmp, // Jump (The same as jcc with condition code = 11111)
9461DSP96_join, // Join two 16-Bit Integers
9462DSP96_joinb, // Join two 8-Bit Integers
9463DSP96_jscc, // Jump to Subroutine Conditionally
9464DSP96_jsccd, // Jump to Subroutine Conditionally
9465DSP96_jsclr, // Jump to Subroutine if Bit Clear
9466DSP96_jset, // Jump if Bit Set
9467// DSP96_jsr, // Jump to Subroutine ( The same as jscc with condition code = 11111)
9468DSP96_jsset, // Jump to Subroutine if Bit Set
9469DSP96_lea, // Load Effective Address
9470DSP96_lra, // Load PC Relative Address
9471DSP96_lsl, // Logical Shift Left
9472DSP96_lsr, // Logical Shift Right
9473DSP96_move, // Move Data Register(s)
9474DSP96_movec, // Move Control Register
9475DSP96_movei, // Move Immediate
9476DSP96_movem, // Move Program Memory
9477DSP96_movep, // Move Peripheral Data
9478DSP96_moves, // Move Absolute Short
9479DSP96_moveta, // Move Data Register(s) and Test Address
9480DSP96_mpys, // Signed Multiply
9481DSP96_mpyu, // Unsigned Multiply
9482DSP96_neg, // Negate Accumulator
9483DSP96_negc, // Negate with Carry
9484DSP96_nop, // No Operation
9485DSP96_not, // Logical Complement
9486DSP96_or, // Logical Inclusive OR
9487DSP96_orc, // OR With Compliment
9488DSP96_ori, // OR Immediate to Control Register
9489DSP96_rep, // Repeat Next Instruction
9490DSP96_reset, // Reset On-Chip Peripheral Devices
9491DSP96_rol, // Rotate Left
9492DSP96_ror, // Rotate Right
9493DSP96_rti, // Return from Interrupt
9494DSP96_rtr, // Return from Subroutine and Restore Status Register
9495DSP96_rts, // Return from Subroutine
9496DSP96_setw, // Set an Operand
9497DSP96_split, // Extract 16-Bit Integer
9498DSP96_splitb, // Extract 8-Bit Integer
9499DSP96_stop, // Stop Processing (Low Power Stand-by)
9500DSP96_sub, // Subtract
9501DSP96_subc, // Subtract with Carry
9502DSP96_tfr, // Transfer Data ALU Register
9503DSP96_trapcc, // Software Interrupt Conditionally
9504DSP96_tst, // Test an Operand
9505DSP96_wait, // Wait for Interrupt or DMA Request (Low Power Stand-by)
9507
9508};
9509
9510enum PMNum // Parallel Move enumeration
9511{
9513 PM96_R2R, // Register to register parallel move
9514 PM96_Update, // Move update
9515 PM96_XYMem, // X or Y memory move
9516 PM96_XYmemR, // X or Y memory and Registry move
9517 PM96_Long, // Long Memory move
9518 PM96_XY, // XY Memory move
9519
9520 PM96_IFcc, // Integer if conditional Instruction without CCR update
9521 // All the following moves are handled by IFcc
9522 // PM96_FFcc, // Floating-Point if conditional Instruction without CCR, ER, IER update
9523 // PM96_FFccU, // Floating-Point if conditional Instruction with CCR, ER, IER update
9524 // PM96_IFccU, // Integer if conditional Instruction with CCR update
9525};
9526
9527/*
9528 * Interactive disassembler (IDA).
9529 * Copyright (c) 1990-2025 Hex-Rays
9530 * ALL RIGHTS RESERVED.
9531 *
9532 */
9533
9534
9535
9536enum
9537{
9538
9539C166_null = 0, // Unknown Operation
9540
9541C166_add, // Integer Addition
9542C166_addb, // Integer Addition Byte
9543C166_addc, // Integer Addition with Carry
9544C166_addcb, // Integer Addition with Carry Byte
9545C166_and, // Logical AND
9546C166_andb, // Logical AND Byte
9547C166_ashr, // Arithmetic Shift Right
9548C166_atomic, // Begin ATOMIC Sequence
9549C166_band, // Bit Logical AND
9550C166_bclr, // Bit Clear
9551C166_bcmp, // Bit to Bit Compare
9552C166_bfldh, // Bit Field High Byte
9553C166_bfldl, // Bit Field Low Byte
9554C166_bmov, // Bit to Bit Move
9555C166_bmovn, // Bit to Bit Move and Negate
9556C166_bor, // Bit Logical OR
9557C166_bset, // Bit Set
9558C166_bxor, // Bit Logical XOR
9559C166_calla, // Call Subroutine Absolute
9560C166_calli, // Call Subroutine Indirect
9561C166_callr, // Call Subroutine Relative
9562C166_calls, // Call Inter-Segment Subroutine
9563C166_cmp, // Integer Compare
9564C166_cmpb, // Integer Compare Byte
9565C166_cmpd1, // Integer Compare and Decrement by 1
9566C166_cmpd2, // Integer Compare and Decrement by 2
9567C166_cmpi1, // Integer Compare and Increment by 1
9568C166_cmpi2, // Integer Compare and Increment by 2
9569C166_cpl, // Integer One's Complement
9570C166_cplb, // Integer One's Complement Byte
9571C166_diswdt, // Disable Watchdog Timer
9572C166_div, // 16-by-16 Signed Division
9573C166_divl, // 32-by-16 Signed Division
9574C166_divlu, // 32-by-16 Unsigned Division
9575C166_divu, // 16-by-16 Unsigned Division
9576C166_einit, // End of Intialization
9577C166_extr, // Begin Extended Register Sequence
9578C166_extp, // Begin Extended Page Sequence
9579C166_extpr, // Begin Extended Page and Register Sequence
9580C166_exts, // Begin Extended Segment Sequence
9581C166_extsr, // Begin Extended Segment and Register Sequence
9582C166_idle, // Enter Idle Mode
9583C166_jb, // Relative Jump if Bit Set
9584C166_jbc, // Relative Jump if Bit Set and Clear Bit
9585C166_jmpa, // Absolute Conditional Jump
9586C166_jmpi, // Indirect Conditional Jump
9587C166_jmpr, // Relative Conditional Jump
9588C166_jmps, // Absolute Inter-Segment Jump
9589C166_jnb, // Relative Jump if Bit Clear
9590C166_jnbs, // Relative Jump if Bit Clear and Set Bit
9591C166_mov, // Move Word
9592C166_movb, // Move Byte
9593C166_movbs, // Move Byte Sign Extend
9594C166_movbz, // Move Byte Zero Extend
9595C166_mul, // Signed Multiplication
9596C166_mulu, // Unsigned Multiplication
9597C166_neg, // Integer Two's Complement
9598C166_negb, // Integer Two's Complement Byte
9599C166_nop, // No Operation
9600C166_or, // Logical OR
9601C166_orb, // Logical OR Byte
9602C166_pcall, // Push Word and Call Subroutine Absolute
9603C166_pop, // Pop Word from System Stack
9604C166_prior, // Prioritize Register
9605C166_push, // Push Word on System Stack
9606C166_pwrdn, // Enter Power Down Mode
9607C166_ret, // Return from Subroutine
9608C166_reti, // Return from Interrupt Routine
9609C166_retp, // Return from Subroutine and Pop Word
9610C166_rets, // Return from Inter-Segment Subroutine
9611C166_rol, // Rotate Left
9612C166_ror, // Rotate Right
9613C166_scxt, // Switch Context
9614C166_shl, // Shift Left
9615C166_shr, // Shift Rightt
9616C166_srst, // Software Reset
9617C166_srvwdt, // Service Watchdog Timer
9618C166_sub, // Integer Subtraction
9619C166_subb, // Integer Subtraction Byte
9620C166_subc, // Integer Subtraction with Carry
9621C166_subcb, // Integer Subtraction with Carry Byte
9622C166_trap, // Software Trap
9623C166_xor, // Logical Exclusive OR
9624C166_xorb, // Logical Exclusive OR Byte
9625
9626// ST10 MAC instructions
9627
9628ST10_CoABS, // Absolute Value
9630ST10_CoASHR, // Accumulator Arithmetic Shift Right with Optional Round
9631ST10_CoCMP, // Compare
9632ST10_CoLOAD, // Load Accumulator
9633ST10_CoMAC, // Multiply-Accumulate & Optional Round
9634ST10_CoMACM, // Multiply-Accumulate Parallel Data Move & Optional Round
9635ST10_CoMAX, // Maximum
9636ST10_CoMIN, // Minimum
9637ST10_CoMOV, // Memory to Memory Move
9638ST10_CoMUL, // Multiply & Optional Round
9639ST10_CoNEG, // Negate Accumulator with Optional Rounding
9640ST10_CoNOP, // No-Operation
9641ST10_CoRND, // Round Accumulator
9642ST10_CoSHL, // Accumulator Logical Shift Left
9643ST10_CoSHR, // Accumulator Logical Shift Right
9644ST10_CoSTORE, // Store a MAC-Unit Register
9645ST10_CoSUB, // Subtract
9646
9647// missing C166v2/ST10 instructions
9648
9649C166_enwdt, // Enable Watchdog Timer
9650C166_sbrk, // Software Break
9651
9653
9654 };
9655
9656/*
9657 * Interactive disassembler (IDA).
9658 * Copyright (c) 1990-2025 Hex-Rays
9659 * ALL RIGHTS RESERVED.
9660 *
9661 */
9662
9663
9664
9665enum
9666{
9667ST20_null = 0, // Unknown Operation
9668
9669// C1 instructions
9670
9671ST20_adc, // add constant
9673ST20_addc, // add with carry
9674ST20_ajw, // adjust work space
9676ST20_arot, // anti-rotate stack
9677ST20_ashr, // arithmetic shift right
9678ST20_biquad, // biquad IIR filter step
9679ST20_bitld, // load bit
9680ST20_bitmask, // create bit mask
9681ST20_bitst, // store bit
9682ST20_breakpoint, // breakpoint
9683ST20_cj, // conditional jump
9684ST20_dequeue, // dequeue a process
9685ST20_divstep, // divide step
9686ST20_dup, // duplicate
9687ST20_ecall, // exception call
9688ST20_enqueue, // enqueue a process
9689ST20_eqc, // equals constant
9690ST20_eret, // exception return
9691ST20_fcall, // function call
9692ST20_gajw, // general adjust workspace
9693ST20_gt, // greater than
9694ST20_gtu, // greater than unsigned
9695ST20_io, // input/output
9696ST20_j, // jump
9697ST20_jab, // jump absolute
9698ST20_lbinc, // load byte and increment
9699ST20_ldc, // load constant
9700ST20_ldl, // load local
9701ST20_ldlp, // load local pointer
9702ST20_ldnl, // load non-local
9703ST20_ldnlp, // load non-local pointer
9704ST20_ldpi, // load pointer to instruction
9705ST20_ldprodid, // load product identity
9706ST20_ldtdesc, // load task descriptor
9707ST20_lsinc, // load sixteen and increment
9708ST20_lsxinc, // load sixteen sign extended and increment
9709ST20_lwinc, // load word and increment
9710ST20_mac, // multiply accumulate
9711ST20_mul, // multiply
9712ST20_nfix, // negative prefix
9713ST20_nop, // no operation
9714ST20_not, // bitwise not
9715ST20_opr, // operate
9717ST20_order, // order
9718ST20_orderu, // unsigned order
9719ST20_pfix, // prefix
9720ST20_rev, // reverse
9721ST20_rmw, // read modify write
9722ST20_rot, // rotate stack
9723ST20_run, // run process
9724ST20_saturate, // saturate
9725ST20_sbinc, // store byte and increment
9726ST20_shl, // shift left
9727ST20_shr, // shift right
9728ST20_signal, // signal
9729ST20_smacinit, // initialize short multiply accumulate loop
9730ST20_smacloop, // short multiply accumulate loop
9731ST20_smul, // short multiply
9732ST20_ssinc, // store sixteen and increment
9733ST20_statusclr, // clear bits in status register
9734ST20_statusset, // set bits in status register
9735ST20_statustst, // test status register
9736ST20_stl, // store local
9737ST20_stnl, // store non-local
9738ST20_stop, // stop process
9739ST20_sub, // subtract
9740ST20_subc, // subtract with carry
9741ST20_swap32, // byte swap 32
9742ST20_swinc, // store word and increment
9743ST20_timeslice, // timeslice
9744ST20_umac, // unsigned multiply accumulate
9745ST20_unsign, // unsign argument
9747ST20_wsub, // word subscript
9748ST20_xbword, // sign extend byte to word
9749ST20_xor, // exclusive or
9750ST20_xsword, // sign extend sixteen to word
9751
9752// C2-C4 instructions
9753
9754ST20_alt, // alt start
9755ST20_altend, // alt end
9756ST20_altwt, // alt wait
9757ST20_bcnt, // byte count
9758ST20_bitcnt, // count bits set in word
9759ST20_bitrevnbits, // reverse bottom n bits in word
9760ST20_bitrevword, // reverse bits in word
9761ST20_bsub, // byte subscript
9763ST20_causeerror, // cause error
9764ST20_cb, // check byte
9765ST20_cbu, // check byte unsigned
9766ST20_ccnt1, // check count from 1
9767ST20_cflerr, // check floating point error
9768ST20_cir, // check in range
9769ST20_ciru, // check in range unsigned
9770ST20_clockdis, // clock disable
9771ST20_clockenb, // clock enable
9772ST20_clrhalterr, // clear halt-on error flag
9773ST20_crcbyte, // calculate CRC on byte
9774ST20_crcword, // calculate CRC on word
9775ST20_cs, // check sixteen
9776ST20_csngl, // check single
9777ST20_csu, // check sixteen unsigned
9778ST20_csub0, // check subscript from 0
9779ST20_cword, // check word
9780ST20_devlb, // device load byte
9781ST20_devls, // device load sixteen
9782ST20_devlw, // device load word
9783ST20_devmove, // device move
9784ST20_devsb, // device store byte
9785ST20_devss, // device store sixteen
9786ST20_devsw, // device store word
9787ST20_diff, // difference
9788ST20_disc, // disable channel
9789ST20_diss, // disable skip
9790ST20_dist, // disable timer
9791ST20_div, // divide
9792ST20_enbc, // enable channel
9793ST20_enbs, // enable skip
9794ST20_enbt, // enable timer
9795ST20_endp, // end process
9796ST20_fmul, // fractional multiply
9797ST20_fptesterr, // test for FPU error
9798ST20_gcall, // general call
9799ST20_gintdis, // general interrupt disable
9800ST20_gintenb, // general interrupt enable
9801ST20_in, // input message
9802ST20_insertqueue, // insert at front of scheduler queue
9803ST20_intdis, // (localised) interrupt disable
9804ST20_intenb, // (localised) interrupt enable
9805ST20_iret, // interrupt return
9806ST20_ladd, // long add
9807ST20_lb, // load byte
9808ST20_lbx, // load byte and sign extend
9809ST20_ldclock, // load clock
9810ST20_lddevid, // load device identity
9811ST20_ldiff, // long diff
9812ST20_ldinf, // load infinity
9813ST20_ldiv, // long divide
9814ST20_ldmemstartval, // load value of MemStart address
9815ST20_ldpri, // load current priority
9816ST20_ldshadow, // load shadow registers
9817ST20_ldtimer, // load timer
9818ST20_ldtraph, // load trap handler
9819ST20_ldtrapped, // load trapped process status
9820ST20_lend, // loop end
9821ST20_lmul, // long multiply
9822ST20_ls, // load sixteen
9823ST20_lshl, // long shift left
9824ST20_lshr, // long shift right
9825ST20_lsub, // long subtract
9826ST20_lsum, // long sum
9827ST20_lsx, // load sixteen and sign extend
9828ST20_mint, // minimum integer
9829ST20_move, // move message
9830ST20_move2dall, // 2D block copy
9831ST20_move2dinit, // initialize data for 2D block move
9832ST20_move2dnonzero, // 2D block copy non-zero bytes
9833ST20_move2dzero, // 2D block copy zero bytes
9834ST20_norm, // normalize
9835ST20_out, // output message
9836ST20_outbyte, // output byte
9837ST20_outword, // output word
9838ST20_pop, // pop processor stack
9839ST20_postnormsn, // post-normalize correction of single length fp number
9840ST20_prod, // product
9841ST20_reboot, // reboot
9842ST20_rem, // remainder
9843ST20_resetch, // reset channel
9844ST20_restart, // restart
9845ST20_ret, // return
9846ST20_roundsn, // round single length floating point number
9847ST20_runp, // run process
9848ST20_satadd, // saturating add
9849ST20_satmul, // saturating multiply
9850ST20_satsub, // saturating subtract
9851ST20_saveh, // save high priority queue registers
9852ST20_savel, // save low priority queue registers
9853ST20_sb, // store byte
9854ST20_seterr, // set error flags
9855ST20_sethalterr, // set halt-on error flag
9856ST20_settimeslice, // set timeslicing status
9857ST20_slmul, // signed long multiply
9858ST20_ss, // store sixteen
9859ST20_ssub, // sixteen subscript
9860ST20_startp, // start process
9861ST20_stclock, // store clock register
9862ST20_sthb, // store high priority back pointer
9863ST20_sthf, // store high priority front pointer
9864ST20_stlb, // store low priority back pointer
9865ST20_stlf, // store low priority front pointer
9866ST20_stoperr, // stop on error
9867ST20_stopp, // stop process
9868ST20_stshadow, // store shadow registers
9869ST20_sttimer, // store timer
9870ST20_sttraph, // store trap handler
9871ST20_sttrapped, // store trapped process
9872ST20_sulmul, // signed timer unsigned long multiply
9874ST20_swapqueue, // swap scheduler queue
9875ST20_swaptimer, // swap timer queue
9876ST20_talt, // timer alt start
9877ST20_taltwt, // timer alt wait
9878ST20_testerr, // test error flag
9879ST20_testhalterr, // test halt-on error flag
9880ST20_testpranal, // test processor analysing
9881ST20_tin, // timer input
9882ST20_trapdis, // trap disable
9883ST20_trapenb, // trap enable
9884ST20_tret, // trap return
9885ST20_unpacksn, // unpack single length fp number
9886ST20_wcnt, // word count
9887ST20_wsubdb, // form double word subscript
9888ST20_xdble, // extend to double
9889ST20_xword, // extend word
9890
9892
9893 };
9894
9895/*
9896 * Interactive disassembler (IDA).
9897 * Copyright (c) 1990-2025 Hex-Rays
9898 * ALL RIGHTS RESERVED.
9899 *
9900 */
9901
9902
9903
9904enum
9905{
9906ST7_null = 0, // Unknown Operation
9907
9908ST7_adc, // Add with Carry
9909ST7_add, // Addition
9910ST7_and, // Logical And
9911ST7_bcp, // Bit compare
9912ST7_bres, // Bit Reset
9913ST7_bset, // Bit Set
9914ST7_btjf, // Jump if bit is false
9915ST7_btjt, // Jump if bit is true
9916ST7_call, // Call subroutine
9917ST7_callr, // Call subroutine relative
9918ST7_clr, // Clear
9919ST7_cp, // Arithmetic Compare
9920ST7_cpl, // One Complement
9921ST7_dec, // Decrement
9922ST7_halt, // Halt
9923ST7_iret, // Interrupt routine return
9924ST7_inc, // Increment
9925ST7_jp, // Absolute Jump
9926ST7_jra, // Jump relative always
9927ST7_jrt, // Jump relative
9928ST7_jrf, // Never jump
9929ST7_jrih, // Jump if Port INT pin = 1
9930ST7_jril, // Jump if Port INT pin = 0
9931ST7_jrh, // Jump if H = 1
9932ST7_jrnh, // Jump if H = 0
9933ST7_jrm, // Jump if I = 1
9934ST7_jrnm, // Jump if I = 0
9935ST7_jrmi, // Jump if N = 1 (minus)
9936ST7_jrpl, // Jump if N = 0 (plus)
9937ST7_jreq, // Jump if Z = 1 (equal)
9938ST7_jrne, // Jump if Z = 0 (not equal)
9939ST7_jrc, // Jump if C = 1
9940ST7_jrnc, // Jump if C = 0
9941ST7_jrult, // Jump if C = 1
9942ST7_jruge, // Jump if C = 0
9943ST7_jrugt, // Jump if (C + Z = 0)
9944ST7_jrule, // Jump if (C + Z = 1)
9945ST7_ld, // Load
9946ST7_mul, // Multiply
9947ST7_neg, // Negate
9948ST7_nop, // No Operation
9949ST7_or, // OR Operation
9950ST7_pop, // Pop from the Stack
9951ST7_push, // Push onto the Stack
9952ST7_rcf, // Reset carry flag
9953ST7_ret, // Subroutine Return
9954ST7_rim, // Enable Interrupts
9955ST7_rlc, // Rotate left true
9956ST7_rrc, // Rotate right true
9957ST7_rsp, // Reset Stack Pointer
9958ST7_sbc, // Subtract with Carry
9959ST7_scf, // Set carry flag
9960ST7_sim, // Disable Interrupts
9961ST7_sla, // Shift left Arithmetic
9962ST7_sll, // Shift left Logic
9963ST7_srl, // Shift right Logic
9964ST7_sra, // Shift right Arithmetic
9965ST7_sub, // Substraction
9966ST7_swap, // SWAP nibbles
9967ST7_tnz, // Test for Neg & Zero
9968ST7_trap, // S/W trap
9969ST7_wfi, // Wait for Interrupt
9970ST7_xor, // Exclusive OR
9971
9973
9974 };
9975
9976/*
9977 * Interactive disassembler (IDA).
9978 * Copyright (c) 1990-2025 Hex-Rays
9979 * ALL RIGHTS RESERVED.
9980 *
9981 */
9982
9983
9984
9985enum
9986{
9992IA64_add, // 5 Add
9994IA64_addp4, // 7 Add pointer
9996IA64_alloc, // 9 Allocate stack frame
9997IA64_and, // 10 Logical AND
9998IA64_andcm, // 11 And complement
10001IA64_br, // 14 Branch
10002IA64_break, // 15 Break
10003IA64_brl, // 16 Branch long
10004IA64_brp, // 17 Branch predict
10005IA64_bsw, // 18 Bank switch
10009IA64_chk, // 22 Speculation check
10012IA64_clrrrb, // 25 Clear RRB
10013IA64_cmp, // 26 Compare
10014IA64_cmp4, // 27 Compare word
10015IA64_cmpxchg1, // 28 Compare and exchange byte
10016IA64_cmpxchg2, // 29 Compare and exchange halfword
10017IA64_cmpxchg4, // 30 Compare and exchange word
10018IA64_cmpxchg8, // 31 Compare and exchange double word
10020IA64_cover, // 33 Cover stack frame
10022IA64_czx1, // 35 Compute zero index
10023IA64_czx2, // 36 Compute zero index
10025IA64_dep, // 38 Deposit
10029IA64_epc, // 42 Enter privileged code
10034IA64_extr, // 47 Extract
10036IA64_fabs, // 49 Floating point absolute value
10037IA64_fadd, // 50 Floating point add
10038IA64_famax, // 51 Floating point absolute maximum
10039IA64_famin, // 52 Floating point absolute minimum
10040IA64_fand, // 53 Floating point logical and
10041IA64_fandcm, // 54 Floating point and complement
10043IA64_fc, // 56 Flush cache
10044IA64_fchkf, // 57 Floating point check flags
10045IA64_fclass, // 58 Floating point class
10046IA64_fclrf, // 59 Floating point clear flags
10047IA64_fcmp, // 60 Floating point compare
10048IA64_fcvt, // 61 Convert floating point to/from integer
10049IA64_fetchadd4, // 62 Fetch word and add immediate
10050IA64_fetchadd8, // 63 Fetch double word and add immediate
10053IA64_flushrs, // 66 Flush register stack
10054IA64_fma, // 67 Floating point multiply add
10055IA64_fmax, // 68 Floating point maximum
10056IA64_fmerge, // 69 Floating point merge
10057IA64_fmin, // 70 Floating point minimum
10058IA64_fmix, // 71 Floating point mix
10059IA64_fmpy, // 72 Floating point multiply
10060IA64_fms, // 73 Floating point multiply subtract
10061IA64_fneg, // 74 Floating point negate
10062IA64_fnegabs, // 75 Floating point negate absolute value
10063IA64_fnma, // 76 Floating point negative multiply add
10064IA64_fnmpy, // 77 Floating point negative multiply
10065IA64_fnorm, // 78 Floating point normalize
10066IA64_for, // 79 Floating point logical or
10067IA64_fpabs, // 80 Floating point parallel absolute value
10068IA64_fpack, // 81 Floating point pack
10069IA64_fpamax, // 82 Floating point parallel absolute maximum
10070IA64_fpamin, // 83 Floating point parallel absolute minimum
10071IA64_fpcmp, // 84 Floating point parallel compare
10072IA64_fpcvt, // 85 Floating point parallel conversion
10073IA64_fpma, // 86 Floating point parallel multiply add
10074IA64_fpmax, // 87 Floating point parallel maximum
10075IA64_fpmerge, // 88 Floating point parallel merge
10076IA64_fpmin, // 89 Floating point parallel minimum
10077IA64_fpmpy, // 90 Floating point parallel multiply
10078IA64_fpms, // 91 Floating point parallel multiply subtract
10079IA64_fpneg, // 92 Floating point parallel negate
10080IA64_fpnegabs, // 93 Floating point parallel negate absolute value
10081IA64_fpnma, // 94 Floating point parallel negative multiply add
10082IA64_fpnmpy, // 95 Floating point parallel negative multiply
10083IA64_fprcpa, // 96 Floating point parallel reciprocal approximation
10084IA64_fprsqrta, // 97 Floating point parallel reciprocal square root approximation
10085IA64_frcpa, // 98 Floating point reciprocal approximation
10086IA64_frsqrta, // 99 Floating point reciprocal square root approximation
10087IA64_fselect, // 100 Floating point select
10088IA64_fsetc, // 101 Floating point set controls
10089IA64_fsub, // 102 Floating point subtract
10090IA64_fswap, // 103 Floating point swap
10091IA64_fsxt, // 104 Floating point sign extend
10092IA64_fwb, // 105 Flush write buffers
10093IA64_fx, // 106
10094IA64_fxor, // 107 Floating point exclusive or
10096IA64_g, // 109
10097IA64_ga, // 110
10098IA64_ge, // 111
10099IA64_getf, // 112 Get floating point value or exponent or significand
10101IA64_gt, // 114
10103IA64_h, // 116
10104IA64_hu, // 117
10105IA64_i, // 118
10106IA64_ia, // 119
10108IA64_invala, // 121 Invalidate ALAT
10109IA64_itc, // 122 Insert translation cache
10110IA64_itr, // 123 Insert translation register
10111IA64_l, // 124
10112IA64_ld1, // 125 Load byte
10113IA64_ld2, // 126 Load halfword
10114IA64_ld4, // 127 Load word
10115IA64_ld8, // 128 Load double word
10116IA64_ldf, // 129 Floating point load
10117IA64_ldf8, // 130 Floating point load
10118IA64_ldfd, // 131 Floating point load
10119IA64_ldfe, // 132 Floating point load
10120IA64_ldfp8, // 133 Floating point load pair
10121IA64_ldfpd, // 134 Floating point load pair
10122IA64_ldfps, // 135 Floating point load pair
10123IA64_ldfs, // 136 Floating point load
10124IA64_le, // 137
10126IA64_lfetch, // 139 Line prefetch
10127IA64_loadrs, // 140 Load register stack
10129IA64_lr, // 142
10130IA64_lt, // 143
10132IA64_lu, // 145
10133IA64_m, // 146
10135IA64_mf, // 148 Memory fence
10136IA64_mix1, // 149 Mix bytes
10137IA64_mix2, // 150 Mix halfwords
10138IA64_mix4, // 151 Mix words
10139IA64_mov, // 152 Move register
10140IA64_movl, // 153 Move long immediate
10141IA64_mux1, // 154 Mux byte
10142IA64_mux2, // 155 Mux halfword
10143IA64_nc, // 156
10144IA64_ne, // 157
10148IA64_nl, // 161
10151IA64_nm, // 164
10152IA64_nop, // 165 No operation
10153IA64_nr, // 166
10154IA64_ns, // 167
10158IA64_nz, // 171
10159IA64_or, // 172 Logical or
10162IA64_pack2, // 175 Pack
10163IA64_pack4, // 176 Pack
10164IA64_padd1, // 177 Parallel add bytes
10165IA64_padd2, // 178 Parallel add halfwords
10166IA64_padd4, // 179 Parallel add words
10167IA64_pavg1, // 180 Parallel average bytes
10168IA64_pavg2, // 181 Parallel average halfwords
10169IA64_pavgsub1, // 182 Parallel average subtract bytes
10170IA64_pavgsub2, // 183 Parallel average subtract halfwords
10171IA64_pcmp1, // 184 Parallel compare bytes
10172IA64_pcmp2, // 185 Parallel compare halfwords
10173IA64_pcmp4, // 186 Parallel compare words
10174IA64_pmax1, // 187 Parallel maxmimum bytes
10175IA64_pmax2, // 188 Parallel maxmimum halfwords
10176IA64_pmin1, // 189 Parallel minimum bytes
10177IA64_pmin2, // 190 Parallel minimum halfwords
10178IA64_pmpy2, // 191 Parallel multiply
10179IA64_pmpyshr2, // 192 Parallel multiply and shift right
10180IA64_popcnt, // 193 Population count
10181IA64_pr, // 194
10182IA64_probe, // 195 Probe address
10183IA64_psad1, // 196 Parallel sum of absolute difference
10184IA64_pshl2, // 197 Parallel shift left halfwords
10185IA64_pshl4, // 198 Parallel shift left words
10186IA64_pshladd2, // 199 Parallel shift left and Add
10187IA64_pshr2, // 200 Parallel shift right halfwords
10188IA64_pshr4, // 201 Parallel shift right words
10189IA64_pshradd2, // 202 Parallel shift right and Add
10190IA64_psub1, // 203 Parallel subtract bytes
10191IA64_psub2, // 204 Parallel subtract halfwords
10192IA64_psub4, // 205 Parallel subtract words
10193IA64_ptc, // 206 Purge translation cache
10194IA64_ptr, // 207 Purge translation register
10195IA64_r, // 208
10199IA64_rfi, // 212 Return from interruption
10200IA64_rsm, // 213 Reset system mask
10201IA64_rum, // 214 Reset user mask
10202IA64_rw, // 215
10203IA64_s, // 216
10204IA64_s0, // 217
10205IA64_s1, // 218
10206IA64_s2, // 219
10207IA64_s3, // 220
10208IA64_sa, // 221
10209IA64_se, // 222
10210IA64_setf, // 223 Set floating point value, exponent, or significand
10211IA64_shl, // 224 Shift left
10212IA64_shladd, // 225 Shift left and Add
10213IA64_shladdp4, // 226 Shift left and Add pointer
10214IA64_shr, // 227 Shift right
10215IA64_shrp, // 228 Shift right pair
10220IA64_srlz, // 233 Serialize
10221IA64_ssm, // 234 Set system mask
10223IA64_st1, // 236 Store byte
10224IA64_st2, // 237 Store halfword
10225IA64_st4, // 238 Store word
10226IA64_st8, // 239 Store double word
10227IA64_stf, // 240 Store floating point
10228IA64_stf8, // 241 Store floating point
10229IA64_stfd, // 242 Store floating point
10230IA64_stfe, // 243 Store floating point
10231IA64_stfs, // 244 Store floating point
10232IA64_sub, // 245 Subtract
10233IA64_sum, // 246 Set user mask
10234IA64_sxt1, // 247 Sign extend byte
10235IA64_sxt2, // 248 Sign extend halfword
10236IA64_sxt4, // 249 Sign extend word
10237IA64_sync, // 250 Memory synchronization
10238IA64_tak, // 251 Translation access key
10239IA64_tbit, // 252 Test bit
10240IA64_thash, // 253 Translation hashed entry address
10241IA64_tnat, // 254 Test NaT
10242IA64_tpa, // 255 Translate to physical address
10244IA64_ttag, // 257 Translation hashed entry tag
10245IA64_u, // 258
10248IA64_unpack1, // 261 Unpack byte
10249IA64_unpack2, // 262 Unpack halfword
10250IA64_unpack4, // 263 Unpack word
10254IA64_w, // 267
10257IA64_x, // 270
10258IA64_xchg1, // 271 Exchange bytes
10259IA64_xchg2, // 272 Exchange halfwords
10260IA64_xchg4, // 273 Exchange words
10261IA64_xchg8, // 274 Exchange double words
10262IA64_xf, // 275
10263IA64_xma, // 276 Fixed point multiply add
10264IA64_xmpy, // 277 Fixed point multiply
10265IA64_xor, // 278 Exclusive or
10267IA64_z, // 280
10268IA64_zxt1, // 281 Zero extend byte
10269IA64_zxt2, // 282 Zero extend halfword
10270IA64_zxt4, // 283 Zero extend word
10272
10273 };
10274
10275/*
10276 * Interactive disassembler (IDA).
10277 * Copyright (c) 1990-2025 Hex-Rays
10278 * ALL RIGHTS RESERVED.
10279 *
10280 */
10281
10282
10283
10284enum
10285{
10286NET_null = 0, // Unknown Operation
10287
10288NET_add, // Add two values, returning a new value
10289NET_add_ovf, // Add signed integer values with overflow check
10290NET_add_ovf_un, // Add unsigned integer values with overflow check
10291NET_and, // Bitwise AND of two integral values, returns an integral value
10293NET_ann_call, // Start of simple calling sequence
10294NET_ann_catch, // Start an exception filter or handler
10295NET_ann_data, // Multi-byte no operation
10296NET_ann_data_s, // Multi-byte no operation, short form
10297NET_ann_dead, // Stack location is no longer live
10298NET_ann_def, // SSA definition node
10299NET_ann_hoisted, // Start of the simple portion of a hoisted calling sequence
10300NET_ann_hoisted_call, // Start of complex argument evaluation
10302NET_ann_live, // Mark a stack location as live
10303NET_ann_phi, // SSA definition node
10304NET_ann_ref, // SSA reference node
10305NET_ann_ref_s, // SSA reference node, short form
10306NET_arglist, // Return argument list handle for the current method
10307NET_beq, // Branch to target if equal
10308NET_beq_s, // Branch to target if equal, short form
10309NET_bge, // Branch to target if greater than or equal to
10310NET_bge_s, // Branch to target if greater than or equal to, short form
10311NET_bge_un, // Branch to target if greater than or equal to (unsigned or unordered)
10312NET_bge_un_s, // Branch to target if greater than or equal to (unsigned or unordered), short form
10313NET_bgt, // Branch to target if greater than
10314NET_bgt_s, // Branch to target if greater than, short form
10315NET_bgt_un, // Branch to target if greater than (unsigned or unordered)
10316NET_bgt_un_s, // Branch to target if greater than (unsigned or unordered), short form
10317NET_ble, // Branch to target if less than or equal to
10318NET_ble_s, // Branch to target if less than or equal to, short form
10319NET_ble_un, // Branch to target if less than or equal to (unsigned or unordered)
10320NET_ble_un_s, // Branch to target if less than or equal to (unsigned or unordered), short form
10321NET_blt, // Branch to target if less than
10322NET_blt_s, // Branch to target if less than, short form
10323NET_blt_un, // Branch to target if less than (unsigned or unordered)
10324NET_blt_un_s, // Branch to target if less than (unsigned or unordered), short form
10325NET_bne_un, // Branch to target if unequal or unordered
10326NET_bne_un_s, // Branch to target if unequal or unordered, short form
10327NET_box, // Convert value type to object reference
10328NET_br, // Branch to target
10329NET_br_s, // Branch to target, short form
10330NET_break, // Inform a debugger that a breakpoint has been reached
10331NET_brfalse, // Branch to target if value is zero (false)
10332NET_brfalse_s, // Branch to target if value is zero (false), short form
10333NET_brtrue, // Branch to target if value is non-zero (true)
10334NET_brtrue_s, // Branch to target if value is non-zero (true), short form
10335NET_call, // Call a method
10336NET_calli, // Call an indirect method
10337NET_callvirt, // Call a method associated with obj
10338NET_castclass, // Cast object to class
10339NET_ceq, // Push 1 (of type I4) if value1 equals value2, else 0
10340NET_cgt, // Push 1 (of type I4) if value1 > value2, else 0
10341NET_cgt_un, // Push 1 (of type I4) if value1 > value2, unsigned or unordered, else 0
10342NET_ckfinite, // Throw ArithmeticException if value is not a finite number
10343NET_clt, // Push 1 (of type I4) if value1 < value2, else 0
10344NET_clt_un, // Push 1 (of type I4) if value1 < value2, unsigned or unordered, else 0
10345NET_conv_i, // Convert to I, pushing I on stack
10346NET_conv_i1, // Convert to I1, pushing I4 on stack
10347NET_conv_i2, // Convert to I2, pushing I4 on stack
10348NET_conv_i4, // Convert to I4, pushing I4 on stack
10349NET_conv_i8, // Convert to I8, pushing I8 on stack
10350NET_conv_ovf_i, // Convert to an I (on the stack as I) and throw an exception on overflow
10351NET_conv_ovf_i1, // Convert to an I1 (on the stack as I4) and throw an exception on overflow
10352NET_conv_ovf_i1_un, // Convert unsigned to an I1 (on the stack as I4) and throw an exception on overflow
10353NET_conv_ovf_i2, // Convert to an I2 (on the stack as I4) and throw an exception on overflow
10354NET_conv_ovf_i2_un, // Convert unsigned to an I2 (on the stack as I4) and throw an exception on overflow
10355NET_conv_ovf_i4, // Convert to an I4 (on the stack as I4) and throw an exception on overflow
10356NET_conv_ovf_i4_un, // Convert unsigned to an I4 (on the stack as I4) and throw an exception on overflow
10357NET_conv_ovf_i8, // Convert to an I8 (on the stack as I8) and throw an exception on overflow
10358NET_conv_ovf_i8_un, // Convert unsigned to an I8 (on the stack as I8) and throw an exception on overflow
10359NET_conv_ovf_i_un, // Convert to unsigned an I (on the stack as I) and throw an exception on overflow
10360NET_conv_ovf_u, // Convert to a U (on the stack as I) and throw an exception on overflow
10361NET_conv_ovf_u1, // Convert to a U1 (on the stack as I4) and throw an exception on overflow
10362NET_conv_ovf_u1_un, // Convert to unsigned a U1 (on the stack as I4) and throw an exception on overflow
10363NET_conv_ovf_u2, // Convert to a U2 (on the stack as I4) and throw an exception on overflow
10364NET_conv_ovf_u2_un, // Convert to unsigned a U2 (on the stack as I4) and throw an exception on overflow
10365NET_conv_ovf_u4, // Convert to a U4 (on the stack as I4) and throw an exception on overflow
10366NET_conv_ovf_u4_un, // Convert to unsigned a U3 (on the stack as I4) and throw an exception on overflow
10367NET_conv_ovf_u8, // Convert to a U8 (on the stack as I8) and throw an exception on overflow
10368NET_conv_ovf_u8_un, // Convert to unsigned a U8 (on the stack as I8) and throw an exception on overflow
10369NET_conv_ovf_u_un, // Convert to unsigned a U (on the stack as I) and throw an exception on overflow
10370NET_conv_r4, // Convert to R4, pushing F on stack
10371NET_conv_r8, // Convert to R8, pushing F on stack
10372NET_conv_r_un, // Convert unsigned integer to floating point, pushing F on stack
10373NET_conv_u, // Convert to U, pushing I on stack
10374NET_conv_u1, // Convert to U1, pushing I4 on stack
10375NET_conv_u2, // Convert to U2, pushing I4 on stack
10376NET_conv_u4, // Convert to U4, pushing I4 on stack
10377NET_conv_u8, // Convert to U8, pushing I8 on stack
10378NET_cpblk, // Copy data from memory to memory
10379NET_cpobj, // Copy a value type
10380NET_div, // Divide two values to return a quotient or floating point result
10381NET_div_un, // Divide two values, unsigned, returning a quotient
10382NET_dup, // Duplicate value on the top of the stack
10383NET_endfilter, // End filter clause of SEH exception handling
10384NET_endfinally, // End fault clause of an exception block
10385NET_initblk, // Set a block of memory to a given byte
10386NET_initobj, // Initialize a value type
10387NET_isinst, // Test if an object is an instance of a class or interface, returning NULL or an instance of that class or interface
10388NET_jmp, // Exit current method and jump to specified method
10389NET_ldarg, // Load argument numbered num onto stack
10390NET_ldarg_0, // Load argument 0 onto stack
10391NET_ldarg_1, // Load argument 1 onto stack
10392NET_ldarg_2, // Load argument 2 onto stack
10393NET_ldarg_3, // Load argument 3 onto stack
10394NET_ldarg_s, // Load argument numbered num onto stack, short form
10395NET_ldarga, // Fetch the address of argument
10396NET_ldarga_s, // Fetch the address of argument, short form
10397NET_ldc_i4, // Push num of type I4 onto the stack as I4
10398NET_ldc_i4_0, // Push 0 onto the stack as I4
10399NET_ldc_i4_1, // Push 1 onto the stack as I4
10400NET_ldc_i4_2, // Push 2 onto the stack as I4
10401NET_ldc_i4_3, // Push 3 onto the stack as I4
10402NET_ldc_i4_4, // Push 4 onto the stack as I4
10403NET_ldc_i4_5, // Push 5 onto the stack as I4
10404NET_ldc_i4_6, // Push 6 onto the stack as I4
10405NET_ldc_i4_7, // Push 7 onto the stack as I4
10406NET_ldc_i4_8, // Push 8 onto the stack as I4
10407NET_ldc_i4_m1, // Push -1 onto the stack as I4
10408NET_ldc_i4_s, // Push num onto the stack as I4, short form
10409NET_ldc_i8, // Push num of type I8 onto the stack as I8
10410NET_ldc_r4, // Push num of type R4 onto the stack as F
10411NET_ldc_r8, // Push num of type R8 onto the stack as F
10412NET_ldelem_i, // Load the element at index with type I onto the top of the stack as an I
10413NET_ldelem_i1, // Load the element at index with type I1 onto the top of the stack as an I4
10414NET_ldelem_i2, // Load the element at index with type I2 onto the top of the stack as an I4
10415NET_ldelem_i4, // Load the element at index with type I4 onto the top of the stack as an I4
10416NET_ldelem_i8, // Load the element at index with type I8 onto the top of the stack as an I8
10417NET_ldelem_r4, // Load the element at index with type R4 onto the top of the stack as an F
10418NET_ldelem_r8, // Load the element at index with type R8 onto the top of the stack as an F
10419NET_ldelem_ref, // Load the element at index, an object, onto the top of the stack as an O
10420NET_ldelem_u1, // Load the element at index with type U1 onto the top of the stack as an I4
10421NET_ldelem_u2, // Load the element at index with type U2 onto the top of the stack as an I4
10422NET_ldelem_u4, // Load the element at index with type U4 onto the top of the stack as an I4
10423NET_ldelema, // Load the address of element at index onto the top of the stack
10424NET_ldfld, // Push the value of field of object on the stack
10425NET_ldflda, // Push the address of field of object on the stack
10426NET_ldftn, // Push a pointer to a method referenced by method on the stack
10427NET_ldind_i, // Indirect load value of type I as I stack
10428NET_ldind_i1, // Indirect load value of type I1 as I4 on stack
10429NET_ldind_i2, // Indirect load value of type I2 as I4 on stack
10430NET_ldind_i4, // Indirect load value of type I4 as I4 on stack
10431NET_ldind_i8, // Indirect load value of type I8 as I8 on stack
10432NET_ldind_r4, // Indirect load value of type R4 as F stack
10433NET_ldind_r8, // Indirect load value of type R8 as F stack
10434NET_ldind_ref, // Indirect load value of type object ref as O on stack
10435NET_ldind_u1, // Indirect load value of type U1 as I4 stack
10436NET_ldind_u2, // Indirect load value of type U2 as I4 stack
10437NET_ldind_u4, // Indirect load value of type U4 as I4 stack
10438NET_ldlen, // Push the length (of type U) of array on the stack
10439NET_ldloc, // Load local variable of index indx onto stack
10440NET_ldloc_0, // Load local variable 0 onto stack
10441NET_ldloc_1, // Load local variable 1 onto stack
10442NET_ldloc_2, // Load local variable 2 onto stack
10443NET_ldloc_3, // Load local variable 3 onto stack
10444NET_ldloc_s, // Load local variable of index indx onto stack, short form
10445NET_ldloca, // Load address of local variable
10446NET_ldloca_s, // Load address of local variable, short form
10447NET_ldnull, // Push null GC reference on the stack
10448NET_ldobj, // Copy instance of value type to the stack.
10449NET_ldsfld, // Push the value of field on the stack
10450NET_ldsflda, // Push the address of the static field on the stack
10451NET_ldstr, // Push a string object for the literal string
10452NET_ldtoken, // Convert metadata token to its runtime representation
10453NET_ldvirtftn, // Push address of virtual method on the stack
10454NET_leave, // Exit a protected region of code
10455NET_leave_s, // Exit a protected region of code, short form
10456NET_localloc, // Allocate space from the local memory pool
10457NET_mkrefany, // Push a typed reference to pointer of type class onto the stack
10458NET_mul, // Multiply values
10459NET_mul_ovf, // Multiply signed integer values. Signed result must fit in same size
10460NET_mul_ovf_un, // Multiply unsigned integer values. Unsigned result must fit in same size
10461NET_neg, // Negate value
10462NET_newarr, // Create a zero-based, one-dimensional array
10463NET_newobj, // Create a new object
10464NET_nop, // Do nothing
10465NET_not, // Bitwise complement
10466NET_or, // Bitwise OR of two integer values, returns an integer
10467NET_pop, // Pop a value from the stack
10468NET_refanytype, // Push the type token stored in a typed reference
10469NET_refanyval, // Push the address stored in a typed reference
10470NET_rem, // Remainder of dividing value1 by value2
10471NET_rem_un, // Remainder of unsigned dividing value1 by value2
10472NET_ret, // Return from method, possibly returning a value
10473NET_rethrow, // Rethrow the current exception
10474NET_shl, // Shift an integer to the left (shifting in zeros)
10475NET_shr, // Shift an integer right, (shift in sign), return an integer
10476NET_shr_un, // Shift an integer right, (shift in zero), return an integer
10477NET_sizeof, // Push the size, in bytes, of a value type as a U4
10478NET_starg, // Store a value to argument
10479NET_starg_s, // Store a value to argument, short form
10480NET_stelem_i, // Replace array element at index with the I value on the stack
10481NET_stelem_i1, // Replace array element at index with the I1 value on the stack
10482NET_stelem_i2, // Replace array element at index with the I2 value on the stack
10483NET_stelem_i4, // Replace array element at index with the I4 value on the stack
10484NET_stelem_i8, // Replace array element at index with the I8 value on the stack
10485NET_stelem_r4, // Replace array element at index with the R4 value on the stack
10486NET_stelem_r8, // Replace array element at index with the R8 value on the stack
10487NET_stelem_ref, // Replace array element at index with the ref value on the stack
10488NET_stfld, // Store into a field of an object
10489NET_stind_i, // Store value of type I into memory at address
10490NET_stind_i1, // Store value of type I1 into memory at address
10491NET_stind_i2, // Store value of type I2 into memory at address
10492NET_stind_i4, // Store value of type I4 into memory at address
10493NET_stind_i8, // Store value of type I8 into memory at address
10494NET_stind_r4, // Store value of type R4 into memory at address
10495NET_stind_r8, // Store value of type R8 into memory at address
10496NET_stind_ref, // Store value of type object ref (type O) into memory at address
10497NET_stloc, // Pop value from stack into local variable
10498NET_stloc_0, // Pop value from stack into local variable 0
10499NET_stloc_1, // Pop value from stack into local variable 1
10500NET_stloc_2, // Pop value from stack into local variable 2
10501NET_stloc_3, // Pop value from stack into local variable 3
10502NET_stloc_s, // Pop value from stack into local variable, short form
10503NET_stobj, // Store a value type from the stack into memory
10504NET_stsfld, // Store a static field of a class
10505NET_sub, // Subtract value2 from value1, returning a new value
10506NET_sub_ovf, // Subtract I from an I. Signed result must fit in same size
10507NET_sub_ovf_un, // Subtract U from a U. Unsigned result must fit in same size
10508NET_switch, // Jump to one of N values
10509NET_tail_, // (prefix) subsequent call terminates current method
10510NET_throw, // Throw an exception
10511NET_unaligned_, // (prefix) subsequent pointer instruction may be unaligned
10512NET_unbox, // Convert boxed value type to its raw form
10513NET_volatile_, // (prefix) subsequent pointer reference is volatile
10514NET_xor, // Bitwise XOR of integer values, returns an integer
10515NET_ldelem, // Load the element at index onto the top of the stack
10516NET_stelem, // Replace array element at index with the ref value on the stack
10517
10518// 2.0 instructions
10519NET_unbox_any, // Extract a value-type from obj, its boxed representation
10520NET_constrained_, // (prefix) invoke a member on a value of a variable type
10521NET_no_, // (prefix) possibly skip a fault check
10522NET_readonly_, // (prefix) following instruction returns a controlled-mutability managed pointer
10523
10525
10526 };
10527
10528/*
10529 * Interactive disassembler (IDA).
10530 * Copyright (c) 1990-2025 Hex-Rays
10531 * ALL RIGHTS RESERVED.
10532 *
10533 * HCS12X opcodes added by alexbratovic@bratspeed.com 12/12/2007
10534 * XGATE opcodes added by alexbratovic@bratspeed.com 12/09/2009
10535 */
10536
10537
10538
10539
10540enum
10541{
10542MC12_null = 0, // Unknown Operation
10543
10544MC12_aba, // Add B to A
10545MC12_abx, // Add B to X
10546MC12_aby, // Add B to Y
10547MC12_adca, // Add with carry to A
10548MC12_adcb, // Add with carry to B
10549MC12_adda, // Add memory to A
10550MC12_addb, // Add memory to B
10551MC12_addd, // Add to D
10552MC12_anda, // AND A with memory
10553MC12_andb, // AND B with memory
10554MC12_andcc, // Logical AND CCR with memory
10555MC12_asl, // Arithmetic shift left memory
10556MC12_asla, // Arithmetic shift left A
10557MC12_aslb, // Arithmetic shift left B
10558MC12_asld, // Arithmetic shift left D
10559MC12_asr, // Arithmetic shift right memory
10560MC12_asra, // Arithmetic shift right A
10561MC12_asrb, // Arithmetic shift right B
10562MC12_bcc, // Branch if carry clear
10563MC12_bclr, // Clear bits in memory
10564MC12_bcs, // Branch if carry set
10565MC12_beq, // Branch if equal
10566MC12_bge, // Branch if greater than or equal
10567MC12_bgnd, // Enter background debug mode
10568MC12_bgt, // Branch if greater than
10569MC12_bhi, // Branch if higher
10570MC12_bhs, // Branch if higher or same
10571MC12_bita, // Bit test A
10572MC12_bitb, // Bit test B
10573MC12_ble, // Branch if less than or equal
10574MC12_blo, // Branch if lower
10575MC12_bls, // Branch if lower or same
10576MC12_blt, // Branch if less than
10577MC12_bmi, // Branch if minus
10578MC12_bne, // Branch if not equal
10579MC12_bpl, // Branch if plus
10580MC12_bra, // Branch always
10581MC12_brclr, // Branch if selected bits clear
10582MC12_brn, // Branch never
10583MC12_brset, // Branch if selected bits set
10584MC12_bset, // Set bits in memory
10585MC12_bsr, // Branch to subroutine
10586MC12_bvc, // Branch if overflow clear
10587MC12_bvs, // Branch if overflow set
10588MC12_call, // Call subroutine in expanded memory
10589MC12_cba, // Compare A to B
10590MC12_clc, // Clear C bit
10591MC12_cli, // Clear I bit
10592MC12_clr, // Clear memory
10593MC12_clra, // Clear A
10594MC12_clrb, // Clear B
10595MC12_clv, // Clear V bit
10596MC12_cmpa, // Compare A to memory
10597MC12_cmpb, // Compare B to memory
10598MC12_com, // One's complement memory
10599MC12_coma, // One's complement A
10600MC12_comb, // One's complement B
10601MC12_cpd, // Compare D to memory (16-bit)
10602MC12_cps, // Compare SP to memory (16-bit)
10603MC12_cpx, // Compare X to memory (16-bit)
10604MC12_cpy, // Compare Y to memory (16-bit)
10605MC12_daa, // Decimal adjust A
10606MC12_dbeq, // Decrement counter and branch if = 0
10607MC12_dbne, // Decrement counter and branch if != 0
10608MC12_dec, // Decrement memory
10609MC12_deca, // Decrement A
10610MC12_decb, // Decrement B
10611MC12_des, // Decrement SP
10612MC12_dex, // Decrement X
10613MC12_dey, // Decrement Y
10614MC12_ediv, // 32 by 16 divide (unsigned) Quotient->Y Remainder->D
10615MC12_edivs, // 32 by 16 divide (signed) Quotient->Y Remainder->D
10616MC12_emacs, // Multiply and accumulate (signed)
10617MC12_emaxd, // MAX of two unsigned 16-bit values result to accumulator
10618MC12_emaxm, // MAX of two unsigned 16-bit values result to memory
10619MC12_emind, // MIN of two unsigned 16-bit values result to accumulator
10620MC12_eminm, // MIN of two unsigned 16-bit values result to memory
10621MC12_emul, // 16 by 16 multiply (unsigned)
10622MC12_emuls, // 16 by 16 multiply (signed)
10623MC12_eora, // Exclusive OR A with memory
10624MC12_eorb, // Exclusive OR B with memory
10625MC12_etbl, // 16-bit table lookup and interpolate
10626MC12_exg, // Exchange register to register
10627MC12_fdiv, // 16 by 16 fractional divide Remainder->D
10628MC12_ibeq, // Increment counter and branch if = 0
10629MC12_ibne, // Increment counter and branch if != 0
10630MC12_idiv, // 16 by 16 integer divide (unsigned) Remainder->D
10631MC12_idivs, // 16 by 16 integer divide (signed) Remainder->D
10632MC12_inc, // Increment memory
10633MC12_inca, // Increment A
10634MC12_incb, // Increment B
10635MC12_ins, // Increment SP
10636MC12_inx, // Increment X
10637MC12_iny, // Increment Y
10638MC12_jmp, // Jump Address
10639MC12_jsr, // Jump to subroutine
10640MC12_lbcc, // Long branch if carry clear
10641MC12_lbcs, // Long branch if carry set
10642MC12_lbeq, // Long branch if equal
10643MC12_lbge, // Long branch if greater than or equal
10644MC12_lbgt, // Long branch if greater than
10645MC12_lbhi, // Long branch if higher
10646MC12_lbhs, // Long branch if higher or same
10647MC12_lble, // Long branch if less than or equal
10648MC12_lblo, // Long branch if lower
10649MC12_lbls, // Long branch if lower or same
10650MC12_lblt, // Long branch if less than
10651MC12_lbmi, // Long branch if minus
10652MC12_lbne, // Long branch if not equal
10653MC12_lbpl, // Long branch if plus
10654MC12_lbra, // Long branch always
10655MC12_lbrn, // Long branch never
10656MC12_lbvc, // Long branch if overflow clear
10657MC12_lbvs, // Long branch if overflow set
10658MC12_ldaa, // Load A
10659MC12_ldab, // Load B
10660MC12_ldd, // Load D
10661MC12_lds, // Load SP
10662MC12_ldx, // Load X
10663MC12_ldy, // Load Y
10664MC12_leas, // Load effective address into SP
10665MC12_leax, // Load effective address into X
10666MC12_leay, // Load effective address into Y
10667MC12_lsl, // Logic shift left memory
10668MC12_lsla, // Logic shift left A
10669MC12_lslb, // Logic shift left B
10670MC12_lsld, // Logic shift left D
10671MC12_lsr, // Logic shift right memory
10672MC12_lsra, // Logic shift right A
10673MC12_lsrb, // Logic shift right B
10674MC12_lsrd, // Logic shift right D
10675MC12_maxa, // MAX of two unsigned 8-bit values result to accumulator
10676MC12_maxm, // MAX of two unsigned 8-bit values result to memory
10677MC12_mem, // Membership function
10678MC12_mina, // MIN of two unsigned 8-bit values result to accumulator
10679MC12_minm, // MIN of two unsigned 8-bit values result to memory
10680MC12_movb, // Move byte (8-bit)
10681MC12_movw, // Move word (16-bit)
10682MC12_mul, // 8 by 8 multiply (unsigned)
10683MC12_neg, // Two's complement memory
10684MC12_nega, // Two's complement A
10685MC12_negb, // Two's complement B
10686MC12_nop, // Null operation
10687MC12_oraa, // OR A with memory
10688MC12_orab, // OR B with memory
10689MC12_orcc, // Logical OR CCR with memory
10690MC12_psha, // Push A
10691MC12_pshb, // Push B
10692MC12_pshc, // Push CCR
10693MC12_pshd, // Push D
10694MC12_pshx, // Push X
10695MC12_pshy, // Push Y
10696MC12_pula, // Pull A
10697MC12_pulb, // Pull B
10698MC12_pulc, // Pull CCR
10699MC12_puld, // Pull D
10700MC12_pulx, // Pull X
10701MC12_puly, // Pull Y
10702MC12_rev, // MIN-MAX rule evaluation
10703MC12_revw, // MIN-MAX rule evaluation
10704MC12_rol, // Rotate left memory through carry
10705MC12_rola, // Rotate left A through carry
10706MC12_rolb, // Rotate left B through carry
10707MC12_ror, // Rotate right memory through carry
10708MC12_rora, // Rotate right A through carry
10709MC12_rorb, // Rotate right B through carry
10710MC12_rtc, // Return from call
10711MC12_rti, // Return from interrupt
10712MC12_rts, // Return from subroutine
10713MC12_sba, // Subtract B from A
10714MC12_sbca, // Subtract with borrow from A
10715MC12_sbcb, // Subtract with borrow from B
10716MC12_sec, // Set C bit
10717MC12_sei, // Set I bit
10718MC12_sev, // Set V bit
10719MC12_sex, // Sign extend 8-Bit operand
10720MC12_staa, // Store A
10721MC12_stab, // Store B
10722MC12_std, // Store D
10724MC12_sts, // Store SP
10725MC12_stx, // Store X
10726MC12_sty, // Store Y
10727MC12_suba, // Subtract memory from A
10728MC12_subb, // Subtract memory from B
10729MC12_subd, // Subtract memory from D
10730MC12_swi, // Software interrupt
10731MC12_tab, // Transfer A to B
10732MC12_tap, // Transfer A to CCR
10733MC12_tba, // Transfer B to A
10734MC12_tbeq, // Test counter and branch if = 0
10735MC12_tbl, // 8-bit table lookup and interpolate
10736MC12_tbne, // Test counter and branch if != 0
10737MC12_tfr, // Transfer register to register
10738MC12_tpa, // Transfer CCR to A
10739MC12_trap, // Unimplemented opcode interrupt
10740MC12_tst, // Test memory for zero or minus
10741MC12_tsta, // Test A for zero or minus
10742MC12_tstb, // Test B for zero or minus
10743MC12_tsx, // Transfer SP to X
10744MC12_tsy, // Transfer SP to Y
10745MC12_txs, // Transfer X to SP
10746MC12_tys, // Transfer Y to SP
10747MC12_wai, // Wait for interrupt
10748MC12_wav, // Calculates numerator and denominator for weighted average calculation
10749MC12_wavr, // Resumes execution of interrupted WAV instruction
10750MC12_xgdx, // Exchange D with X
10751MC12_xgdy, // Exchange D with Y
10752
10753// Pseudoinstructions
10754MC12_skip1, // Skip one byte
10755MC12_skip2, // Skip two bytes
10756
10757// hcs12x only instructions, 16-bit unless indicated
10758MC12X_addx, // Add without Carry to X
10759MC12X_addy, // Add without Carry to Y
10760MC12X_aded, // Add with Carry to D(A:B)
10761MC12X_adex, // Add with Carry to X
10762MC12X_adey, // Add with Carry to Y
10763MC12X_andx, // Logical AND X with Memory
10764MC12X_andy, // Logical AND Y with Memory
10765MC12X_aslw, // Arithmetic Shift Left
10766MC12X_aslx, // Arithmetic Shift Left X
10767MC12X_asly, // Arithmetic Shift Left Y
10768MC12X_asrw, // Arithmetic Shift Right
10769MC12X_asrx, // Arithmetic Shift Right X
10770MC12X_asry, // Arithmetic Shift Right Y
10771MC12X_bitx, // Logical AND X with Memory, does not change X or Memory
10772MC12X_bity, // Logical AND Y with Memory, does not change Y or Memory
10773MC12X_btas, // Bit(s) test and Set in Memory, Set CCR flags
10774MC12X_clrw, // Clear Memory Location
10775MC12X_clrx, // Clear X
10776MC12X_clry, // Clear Y
10777MC12X_comw, // One's Complement Memory
10778MC12X_comx, // One's Complement X
10779MC12X_comy, // One's Complement Y
10780MC12X_cped, // Compare D to Memory with Borrow
10781MC12X_cpes, // Compare SP to Memory with Borrow
10782MC12X_cpex, // Compare X to Memory with Borrow
10783MC12X_cpey, // Compare Y to Memory with Borrow
10784MC12X_decw, // Decrement Memory
10785MC12X_decx, // Decrement X
10786MC12X_decy, // Decrement Y
10787MC12X_eorx, // Exclusive OR X with Memory
10788MC12X_eory, // Exclusive OR Y with Memory
10789MC12X_gldaa, // Load A from Global Memory (8-bit)
10790MC12X_gldab, // Load B from Global Memory (8-bit)
10791MC12X_gldd, // Load D(A:B) from Global Memory
10792MC12X_glds, // Load SP from Global Memory
10793MC12X_gldx, // Load X from Global Memory
10794MC12X_gldy, // Load Y from Global Memory
10795MC12X_gstaa, // Store A to Global Memory (8-bit)
10796MC12X_gstab, // Store B to Global Memory (8-bit)
10797MC12X_gstd, // Store D(A:B) to Global Memory
10798MC12X_gsts, // Store SP to Global Memory
10799MC12X_gstx, // Store X to Global Memory
10800MC12X_gsty, // Store Y to Global Memory
10801MC12X_incw, // Increment Memory
10802MC12X_incx, // Increment X
10803MC12X_incy, // Increment Y
10804MC12X_lsrw, // Logical Shift Memory to Right
10805MC12X_lsrx, // Logical Shift X to Right
10806MC12X_lsry, // Logical Shift Y to Right
10807MC12X_negw, // Two's Complement Memory
10808MC12X_negx, // Two's Complement X
10809MC12X_negy, // Two's Complement Y
10810MC12X_orx, // Logical OR X with memory
10811MC12X_ory, // Logical OR Y with memory
10812MC12X_pshcw, // Push CCR onto Stack (16-bit)
10813MC12X_pulcw, // Pull CCR from Stack (16-bit)
10814MC12X_rolw, // Rotate Memory Left through Carry
10815MC12X_rolx, // Rotate X Left through Carry
10816MC12X_roly, // Rotate Y Left through Carry
10817MC12X_rorw, // Rotate Memory Right through Carry
10818MC12X_rorx, // Rotate X Right through Carry
10819MC12X_rory, // Rotate Y Right through Carry
10820MC12X_sbed, // Subtract with Borrow from D
10821MC12X_sbex, // Subtract with Borrow from X
10822MC12X_sbey, // Subtract with Borrow from Y
10823MC12X_subx, // Subtract Memory from X
10824MC12X_suby, // Subtract Memory from Y
10825MC12X_tstw, // Test Memory for Zero or Minus
10826MC12X_tstx, // Test X for Zero or Minus
10827MC12X_tsty, // Test Y for Zero or Minus
10828
10829// hcs12x V2 cpu only instructions
10830MC12X_sys, // System call interrupt
10831
10832// hcs12x XGATE co-processor instructions
10833MC12XGATE_adc, // Add with Carry
10834MC12XGATE_add, // Add without Carry
10835MC12XGATE_addh, // Add Immediate 8 bit Constant (High Byte)
10836MC12XGATE_addl, // Add Immediate 8 bit Constant (Low Byte)
10837MC12XGATE_and, // Logical AND
10838MC12XGATE_andh, // Logical AND Immediate 8 bit Constant (High Byte)
10839MC12XGATE_andl, // Logical AND Immediate 8 bit Constant (Low Byte)
10840MC12XGATE_asr, // Arithmetic Shift Right
10841MC12XGATE_bcc, // Branch if Carry Cleared (Same as BHS)
10842MC12XGATE_bcs, // Branch if Carry Set (Same as BLO)
10843MC12XGATE_beq, // Branch if Equal
10844MC12XGATE_bfext, // Bit Field Extract
10845MC12XGATE_bffo, // Bit Field Find First One
10846MC12XGATE_bfins, // Bit Field Insert
10847MC12XGATE_bfinsi, // Bit Field Insert and Invert
10848MC12XGATE_bfinsx, // Bit Field Insert and XNOR
10849MC12XGATE_bge, // Branch if Greater than or Equal to Zero
10850MC12XGATE_bgt, // Branch if Greater than Zero
10851MC12XGATE_bhi, // Branch if Higher
10852MC12XGATE_bhs, // Branch if Higher or Same (Same as BCC)
10853MC12XGATE_bith, // Bit Test Immediate 8 bit Constant (High Byte)
10854MC12XGATE_bitl, // Bit Test Immediate 8 bit Constant (Low Byte)
10855MC12XGATE_ble, // Branch if Less or Equal to Zero
10856MC12XGATE_blo, // Branch if Carry Set (Same as BCS)
10857MC12XGATE_bls, // Branch if Lower or Same
10858MC12XGATE_blt, // Branch if Lower than Zero
10859MC12XGATE_bmi, // Branch if Minus
10860MC12XGATE_bne, // Branch if Not Equal
10861MC12XGATE_bpl, // Branch if Plus
10862MC12XGATE_bra, // Branch Always
10864MC12XGATE_bvc, // Branch if Overflow Cleared
10865MC12XGATE_bvs, // Branch if Overflow Set
10866MC12XGATE_cmp, // Compare
10867MC12XGATE_cmpl, // Compare Immediate 8 bit Constant (Low Byte)
10868MC12XGATE_com, // One's Complement
10869MC12XGATE_cpc, // Compare with Carry
10870MC12XGATE_cpch, // Compare Immediate 8 bit Constant with Carry(High Byte)
10871MC12XGATE_csem, // Clear Semaphore
10872MC12XGATE_csl, // Logical Shift Left with Carry
10873MC12XGATE_csr, // Logical Shift Right with Carry
10874MC12XGATE_jal, // Jump and Link
10875MC12XGATE_ldb, // Load Byte from Memory (Low Byte)
10876MC12XGATE_ldh, // Load Immediate 8 bit Constant (High Byte)
10877MC12XGATE_ldl, // Load Immediate 8 bit Constant (Low Byte)
10878MC12XGATE_ldw, // Load Word from Memory
10879MC12XGATE_lsl, // Logical Shift Left
10880MC12XGATE_lsr, // Logical Shift Right
10881MC12XGATE_mov, // Move Register Content
10882MC12XGATE_neg, // Two's Complement
10883MC12XGATE_nop, // No Operation
10884MC12XGATE_or, // Logical OR
10885MC12XGATE_orh, // Logical OR Immediate 8 bit Constant (High Byte)
10886MC12XGATE_orl, // Logical OR Immediate 8 bit Constant (Low Byte)
10887MC12XGATE_par, // Calculate Parity
10888MC12XGATE_rol, // Rotate Left
10889MC12XGATE_ror, // Rotate Right
10890MC12XGATE_rts, // Return to Scheduler
10891MC12XGATE_sbc, // Subtract with Carry
10892MC12XGATE_sex, // Sign Extend Byte to Word
10893MC12XGATE_sif, // Set Interrupt Flag
10894MC12XGATE_ssem, // Set Semaphore
10895MC12XGATE_stb, // Store Byte to Memory (Low Byte)
10896MC12XGATE_stw, // Store Word to Memory
10897MC12XGATE_sub, // Subtract without Carry
10898MC12XGATE_subh, // Subtract Immediate 8 bit Constant (High Byte)
10899MC12XGATE_subl, // Subtract Immediate 8 bit Constant (Low Byte)
10900MC12XGATE_tfr, // Transfer from and to Special Registers
10901MC12XGATE_tst, // Test Register
10902MC12XGATE_xnor, // Logical Exclusive NOR
10903MC12XGATE_xnorh, // Logical Exclusive NOR Immediate 8 bit Constant (High Byte)
10904MC12XGATE_xnorl, // Logical Exclusive NOR Immediate 8 bit Constant (Low Byte)
10905
10906// Pseudo instructions that combine two IMM8 into IMM16
10907MC12XGATE_add16, // Add Immediate 16 bit Constant
10908MC12XGATE_and16, // Logical AND Immediate 16 bit Constant
10909MC12XGATE_cmp16, // Compare Immediate 16 bit Constant
10910MC12XGATE_ldw16, // Load Immediate 16 bit Constant
10911MC12XGATE_or16, // Logical OR Immediate 16 bit Constant
10912MC12XGATE_sub16, // Subtract Immediate 16 bit Constant
10913MC12XGATE_xnor16, // Logical Exclusive NOR Immediate 16 bit Constant
10914
10916
10917 };
10918
10919/*
10920 * Interactive disassembler (IDA).
10921 * Copyright (c) 1990-2025 Hex-Rays
10922 * ALL RIGHTS RESERVED.
10923 *
10924 */
10925
10926
10927
10928enum
10929{
10930
10931 MC6816_null = 0, // Unknown Operation
10932
10933 // DATA MOVEMENT INSTRUCTIONS
10934 // --------------------------
10935
10936 // LOAD INSTRUCTIONS
10937 MC6816_ldaa, // Load A
10938 MC6816_ldab, // Load B
10939 MC6816_ldd, // Load D
10940 MC6816_lde, // Load E
10941 MC6816_lded, // Load Concatenated D and E
10942
10943 // MOVE INSTRUCTIONS
10944 MC6816_movb, // Move Byte
10945 MC6816_movw, // Move Word
10946
10947 // STORE INSTRUCTIONS
10948 MC6816_staa, // Store A
10949 MC6816_stab, // Store B
10950 MC6816_std, // Store D
10951 MC6816_ste, // Store E
10952 MC6816_sted, // Store Concatenated D and E
10953
10954 // TRANSFER INSTRUCTIONS
10955 MC6816_tab, // Transfer A to B
10956 MC6816_tba, // Transfer B to A
10957 MC6816_tde, // Transfer D to E
10958 MC6816_ted, // Transfer E to D
10959
10960 // EXCHANGE INSTRUCTIONS
10961 MC6816_xgab, // Exchange A with B
10962 MC6816_xgde, // Exchange D with E
10963
10964 // MATHEMATIC INSTRUCTIONS
10965 // -----------------------
10966
10967 // ADDITION AND SUBSTRACTION INSTRUCTIONS
10968 MC6816_aba, // Add B to A
10969 MC6816_adca, // Add with Carry to A
10970 MC6816_adcb, // Add with Carry to B
10971 MC6816_adcd, // Add with Carry to D
10972 MC6816_adce, // Add with Carry to E
10973 MC6816_adda, // Add to A
10974 MC6816_addb, // Add to B
10975 MC6816_addd, // Add to D
10976 MC6816_adde, // Add to E
10977 MC6816_ade, // Add D to E
10978 MC6816_sba, // Subtract B from A
10979 MC6816_sbca, // Subtract with Carry from A
10980 MC6816_sbcb, // Subtract with Carry from B
10981 MC6816_sbcd, // Subtract with Carry from D
10982 MC6816_sbce, // Subtract with Carry from E
10983 MC6816_sde, // Subtract D from E
10984 MC6816_suba, // Subtract from A
10985 MC6816_subb, // Subtract from B
10986 MC6816_subd, // Subtract from D
10987 MC6816_sube, // Subtract from E
10988
10989 // BINARY CODED DECIMAL INSTRUCTIONS
10990 MC6816_daa, // Decimal Adjust A
10991 MC6816_sxt, // Sign Extend B into A
10992
10993 // COMPARE AND TEST INSTRUCTIONS
10994 MC6816_cba, // Compare A to B
10995 MC6816_cmpa, // Compare A to Memory
10996 MC6816_cmpb, // Compare B to Memory
10997 MC6816_cpd, // Compare D to Memory
10998 MC6816_cpe, // Compare E to Memory
10999 MC6816_tst, // Test for Zero or Minus
11000 MC6816_tsta, // Test A for Zero or Minus
11001 MC6816_tstb, // Test B for Zero or Minus
11002 MC6816_tstd, // Test D for Zero or Minus
11003 MC6816_tste, // Test E for Zero or Minus
11004 MC6816_tstw, // Test for Zero or Minus Word
11005
11006 // MULTIPLICATION AND DIVISION INSTRUCTIONS
11007 MC6816_ediv, // Extended Unsigned Divide
11008 MC6816_edivs, // Extended Signed Divide
11009 MC6816_emul, // Extended Unsigned Multiply
11010 MC6816_emuls, // Extended Signed Multiply
11011 MC6816_fdiv, // Unsigned Fractional Divide
11012 MC6816_fmuls, // Signed Fractional Multiply
11013 MC6816_idiv, // Integer Divide
11014 MC6816_mul, // Multiply
11015
11016 // DECREMENT AND INCREMENT INSTRUCTIONS
11017 MC6816_dec, // Decrement Memory
11018 MC6816_deca, // Decrement A
11019 MC6816_decb, // Decrement B
11020 MC6816_decw, // Decrement Memory Word
11021 MC6816_inc, // Increment Memory
11022 MC6816_inca, // Increment A
11023 MC6816_incb, // Increment B
11024 MC6816_incw, // Increment Memory Word
11025
11026 // CLEAR, COMPLEMENT, AND NEGATE INSTRUCTIONS
11027 MC6816_clr, // Clear Memory
11028 MC6816_clra, // Clear A
11029 MC6816_clrb, // Clear B
11030 MC6816_clrd, // Clear D
11031 MC6816_clre, // Clear E
11032 MC6816_clrw, // Clear Memory Word
11033 MC6816_com, // One's Complement Byte
11034 MC6816_coma, // One's Complement A
11035 MC6816_comb, // One's Complement B
11036 MC6816_comd, // One's Complement D
11037 MC6816_come, // One's Complement E
11038 MC6816_comw, // One's Complement Word
11039 MC6816_neg, // Two's Complement Byte
11040 MC6816_nega, // Two's Complement A
11041 MC6816_negb, // Two's Complement B
11042 MC6816_negd, // Two's Complement D
11043 MC6816_nege, // Two's Complement E
11044 MC6816_negw, // Two's Complement Word
11045
11046 // BOOLEAN LOGIC INSTRUCTIONS
11047 MC6816_anda, // AND A
11048 MC6816_andb, // AND B
11049 MC6816_andd, // AND D
11050 MC6816_ande, // AND E
11051 MC6816_eora, // Exclusive OR A
11052 MC6816_eorb, // Exclusive OR B
11053 MC6816_eord, // Exclusive OR D
11054 MC6816_eore, // Exclusive OR E
11057 MC6816_ord, // OR D
11058 MC6816_ore, // OR E
11059
11060 // BIT TEST AND MANIPULATION INSTRUCTIONS
11061 // --------------------------------------
11062 MC6816_bita, // Bit Test A
11063 MC6816_bitb, // Bit Test B
11064 MC6816_bclr, // Clear Bit(s)
11065 MC6816_bclrw, // Clear Bit(s) Word
11066 MC6816_bset, // Set Bit(s)
11067 MC6816_bsetw, // Set Bit(s) Word
11068
11069 // SHIFT AND ROTATE INSTRUCTIONS
11070 // -----------------------------
11071 MC6816_lsr, // Logic Shift Right
11072 MC6816_lsra, // Logic Shift Right A
11073 MC6816_lsrb, // Logic Shift Right B
11074 MC6816_lsrd, // Logic Shift Right D
11075 MC6816_lsre, // Logic Shift Right E
11076 MC6816_lsrw, // Logic Shift Right Word
11077 MC6816_asl, // Arithmetic Shift Left
11078 MC6816_asla, // Arithmetic Shift Left A
11079 MC6816_aslb, // Arithmetic Shift Left B
11080 MC6816_asld, // Arithmetic Shift Left D
11081 MC6816_asle, // Arithmetic Shift Left E
11082 MC6816_aslw, // Arithmetic Shift Left Word
11083 MC6816_asr, // Arithmetic Shift Right
11084 MC6816_asra, // Arithmetic Shift Right A
11085 MC6816_asrb, // Arithmetic Shift Right B
11086 MC6816_asrd, // Arithmetic Shift Right D
11087 MC6816_asre, // Arithmetic Shift Right E
11088 MC6816_asrw, // Arithmetic Shift Right Word
11089 MC6816_rol, // Rotate Left
11090 MC6816_rola, // Rotate Left A
11091 MC6816_rolb, // Rotate Left B
11092 MC6816_rold, // Rotate Left D
11093 MC6816_role, // Rotate Left E
11094 MC6816_rolw, // Rotate Left Word
11095 MC6816_ror, // Rotate Right
11096 MC6816_rora, // Rotate Right A
11097 MC6816_rorb, // Rotate Right B
11098 MC6816_rord, // Rotate Right D
11099 MC6816_rore, // Rotate Right E
11100 MC6816_rorw, // Rotate Right Word
11101
11102 // PROGRAM CONTROL INSTRUCTIONS
11103 // ----------------------------
11104
11105 // SHORT BRANCH INSTRUCTIONS
11106 MC6816_bra, // Branch Always
11107 MC6816_brn, // Branch Never
11108 MC6816_bcc, // Branch If Carry Clear
11109 MC6816_bcs, // Branch If Carry Set
11110 MC6816_beq, // Branch If Equal to Zero
11111 MC6816_bmi, // Branch If Minus
11112 MC6816_bne, // Branch If Not Equal to Zero
11113 MC6816_bpl, // Branch If Plus
11114 MC6816_bvc, // Branch If Overflow Clear
11115 MC6816_bvs, // Branch If Overflow Set
11116 MC6816_bhi, // Branch If Higher
11117 MC6816_bls, // Branch If Lower or Same
11118 MC6816_bge, // Branch If Greater than or Equal to Zero
11119 MC6816_bgt, // Branch If Greater than Zero
11120 MC6816_ble, // Branch If Less than or Equal to Zero
11121 MC6816_blt, // Branch If Less than Zero
11122
11123 // LONG BRANCH INSTRUCTIONS
11124 MC6816_lbra, // Long Branch Always
11125 MC6816_lbrn, // Long Branch Never
11126 MC6816_lbcc, // Long Branch If Carry Clear
11127 MC6816_lbcs, // Long Branch If Carry Set
11128 MC6816_lbeq, // Long Branch If Equal to Zero
11129 MC6816_lbev, // Long Branch If EV Set
11130 MC6816_lbmi, // Long Branch If Minus
11131 MC6816_lbmv, // Long Branch If MV Set
11132 MC6816_lbne, // Long Branch If Not Equal to Zero
11133 MC6816_lbpl, // Long Branch If Plus
11134 MC6816_lbvc, // Long Branch If Overflow Clear
11135 MC6816_lbvs, // Long Branch If Overflow Set
11136 MC6816_lbhi, // Long Branch If Higher
11137 MC6816_lbls, // Long Branch If Lower or Same
11138 MC6816_lbge, // Long Branch If Greater than or Equal to Zero
11139 MC6816_lbgt, // Long Branch If Greater than Zero
11140 MC6816_lble, // Long Branch If Less than or Equal to Zero
11141 MC6816_lblt, // Long Branch If Less than Zero
11142
11143 // BIT CONDITION BRANCH INSTRUCTIONS
11144 MC6816_brclr, // Branch if Bits Clear
11145 MC6816_brset, // Branch if Bits Set
11146
11147 // JUMP INSTRUCTION
11148 MC6816_jmp, // Jump
11149
11150 // SUBROUTINE INSTRUCTIONS
11151 MC6816_bsr, // Branch to Subroutine
11152 MC6816_jsr, // Jump to Subroutine
11153 MC6816_lbsr, // Long Branch to Subroutine
11154 MC6816_rts, // Return From Subroutine
11155
11156 // INTERRUPT INSTRUCTIONS
11157 MC6816_rti, // Return from Interrupt
11158 MC6816_swi, // Software Interrupt
11159
11160 // INDEXING AND ADDRESS EXTENSION INSTRUCTIONS
11161 // -------------------------------------------
11162
11163 // INDEXING INSTRUCTIONS
11164 MC6816_abx, // Add B to IX
11165 MC6816_aby, // Add B to IY
11166 MC6816_abz, // Add B to IZ
11167 MC6816_adx, // Add D to IX
11168 MC6816_ady, // Add D to IY
11169 MC6816_adz, // Add D to IZ
11170 MC6816_aex, // Add E to IX
11171 MC6816_aey, // Add E to IY
11172 MC6816_aez, // Add E to IZ
11173 MC6816_aix, // Add Immediate Value to IX
11174 MC6816_aiy, // Add Immediate Value to IY
11175 MC6816_aiz, // Add Immediate Value to IZ
11176 MC6816_cpx, // Compare IX to Memory
11177 MC6816_cpy, // Compare IY to Memory
11178 MC6816_cpz, // Compare IZ to Memory
11179 MC6816_ldx, // Load IX
11180 MC6816_ldy, // Load IY
11181 MC6816_ldz, // Load IZ
11182 MC6816_stx, // Store IX
11183 MC6816_sty, // Store IY
11184 MC6816_stz, // Store IZ
11185 MC6816_tsx, // Transfer SP to IX
11186 MC6816_tsy, // Transfer SP to IY
11187 MC6816_tsz, // Transfer SP to IZ
11188 MC6816_txs, // Transfer IX to SP
11189 MC6816_txy, // Transfer IX to IY
11190 MC6816_txz, // Transfer IX to IZ
11191 MC6816_tys, // Transfer IY to SP
11192 MC6816_tyx, // Transfer IY to IX
11193 MC6816_tyz, // Transfer IY to IZ
11194 MC6816_tzs, // Transfer IZ to SP
11195 MC6816_tzx, // Transfer IZ to IX
11196 MC6816_tzy, // Transfer IZ to IY
11197 MC6816_xgdx, // Exchange D with IX
11198 MC6816_xgdy, // Exchange D with IY
11199 MC6816_xgdz, // Exchange D with IZ
11200 MC6816_xgex, // Exchange E with IX
11201 MC6816_xgey, // Exchange E with IY
11202 MC6816_xgez, // Exchange E with IZ
11203
11204 // ADDRESS EXTENSION INSTRUCTIONS
11205 MC6816_tbek, // Transfer B to EK
11206 MC6816_tbsk, // Transfer B to SK
11207 MC6816_tbxk, // Transfer B to XK
11208 MC6816_tbyk, // Transfer B to YK
11209 MC6816_tbzk, // Transfer B to ZK
11210 MC6816_tekb, // Transfer EK to B
11211 MC6816_tskb, // Transfer SK to B
11212 MC6816_txkb, // Transfer XK to B
11213 MC6816_tykb, // Transfer YK to B
11214 MC6816_tzkb, // Transfer ZK to B
11215
11216 // STACKING INSTRUCTIONS
11217 // ---------------------
11218 MC6816_ais, // Add Immediate Data to SP
11219 MC6816_cps, // Compare SP to Memory
11220 MC6816_lds, // Load SP
11221 MC6816_sts, // Store SP
11222 MC6816_psha, // Push A
11223 MC6816_pshb, // Push B
11224 MC6816_pshm, // Push Multiple Registers
11225 MC6816_pula, // Pull A
11226 MC6816_pulb, // Pull B
11227 MC6816_pulm, // Pull Multiple Registers
11228
11229 // CONDITION CODE INSTRUCTIONS
11230 // ---------------------------
11231 MC6816_andp, // AND CCR
11232 MC6816_orp, // OR CCR
11233 MC6816_tap, // Transfer A to CCR
11234 MC6816_tdp, // Transfer D to CCR
11235 MC6816_tpa, // Transfer CCR MSB to A
11236 MC6816_tpd, // Transfer CCR to D
11237
11238 // DIGITAL SIGNAL PROCESSING INSTRUCTIONS
11239 // --------------------------------------
11240 MC6816_ace, // Add E to AM[31:15]
11241 MC6816_aced, // Add concatenated E and D to AM
11242 MC6816_aslm, // Arithmetic Shift Left AM
11243 MC6816_asrm, // Arithmetic Shift Right AM
11244 MC6816_clrm, // Clear AM
11245 MC6816_ldhi, // Initialize HR and IR
11246 MC6816_mac, // Multiply and Accumulate
11247 MC6816_pshmac, // Push MAC State
11248 MC6816_pulmac, // Pull MAC State
11249 MC6816_rmac, // Repeating Multiply and Accumulate
11250 MC6816_tdmsk, // Transfer D to XMSK:YMSK
11251 MC6816_tedm, // Transfer E and T to AM[31:0]
11252 MC6816_tem, // Transfer E to AM[31:16]
11253 MC6816_tmer, // Transfer AM to E Rounded
11254 MC6816_tmet, // Transfer AM to E Truncated
11255 MC6816_tmxed, // Transfer AM t IX:E:D
11256
11257 // STOP AND WAIT INSTRUCTIONS
11258 // --------------------------
11259 MC6816_lpstop, // Low Power Stop
11260 MC6816_wai, // Wait for Interrupt
11261
11262 // BACKGROUND MODE AND NULL OPERATIONS
11263 // -----------------------------------
11264 MC6816_bgnd, // Enter Background Debugging Mode
11265 MC6816_nop, // Null operation
11266
11268};
11269
11270/*
11271 * Interactive disassembler (IDA).
11272 * Copyright (c) 1990-2025 Hex-Rays
11273 * ALL RIGHTS RESERVED.
11274 *
11275 */
11276
11277
11278
11279enum
11280{
11281I960_null = 0, // Unknown Operation
11282
11283I960_addc, // Add ordinal with carry
11284I960_addi, // Add integer
11285I960_addo, // Add ordinal
11286I960_alterbit, // Alter bit
11287I960_and, // Src2 AND src1
11288I960_andnot, // Src2 AND (NOT src1)
11289I960_atadd, // Atomic add
11290I960_atmod, // Atomic modify
11291I960_b, // Branch
11292I960_bal, // Branch and Link
11293I960_balx, // Branch and Link Extended
11294I960_bbc, // Check bit and branch if clear
11295I960_bbs, // Check bit and branch if set
11296I960_bno, // Branch if unordered/false
11297I960_bg, // Branch if greater
11298I960_be, // Branch if equal/true
11299I960_bge, // Branch if greater or equal
11300I960_bl, // Branch if less
11301I960_bne, // Branch if not equal
11302I960_ble, // Branch if less or equal
11303I960_bo, // Branch if ordered
11304I960_bx, // Branch Extended
11306I960_calls, // Call system
11307I960_callx, // Call extended
11308I960_chkbit, // Check bit
11309I960_clrbit, // Clear bit
11310I960_cmpdeci, // Compare and decrement integer
11311I960_cmpdeco, // Compare and decrement ordinal
11312I960_cmpi, // Compare integer
11313I960_cmpibno, // Compare integer and branch if unordered
11314I960_cmpibg, // Compare integer and branch if greater
11315I960_cmpibe, // Compare integer and branch if equal
11316I960_cmpibge, // Compare integer and branch if greater or equal
11317I960_cmpibl, // Compare integer and branch if less
11318I960_cmpibne, // Compare integer and branch if not equal
11319I960_cmpible, // Compare integer and branch if less or equal
11320I960_cmpibo, // Compare integer and branch if ordered
11321I960_cmpinci, // Compare and increment integer
11322I960_cmpinco, // Compare and increment ordinal
11323I960_cmpo, // Compare ordinal
11324I960_cmpobg, // Compare ordinal and branch if greater
11325I960_cmpobe, // Compare ordinal and branch if equal
11326I960_cmpobge, // Compare ordinal and branch if greater or equal
11327I960_cmpobl, // Compare ordinal and branch if less
11328I960_cmpobne, // Compare ordinal and branch if not equal
11329I960_cmpoble, // Compare ordinal and branch if less or equal
11330I960_concmpi, // Conditional compare integer
11331I960_concmpo, // Conditional compare ordinal
11332I960_divi, // Divide integer
11333I960_divo, // Divide ordinal
11334I960_ediv, // Extended divide
11335I960_emul, // Extended multiply
11336I960_eshro, // Extended shift right ordinal
11337I960_extract, // Extract
11338I960_faultno, // Fault if unordered
11339I960_faultg, // Fault if greater
11340I960_faulte, // Fault if equal
11341I960_faultge, // Fault if greater or equal
11342I960_faultl, // Fault if less
11343I960_faultne, // Fault if not equal
11344I960_faultle, // Fault if less or equal
11345I960_faulto, // Fault if ordered
11346I960_flushreg, // Flush cached local register sets to memory
11347I960_fmark, // Force mark
11348I960_ld, // Load word
11349I960_lda, // Load address
11350I960_ldib, // Load integer byte
11351I960_ldis, // Load integer short
11352I960_ldl, // Load long
11353I960_ldob, // Load ordinal byte
11354I960_ldos, // Load ordinal short
11355I960_ldq, // Load quad
11356I960_ldt, // Load triple
11358I960_modac, // Modify the AC register
11359I960_modi, // Modulo integer
11360I960_modify, // Modify
11361I960_modpc, // Modify the process controls register
11362I960_modtc, // Modify trace controls
11363I960_mov, // Move word
11364I960_movl, // Move long word
11365I960_movq, // Move quad word
11366I960_movt, // Move triple word
11367I960_muli, // Multiply integer
11368I960_mulo, // Multiply ordinal
11369I960_nand, // NOT (src2 AND src1)
11370I960_nor, // NOT (src2 OR src1)
11371I960_not, // NOT src1
11372I960_notand, // (NOT src2) AND src1
11373I960_notbit, // Not bit
11374I960_notor, // (NOT src2) or src1
11375I960_or, // Src2 OR src1
11376I960_ornot, // Src2 or (NOT src1)
11377I960_remi, // Remainder integer
11378I960_remo, // Remainder ordinal
11379I960_ret, // Return
11380I960_rotate, // Rotate left
11381I960_scanbit, // Scan for bit
11382I960_scanbyte, // Scan byte equal
11383I960_setbit, // Set bit
11384I960_shli, // Shift left integer
11385I960_shlo, // Shift left ordinal
11386I960_shrdi, // Shift right dividing integer
11387I960_shri, // Shift right integer
11388I960_shro, // Shift right ordinal
11389I960_spanbit, // Span over bit
11390I960_st, // Store word
11391I960_stib, // Store integer byte
11392I960_stis, // Store integer short
11393I960_stl, // Store long
11394I960_stob, // Store ordinal byte
11395I960_stos, // Store ordinal short
11396I960_stq, // Store quad
11397I960_stt, // Store triple
11398I960_subc, // Subtract ordinal with carry
11399I960_subi, // Subtract integer
11400I960_subo, // Subtract ordinal
11401I960_syncf, // Synchronize faults
11402I960_testno, // Test for unordered
11403I960_testg, // Test for greater
11404I960_teste, // Test for equal
11405I960_testge, // Test for greater or equal
11406I960_testl, // Test for less
11407I960_testne, // Test for not equal
11408I960_testle, // Test for less or equal
11409I960_testo, // Test for ordered
11410I960_xnor, // Src2 XNOR src1
11411I960_xor, // Src2 XOR src1
11412
11413// Cx instructions
11414
11415I960_sdma, // Set up a DMA controller channel
11416I960_sysctl, // Perform system control function
11417I960_udma, // Copy current DMA pointers to internal data RAM
11418
11419// Unknown instructions
11420
11497
11498// Floating point instructions
11499
11549
11551
11552 };
11553
11554/*
11555 * Interactive disassembler (IDA).
11556 * Copyright (c) 1990-2025 Hex-Rays
11557 * ALL RIGHTS RESERVED.
11558 *
11559 */
11560
11561
11562
11563enum
11564{
11565
11566F2MC_null = 0, // Unknown Operation
11567
11568// TRANSFER INSTRUCTIONS
11569
11570F2MC_mov, // Move byte data from source to destination
11571F2MC_movn, // Move immediate nibble data to A
11572F2MC_movx, // Move byte data with sign extension from source to A
11573F2MC_xch, // Exchange byte data of source to destination
11574F2MC_movw, // Move word data from source to destination
11575F2MC_xchw, // Exchange word data of source to destination
11576F2MC_movl, // Move long word data from source to destination
11577
11578// NUMERIC DATA OPERATIONS INSTRUCTIONS
11579
11580F2MC_add, // Add byte data of destination and source to destination
11581F2MC_addc1, // Add byte data of AL and AH with Carry to AL
11582F2MC_addc2, // Add byte data of A and effective address with Carry to A
11583F2MC_adddc, // Add decimal data of AL and AH with Carry to AL
11584F2MC_sub, // Subtract byte data of source from festination to destination
11585F2MC_subc1, // Subtract byte data of AL from AH with Carry to AL
11586F2MC_subc2, // Subtract byte data of effective address from A with Carry to A
11587F2MC_subdc, // Subtract decimal data of AL from AH with Carry to AL
11588F2MC_addw1, // Add word data of AH and AL to AL
11589F2MC_addw2, // Add word data of destination and source to destination
11590F2MC_addcw, // Add word data of A and effective address from A with Carry to A
11591F2MC_subw1, // Subtract word data of AL from AH to AL
11592F2MC_subw2, // Subtract word data of source from festination to destination
11593F2MC_subcw, // Subtract word data of A and effective address from A with carry to A
11594F2MC_addl, // Add long word data of destination and source to destination
11595F2MC_subl, // Subtract long word data of source from festination to destination
11596F2MC_inc, // Increment byte data
11597F2MC_dec, // Decrement byte data
11598F2MC_incw, // Increment word data
11599F2MC_decw, // Decrement word data
11600F2MC_incl, // Increment long word data
11601F2MC_decl, // Decrement long word data
11602F2MC_cmp1, // Compare byte data of AH and AL
11603F2MC_cmp2, // Compare byte data of destination and source
11604F2MC_cmpw1, // Compare word data of AH and AL
11605F2MC_cmpw2, // Compare word data of destination and source
11606F2MC_cmpl, // Compare long word data of destination and source
11607F2MC_divu1, // Divide unsigned AH by AL
11608F2MC_divu2, // Divide unsigned word data by unsigned byte data
11609F2MC_divuw, // Divide unsigned long word data by unsigned word data
11610F2MC_mulu1, // Multiply unsigned byte AH by AL
11611F2MC_mulu2, // Multiply unsigned byte data
11612F2MC_muluw1, // Multiply unsigned word AH by AL
11613F2MC_muluw2, // Multiply unsigned word data
11614F2MC_div1, // Divide AH by AL
11615F2MC_div2, // Divide word data by byte data
11616F2MC_divw, // Divide long word data by word data
11617F2MC_mul1, // Multiply byte AH by AL
11618F2MC_mul2, // Multiply byte data
11619F2MC_mulw1, // Multiply word AH by AL
11620F2MC_mulw2, // Multiply word data
11621
11622// LOGICAL DATA OPERATION INSTRUCTIONS
11623
11624F2MC_and, // And byte data of destination and source to destination
11625F2MC_or, // Or byte data of destination and source to destination
11626F2MC_xor, // Exclusive or byte data of destination and source to destination
11627F2MC_not, // Not byte data of destination
11628F2MC_andw1, // And word data of AH and AL to AL
11629F2MC_andw2, // And word data of destination and source to destination
11630F2MC_orw1, // Or word data of AH and AL to AL
11631F2MC_orw2, // Or word data of destination and source to destination
11632F2MC_xorw1, // Exclusive or word data of AH and AL to AL
11633F2MC_xorw2, // Exclusive or word data of destination and source to destination
11634F2MC_notw, // Not word data of destination
11635F2MC_andl, // And long word data of destination and source to destination
11636F2MC_orl, // Or long word data of destination and source to destination
11637F2MC_xorl, // Exclusive or long word data of destination and source to destination
11638F2MC_neg, // Negate byte data of destination
11639F2MC_negw, // Negate word data of destination
11640F2MC_nrml, // Normalize long word
11641
11642// SHIFT INSTRUCTIONS
11643
11644F2MC_rorc, // Rotate byte data of A with Carry to right
11645F2MC_rolc, // Rotate byte data of A with Carry to left
11646F2MC_asr, // Arithmetic shift byte data of A to right
11647F2MC_lsr, // Logical shift byte data of A to right
11648F2MC_lsl, // Logical shift byte data of A to left
11649F2MC_asrw1, // Arithmetic shift word data of A to right
11650F2MC_asrw2, // Arithmetic shift word data of A to right
11651F2MC_lsrw1, // Logical shift word data of A to right
11652F2MC_lsrw2, // Logical shift word data of A to right
11653F2MC_lslw1, // Logical shift word data of A to left
11654F2MC_lslw2, // Logical shift word data of A to left
11655F2MC_asrl, // Arithmetic shift long word data of A to right
11656F2MC_lsrl, // Logical shift long word data of A to right
11657F2MC_lsll, // Logical shift long word data of A to left
11658
11659// BRANCH INSTRUCTIONS
11660
11661F2MC_bz, // Branch if Zero
11662F2MC_bnz, // Branch if Not Zero
11663F2MC_bc, // Branch if Carry
11664F2MC_bnc, // Branch if Not Carry
11665F2MC_bn, // Branch if Negative
11666F2MC_bp, // Branch if Not Negative
11667F2MC_bv, // Branch if Overflow
11668F2MC_bnv, // Branch if Not Overflow
11669F2MC_bt, // Branch if Sticky
11670F2MC_bnt, // Branch if Not Sticky
11671F2MC_blt, // Branch if Overflow or Negative
11672F2MC_bge, // Branch if Not (Overflow or Negative)
11673F2MC_ble, // Branch if (Overflow xor Negative) or Zero
11674F2MC_bgt, // Branch if Not ((Overflow xor Negative) or Zero)
11675F2MC_bls, // Branch if Carry or Zero
11676F2MC_bhi, // Branch if Not (Carry or Zero)
11677F2MC_bra, // Branch unconditionally
11678F2MC_jmp, // Jump destination address
11679F2MC_jmpp, // Jump destination physical address
11680F2MC_call, // Call subroutine
11681F2MC_callv, // Call vectored subroutine
11682F2MC_callp, // Call physical address
11683F2MC_cbne, // Compare byte data and branch if not Equal
11684F2MC_cwbne, // Compare word data and branch if not Equal
11685F2MC_dbnz, // Decrement byte data and branch if not Zero
11686F2MC_dwbnz, // Decrement word data and branch if not Zero
11687F2MC_int, // Software interrupt
11688F2MC_intp, // Software interrupt
11689F2MC_int9, // Software interrupt
11690F2MC_reti, // Return from interrupt
11691F2MC_link, // Link and create new stack frame
11692F2MC_unlink, // Unlink and create new stack frame
11693F2MC_ret, // Return from subroutine
11694F2MC_retp, // Return from physical address
11695
11696// OTHER INSTRUCTIONS
11697
11698F2MC_pushw, // Push to stack memory
11699F2MC_popw, // Pop from stack memory
11700F2MC_jctx, // Jump context
11701// F2MC_and,
11702// F2MC_or,
11703// F2MC_mov,
11704F2MC_movea, // Move effective address to destination
11705F2MC_addsp, // Add word data of SP and immediate data to SP
11706// F2MC_mov,
11707F2MC_nop, // No operation
11708F2MC_adb, // ADB register
11709F2MC_dtb, // DTB register
11710F2MC_pcb, // PCB register
11711F2MC_spb, // SPB register
11712F2MC_ncc, // Flag change inhibit
11713F2MC_cmr, // Common register bank
11714F2MC_movb, // Move bit data
11715F2MC_setb, // Set bit
11716F2MC_clrb, // Clear bit
11717F2MC_bbc, // Branch if bit condition satisfied
11718F2MC_bbs, // Branch if bit condition satisfied
11719F2MC_sbbs, // Set bit and branch if bit set
11720F2MC_wbts, // Wait until bit condition satisfied
11721F2MC_wbtc, // Wait until bit condition satisfied
11722F2MC_swap, // Swap byte data of A
11723F2MC_swapw, // Swap word data of A
11724F2MC_ext, // Sign extend from byte data to word data
11725F2MC_extw, // Sign extend from word data to long word data
11726F2MC_zext, // Zero extendfrom byte data to word data
11727F2MC_zextw, // Zero extendfrom word data to long word data
11728F2MC_movsi, // Move string byte with addresses incremented
11729F2MC_movsd, // Move string byte with addresses decremented
11730F2MC_sceqi, // Scan string byte until Equal with address incremented
11731F2MC_sceqd, // Scan string byte until Equal with address decremented
11732F2MC_filsi, // Fill string byte
11733F2MC_movswi, // Move string word with address incremented
11734F2MC_movswd, // Move string word with address decremented
11735F2MC_scweqi, // Scan string word until Equal with address incremented
11736F2MC_scweqd, // Scan string word until Equal with address decremented
11737F2MC_filswi, // Fill string word
11738
11739// MACROS
11740
11741F2MC_bz16, // Branch if Zero
11742F2MC_bnz16, // Branch if Not Zero
11743F2MC_bc16, // Branch if Carry
11744F2MC_bnc16, // Branch if Not Carry
11745F2MC_bn16, // Branch if Negative
11746F2MC_bp16, // Branch if Not Negative
11747F2MC_bv16, // Branch if Overflow
11748F2MC_bnv16, // Branch if Not Overflow
11749F2MC_bt16, // Branch if Sticky
11750F2MC_bnt16, // Branch if Not Sticky
11751F2MC_blt16, // Branch if Overflow or Negative
11752F2MC_bge16, // Branch if Not (Overflow or Negative)
11753F2MC_ble16, // Branch if (Overflow xor Negative) or Zero
11754F2MC_bgt16, // Branch if Not ((Overflow xor Negative) or Zero)
11755F2MC_bls16, // Branch if Carry or Zero
11756F2MC_bhi16, // Branch if Not (Carry or Zero)
11757
11758F2MC_cbne16, // Compare byte data and branch if not Equal
11759F2MC_cwbne16, // Compare word data and branch if not Equal
11760
11761F2MC_dbnz16, // Decrement byte data and branch if not Zero
11762F2MC_dwbnz16, // Decrement word data and branch if not Zero
11763
11764F2MC_bbc16, // Branch if bit condition satisfied
11765F2MC_bbs16, // Branch if bit condition satisfied
11766F2MC_sbbs16, // Set bit and branch if bit set
11767
11769
11770};
11771
11772/*
11773 * Interactive disassembler (IDA).
11774 * Copyright (c) 1990-2025 Hex-Rays
11775 * ALL RIGHTS RESERVED.
11776 *
11777 */
11778
11779
11780
11781enum
11782{
11783TMS320C3X_null = 0, // Unknown Operation
11784
11785TMS320C3X_ABSF, // Absolute value of a floating-point number
11786TMS320C3X_ABSI, // Absolute value of an integer
11787TMS320C3X_ADDC, // Add integers with carry
11788TMS320C3X_ADDF, // Add Floating-Point Values
11789TMS320C3X_ADDI, // Add Integer
11790TMS320C3X_AND, // Bitwise-Logical AND
11791TMS320C3X_ANDN, // Bitwise-Logical AND With Complement
11792TMS320C3X_ASH, // Arithmetic Shift
11793TMS320C3X_CMPF, // Compare Floating-Point Value
11794TMS320C3X_CMPI, // Compare Integer
11795TMS320C3X_FIX, // Floating-Point-to-Integer Conversion
11796TMS320C3X_FLOAT, // Integer-to-Floating-Point Conversion
11797TMS320C3X_IDLE, // Idle Until Interrupt
11798TMS320C3X_IDLE2, // Low-Power Idle
11799TMS320C3X_LDE, // Load Floating-Point Exponent
11800TMS320C3X_LDF, // Load Floating-Point Value
11801TMS320C3X_LDFI, // Load Floating-Point Value, Interlocked
11802TMS320C3X_LDI, // Load Integer
11803TMS320C3X_LDII, // Load Integer, Interlocked
11804TMS320C3X_LDM, // Load Floating-Point Mantissa
11805TMS320C3X_LSH, // Logical Shift
11806TMS320C3X_MPYF, // Multiply Floating-Point Value
11807TMS320C3X_MPYI, // Multiply Integer
11808TMS320C3X_NEGB, // Negative Integer With Borrow
11809TMS320C3X_NEGF, // Negate Floating-Point Value
11810TMS320C3X_NEGI, // Negate Integer
11811TMS320C3X_NOP, // No Operation
11812TMS320C3X_NORM, // Normalize
11813TMS320C3X_NOT, // Bitwise-Logical Complement
11814TMS320C3X_POP, // Pop Integer
11815TMS320C3X_POPF, // Pop Floating-Point Value
11816TMS320C3X_PUSH, // PUSH Integer
11817TMS320C3X_PUSHF, // PUSH Floating-Point Value
11818TMS320C3X_OR, // Bitwise-Logical OR
11819TMS320C3X_LOPOWER, // Divide Clock by 16
11820TMS320C3X_MAXSPEED, // Restore Clock to Regular Speed
11821TMS320C3X_RND, // Round Floating-Point Value
11822TMS320C3X_ROL, // Rotate Left
11823TMS320C3X_ROLC, // Rotate Left Through Carry
11824TMS320C3X_ROR, // Rotate Right
11825TMS320C3X_RORC, // Rotate Right Through Carry
11826TMS320C3X_RPTS, // Repeat Single Instruction
11827TMS320C3X_STF, // Store Floating-Point Value
11828TMS320C3X_STFI, // Store Floating-Point Value, Interlocked
11829TMS320C3X_STI, // Store Integer
11830TMS320C3X_STII, // Store Integer, Interlocked
11831TMS320C3X_SIGI, // Signal, Interlocked
11832TMS320C3X_SUBB, // Subtract Integer With Borrow
11833TMS320C3X_SUBC, // Subtract Integer Conditionally
11834TMS320C3X_SUBF, // Subtract Floating-Point Value
11835TMS320C3X_SUBI, // Subtract Integer
11836TMS320C3X_SUBRB, // Subtract Reverse Integer With Borrow
11837TMS320C3X_SUBRF, // Subtract Reverse Floating-Point Value
11838TMS320C3X_SUBRI, // Subtract Reverse Integer
11839TMS320C3X_TSTB, // Test Bit Fields
11840TMS320C3X_XOR, // Bitwise-Exclusive OR
11841TMS320C3X_IACK, // Interrupt acknowledge
11842
11843TMS320C3X_ADDC3, // Add integers with carry (3-operand)
11844TMS320C3X_ADDF3, // Add floating-point values (3-operand)
11845TMS320C3X_ADDI3, // Add integers (3 operand)
11846TMS320C3X_AND3, // Bitwise-logical AND (3-operand)
11847TMS320C3X_ANDN3, // Bitwise-logical ANDN (3-operand)
11848TMS320C3X_ASH3, // Arithmetic shift (3-operand)
11849TMS320C3X_CMPF3, // Compare floating-point values (3-operand)
11850TMS320C3X_CMPI3, // Compare integers (3-operand)
11851TMS320C3X_LSH3, // Logical shift (3-operand)
11852TMS320C3X_MPYF3, // Multiply floating-point value (3-operand)
11853TMS320C3X_MPYI3, // Multiply integers (3-operand)
11854TMS320C3X_OR3, // Bitwise-logical OR (3-operand)
11855TMS320C3X_SUBB3, // Subtract integers with borrow (3-operand)
11856TMS320C3X_SUBF3, // Subtract floating-point values (3-operand)
11857TMS320C3X_SUBI3, // Subtract integers (3-operand)
11858TMS320C3X_TSTB3, // Test Bit Fields, 3-Operand
11859TMS320C3X_XOR3, // Bitwise-Exclusive OR, 3-Operand
11860
11861TMS320C3X_LDFcond, // Load floating-point value conditionally
11862TMS320C3X_LDIcond, // Load integer conditionally
11863TMS320C3X_BR, // Branch unconditionally (standard)
11864TMS320C3X_BRD, // Branch unconditionally (delayed)
11865TMS320C3X_CALL, // Call subroutine
11866TMS320C3X_RPTB, // Repeat block of instructions
11867TMS320C3X_SWI, // Software Interrupt
11868TMS320C3X_Bcond, // Branch conditionally
11869TMS320C3X_DBcond, // Decrement and branch conditionally
11870TMS320C3X_CALLcond, // Call subroutine conditionally
11871TMS320C3X_TRAPcond, // Trap Conditionally
11872TMS320C3X_RETIcond, // Return from interrupt conditionally
11873TMS320C3X_RETScond, // Return from subroutine conditionally
11874TMS320C3X_RETIU, // Return from interrupt unconditionally
11875TMS320C3X_RETSU, // Return from subroutine unconditionally
11876
11877TMS320C3X_NONE, // Pseudo insn (more accurate definition need)
11878TMS320C3X_MV_IDX, // Pseudo insn (move to next index need)
11880
11881};
11882
11883
11884/*
11885 * Interactive disassembler (IDA).
11886 * Copyright (c) 1990-2025 Hex-Rays
11887 * ALL RIGHTS RESERVED.
11888 *
11889 */
11890
11891
11892
11893enum
11894{
11895
11896TMS320C54_null = 0, // Unknown Operation
11897
11898// ARITHMETIC OPERATIONS
11899
11900// ADD INSTRUCTIONS
11901
11902TMS320C54_add1, // Add to Accumulator
11903TMS320C54_add2, // Add to Accumulator
11904TMS320C54_add3, // Add to Accumulator
11905TMS320C54_addc, // Add to Accumulator With Carry
11906TMS320C54_addm, // Add Long-Immediate Value to Memory
11907TMS320C54_adds, // Add to Accumulator With Sign-Extension Suppressed
11908
11909// SUBTRACT INSTRUCTIONS
11910
11911TMS320C54_sub1, // Sub From Accumulator
11912TMS320C54_sub2, // Sub From Accumulator
11913TMS320C54_sub3, // Sub From Accumulator
11914TMS320C54_subb, // Sub From Accumulator With Borrow
11915TMS320C54_subc, // Subtract Conditionally
11916TMS320C54_subs, // Subtract From Accumulator With Sign Extension Suppressed
11917
11918// MULTIPLY INSTRUCTIONS
11919
11920TMS320C54_mpy2, // Multiply Without Rounding
11921TMS320C54_mpy3, // Multiply Without Rounding
11922TMS320C54_mpyr2, // Multiply With Rounding
11923TMS320C54_mpya, // Multiply by Accumulator A
11924TMS320C54_mpyu, // Multiply Unsigned
11926
11927// MULTIPLY-ACCUMULATE AND MULTIPLY-SUBTRACT INSTRUCTIONS
11928
11929TMS320C54_mac2, // Multiply Accumulate Without Rounding
11930TMS320C54_mac3, // Multiply Accumulate Without Rounding
11931TMS320C54_macr2, // Multiply Accumulate With Rounding
11932TMS320C54_macr3, // Multiply Accumulate With Rounding
11933TMS320C54_maca1, // Multiply by Accumulator A and Accumulate Without Rounding
11934TMS320C54_maca2, // Multiply by Accumulator A and Accumulate Without Rounding
11935TMS320C54_maca3, // Multiply by Accumulator A and Accumulate Without Rounding
11936TMS320C54_macar1, // Multiply by Accumulator A and Accumulate With Rounding
11937TMS320C54_macar2, // Multiply by Accumulator A and Accumulate With Rounding
11938TMS320C54_macar3, // Multiply by Accumulator A and Accumulate With Rounding
11939TMS320C54_macd, // Multiply by Program Memory and Accumulate With Delay
11940TMS320C54_macp, // Multiply by Program Memory and Accumulate
11941TMS320C54_macsu, // Multiply Signed by Unsigned and Accumulate
11942TMS320C54_mas2, // Multiply and Subtract Without Rounding
11943TMS320C54_mas3, // Multiply and Subtract Without Rounding
11944TMS320C54_masr2, // Multiply and Subtract With Rounding
11945TMS320C54_masr3, // Multiply and Subtract With Rounding
11946// TMS320C54_mas,
11947TMS320C54_masa1, // Multiply by Accumulator A and Subtract Without Rounding
11948TMS320C54_masa2, // Multiply by Accumulator A and Subtract Without Rounding
11949TMS320C54_masa3, // Multiply by Accumulator A and Subtract Without Rounding
11950TMS320C54_masar1, // Multiply by Accumulator A and Subtract With Rounding
11951TMS320C54_masar2, // Multiply by Accumulator A and Subtract With Rounding
11952TMS320C54_masar3, // Multiply by Accumulator A and Subtract With Rounding
11953TMS320C54_squra, // Square and Accumulate
11954TMS320C54_squrs, // Square and Subtract
11955
11956// DOUBLE INSTRUCTIONS
11957
11958TMS320C54_dadd2, // Double-Precision/Dual 16-Bit Add to Accumulator
11959TMS320C54_dadd3, // Double-Precision/Dual 16-Bit Add to Accumulator
11960TMS320C54_dadst, // Double-Precision Load With T Add/Dual 16-Bit Load With T Add/Subtract
11961TMS320C54_drsub, // Double-Precision/Dual 16-Bit Subtract From Long Word
11962TMS320C54_dsadt, // Long-Word Load With T Add/Dual 16-Bit Load With T Subtract/Add
11963TMS320C54_dsub, // Double-Precision/Dual 16-Bit Subtract From Accumulator
11964TMS320C54_dsubt, // Long-Word Load With T Subtract/Dual 16-Bit Load With T Subtract
11965
11966// APPLICATION-SPECIFIC INSTRUCTIONS
11967
11968TMS320C54_abdst, // Absolute distance
11969TMS320C54_abs1, // Absolute Value of Accumulator
11970TMS320C54_abs2, // Absolute Value of Accumulator
11971TMS320C54_cmpl1, // Complement Accumulator
11972TMS320C54_cmpl2, // Complement Accumulator
11973TMS320C54_delay, // Memory Delay
11974TMS320C54_exp, // Accumulator Exponent
11975TMS320C54_firs, // Symmetrical Finite Impulse Response Filter
11976TMS320C54_lms, // Least Mean Square
11977TMS320C54_max, // Accumulator Maximum
11978TMS320C54_min, // Accumulator Minimum
11979TMS320C54_neg1, // Negate Accumulator
11980TMS320C54_neg2, // Negate Accumulator
11981TMS320C54_norm1, // Normalization
11982TMS320C54_norm2, // Normalization
11983TMS320C54_poly, // Polynominal Evaluation
11984TMS320C54_rnd1, // Round Accumulator
11985TMS320C54_rnd2, // Round Accumulator
11986TMS320C54_sat, // Saturate Accumulator
11987TMS320C54_sqdst, // Square Distance
11988
11989// LOGICAL OPERATIONS
11990
11991// AND INSTRUCTIONS
11992
11993TMS320C54_and1, // AND With Accumulator
11994TMS320C54_and2, // AND With Accumulator
11995TMS320C54_and3, // AND With Accumulator
11996TMS320C54_andm, // AND Memory With Long Immediate
11997
11998// OR INSTRUCTIONS
11999
12000TMS320C54_or1, // OR With Accumulator
12001TMS320C54_or2, // OR With Accumulator
12002TMS320C54_or3, // OR With Accumulator
12003TMS320C54_orm, // OR Memory With Constant
12004
12005// XOR INSTRUCTIONS
12006
12007TMS320C54_xor1, // Exclusive OR With Accumulator
12008TMS320C54_xor2, // Exclusive OR With Accumulator
12009TMS320C54_xor3, // Exclusive OR With Accumulator
12010TMS320C54_xorm, // Exclusive OR Memory With Constant
12011
12012// SHIFT INSTRUCTIONS
12013
12014TMS320C54_rol, // Rotate Accumulator
12015TMS320C54_roltc, // Rotate Accumulator Left Using TC
12016TMS320C54_ror, // Rotate Accumulator Right
12017TMS320C54_sfta2, // Shift Accumulator Arithmetically
12018TMS320C54_sfta3, // Shift Accumulator Arithmetically
12019TMS320C54_sftc, // Shift Accumulator Conditionally
12020TMS320C54_sftl2, // Shift Accumulator Logically
12021TMS320C54_sftl3, // Shift Accumulator Logically
12022
12023// TEST INSTRUCTIONS
12024
12025TMS320C54_bit, // Test Bit
12026TMS320C54_bitf, // Test Bit Field Specified by Immediate Value
12027TMS320C54_bitt, // Test Bit Specified by T
12028TMS320C54_cmpm, // Compare Memory With Long Immediate
12029TMS320C54_cmpr, // Compare Auxiliary Register with AR0
12030
12031// PROGRAM CONTROL OPERATIONS
12032
12033// BRANCH INSTRUCTIONS
12034
12035TMS320C54_b, // Branch Unconditionally
12036TMS320C54_bd, // Branch Unconditionally
12037TMS320C54_bacc, // Branch to Location Specified by Accumulator
12038TMS320C54_baccd, // Branch to Location Specified by Accumulator
12039TMS320C54_banz, // Branch on Auxiliary Register Not Zero
12040TMS320C54_banzd, // Branch on Auxiliary Register Not Zero
12041TMS320C54_bc2, // Branch Conditionally
12042TMS320C54_bc3, // Branch Conditionally
12043TMS320C54_bcd2, // Branch Conditionally
12044TMS320C54_bcd3, // Branch Conditionally
12045TMS320C54_fb, // Far Branch Unconditionally
12046TMS320C54_fbd, // Far Branch Unconditionally
12047TMS320C54_fbacc, // Far Branch to Location Specified by Accumulator
12048TMS320C54_fbaccd, // Far Branch to Location Specified by Accumulator
12049
12050// CALL INSTRUCTIONS
12051
12052TMS320C54_cala, // Call Subroutine at Location Specified by Accumulator
12053TMS320C54_calad, // Call Subroutine at Location Specified by Accumulator
12054TMS320C54_call, // Call Unconditionally
12055TMS320C54_calld, // Call Unconditionally
12056TMS320C54_cc2, // Call Conditionally
12057TMS320C54_cc3, // Call Conditionally
12058TMS320C54_ccd2, // Call Conditionally
12059TMS320C54_ccd3, // Call Conditionally
12060TMS320C54_fcala, // Far Call Subroutine at Location Specified by Accumulator
12061TMS320C54_fcalad, // Far Call Subroutine at Location Specified by Accumulator
12062TMS320C54_fcall, // Far Call Unconditionally
12063TMS320C54_fcalld, // Far Call Unconditionally
12064
12065// INTERRUPT INSTRUCTIONS
12066
12067TMS320C54_intr, // Software Interrupt
12068TMS320C54_trap, // Software Interrupt
12069
12070// RETURN INSTRUCTIONS
12071
12072TMS320C54_fret, // Far Return
12073TMS320C54_fretd, // Far Return
12074TMS320C54_frete, // Enable Interrupts and Far Return From Interrupt
12075TMS320C54_freted, // Enable Interrupts and Far Return From Interrupt
12076TMS320C54_rc1, // Return Conditionally
12077TMS320C54_rc2, // Return Conditionally
12078TMS320C54_rc3, // Return Conditionally
12079TMS320C54_rcd1, // Return Conditionally
12080TMS320C54_rcd2, // Return Conditionally
12081TMS320C54_rcd3, // Return Conditionally
12084TMS320C54_rete, // Enable Interrupts and Return From Interrupt
12085TMS320C54_reted, // Enable Interrupts and Return From Interrupt
12086TMS320C54_retf, // Enable Interrupts and Fast Return From Interrupt
12087TMS320C54_retfd, // Enable Interrupts and Fast Return From Interrupt
12088
12089// REPEAT INSTRUCTIONS
12090
12091TMS320C54_rpt, // Repeat Next Instruction
12092TMS320C54_rptb, // Block Repeat
12093TMS320C54_rptbd, // Block Repeat
12094TMS320C54_rptz, // Repeat Next Instruction And Clear Accumulator
12095
12096// STACK MANIPULATING INSTRUCTIONS
12097
12098TMS320C54_frame, // Stack Pointer Immediate Offset
12099TMS320C54_popd, // Pop Top of Stack to Data Memory
12100TMS320C54_popm, // Pop Top of Stack to Memory-Mapped Register
12101TMS320C54_pshd, // Push Data-Memory Value Onto Stack
12102TMS320C54_pshm, // Push Memory-Mapped Register Onto Stack
12103
12104// MISCELLANEOUS PROGRAM-CONTROL INSTRUCTIONS
12105
12106TMS320C54_idle, // Idle Until Interrupt
12107TMS320C54_mar, // Modify Auxiliary Register
12108TMS320C54_nop, // No Operation
12109TMS320C54_reset, // Software Reset
12110TMS320C54_rsbx1, // Reset Status Register Bit
12111TMS320C54_rsbx2, // Reset Status Register Bit
12112TMS320C54_ssbx1, // Set Status Register Bit
12113TMS320C54_ssbx2, // Set Status Register Bit
12114TMS320C54_xc2, // Execute Conditionally
12115TMS320C54_xc3, // Execute Conditionally
12116
12117// LOAD AND STORE OPERATIONS
12118
12119// LOAD INSTRUCTIONS
12120
12121TMS320C54_dld, // Double-Precision/Dual 16-Bit Long-Word Load to Accumulator
12122TMS320C54_ld1, // Load Accumulator With Shift
12123TMS320C54_ld2, // Load Accumulator With Shift
12124TMS320C54_ld3, // Load Accumulator With Shift
12125TMS320C54_ldm, // Load Memory-Mapped Register
12126TMS320C54_ldr, // Load Memory Value in Accumulator High With Rounding
12127TMS320C54_ldu, // Load Unsigned Memory Value
12128TMS320C54_ltd, // Load T and insert Delay
12129
12130// STORE INSTRUCTIONS
12131
12132TMS320C54_dst, // Store Accumulator in Long Word
12133TMS320C54_st, // Store T, TRN, or Immediate Value into Memory
12134TMS320C54_sth2, // Store Accumulator High Into Memory
12135TMS320C54_sth3, // Store Accumulator High Into Memory
12136TMS320C54_stl2, // Store Accumulator Low Into Memory
12137TMS320C54_stl3, // Store Accumulator Low Into Memory
12138TMS320C54_stlm, // Store Accumulator Low Into Memory-Mapped Register
12139TMS320C54_stm, // Store Immediate Value Into Memory-Mapped Register
12140
12141// CONDITIONAL STORE INSTRUCTIONS
12142
12143TMS320C54_cmps, // Compare, Select and Store Maximum
12144TMS320C54_saccd, // Store Accumulator Conditionally
12145TMS320C54_srccd, // Store Block Repeat Counter Conditionally
12146TMS320C54_strcd, // Store T Conditionally
12147
12148// PARALLEL LOAD AND STORE INSTRUCTIONS
12149
12150TMS320C54_st_ld, // Store Accumulator With Parallel Load
12151
12152// PARALLEL LOAD AND MULTIPLY INSTRUCTIONS
12153
12154TMS320C54_ld_mac, // Load Accumulator With Parallel Multiply Accumulate Without Rounding
12155TMS320C54_ld_macr, // Load Accumulator With Parallel Multiply Accumulate With Rounding
12156TMS320C54_ld_mas, // Load Accumulator With Parallel Multiply Subtract Without Rounding
12157TMS320C54_ld_masr, // Load Accumulator With Parallel Multiply Subtract With Rounding
12158
12159// PARALLEL STORE AND ADD/SUBSTRACT INSTRUCTIONS
12160
12161TMS320C54_st_add, // Store Accumulator With Parallel Add
12162TMS320C54_st_sub, // Store Accumulator With Parallel Subtract
12163
12164// PARALLEL STORE AND MULTIPLY INSTRUCTIONS
12165
12166TMS320C54_st_mac, // Store Accumulator With Parallel Multiply Accumulate Without Rounding
12167TMS320C54_st_macr, // Store Accumulator With Parallel Multiply Accumulate With Rounding
12168TMS320C54_st_mas, // Store Accumulator With Parallel Multiply Subtract Without Rounding
12169TMS320C54_st_masr, // Store Accumulator With Parallel Multiply Subtract With Rounding
12170TMS320C54_st_mpy, // Store Accumulator With Parallel Multiply
12171
12172// MISCELLANEOUS LOAD-TYPE AND STORE-TYPE INSTRUCTIONS
12173
12174TMS320C54_mvdd, // Move Data From Data Memory to Data Memory With X,Y Addressing
12175TMS320C54_mvdk, // Move Data From Data Memory to Data Memory With Destination Addressing
12176TMS320C54_mvdm, // Move Data From Data Memory to Memory-Mapped Register
12177TMS320C54_mvdp, // Move Data From Data Memory to Program Memory
12178TMS320C54_mvkd, // Move Data From Data Memory to Data Memory With Source Addressing
12179TMS320C54_mvmd, // Move Data From Memory-Mapped Register to Data Memory
12180TMS320C54_mvmm, // Move Data From Memory-Mapped Register to Memory-Mapped Register
12181TMS320C54_mvpd, // Move Data From Program Memory to Data Memory
12182TMS320C54_portr, // Read Data From Port
12183TMS320C54_portw, // Write Data to Port
12184TMS320C54_reada, // Read Program Memory Addressed by Accumulator A and Store in Data Memory
12185TMS320C54_writa, // Write Data to Program Memory Addressed by Accumulator A
12186
12188
12189};
12190
12191/*
12192 * Interactive disassembler (IDA).
12193 * Copyright (c) 1990-2025 Hex-Rays
12194 * ALL RIGHTS RESERVED.
12195 *
12196 */
12197
12198
12199
12200enum
12201{
12202
12203TMS320C55_null = 0, // Unknown Operation
12204
12205// ARITHMETICAL OPERATIONS
12206
12207TMS320C55_abdst, // Absolute Distance
12208TMS320C55_abs1, // Absolute Value
12209TMS320C55_abs2, // Absolute Value
12210
12211TMS320C55_add1, // Addition
12212TMS320C55_add2, // Addition
12213TMS320C55_add3, // Addition
12214TMS320C55_add4, // Addition
12217TMS320C55_addrv1, // Addition and Round
12218TMS320C55_addrv2, // Addition and Round
12219
12220TMS320C55_maxdiff, // Compare and Select Maximum
12221TMS320C55_dmaxdiff, // Compare and Select 40-bit Maximum
12222TMS320C55_mindiff, // Compare and Select Minimum
12223TMS320C55_dmindiff, // Compare and Select 40-bit Minimum
12224
12225TMS320C55_addsubcc4, // Conditional Add or Subtract
12226TMS320C55_addsubcc5, // Conditional Add or Subtract
12227TMS320C55_addsub2cc, // Conditional Add or Subtract
12228
12229TMS320C55_sftcc, // Conditional Shift
12230
12231TMS320C55_subc2, // Conditional Subtract
12232TMS320C55_subc3, // Conditional Subtract
12233
12234TMS320C55_addsub, // Paralleled Add - Subtract
12235TMS320C55_subadd, // Parallel Subtract - Add
12236
12237TMS320C55_mpy_mpy, // Two Parallel Multiply
12238TMS320C55_mpy_mpyr, // Two Parallel Multiply, and Round
12239TMS320C55_mpy_mpy40, // Two Parallel Multiply, on 40 bits
12240TMS320C55_mpy_mpyr40, // Two Parallel Multiply, and Round on 40 bits
12241TMS320C55_mac_mpy, // Parallel Multiply - Accumulate
12242TMS320C55_macr_mpyr, // Parallel Multiply - Accumulate, and Round
12243TMS320C55_mac40_mpy40, // Parallel Multiply - Accumulate, on 40 bits
12244TMS320C55_macr40_mpyr40, // Parallel Multiply - Accumulate, and Round on 40 bits
12245TMS320C55_mas_mpy, // Parallel Multiply - Subtract
12246TMS320C55_masr_mpyr, // Parallel Multiply - Subtract, and Round
12247TMS320C55_mas40_mpy40, // Parallel Multiply - Subtract, on 40 bits
12248TMS320C55_masr40_mpyr40, // Parallel Multiply - Subtract, and Round on 40 bits
12249TMS320C55_amar_mpy, // Parallel Modify Auxiliary Register - Multiply
12250TMS320C55_amar_mpyr, // Parallel Modify Auxiliary Register - Multiply, and Round
12251TMS320C55_amar_mpy40, // Parallel Modify Auxiliary Register - Multiply, on 40 bits
12252TMS320C55_amar_mpyr40, // Parallel Modify Auxiliary Register - Multiply, and Round on 40 bits
12253TMS320C55_mac_mac, // Two Parallel Multiply and Accumulate
12254TMS320C55_macr_macr, // Two Parallel Multiply and Accumulate, and Round
12255TMS320C55_mac40_mac40, // Two Parallel Multiply and Accumulate, on 40 bits
12256TMS320C55_macr40_macr40, // Two Parallel Multiply and Accumulate, and Round on 40 bits
12257TMS320C55_mas_mac, // Parallel Multiply and Subtract - Multiply and Accumulate
12258TMS320C55_masr_macr, // Parallel Multiply and Subtract - Multiply and Accumulate, and Round
12259TMS320C55_mas40_mac40, // Parallel Multiply and Subtract - Multiply and Accumulate, on 40 bits
12260TMS320C55_masr40_macr40, // Parallel Multiply and Subtract - Multiply and Accumulate, and Round on 40 bits
12261TMS320C55_amar_mac, // Parallel Modify Auxiliary Register - Multiply and Accumulate
12262TMS320C55_amar_macr, // Parallel Modify Auxiliary Register - Multiply and Accumulate, and Round
12263TMS320C55_amar_mac40, // Parallel Modify Auxiliary Register - Multiply and Accumulate, on 40 bits
12264TMS320C55_amar_macr40, // Parallel Modify Auxiliary Register - Multiply and Accumulate, and Round on 40 bits
12265TMS320C55_mas_mas, // Two Parallel Multiply and Subtract
12266TMS320C55_masr_masr, // Two Parallel Multiply and Subtract, and Round
12267TMS320C55_mas40_mas40, // Two Parallel Multiply and Subtract, on 40 bits
12268TMS320C55_masr40_masr40, // Two Parallel Multiply and Subtract, and Round on 40 bits
12269TMS320C55_amar_mas, // Parallel Modify Auxiliary Register - Multiply and Subtract
12270TMS320C55_amar_masr, // Parallel Modify Auxiliary Register - Multiply and Subtract, and Round
12271TMS320C55_amar_mas40, // Parallel Modify Auxiliary Register - Multiply and Subtract, on 40 bits
12272TMS320C55_amar_masr40, // Parallel Modify Auxiliary Register - Multiply and Subtract, and Round on 40 bits
12273TMS320C55_mpy_mac, // Parallel Multiply - Multiply and Accumulate
12274TMS320C55_mpyr_macr, // Parallel Multiply - Multiply and Accumulate, and Round
12275TMS320C55_mpy40_mac40, // Parallel Multiply - Multiply and Accumulate, on 40 bits
12276TMS320C55_mpyr40_macr40, // Parallel Multiply - Multiply and Accumulate, and Round on 40 bits
12277TMS320C55_amar3, // Three Parallel Modify Auxiliary Registers
12278
12279TMS320C55_firsadd, // Parallel Multiply and Accumulate - Add
12280TMS320C55_firssub, // Parallel Multiply and Accumulate - Subtract
12281
12282TMS320C55_mpym_mov, // Parallel Multiply - Store
12283TMS320C55_mpymr_mov, // Parallel Multiply - Store, and Round
12284TMS320C55_macm_mov, // Parallel Multiply and Accumulate - Store
12285TMS320C55_macmr_mov, // Parallel Multiply and Accumulate - Store, and Round
12286TMS320C55_masm_mov, // Parallel Multiply and Subtract - Store
12287TMS320C55_masmr_mov, // Parallel Multiply and Subtract - Store, and Round
12288TMS320C55_add_mov, // Parallel Add - Store
12289TMS320C55_sub_mov, // Parallel Subtract - Store
12290TMS320C55_mov_mov, // Parallel Load - Store
12291TMS320C55_mov_aadd, // Parallel Store - aadd
12292TMS320C55_mov_add, // Parallel Store - Add
12293TMS320C55_amar_amar, // Parallel Modify Auxiliary Register - Modify Auxiliary Register
12294TMS320C55_add_asub, // Parallel Add - asub
12295TMS320C55_btst_mov, // Parallel Bit Test - Store
12296TMS320C55_mov_asub, // Parallel Store - asub
12297
12298TMS320C55_lms, // Least Mean Square
12299
12300TMS320C55_max1, // Maximum Comparison
12301TMS320C55_max2, // Maximum Comparison
12302TMS320C55_min1, // Minimum Comparison
12303TMS320C55_min2, // Minimum Comparison
12304
12305TMS320C55_cmp, // Memory Comparison
12306TMS320C55_cmpu, // Unsigned memory Comparison
12307
12308TMS320C55_aadd, // Add Two Registers
12309TMS320C55_asub, // Subtract Two Registers
12310TMS320C55_amov, // Move From Register to Register
12311TMS320C55_amar1, // Auxiliary Register Modification
12312
12315TMS320C55_sqrr1, // Square and Round
12316TMS320C55_sqrr2, // Square and Round
12317TMS320C55_mpy1, // Multiply
12318TMS320C55_mpy2, // Multiply
12319TMS320C55_mpy3, // Multiply
12320TMS320C55_mpyr1, // Multiply and Round
12321TMS320C55_mpyr2, // Multiply and Round
12322TMS320C55_mpyr3, // Multiply and Round
12323TMS320C55_mpyk2, // Multiply by Constant
12324TMS320C55_mpyk3, // Multiply by Constant
12325TMS320C55_mpykr2, // Multiply by Constant and Round
12326TMS320C55_mpykr3, // Multiply by Constant and Round
12327TMS320C55_mpym2, // Multiply Memory Value
12328TMS320C55_mpym3, // Multiply Memory Values
12329TMS320C55_mpymr2, // Multiply Memory Value and Round
12330TMS320C55_mpymr3, // Multiply Memory Values and Round
12331TMS320C55_mpym403, // Multiply Memory Values on 40 bits
12332TMS320C55_mpymr403, // Multiply Memory Values and Round on 40 bits
12333TMS320C55_mpymu3, // Unsigned multiply Memory Values
12334TMS320C55_mpymru3, // Unsigned multiply Memory Values and Round
12335TMS320C55_sqrm, // Square Memory Value
12336TMS320C55_sqrmr, // Square Memory Value, and Round
12337TMS320C55_mpymk, // Multiply Memory Value by Constant
12338TMS320C55_mpymkr, // Multiply Memory Value by Constant and Round
12339
12340TMS320C55_sqa1, // Square and Accumulate
12341TMS320C55_sqa2, // Square and Accumulate
12342TMS320C55_sqar1, // Square, Accumulate and Round
12343TMS320C55_sqar2, // Square, Accumulate and Round
12344TMS320C55_mac3, // Multiply and Accumulate
12345TMS320C55_mac4, // Multiply and Accumulate
12346TMS320C55_macr3, // Multiply, Accumulate and Round
12347TMS320C55_macr4, // Multiply, Accumulate and Round
12348TMS320C55_mack3, // Multiply by Constant and Accumulate
12349TMS320C55_mack4, // Multiply by Constant and Accumulate
12350TMS320C55_mackr3, // Multiply by Constant, Round and Accumulate
12351TMS320C55_mackr4, // Multiply by Constant, Round and Accumulate
12352TMS320C55_macm2, // Multiply and Accumulate Memory Values
12353TMS320C55_macm3, // Multiply and Accumulate Memory Values
12354TMS320C55_macm4, // Multiply and Accumulate Memory Values
12355TMS320C55_macmr2, // Multiply and Accumulate Memory Values, and Round
12356TMS320C55_macmr3, // Multiply and Accumulate Memory Values, and Round
12357TMS320C55_macmr4, // Multiply and Accumulate Memory Values, and Round
12358TMS320C55_macm403, // Multiply and Accumulate Memory Values, on 40 bits
12359TMS320C55_macm404, // Multiply and Accumulate Memory Values, on 40 bits
12360TMS320C55_macmr403, // Multiply and Accumulate Memory Values, and Round on 40 bits
12361TMS320C55_macmr404, // Multiply and Accumulate Memory Values, and Round on 40 bits
12362TMS320C55_macmz, // Multiply and Accumulate Memory Values
12363TMS320C55_macmrz, // Multiply and Accumulate Memory Values, and Round
12364TMS320C55_sqam2, // Square and Accumulate Memory Value
12365TMS320C55_sqam3, // Square and Accumulate Memory Values
12366TMS320C55_sqamr2, // Square and Accumulate Memory Value, and Round
12367TMS320C55_sqamr3, // Square and Accumulate Memory Values, and Round
12368TMS320C55_macmk3, // Multiply Memory Value by Constant and Accumulate
12369TMS320C55_macmk4, // Multiply Memory Value by Constant and Accumulate
12370TMS320C55_macmkr3, // Multiply Memory Value by Constant - Accumulate, and Round
12371TMS320C55_macmkr4, // Multiply Memory Value by Constant - Accumulate, and Round
12372
12373TMS320C55_sqs1, // Square and Subtract
12374TMS320C55_sqs2, // Square and Subtract
12375TMS320C55_sqsr1, // Square, Subtract and Round
12376TMS320C55_sqsr2, // Square, Subtract and Round
12377
12378TMS320C55_mas2, // Multiply and Subtract
12379TMS320C55_mas3, // Multiply and Subtract
12380TMS320C55_masr2, // Multiply, Subtract and Round
12381TMS320C55_masr3, // Multiply, Subtract and Round
12382TMS320C55_masm2, // Multiply and Subtract Memory Value
12383TMS320C55_masm3, // Multiply and Subtract Memory Values
12384TMS320C55_masm4, // Multiply and Subtract Memory Values
12385TMS320C55_masmr2, // Multiply and Subtract Memory Values, and Round
12386TMS320C55_masmr3, // Multiply and Subtract Memory Values, and Round
12387TMS320C55_masmr4, // Multiply and Subtract Memory Values, and Round
12388TMS320C55_masm403, // Multiply and Subtract Memory Values, on 40 bits
12389TMS320C55_masm404, // Multiply and Subtract Memory Values, on 40 bits
12390TMS320C55_masmr403, // Multiply and Subtract Memory Values, and Round on 40 bits
12391TMS320C55_masmr404, // Multiply and Subtract Memory Values, and Round on 40 bits
12392TMS320C55_sqsm2, // Square and Subtract Memory Values
12393TMS320C55_sqsm3, // Square and Subtract Memory Values
12394TMS320C55_sqsmr2, // Square and Subtract Memory Values, and Round
12395TMS320C55_sqsmr3, // Square and Subtract Memory Values, and Round
12396
12397TMS320C55_neg1, // Negation
12398TMS320C55_neg2, // Negation
12399
12400TMS320C55_mant_nexp, // Exponent and Mantissa
12401TMS320C55_exp, // Exponent
12402
12403TMS320C55_cmpand, // Compare and AND
12404TMS320C55_cmpandu, // Unsigned compare and AND
12405TMS320C55_cmpor, // Compare and OR
12406TMS320C55_cmporu, // Unsigned compare and OR
12407
12410
12411TMS320C55_sat1, // Saturate
12412TMS320C55_sat2, // Saturate
12413TMS320C55_satr1, // Saturate and Round
12414TMS320C55_satr2, // Saturate and Round
12415
12416TMS320C55_sfts2, // Signed Shift
12417TMS320C55_sfts3, // Signed Shift
12418TMS320C55_sftsc2, // Signed Shift with Carry
12419TMS320C55_sftsc3, // Signed Shift with Carry
12420
12421TMS320C55_sqdst, // Square distance
12422
12423TMS320C55_sub1, // Subtract
12424TMS320C55_sub2, // Subtract
12425TMS320C55_sub3, // Subtract
12426TMS320C55_sub4, // Subtract
12427
12428TMS320C55_band, // Bit Field Comparison
12429
12430TMS320C55_bfxpa, // Bit Field Expand
12431
12432TMS320C55_bfxtr, // Bit Field Extract
12433
12434TMS320C55_btst, // Bit Test
12436TMS320C55_bclr2, // Bit Clear
12438TMS320C55_btstset, // Bit Test and Set
12439TMS320C55_btstclr, // Bit Test and Clear
12440TMS320C55_btstnot, // Bit Test and NOT
12441TMS320C55_btstp, // Bit Pair Test
12442TMS320C55_bclr1, // Bit Clear
12444
12445TMS320C55_amar2, // Load Effective Address to Extended Auxiliary Register
12446TMS320C55_popboth, // Pop Extended Auxiliary Register from Stack Pointers
12447TMS320C55_pshboth, // Push Extended Auxiliary Register to Stack Pointers
12448
12449// LOGICAL OPERATIONS
12450
12451TMS320C55_bcnt, // Count Bit Field
12452
12455
12459
12463
12467
12468TMS320C55_sftl2, // Logical Shift
12469TMS320C55_sftl3, // Logical Shift
12470
12471TMS320C55_rol, // Rotate Left
12472
12473TMS320C55_ror, // Rotate Right
12474
12475// MISCELLANEOUS OPERATIONS
12476
12477// MOVE OPERATIONS
12478
12479TMS320C55_swap, // Swap Registers
12480TMS320C55_swapp, // Swap Pair Registers
12481TMS320C55_swap4, // Swap 4 Registers
12482
12483TMS320C55_mov2, // Move Data
12484TMS320C55_mov3, // Move 2 Data
12485TMS320C55_mov402, // Move Data on 40 bits
12486
12487TMS320C55_delay, // Memory Delay
12488
12489TMS320C55_pop1, // Pop Top of Stack1
12490TMS320C55_pop2, // Pop Top of Stack2
12491
12492TMS320C55_psh1, // Pop Top of Stack3
12493TMS320C55_psh2, // Pop Top of Stack4
12494
12495// PROGRAM CONTROL OPERATIONS
12496
12497TMS320C55_bcc, // Branch Conditionally
12498TMS320C55_bccu, // Branch Conditionally
12499
12500TMS320C55_b, // Branch Unconditionally
12501
12502TMS320C55_callcc, // Call Conditionally
12503
12504TMS320C55_call, // Call Unconditionally
12505
12506TMS320C55_xcc, // Execute Conditionally
12507TMS320C55_xccpart, // Execute Conditionally
12508
12510
12511TMS320C55_nop, // No Operation
12512TMS320C55_nop_16, // No Operation
12513
12514TMS320C55_rptblocal, // Repeat Block of Instructions Unconditionally
12515TMS320C55_rptb, // Repeat Block of Instructions Unconditionally
12516
12517TMS320C55_rptcc, // Repeat Single Instruction Conditionally
12518
12519TMS320C55_rpt, // Repeat Single Instruction Unconditionally
12520TMS320C55_rptadd, // Repeat Single Instruction Unconditionally and Add to Register
12521TMS320C55_rptsub, // Repeat Single Instruction Unconditionally and Subtract to Register
12522
12523TMS320C55_retcc, // Return Conditionally
12524TMS320C55_ret, // Return Unconditionally
12525TMS320C55_reti, // Return from Interrupt
12526
12527TMS320C55_intr, // Software Interrupt
12528
12529TMS320C55_reset, // Software Reset
12530
12531TMS320C55_trap, // Software Trap
12532
12534
12535};
12536
12537/*
12538 * Interactive disassembler (IDA).
12539 * Copyright (c) 1990-2025 Hex-Rays
12540 * ALL RIGHTS RESERVED.
12541 *
12542 */
12543
12544
12545
12546enum
12547{
12549
12550TRIMEDIA_igtri, // signed compare greater with immediate
12551TRIMEDIA_igeqi, // signed compare greater or equal with immediate
12552TRIMEDIA_ilesi, // signed compare less with immediate
12553TRIMEDIA_ineqi, // signed compare not equal with immediate
12554TRIMEDIA_ieqli, // signed compare equal with immediate
12555TRIMEDIA_iaddi, // add with immediate
12556TRIMEDIA_ild16d, // signed 16-bit load with displacement
12557TRIMEDIA_ld32d, // 32-bit load with displacement
12558TRIMEDIA_uld8d, // unsigned 8-bit load with displacement
12559TRIMEDIA_lsri, // logical shift right immediate
12560TRIMEDIA_asri, // arithmetic shift right immediate
12561TRIMEDIA_asli, // arithmetic shift left immediate
12562TRIMEDIA_iadd, // signed add
12563TRIMEDIA_isub, // signed subtract
12564TRIMEDIA_igeq, // signed compare greater or equal
12565TRIMEDIA_igtr, // signed compare greater
12566TRIMEDIA_bitand, // bitwise logical AND
12567TRIMEDIA_bitor, // bitwise logical OR
12568TRIMEDIA_asr, // arithmetic shift right
12569TRIMEDIA_asl, // arithmetic shift left
12570TRIMEDIA_ifloat, // convert signed integer to floating-point
12571TRIMEDIA_ifixrz, // convert floating-point to integer with round toward zero
12572TRIMEDIA_fadd, // floating-point add
12573TRIMEDIA_imin, // signed minimum
12574TRIMEDIA_imax, // signed maximum
12575TRIMEDIA_iavgonep, // signed average
12576TRIMEDIA_ume8uu, // sum of absolute values of unsigned 8-bit differences
12577TRIMEDIA_imul, // signed multiply
12578TRIMEDIA_fmul, // floating-point multiply
12579TRIMEDIA_h_st8d, // hardware 8-bit store with displacement
12580TRIMEDIA_h_st16d, // hardware 16-bit store with displacement
12581TRIMEDIA_h_st32d, // hardware 32-bit store with displacement
12582TRIMEDIA_isubi, // subtract with immediate
12583TRIMEDIA_ugtr, // unsigned compare greater
12584TRIMEDIA_ugtri, // unsigned compare greater with immediate
12585TRIMEDIA_ugeq, // unsigned compare greater or equal
12586TRIMEDIA_ugeqi, // unsigned compare greater or equal with immediate
12587TRIMEDIA_ieql, // signed compare equal
12588TRIMEDIA_ueqli, // unsigned compare equal with immediate
12589TRIMEDIA_ineq, // signed compare not equal
12590TRIMEDIA_uneqi, // unsigned compare not equal
12591TRIMEDIA_ulesi, // unsigned compare less with immediate
12592TRIMEDIA_ileqi, // signed compare less or equal with immediate
12593TRIMEDIA_uleqi, // unsigned compare less or equal with immediate
12594TRIMEDIA_h_iabs, // hardware absolute value
12595TRIMEDIA_carry, // compute carry bit from unsigned add
12596TRIMEDIA_izero, // if zero select zero
12597TRIMEDIA_inonzero, // if nonzero select zero
12598TRIMEDIA_bitxor, // bitwise logical exclusive OR
12599TRIMEDIA_bitandinv, // bitwise logical AND NOT
12600TRIMEDIA_bitinv, // bitwise logical NOT
12601TRIMEDIA_sex16, // sign extend 16 bits
12602TRIMEDIA_packbytes, // pack least-significant bytes
12603TRIMEDIA_pack16lsb, // pack least-significant 16-bit halfwords
12604TRIMEDIA_pack16msb, // pack most-significant 16-bit halfwords
12605TRIMEDIA_ubytesel, // select unsigned byte
12606TRIMEDIA_ibytesel, // signed select byte
12607TRIMEDIA_mergelsb, // merge least-significant byte
12608TRIMEDIA_mergemsb, // merge most-significant byte
12609TRIMEDIA_ume8ii, // unsigned sum of absolute values of signed 8-bit differences
12610TRIMEDIA_h_dspiabs, // clipped signed absolute value
12611TRIMEDIA_dspiadd, // clipped signed add
12612TRIMEDIA_dspuadd, // clipped unsigned add
12613TRIMEDIA_dspisub, // clipped signed subtract
12614TRIMEDIA_dspusub, // clipped unsigned subtract
12615TRIMEDIA_dspidualadd, // dual clipped add of signed 16-bit halfwords
12616TRIMEDIA_dspidualsub, // dual clipped subtract of signed 16-bit halfwords
12617TRIMEDIA_h_dspidualabs, // dual clipped absolute value of signed 16-bit halfwords
12618TRIMEDIA_quadavg, // unsigned byte-wise quad average
12619TRIMEDIA_iclipi, // clip signed to signed
12620TRIMEDIA_uclipi, // clip signed to unsigned
12621TRIMEDIA_uclipu, // clip unsigned to unsigned
12622TRIMEDIA_iflip, // if non-zero negate
12623TRIMEDIA_dspuquadaddui, // quad clipped add of unsigned/signed bytes
12624TRIMEDIA_quadumin, // unsigned byte-wise quad minimum
12625TRIMEDIA_quadumax, // unsigned byte-wise quad maximum
12626TRIMEDIA_dualiclipi, // dual-16 clip signed to signed
12627TRIMEDIA_dualuclipi, // dual-16 clip signed to unsigned
12628TRIMEDIA_quadumulmsb, // unsigned quad 8-bit multiply most significant
12629TRIMEDIA_ufir8uu, // unsigned sum of products of unsigned bytes
12630TRIMEDIA_ifir8ui, // signed sum of products of unsigned/signed bytes
12631TRIMEDIA_ifir8ii, // signed sum of products of signed bytes
12632TRIMEDIA_ifir16, // sum of products of signed 16-bit halfwords
12633TRIMEDIA_ufir16, // sum of products of unsigned 16-bit halfwords
12634TRIMEDIA_dspidualmul, // dual clipped multiply of signed 16-bit halfwords
12635TRIMEDIA_lsr, // logical shift right
12636TRIMEDIA_rol, // rotate left
12637TRIMEDIA_roli, // rotate left by immediate
12638TRIMEDIA_funshift1, // funnel-shift 1 byte
12639TRIMEDIA_funshift2, // funnel-shift 2 bytes
12640TRIMEDIA_funshift3, // funnel-shift 3 bytes
12641TRIMEDIA_dualasr, // dual-16 arithmetic shift right
12642TRIMEDIA_mergedual16lsb,// merge dual 16-bit lsb bytes
12643TRIMEDIA_fdiv, // floating-point divide
12644TRIMEDIA_fdivflags, // IEEE status flags from floating-point divide
12645TRIMEDIA_fsqrt, // floating-point square root
12646TRIMEDIA_fsqrtflags, // IEEE status flags from floating-point square root
12647TRIMEDIA_faddflags, // IEEE status flags from floating-point add
12648TRIMEDIA_fsub, // floating-point subtract
12649TRIMEDIA_fsubflags, // IEEE status flags from floating-point subtract
12650TRIMEDIA_fabsval, // floating-point absolute value
12651TRIMEDIA_fabsvalflags, // IEEE status flags from floating-point absolute value
12652TRIMEDIA_ifloatrz, // convert signed integer to floating-point with rounding toward zero
12653TRIMEDIA_ifloatrzflags, // IEEE status flags from convert signed integer to floating-point with rounding toward zero
12654TRIMEDIA_ufloatrz, // convert unsigned integer to floating-point with round toward zero
12655TRIMEDIA_ufloatrzflags, // IEEE status flags from convert unsigned integer to floating-point with round toward zero
12656TRIMEDIA_ifixieee, // convert floating-point to integer using PCSW rounding mode
12657TRIMEDIA_ifixieeeflags, // IEEE status flags from convert floating-point to integer using PCSW rounding mode
12658TRIMEDIA_ufixieee, // convert floating-point to unsigned integer using PCSW rounding mode
12659TRIMEDIA_ufixieeeflags, // IEEE status flags from convert floating-point to unsigned integer using PCSW rounding mode
12660TRIMEDIA_ufixrz, // convert floating-point to unsigned integer with round toward zero
12661TRIMEDIA_ufixrzflags, // IEEE status flags from convert floating-point to unsigned integer with round toward zero
12662TRIMEDIA_ufloat, // convert unsigned integer to floating-point
12663TRIMEDIA_ufloatflags, // IEEE status flags from convert unsigned integer to floating-point
12664TRIMEDIA_ifixrzflags, // IEEE status flags from convert floating-point to integer with round toward zero
12665TRIMEDIA_ifloatflags, // IEEE status flags from convert signed integer to floating-point
12666TRIMEDIA_umul, // unsigned multiply
12667TRIMEDIA_imulm, // signed multiply, return most-significant 32 bits
12668TRIMEDIA_umulm, // unsigned multiply, return most-significant 32 bits
12669TRIMEDIA_dspimul, // clipped signed multiply
12670TRIMEDIA_dspumul, // clipped unsigned multiply
12671TRIMEDIA_fmulflags, // IEEE status flags from floating-point multiply
12672TRIMEDIA_fgtr, // floating-point compare greater
12673TRIMEDIA_fgtrflags, // IEEE status flags from floating-point compare greater
12674TRIMEDIA_fgeq, // floating-point compare greater or equal
12675TRIMEDIA_fgeqflags, // IEEE status flags from floating-point compare greater or equal
12676TRIMEDIA_feql, // floating-point compare equal
12677TRIMEDIA_feqlflags, // IEEE status flags from floating-point compare equal
12678TRIMEDIA_fneq, // floating-point compare not equal
12679TRIMEDIA_fneqflags, // IEEE status flags from floating-point compare not equal
12680TRIMEDIA_fsign, // sign of floating-point value
12681TRIMEDIA_fsignflags, // IEEE status flags from floating-point sign
12682TRIMEDIA_cycles, // read clock cycle counter, least-significant word
12683TRIMEDIA_hicycles, // read clock cycle counter, most-significant word
12684TRIMEDIA_readdpc, // read destination program counter
12685TRIMEDIA_readspc, // read source program counter
12686TRIMEDIA_readpcsw, // read program control and status word
12687TRIMEDIA_writespc, // write source program counter
12688TRIMEDIA_writedpc, // write destination program counter
12689TRIMEDIA_writepcsw, // write program control and status word
12690TRIMEDIA_curcycles, // read current clock cycle, least-significant word
12691TRIMEDIA_jmpt, // indirect jump on true
12692TRIMEDIA_ijmpt, // interruptible indirect jump on true
12693TRIMEDIA_jmpi, // jump immediate
12694TRIMEDIA_ijmpi, // interruptible jump immediate
12695TRIMEDIA_jmpf, // indirect jump on false
12696TRIMEDIA_ijmpf, // interruptible indirect jump on false
12697TRIMEDIA_iclr, // invalidate all instruction cache blocks
12698TRIMEDIA_uimm, // unsigned immediate
12699TRIMEDIA_ild8d, // signed 8-bit load with displacement
12700TRIMEDIA_ild8r, // signed 8-bit load with index
12701TRIMEDIA_uld8r, // unsigned 8-bit load with index
12702TRIMEDIA_ild16r, // signed 16-bit load with index
12703TRIMEDIA_ild16x, // signed 16-bit load with scaled index
12704TRIMEDIA_uld16d, // unsigned 16-bit load with displacement
12705TRIMEDIA_uld16r, // unsigned 16-bit load with index
12706TRIMEDIA_uld16x, // unsigned 16-bit load with scaled index
12707TRIMEDIA_ld32r, // 32-bit load with index
12708TRIMEDIA_ld32x, // 32-bit load with scaled index
12709TRIMEDIA_rdtag, // read data cache address tag
12710TRIMEDIA_rdstatus, // read data cache status bits
12711TRIMEDIA_dcb, // data cache copy back
12712TRIMEDIA_dinvalid, // invalidate data cache block
12713TRIMEDIA_prefd, // prefetch with displacement
12714TRIMEDIA_prefr, // prefetch with index
12715TRIMEDIA_pref16x, // prefetch with 16-bit scaled index
12716TRIMEDIA_pref32x, // prefetch with 32-bit scaled index
12717TRIMEDIA_allocd, // allocate a cache block with displacement
12718TRIMEDIA_allocr, // allocate a cache block with index
12719TRIMEDIA_allocx, // allocate a cache block with scaled index
12721
12722// Pseudo-operations
12723
12724TRIMEDIA_alloc, // allocate a cache block
12725TRIMEDIA_dspiabs, // clipped signed absolute value
12726TRIMEDIA_dspidualabs, // dual clipped absolute value of signed 16-bit halfwords
12727TRIMEDIA_iabs, // absolute value
12728TRIMEDIA_ild16, // signed 16-bit load
12729TRIMEDIA_ild8, // signed 8-bit load
12730TRIMEDIA_ineg, // signed negate
12731TRIMEDIA_ld32, // 32-bit load
12732TRIMEDIA_pref, // prefetch
12733TRIMEDIA_sex8, // sign extend 8 bits
12734TRIMEDIA_st16, // 16-bit store
12735TRIMEDIA_st16d, // 16-bit store with displacement
12736TRIMEDIA_st32, // 32-bit store
12737TRIMEDIA_st32d, // 32-bit store with displacement
12738TRIMEDIA_st8, // 8-bit store
12739TRIMEDIA_st8d, // 8-bit store with displacement
12740TRIMEDIA_uld16, // unsigned 16-bit load
12741TRIMEDIA_uld8, // unsigned 8-bit load
12742TRIMEDIA_zex16, // zero extend 16 bits
12743TRIMEDIA_zex8, // zero extend 8 bits
12744TRIMEDIA_ident, // identity
12745
12746// Unused pseudo-operations:
12747
12762
12764
12765 };
12766
12767/*
12768 * NEC 78K0 processor module for IDA.
12769 * Copyright (c) 2006 Konstantin Norvatoff, <konnor@bk.ru>
12770 * Freeware.
12771 */
12772
12773
12774
12775enum
12776{
12777NEC_78K_0_null = 0, // Unknown Operation
12778
12779NEC_78K_0_mov, // Move Byte Data Transfer
12780NEC_78K_0_xch, // Exchange Byte Data
12781NEC_78K_0_movw, // Move Word Data Transfer / Word Data Transfer with Stack Pointer
12782NEC_78K_0_xchw, // Exchange Word Data
12783
12784NEC_78K_0_add, // Add Byte Data Addition
12785NEC_78K_0_addc, // Add with Carry Addition of Byte Data with Carry
12786NEC_78K_0_sub, // Subtract Byte Data Subtraction
12787NEC_78K_0_subc, // Subtract with Carry Subtraction of Byte Data with Carry
12788NEC_78K_0_and, // And Logical Product of Byte Data
12789NEC_78K_0_or, // Or Logical Sum of Byte Data
12790NEC_78K_0_xor, // Exclusive Or Exclusive Logical Sum of Byte Data
12791NEC_78K_0_cmp, // Compare Byte Data Comparison
12792
12793NEC_78K_0_addw, // Add Word Data Addition
12794NEC_78K_0_subw, // Subtract Word Data Subtraction
12795NEC_78K_0_cmpw, // Compare Word Data Comparison
12796
12797NEC_78K_0_mulu, // Multiply Unsigned Multiplication of Data
12798NEC_78K_0_divuw, // Divide Unsigned Word Unsigned Division of Word Data
12799
12800NEC_78K_0_inc, // Increment Byte Data Increment
12801NEC_78K_0_dec, // Decrement Byte Data Decrement
12802NEC_78K_0_incw, // Increment Word Data Increment
12803NEC_78K_0_decw, // Decrement Word Data Decrement
12804
12805NEC_78K_0_ror, // Rotate Right Byte Data Rotation to the Right
12806NEC_78K_0_rol, // Rotate Left Byte Data Rotation to the Left
12807NEC_78K_0_rorc, // Rotate Right with Carry Byte Data Rotation to the Right with Carry
12808NEC_78K_0_rolc, // Rotate Left with Carry Byte Data Rotation to the Left with Carry
12809NEC_78K_0_ror4, // Rotate Right Digit Digit Rotation to the Right
12810NEC_78K_0_rol4, // Rotate Left Digit Digit Rotation to the Left
12811
12812NEC_78K_0_adjba, // Decimal Adjust Register for Addition Decimal Adjustment of Addition Result
12813NEC_78K_0_adjbs, // Decimal Adjust Register for Subtraction Decimal Adjustment of Subtraction Result
12814
12815NEC_78K_0_mov1, // Move Single Bit 1 Bit Data Transfer
12816NEC_78K_0_and1, // And Single Bit 1 Bit Data Logical Product
12817NEC_78K_0_or1, // Or Single Bit 1 Bit Data Logical Sum
12818NEC_78K_0_xor1, // Exclusive Or Single Bit 1 Bit Data Exclusive Logical Sum
12819NEC_78K_0_set1, // Set Single Bit (Carry Flag) 1 Bit Data Set
12820NEC_78K_0_clr1, // Clear Single Bit (Carry Flag) 1 Bit Data Clear
12821NEC_78K_0_not1, // Not Single Bit (Carry Flag) 1 Bit Data Logical Negation
12822
12823NEC_78K_0_call, // Call Subroutine Call (16 Bit Direct)
12824NEC_78K_0_callf, // Call Flag Subroutine Call (11 Bit Direct Specification)
12825NEC_78K_0_callt, // Call Table Subroutine Call (Refer to the Call Table)
12826NEC_78K_0_brk, // Break Software Vectored Interrupt
12827NEC_78K_0_ret, // Return Return from Subroutine
12828NEC_78K_0_retb, // Return from Interrupt Return from Hardware Vectored Interrupt
12829NEC_78K_0_reti, // Return from Break Return from Software Vectored Interrupt
12830
12833
12834NEC_78K_0_br, // Branch Unconditional Branch
12835NEC_78K_0_bc, // Branch if Carry Conditional Branch with Carry Flag (CY = 1)
12836NEC_78K_0_bnc, // Branch if Not Carry Conditional Branch with Carry Flag (CY = 0)
12837NEC_78K_0_bz, // Branch if Zero Conditional Branch with Zero Flag (Z = 1)
12838NEC_78K_0_bnz, // Branch if Not Zero Conditional Branch with Zero Flag (Z = 0)
12839NEC_78K_0_bt, // Branch if True Conditional Branch by Bit Test (Byte Data Bit = 1)
12840NEC_78K_0_bf, // Branch if False Conditional Branch by Bit Test (Byte Data Bit = 0)
12841NEC_78K_0_btclr, // Branch if True and Clear Conditional Branch and Clear by Bit Test (Byte Data Bit = 1)
12842NEC_78K_0_dbnz, // Decrement and Branch if Not Zero Conditional Loop (R1!= 0)
12843
12844NEC_78K_0_sel, // Select Register Bank Register Bank Selection
12845
12846
12847NEC_78K_0_nop, // No Operation
12848NEC_78K_0_EI, // Enable Interrupt
12849NEC_78K_0_DI, // Disable Interrupt
12850NEC_78K_0_HALT, // HALT Mode Set
12851NEC_78K_0_STOP, // Stop Mode Set
12852
12853
12855
12856 };
12857
12858/*
12859 * Interactive disassembler (IDA).
12860 * Copyright (c) 1990-2025 Hex-Rays
12861 * ALL RIGHTS RESERVED.
12862 *
12863 */
12864
12865
12866
12867enum
12868{
12869 NEC_78K_0S_null = 0, // Unknown Operation
12870 NEC_78K_0S_cmp, // Compare Byte Data Comparison
12871 NEC_78K_0S_xor, // Exclusive Or Exclusive Logical Sum of Byte Data
12872 NEC_78K_0S_and, // AND Logical Product of Byte Data
12873 NEC_78K_0S_or, // OR Logical Sum of Byte Data
12874 NEC_78K_0S_add, // ADD Byte Data Addition
12875 NEC_78K_0S_sub, // Subtract Byte Data Subtraction
12876 NEC_78K_0S_addc, // Add with Carry Addition of Byte Data with Carry
12877 NEC_78K_0S_subc, // Subtract with Carry Subtraction of Byte Data with Carry
12878 NEC_78K_0S_subw, // Subtract Word Data Subtraction
12879 NEC_78K_0S_addw, // Add Word Data Addition
12880 NEC_78K_0S_cmpw, // Compare Word Data Comparison
12881 NEC_78K_0S_inc, // Increment Byte Data Increment
12882 NEC_78K_0S_dec, // Decrement Byte Data Decrement
12883 NEC_78K_0S_incw, // Increment Word Data Increment
12884 NEC_78K_0S_decw, // Decrement Word Data Decrement
12885 NEC_78K_0S_ror, // Rotate Right Byte Data Rotation to the Right
12886 NEC_78K_0S_rol, // Rotate Left Byte Data Rotation to the Left
12887 NEC_78K_0S_rorc, // Rotate Right with Carry Byte Data Rotation to the Right with Carry
12888 NEC_78K_0S_rolc, // Rotate Left with Carry Byte Data Rotation to the Left with Carry
12889 NEC_78K_0S_call, // CALL Subroutine Call (16 Bit Direct)
12890 NEC_78K_0S_callt, // Call Table Subroutine Call (Call Table Reference)
12891 NEC_78K_0S_ret, // Return from Subroutine
12892 NEC_78K_0S_reti, // Return from Interrupt / Return from Hardware Vectored Interrupt
12893 NEC_78K_0S_mov, // Move Byte Data Transfer
12894 NEC_78K_0S_xch, // Exchange Byte Data Exchange
12895 NEC_78K_0S_xchw, // Exchange Word Data Exchange
12896 NEC_78K_0S_set1, // Set Single Bit (Carry Flag) 1 Bit Data Set
12897 NEC_78K_0S_clr1, // Clear Single Bit (Carry Flag) 1 Bit Data Clear
12898 NEC_78K_0S_not1, // Not Single Bit (Carry Flag) 1 Bit Data Logical Negation
12901 NEC_78K_0S_movw, // Move Word Data Transfer / Word Data Transfer with Stack Pointer
12902 NEC_78K_0S_br, // Unconditional Branch
12903 NEC_78K_0S_bc, // Branch if Carry Conditional Branch with Carry Flag (CY = 1)
12904 NEC_78K_0S_bnc, // Branch if Not Carry Conditional Branch with Carry Flag (CY = 0)
12905 NEC_78K_0S_bz, // Branch if Zero Conditional Branch with Zero Flag (Z = 1)
12906 NEC_78K_0S_bnz, // Branch if Not Zero Conditional Branch with Zero Flag (Z = 0)
12907 NEC_78K_0S_bt, // Branch if True Conditional Branch by Bit Test (Byte Data Bit = 1)
12908 NEC_78K_0S_bf, // Branch if False Conditional Branch by Bit Test (Byte Data Bit = 0)
12909 NEC_78K_0S_dbnz, // Decrement and Branch if Not Zero Conditional Loop (R1 != 0)
12910 NEC_78K_0S_nop, // No Operation
12911 NEC_78K_0S_EI, // Enable Interrupt
12912 NEC_78K_0S_DI, // Disable Interrupt
12913 NEC_78K_0S_HALT, // HALT Mode Set
12914 NEC_78K_0S_STOP, // Stop Mode Set
12916};
12917
12918
12919
12920
12921// The instruction types (``itype''s)
12922// M16C/60, M16C/20, M16C/Tiny and M16C/80 CPUs implements.
12923
12925{
12926 M16C_null=0, // Unknown Operation
12927 M16C_abs, // Absolute value
12928 M16C_adc, // Add with carry
12929 M16C_adcf, // Add carry flag
12930 M16C_add, // Add without carry
12931 M16C_adjnz, // Add & conditional jump
12932 M16C_and, // Logically AND
12933 M16C_band, // Logically AND bits
12934 M16C_bclr, // Clear bit
12935 M16C_bmcnd, // Conditional bit transfer
12936 // conds (order is important; don't shuffle) (same order as the enum am_cnd8_t in m16c.hpp)
12937 M16C_bmgeu, // Conditional bit transfer: Equal to or greater than; C == 1
12938 M16C_bmgtu, // Conditional bit transfer: Greater than
12939 M16C_bmeq, // Conditional bit transfer: Equal to; Z == 1
12940 M16C_bmn, // Conditional bit transfer: Negative
12941 M16C_bmle, // Conditional bit transfer: Equal to or smaller than (signed)
12942 M16C_bmo, // Conditional bit transfer: Overflow; O == 1
12943 M16C_bmge, // Conditional bit transfer: Equal to or greater than (signed)
12944 M16C_bmltu, // Conditional bit transfer: Smaller than; C == 0
12945 M16C_bmleu, // Conditional bit transfer: Equal to or smaller than
12946 M16C_bmne, // Conditional bit transfer: Not equal; Z == 0
12947 M16C_bmpz, // Conditional bit transfer: Positive or zero
12948 M16C_bmgt, // Conditional bit transfer: Greater than (signed)
12949 M16C_bmno, // Conditional bit transfer: No overflow; O == 0
12950 M16C_bmlt, // Conditional bit transfer: Smaller than (signed)
12951 // ---
12952 M16C_bnand, // Logically AND inverted bits
12953 M16C_bnor, // Logically OR inverted bits
12954 M16C_bnot, // Invert bit
12955 M16C_bntst, // Test inverted bit
12956 M16C_bnxor, // Exclusive OR inverted bits
12957 M16C_bor, // Logically OR bits
12958 M16C_brk, // Debug interrupt
12959 M16C_bset, // Set bit
12960 M16C_btst, // Test bit
12961 M16C_btstc, // Test bit & clear
12962 M16C_btsts, // Test bit & set
12963 M16C_bxor, // Exclusive OR bits
12964 M16C_cmp, // Compare
12965 M16C_dadc, // Decimal add with carry
12966 M16C_dadd, // Decimal add without carry
12967 M16C_dec, // Decrement
12968 M16C_div, // Signed divide
12969 M16C_divu, // Unsigned divide
12970 M16C_divx, // Signed divide (extension)
12971 M16C_dsbb, // Decimal subtract with borrow
12972 M16C_dsub, // Decimal subtract without borrow
12973 M16C_enter, // Build stack frame
12974 M16C_exitd, // Deallocate stack frame
12975 M16C_exts, // Extend sign
12976 M16C_fclr, // Clear flag register bit
12977 M16C_fset, // Set flag register bit
12978 M16C_inc, // Increment
12979 M16C_int, // Interrupt by INT instruction
12980 M16C_into, // Interrupt on overflow
12981 M16C_jcnd, // Jump on condition
12982 // conds (order is important; don't shuffle) (same order as the enum am_cnd8_t in m16c.hpp)
12983 M16C_jgeu, // Conditional jump: Equal to or greater than; C == 1
12984 M16C_jgtu, // Conditional jump: Greater than
12985 M16C_jeq, // Conditional jump: Equal to; Z == 1
12986 M16C_jn, // Conditional jump: Negative
12987 M16C_jle, // Conditional jump: Equal to or smaller than (signed)
12988 M16C_jo, // Conditional jump: Overflow; O == 1
12989 M16C_jge, // Conditional jump: Equal to or greater than (signed)
12990 M16C_jltu, // Conditional jump: Smaller than; C == 0
12991 M16C_jleu, // Conditional jump: Equal to or smaller than
12992 M16C_jne, // Conditional jump: Not equal; Z == 0
12993 M16C_jpz, // Conditional jump: Positive or zero
12994 M16C_jgt, // Conditional jump: Greater than (signed)
12995 M16C_jno, // Conditional jump: No overflow; O == 0
12996 M16C_jlt, // Conditional jump: Smaller than (signed)
12997 // ---
12998 M16C_jmp, // Unconditional jump
12999 M16C_jmpi, // Jump indirect
13000 M16C_jmps, // Jump to special page
13001 M16C_jsr, // Subroutine call
13002 M16C_jsri, // Indirect subroutine call
13003 M16C_jsrs, // Special page subroutine call
13004 M16C_ldc, // Transfer to control register
13005 M16C_ldctx, // Restore context
13006 M16C_lde, // Transfer from extended data area
13007 M16C_ldintb, // Load to INTB register
13008 M16C_ldipl, // Set interrupt enable level
13009 M16C_mov, // Transfer
13010 M16C_mova, // Transfer effective address
13011 M16C_movhh, // Xfer 4-bit data: src(8-bits)'s 4 hi bits -> dest(8-bits)'s 4 hi bits.
13012 M16C_movhl, // Xfer 4-bit data: src(8-bits)'s 4 hi bits -> dest(8-bits)'s 4 lo bits.
13013 M16C_movlh, // Xfer 4-bit data: src(8-bits)'s 4 lo bits -> dest(8-bits)'s 4 hi bits.
13014 M16C_movll, // Xfer 4-bit data: src(8-bits)'s 4 lo bits -> dest(8-bits)'s 4 lo bits.
13015 M16C_mul, // Signed multiply
13016 M16C_mulu, // Unsigned multiply
13017 M16C_neg, // Two's complement
13018 M16C_nop, // No operation
13019 M16C_not, // Invert all bits
13020 M16C_or, // Logically OR
13021 M16C_pop, // Restore register/memory
13022 M16C_popc, // Restore control register
13023 M16C_popm, // Restore multiple registers
13024 M16C_push, // Save register/memory/immediate data
13025 M16C_pusha, // Save effective address
13026 M16C_pushc, // Save control register
13027 M16C_pushm, // Save multiple registers
13028 M16C_reit, // Return from interrupt
13029 M16C_rmpa, // Calculate sum-of-products
13030 M16C_rolc, // Rotate left with carry
13031 M16C_rorc, // Rotate right with carry
13032 M16C_rot, // Rotate
13033 M16C_rts, // Return from subroutine
13034 M16C_sbb, // Subtract with borrow
13035 M16C_sbjnz, // Subtract & conditional jump
13036 M16C_sha, // Shift arithmetic
13037 M16C_shl, // Shift logical
13038 M16C_smovb, // Transfer string backward
13039 M16C_smovf, // Transfer string forward
13040 M16C_sstr, // Store string
13041 M16C_stc, // Transfer from control register
13042 M16C_stctx, // Save context
13043 M16C_ste, // Store to extended data area
13044 M16C_stnz, // Conditional transfer: store on not zero
13045 M16C_stz, // Conditional transfer: store on zero
13046 M16C_stzx, // Conditional transfer: store on zero extension
13047 M16C_sub, // Subtract without borrow
13048 M16C_tst, // Test
13049 M16C_und, // Interrupt for undefined instruction
13050 M16C_wait, // Wait
13051 M16C_xchg, // Exchange
13052 M16C_xor, // Exclusive OR
13053
13054 // M16C/80 specifics
13057 M16C_brk2, // Debugger-only interrupt
13061 M16C_freit, // Fast return from interrupt
13076 // conds (order is important; don't shuffle) (same order as the enum am_cnd8_t in m16c.hpp)
13077 M16C_scgeu, // Conditional store: Equal to or greater than; C == 1
13078 M16C_scgtu, // Conditional store: Greater than
13079 M16C_sceq, // Conditional store: Equal to; Z == 1
13080 M16C_scn, // Conditional store: Negative
13081 M16C_scle, // Conditional store: Equal to or smaller than (signed)
13082 M16C_sco, // Conditional store: Overflow; O == 1
13083 M16C_scge, // Conditional store: Equal to or greater than (signed)
13084 M16C_scltu, // Conditional store: Smaller than; C == 0
13085 M16C_scleu, // Conditional store: Equal to or smaller than
13086 M16C_scne, // Conditional store: Not equal; Z == 0
13087 M16C_scpz, // Conditional store: Positive or zero
13088 M16C_scgt, // Conditional store: Greater than (signed)
13089 M16C_scno, // Conditional store: No overflow; O == 0
13090 M16C_sclt, // Conditional store: Smaller than (signed)
13091 // ---
13097
13098 // M32C specifics
13099 M16C_shanc, // Shift arithmetic no carry
13100 M16C_shlnc, // Shift logical no carry
13101
13102 // R32C specifics
13123
13125};
13126
13127
13128
13129
13130
13131
13132
13133// exporting the ins.cpp array
13134
13135// m32r instructions declaration
13136enum
13137{
13138 m32r_null = 0, // Null instruction
13139 m32r_add, // Add
13140 m32r_add3, // Add 3-operand
13141 m32r_addi, // Add immediate
13142 m32r_addv, // Add with overflow checking
13143 m32r_addv3, // Add 3-operand with overflow checking
13144 m32r_addx, // Add with carry
13145 m32r_and, // AND
13146 m32r_and3, // AND 3-operand
13147 m32r_bc, // Branch on C-bit
13148 m32r_beq, // Branch on equal
13149 m32r_beqz, // Branch on equal zero
13150 m32r_bgez, // Branch on greater than or equal zero
13151 m32r_bgtz, // Branch on greater than zero
13152 m32r_bl, // Branch and link
13153 m32r_blez, // Branch on less than or equal zero
13154 m32r_bltz, // Branch on less than zero
13155 m32r_bnc, // Branch on not C-bit
13156 m32r_bne, // Branch on not equal
13157 m32r_bnez, // Branch on not equal zero
13158 m32r_bra, // Branch
13159 m32r_cmp, // Compare
13160 m32r_cmpi, // Compare immediate
13161 m32r_cmpu, // Compare unsigned
13162 m32r_cmpui, // Compare unsigned immediate
13163 m32r_div, // Divide
13164 m32r_divu, // Divide unsigned
13165 m32r_jl, // Jump and link
13166 m32r_jmp, // Jump
13167 m32r_ld, // Load
13168 m32r_ld24, // Load 24-bit immediate
13169 m32r_ldb, // Load byte
13170 m32r_ldh, // Load halfword
13171 m32r_ldi, // Load immediate
13172 m32r_ldub, // Load unsigned byte
13173 m32r_lduh, // Load unsigned halfword
13174 m32r_lock, // Load locked
13175 m32r_machi, // Multiply-accumulate high-order halfwords
13176 m32r_maclo, // Multiply-accumulate low-order halfwords
13177 m32r_macwhi, // Multiply-accumulate word and high-order halfword
13178 m32r_macwlo, // Multiply-accumulate word and low-order halfword
13179 m32r_mul, // Multiply
13180 m32r_mulhi, // Multiply high-order halfwords
13181 m32r_mullo, // Multiply low-order halfwords
13182 m32r_mulwhi, // Multiply word high-order halfwords
13183 m32r_mulwlo, // Multiply word low-order halfwords
13184 m32r_mv, // Move register
13185 m32r_mvfachi, // Move from accumulator high-order word
13186 m32r_mvfaclo, // Move from accumulator low-order word
13187 m32r_mvfacmi, // Move from accumulator middle-order word
13188 m32r_mvfc, // Move from control register
13189 m32r_mvtachi, // Move to accumulator high-order word
13190 m32r_mvtaclo, // Move to accumulator low-order word
13191 m32r_mvtc, // Move to control register
13192 m32r_neg, // Negate
13193 m32r_nop, // No operation
13194 m32r_not, // Logical NOT
13195 m32r_or, // OR
13196 m32r_or3, // OR 3-operand
13197 m32r_push, // Push, mnem for st reg, @-sp
13198 m32r_pop, // Pop, mnem for ld reg, @sp+
13199 m32r_rac, // Round accumulator
13200 m32r_rach, // Round accumulator halfword
13201 m32r_rem, // Remainder
13202 m32r_remu, // Remainder unsigned
13203 m32r_rte, // Return from EIT
13204 m32r_seth, // Set high-order 16-bit
13205 m32r_sll, // Shift left logical
13206 m32r_sll3, // Shift left logical 3-operand
13207 m32r_slli, // Shift left logical immediate
13208 m32r_sra, // Shirt right arithmetic
13209 m32r_sra3, // Shirt right arithmetic 3-operand
13210 m32r_srai, // Shirt right arithmetic immediate
13211 m32r_srl, // Shift right logical
13212 m32r_srl3, // Shift right logical 3-operand
13213 m32r_srli, // Shift right logical immediate
13214 m32r_st, // Store
13215 m32r_stb, // Store byte
13216 m32r_sth, // Store halfword
13217 m32r_sub, // Substract
13218 m32r_subv, // Substract with overflow checking
13219 m32r_subx, // Substract with borrow
13220 m32r_trap, // Trap
13221 m32r_unlock, // Store unlocked
13222 m32r_xor, // Exclusive OR
13223 m32r_xor3, // Exclusive OR 3-operand
13224
13225 // M32RX :
13226
13234 m32rx_machi, // 'machi' 3-operand
13235 m32rx_maclo, // 'maclo' 3-operand
13236 m32rx_macwhi, // 'macwhi' 3-operand
13237 m32rx_macwlo, // 'macwlo' 3-operand
13238 m32rx_mulhi, // 'mulhi' 3-operand
13239 m32rx_mullo, // 'mullo' 3-operand
13240 m32rx_mulwhi, // 'mulwhi' 3-operand
13241 m32rx_mulwlo, // 'mulwlo' 3-operand
13242 m32rx_mvfachi, // 'mvfachi' 3-operand
13243 m32rx_mvfaclo, // 'mvfaclo' 3-operand
13244 m32rx_mvfacmi, // 'mvfacmi' 3-operand
13245 m32rx_mvtachi, // 'mvtachi' 3-operand
13246 m32rx_mvtaclo, // 'mvtaclo' 3-operand
13247 m32rx_rac, // 'rac' 3 operand
13248 m32rx_rach, // 'rach' 3 operand
13260
13261// Floating point
13262 m32r_fadd, // Floating-point add
13263 m32r_fsub, // Floating-point subtract
13264 m32r_fmul, // Floating-point multiply
13265 m32r_fdiv, // Floating-point divede
13266 m32r_fmadd, // Floating-point multiply and add
13267 m32r_fmsub, // Floating-point multiply and subtract
13268 m32r_itof, // Integer to float
13269 m32r_utof, // Unsigned integer to float
13270 m32r_ftoi, // Float to integer
13271 m32r_ftos, // Float to short
13272 m32r_fcmp, // Floating-point compare
13273 m32r_fcmpe, // Floating-point compare with exeption if unordered
13274// Bit Operation Instructions
13275 m32r_bset, // Bit set
13276 m32r_bclr, // Bit clear
13277 m32r_btst, // Bit test
13278 m32r_setpsw, // Set PSW
13279 m32r_clrpsw, // Clear PSW
13280
13282};
13283
13284
13285
13286
13287
13288enum
13289{
13290 m740_null = 0, // null instruction
13291 m740_adc, // add with carry
13292 m740_and, // logical and
13293 m740_asl, // arithmetic shift left
13294 m740_bbc, // branch on bit clear
13295 m740_bbs, // branch on bit set
13296 m740_bcc, // branch on carry clear
13297 m740_bcs, // branch on carry set
13298 m740_beq, // branch on equal
13299 m740_bit, // test bit in memory with accumulator
13300 m740_bmi, // branch on result minus
13301 m740_bne, // branch on not equal
13302 m740_bpl, // branch on result plus
13303 m740_bra, // branch always
13304 m740_brk, // force break
13305 m740_bvc, // branch on overflow clear
13306 m740_bvs, // branch on overflow set
13307 m740_clb, // clear bit
13308 m740_clc, // clear carry flag
13309 m740_cld, // clear decimal mode
13310 m740_cli, // clear interrupt disable status
13311 m740_clt, // clear transfer flag
13312 m740_clv, // clear overflow flag
13313 m740_cmp, // compare
13314 m740_com, // complement
13315 m740_cpx, // compare memory and index register X
13316 m740_cpy, // compare memory and index register Y
13317 m740_dec, // decrement by one
13318 m740_dex, // decrement index register X by one
13319 m740_dey, // decrement index register Y by one
13320 m740_div, // divide memory by accumulator
13321 m740_eor, // exclusive or memory with accumulator
13322 m740_inc, // increment by one
13323 m740_inx, // increment index register X by one
13324 m740_iny, // increment index register Y by one
13325 m740_jmp, // jump
13326 m740_jsr, // jump to subroutine
13327 m740_lda, // load accumulator with memory
13328 m740_ldm, // load immediate data to memory
13329 m740_ldx, // load index register X from memory
13330 m740_ldy, // load index register Y from memory
13331 m740_lsr, // logical shift right
13332 m740_mul, // multiply accumulator and memory
13333 m740_nop, // no operation
13334 m740_ora, // or memory with accumulator
13335 m740_pha, // push accumulator on stack
13336 m740_php, // push processor status on stack
13337 m740_pla, // pull accumulator from stack
13338 m740_plp, // pull processor status from stack
13339 m740_rol, // rotate one bit left
13340 m740_ror, // rotate one bit right
13341 m740_rrf, // rotate right of four bits
13342 m740_rti, // return from interrupt
13343 m740_rts, // return from subroutine
13344 m740_sbc, // subtract with carry
13345 m740_seb, // set bit
13346 m740_sec, // set carry flag
13347 m740_sed, // set decimal mode
13348 m740_sei, // set interrupt disable flag
13349 m740_set, // set transfert flag
13350 m740_sta, // store accumulator in memory
13351 m740_stp, // stop
13352 m740_stx, // store index register X in memory
13353 m740_sty, // store index register Y in memory
13354 m740_tax, // transfert accumulator to index register X
13355 m740_tay, // transfert accumulator to index register Y
13356 m740_tst, // test for negative or zero
13357 m740_tsx, // transfert stack pointer to index register X
13358 m740_txa, // transfert index register X to accumulator
13359 m740_txs, // transfert index register X to stack pointer
13360 m740_tya, // transfert index register Y to accumulator
13361 m740_wit, // wait
13362
13364};
13365
13366
13367
13368
13369
13370enum
13371{
13372 // 7700 :
13373
13374 m7700_null = 0, // null instruction
13375 m7700_adc, // addition with carry
13376 m7700_and, // logical AND
13377 m7700_asl, // arithmetic shift left
13378 m7700_bbc, // branch on bit clear
13379 m7700_bbs, // branch on bit set
13380 m7700_bcc, // branch on carry clear
13381 m7700_bcs, // branch on carry set
13382 m7700_beq, // branch on equal
13383 m7700_bmi, // branch on result minus
13384 m7700_bne, // branch on not equal
13385 m7700_bpl, // branch on result plus
13386 m7700_bra, // branch always
13387 m7700_brk, // force break
13388 m7700_bvc, // branch on overflow clear
13389 m7700_bvs, // branch on overflow set
13390 m7700_clb, // clear bit
13391 m7700_clc, // clear carry flag
13392 m7700_cli, // clear interrupt disable status
13393 m7700_clm, // clear m flag
13394 m7700_clp, // clear processor status
13395 m7700_clv, // clear overflow flag
13396 m7700_cmp, // compare
13397 m7700_cpx, // compare memory and index register X
13398 m7700_cpy, // compare memory and index register Y
13399 m7700_dec, // decrement by one
13400 m7700_dex, // decrement index register X by one
13401 m7700_dey, // decrement index register Y by one
13402 m7700_div, // divide
13403 m7700_eor, // exclusive OR memory with accumulator
13404 m7700_inc, // increment by one
13405 m7700_inx, // increment index register X by one
13406 m7700_iny, // increment index register Y by one
13407 m7700_jmp, // jump
13408 m7700_jsr, // jump to subroutine
13409 m7700_lda, // load accumulator from memory
13410 m7700_ldm, // load immediate to memory
13411 m7700_ldt, // load immediate to data bank register
13412 m7700_ldx, // load index register X from memory
13413 m7700_ldy, // load index register Y from memory
13414 m7700_lsr, // logical shift right
13415 m7700_mpy, // multiply
13416 m7700_mvn, // move negative
13417 m7700_mvp, // move positive
13418 m7700_nop, // no operation
13419 m7700_ora, // OR memory with accumulator
13420 m7700_pea, // push effective address
13421 m7700_pei, // push effective indirect address
13422 m7700_per, // push effective program counter relative address
13423 m7700_pha, // push accumulator A on stack
13424 m7700_phb, // push accumulator B on stack
13425 m7700_phd, // push direct page register on stack
13426 m7700_phg, // push program bank register on stack
13427 m7700_php, // push processor status on stack
13428 m7700_pht, // push data bank register on stack
13429 m7700_phx, // push index register X on stack
13430 m7700_phy, // push index register Y on stack
13431 m7700_pla, // pull accumulator A from stack
13432 m7700_plb, // pull accumulator B from stack
13433 m7700_pld, // pull direct page register from stack
13434 m7700_plp, // pull processor status from stack
13435 m7700_plt, // pull data bank register from stack
13436 m7700_plx, // pull index register X from stack
13437 m7700_ply, // pull index register Y from stack
13438 m7700_psh, // push
13439 m7700_pul, // pull
13440 m7700_rla, // rotate left accumulator A
13441 m7700_rol, // rotate one bit left
13442 m7700_ror, // rotate one bit right
13443 m7700_rti, // return from interrupt
13444 m7700_rtl, // return from subroutine long
13445 m7700_rts, // return from subroutine
13446 m7700_sbc, // subtract with carry
13447 m7700_seb, // set bit
13448 m7700_sec, // set carry flag
13449 m7700_sei, // set interrupt disable status
13450 m7700_sem, // set m flag
13451 m7700_sep, // set processor status
13452 m7700_sta, // store accumulator in memory
13453 m7700_stp, // stop
13454 m7700_stx, // store index register X in memory
13455 m7700_sty, // store index register Y in memory
13456 m7700_tad, // transfer accumulator A to direct page register
13457 m7700_tas, // transfer accumulator A to stack pointer
13458 m7700_tax, // transfer accumulator A to index register X
13459 m7700_tay, // transfer accumulator A to index register Y
13460 m7700_tbd, // transfer accumulator B to direct page register
13461 m7700_tbs, // transfer accumulator B to stack pointer
13462 m7700_tbx, // transfer accumulator B to index register X
13463 m7700_tby, // transfer accumulator B to index register Y
13464 m7700_tda, // transfer direct page register to accumulator A
13465 m7700_tdb, // transfer direct page register to accumulator B
13466 m7700_tsa, // transfer stack pointer to accumulator A
13467 m7700_tsb, // transfer stack pointer to accumulator B
13468 m7700_tsx, // transfer stack pointer to index register X
13469 m7700_txa, // transfer index register X to accumulator A
13470 m7700_txb, // transfer index register X to accumulator B
13471 m7700_txs, // transfer index register X to stack pointer
13472 m7700_txy, // transfer index register X to Y
13473 m7700_tya, // transfer index register Y to accumulator A
13474 m7700_tyb, // transfer index register Y to accumulator B
13475 m7700_tyx, // transfer index register Y to X
13476 m7700_wit, // wait
13477 m7700_xab, // exchange accumulator A and B
13478
13479 // 7750 :
13480
13481 m7750_asr, // arithmetic shift right
13482 m7750_divs, // divide with sign
13483 m7750_exts, // extention with sign
13484 m7750_extz, // extention zero
13485 m7750_mpys, // multiply with sign
13486
13488};
13489
13490
13491/*
13492 * Interactive disassembler (IDA).
13493 * Copyright (c) 1990-2025 Hex-Rays
13494 * ALL RIGHTS RESERVED.
13495 *
13496 * MITSUBISHI 7900 Family
13497 */
13498
13499
13500
13501enum
13502{
13503m7900_null = 0, // Unknown Operation
13504
13505
13506m7900_abs, // ABSolute
13507m7900_absd, // ABSolute at Double-word
13508
13509m7900_adc, // ADd with Carry
13510m7900_adcb, // ADd with Carry at Byte
13511m7900_adcd, // ADd with Carry at Double-word
13512
13513m7900_add, // Addition
13514
13515m7900_addb, // ADD at Byte
13516m7900_addd, // ADD at Double-word
13517m7900_addm, // ADD immediate and Memory
13518m7900_addmb, // ADD immediate and Memory at Byte
13519m7900_addmd, // ADD immediate and Memory at Double-word
13520m7900_adds, // ADD Stack pointer and immediate
13521m7900_addx, // ADD index register X and immediate
13522m7900_addy, // ADD index register Y and immediate
13523
13524m7900_and, // Logical AND
13525m7900_andb, // logical AND between immediate (Byte)
13526
13527m7900_andm, // logical AND between immediate value and Memory
13528m7900_andmb, // logical AND between immediate value and Memory (Byte)
13529m7900_andmd, // logical AND between immediate value and Memory (Double word)
13530
13531m7900_asl, // Arithmetic Shift to Left
13532m7900_asln, // Arithmetic Shift to Left by n bits
13533m7900_asldn, // Arithmetic Shift to Left by n bits (Double word)
13534
13535
13536m7900_asr, // Arithmeticshift to the right
13537m7900_asrn, // Arithmetic Shift to Right by n bits
13538m7900_asrdn, // Arithmetic Shift to Right by n bits (Double word)
13539
13540m7900_bbc, // Branch on Bit Clear
13541m7900_bbcb, // Branch on Bit Clear (Byte)
13542m7900_bbs, // Branch on Bit Set
13543m7900_bbsb, // Branch on Bit Set (Byte)
13544
13545m7900_bcc, // Branch on Carry Clear
13546m7900_bcs, // Branch on Carry Set
13547m7900_beq, // Branch on EQual
13548m7900_bge, // Branch on Greater or Equal
13549m7900_bgt, // Branch on Greater Than
13550m7900_bgtu, // Branch on Greater Than with Unsign
13551m7900_ble, // Branch on Less or Equal
13552m7900_bleu, // Branch on Less Equal with Unsign
13553m7900_blt, // Branch on Less Than
13554m7900_bmi, // Branch on result MInus
13555m7900_bne, // Branch on Not Equal
13556m7900_bpl, // Branch on result PLus
13557m7900_bra, // BRanch Always
13558m7900_bral, // BRanch Always
13559
13560m7900_brk, // force BReaK
13561
13562m7900_bsc, // Branch on Single bit Clear
13563m7900_bsr, // Branch to SubRoutine
13564m7900_bss, // Branch on Single bit Set
13565
13566m7900_bvc, // Branch on oVerflow Clear
13567m7900_bvs, // Branch on oVerflow Set
13568
13569m7900_cbeq, // Compare immediate and Branch on EQual
13570m7900_cbeqb, // Compare immediate and Branch on EQual at Byte
13571m7900_cbne, // Compare immediate and Branch on Not Equal
13572m7900_cbneb, // Compare immediate and Branch on Not Equal at Byte
13573
13574m7900_clc, // CLear Carry flag
13575m7900_cli, // CLear Interrupt disable status
13576m7900_clm, // CLear M flag
13577m7900_clp, // CLear Processor status
13578
13579m7900_clr, // CLeaR accumulator
13580m7900_clrb, // CLeaR accumulator at Byte
13581m7900_clrm, // CLeaR Memory
13582m7900_clrmb, // CLeaR Memory at Byte
13583m7900_clrx, // CLeaR index register X
13584m7900_clry, // CLeaR index register Y
13585
13586m7900_clv, // CLear oVerflow flag
13587
13588m7900_cmp, // CoMPare
13589m7900_cmpb, // CoMPare at Byte
13590m7900_cmpd, // CoMPare at Double-word
13591m7900_cmpm, // CoMPare immediate with Memory
13592m7900_cmpmb, // CoMPare immediate with Memory at Byte
13593m7900_cmpmd, // CoMPare immediate with Memory at Double-word
13594
13595m7900_cpx, // ComPare memory and index register X
13596m7900_cpy, // ComPare memory and index register Y
13597
13598m7900_debne, // DEcrement memory and Branch on Not Equal
13599
13600m7900_dec, // DECrement by one
13601m7900_dex, // DEcrement index register X by one
13602m7900_dey, // DEcrement index register Y by one
13603
13604m7900_div, // DIVide unsigned
13605m7900_divs, // DIVide with Sign
13606m7900_dxbne, // Decrement index register X and Branch on Not Equal
13607m7900_dybne, // Decrement index register Y and Branch on Not Equal
13608
13609m7900_eor, // Exclusive OR memory with accumulator
13610m7900_eorb, // Exclusive OR immediate with accumulator at Byte
13611m7900_eorm, // Exclusive OR immediate with Memory
13612m7900_eormb, // Exclusive OR immediate with Memory at Byte
13613m7900_eormd, // Exclusive OR immediate with Memory at Double-word
13614
13615m7900_exts, // EXTension Sign
13616m7900_extsd, // EXTension Sign at Double-word
13617m7900_extz, // EXTension Zero
13618m7900_extzd, // EXTension Zero at Double-word
13619
13620m7900_inc, // INCrement by one
13621m7900_inx, // INcrement index register X by one
13622m7900_iny, // INcrement index register y by one
13623
13626
13627m7900_jsr, // Jump to SubRoutine
13628m7900_jsrl, // Jump to SubRoutine
13629
13630
13631m7900_lda, // LoaD Accumulator from memory
13632m7900_ldab, // LoaD Accumulator from memory at Byte
13633m7900_ldad, // LoaD Accumulator from memory at Double-word
13634m7900_lddn, // LoaD immediate to Direct page register n
13635
13636m7900_ldt, // LoaD immediate to DaTa bank register
13637m7900_ldx, // LoaD index register X from memory
13638m7900_ldxb, // LoaD index register X from memory at Byte
13639m7900_ldy, // LoaD index register Y from memory
13640m7900_ldyb, // LoaD index register Y from memory at Byte
13641
13642m7900_lsr, // Logical Shift Right
13643m7900_lsrn, // Logical n bits Shift Right
13644m7900_lsrdn, // Logical n bits Shift Right at Double-word
13645
13646m7900_movm, // MOVe Memory to memory
13647m7900_movmb, // MOVe Memory to memory at Byte
13648m7900_movr, // MOVe Repeat memory to memory
13649m7900_movrb, // MOVe Repeat memory to memory at Byte
13650
13651m7900_mpy, // MultiPlY
13652m7900_mpys, // MultiPlY with Sign
13653
13654m7900_mvn, // MoVe Negative
13655m7900_mvp, // MoVe Positive
13656
13657m7900_neg, // NEGative
13658m7900_negd, // NEGative at Double-word
13659
13660m7900_nop, // No OPeration
13661
13662m7900_ora, // OR memory with Accumulator
13663m7900_orab, // OR immediate with Accumulator at Byte
13664m7900_oram, // OR immediAte with Memory
13665m7900_oramb, // OR immediAte with Memory at Byte
13666m7900_oramd, // OR immediAte with Memory at Double-word
13667
13668m7900_pea, // Push Effective Address
13669m7900_pei, // Push Effective Indirect address
13670m7900_per, // Push Effective program counter Relative address
13671m7900_pha, // PusH accumulator A on stack
13672m7900_phb, // PusH accumulator B on stack
13673m7900_phd, // PusH Direct page register on stack
13674m7900_phdn, // PusH Direct page register n on stack
13675m7900_phg, // PusH proGram bank register on stack
13676
13677m7900_phldn, // PusH dpr n to stack and Load immediate to Dpr n
13678
13679m7900_php, // PusH Processor status on stack
13680m7900_pht, // PusH daTa bank register on stack
13681m7900_phx, // PusH index register X on stack
13682m7900_phy, // PusH index register Y on stack
13683
13684m7900_pla, // PuLl accumulator A from stack
13685m7900_plb, // PuLl accumulator B from stack
13686m7900_pld, // PuLl Direct page register from stack
13687m7900_pldn, // PuLl Direct page register n from stack
13688m7900_plp, // PuLl Processor status from stack
13689m7900_plt, // PuLl daTa bank register from stack
13690m7900_plx, // PuLl index register X from stack
13691m7900_ply, // PuLl index register Y from stack
13692
13695
13696m7900_rla, // Rotate Left accumulator A
13697m7900_rmpa, // Repeat Multiply and Accumulate
13698
13699m7900_rol, // ROtate one bit Left
13700m7900_roln, // n bits ROtate Left
13701
13702m7900_roldn, // n bits ROtate Left at Double-word
13703
13704m7900_ror, // ROtate one bit Right
13705m7900_rorn, // n bits ROtate Right
13706m7900_rordn, // n bits ROtate Right at Double-word
13707
13708m7900_rti, // Return from Interrupt
13709m7900_rtl, // ReTurn from subroutine Long
13710m7900_rtld, // ReTurn from subroutine Long and pull Direct page register n
13711m7900_rts, // ReTurn from Subroutine
13712m7900_rtsdn, // ReTurn from Subroutine and pull Direct page register n
13713
13714
13715m7900_sbc, // SuBtract with Carry
13716m7900_sbcb, // SuBtract with Carry at Byte
13717m7900_sbcd, // SuBtract with Carry at Double-word
13718
13719
13720m7900_sec, // SEt Carry flag
13721m7900_sei, // SEt Interrupt disable status
13722m7900_sem, // SEt M flag
13723m7900_sep, // SEt Processor status
13724
13725
13726m7900_sta, // STore Accumulator in memory
13727m7900_stab, // STore Accumulator in memory at Byte
13728m7900_stad, // STore Accumulator in memory at Double-word
13729
13730
13732m7900_stx, // STore index register X in memory
13733m7900_sty, // STore index register Y in memory
13734
13735m7900_sub, // SUBtract
13736m7900_subb, // SUBtract at Byte
13737m7900_subd, // SUBtract at Double-word
13738m7900_subm, // SUBtract immediate from Memory
13739m7900_submb, // SUBtract immediate from Memory at Byte
13740m7900_submd, // SUBtract immediate from Memory at Double-word
13741m7900_subs, // SUBtract Stack pointer
13742m7900_subx, // SUBtract immediate from index register X
13743m7900_suby, // SUBtract immediate from index register Y
13744
13745
13746
13747m7900_tadn, // Transfer accumulator A to Direct page register n
13748
13749
13750m7900_tas, // Transfer accumulator A to Stack pointer
13751m7900_tax, // Transfer accumulator A to index register X
13752m7900_tay, // Transfer accumulator A to index register Y
13753
13754m7900_tbdn, // Transfer accumulator B to Direct page register n
13755
13756m7900_tbs, // Transfer accumulator B to Stack pointer
13757m7900_tbx, // Transfer accumulator B to index register X
13758m7900_tby, // Transfer accumulator B to index register Y
13759
13760m7900_tdan, // Transfer Direct page register n to accumulator A
13761m7900_tdbn, // Transfer Direct page register n to accumulator B
13762
13763m7900_tds, // Transfer Direct page register to Stack pointer
13764
13765
13766m7900_tsa, // Transfer Stack pointer to accumulator A
13767m7900_tsb, // Transfer Stack pointer to accumulator B
13768m7900_tsd, // Transfer Stack pointer to Direct page register
13769m7900_tsx, // Transfer Stack pointer to index register X
13770m7900_txa, // Transfer index register X to accumulator A
13771m7900_txb, // Transfer index register X to accumulator B
13772m7900_txs, // Transfer index register X to Stack pointer
13773m7900_txy, // Transfer index register X to Y
13774m7900_tya, // Transfer index register Y to accumulator A
13775m7900_tyb, // Transfer index register Y to accumulator B
13776m7900_tyx, // Transfer index register Y to X
13777
13779
13780m7900_xab, // eXchange accumulator A and B
13781
13783
13784 };
13785
13786
13787
13788
13789enum
13790{
13791 st9_null = 0, // Unknown Operation.
13792 st9_ld, // Load.
13793 st9_ldw, // Load word.
13794 st9_ldpp, // Load (using CSR) => (using CSR).
13795 st9_ldpd, // Load (using DPRx) => (using CSR).
13796 st9_lddp, // Load (using CSR) => (using DPRx).
13797 st9_lddd, // Load (using DPRx) => (using DPRx).
13798 st9_add, // Add.
13799 st9_addw, // Add Word.
13800 st9_adc, // Add with Carry.
13801 st9_adcw, // Add Word with Carry.
13802 st9_sub, // Substract.
13803 st9_subw, // Substract Word.
13804 st9_sbc, // Substract with Carry.
13805 st9_sbcw, // Substract Word with Carry.
13806 st9_and, // Logical AND.
13807 st9_andw, // Logical Word AND.
13808 st9_or, // Logical OR.
13809 st9_orw, // Logical Word OR.
13810 st9_xor, // Logical Exclusive OR.
13811 st9_xorw, // Logical Word Exclusive OR.
13812 st9_cp, // Compare.
13813 st9_cpw, // Compare Word.
13814 st9_tm, // Test under Mask.
13815 st9_tmw, // Test Word under Mask.
13816 st9_tcm, // Test Complement under Mask.
13817 st9_tcmw, // Test Word Complement under Mask.
13818 st9_inc, // Increment.
13819 st9_incw, // Increment Word.
13820 st9_dec, // Decrement.
13821 st9_decw, // Decrement Word.
13822 st9_sla, // Shift Left Arithmetic.
13823 st9_slaw, // Shift Word Left Arithmetic.
13824 st9_sra, // Shift Right Arithmetic.
13825 st9_sraw, // Shift Word Right Arithmetic.
13826 st9_rrc, // Rotate Right through Carry.
13827 st9_rrcw, // Rotate Word Right through Carry.
13828 st9_rlc, // Rotate Left through Carry.
13829 st9_rlcw, // Rotate Word Left through Carry.
13830 st9_ror, // Rotate Right.
13831 st9_rol, // Rotate Left.
13832 st9_clr, // Clear Register.
13833 st9_cpl, // Complement Register.
13834 st9_swap, // Swap Nibbles.
13835 st9_da, // Decimal ajust.
13836 st9_push, // Push on System Stack.
13837 st9_pushw, // Push Word on System Stack.
13838 st9_pea, // Push Effective Address on System Stack.
13839 st9_pop, // Pop from System Stack.
13840 st9_popw, // Pop Word from System Stack.
13841 st9_pushu, // Push on User Stack.
13842 st9_pushuw, // Push Word on User Stack.
13843 st9_peau, // Push Effective Address on User Stack.
13844 st9_popu, // Pop from User Stack.
13845 st9_popuw, // Pop Word from User Stack.
13846 st9_link, // Move System Stack Pointer upward; support for high-level language.
13847 st9_unlink, // Move System Stack Pointer backward; support for high-level language.
13848 st9_linku, // Move User Stack Pointer upward; support for high-level language.
13849 st9_unlinku, // Move User Stack Pointer backward; support for high-level language.
13850 st9_mul, // Multiply 8x8.
13851 st9_div, // Divide 8x8.
13852 st9_divws, // Divide Word Stepped 32/16.
13853 st9_bset, // Bit Set.
13854 st9_bres, // Bit Reset .
13855 st9_bcpl, // Bit Complement.
13856 st9_btset, // Bit Test and Set.
13857 st9_bld, // Bit Load.
13858 st9_band, // Bit AND.
13859 st9_bor, // Bit OR.
13860 st9_bxor, // Bit XOR.
13861 st9_ret, // Return from Subroutine.
13862 st9_rets, // Inter-segment Return to Subroutine.
13863 st9_iret, // Return from Interrupt.
13864 st9_jrcc, // Jump Relative if Condition ``cc'' is Met.
13865 st9_jpcc, // Jump if Condition ``cc'' is Met.
13866 st9_jp, // Unconditional Jump.
13867 st9_jps, // Unconditional Inter-segment Jump.
13868 st9_call, // Unconditional Call.
13869 st9_calls, // Inter-segment Call to Subroutine.
13870 st9_btjf, // Bit Test and Jump if False.
13871 st9_btjt, // Bit Test and Jump if True.
13872 st9_djnz, // Decrement a Working Register and Jump if Non Zero.
13873 st9_dwjnz, // Decrement a Register Pair and Jump if Non Zero.
13874 st9_cpjfi, // Compare and Jump on False. Otherwise Post Increment.
13875 st9_cpjti, // Compare and Jump on True. Otherwise Post Increment.
13876 st9_xch, // Exchange Registers.
13877 st9_srp, // Set Register Pointer Long (16 working registers).
13878 st9_srp0, // Set Register Pointer 0 (8 LSB working registers).
13879 st9_srp1, // Set Register Pointer 1 (8 MSB working registers).
13880 st9_spp, // Set Page Pointer.
13881 st9_ext, // Sign Extend.
13882 st9_ei, // Enable Interrupts.
13883 st9_di, // Disable Interrupts.
13884 st9_scf, // Set Carry Flag.
13885 st9_rcf, // Reset Carry Flag.
13886 st9_ccf, // Complement Carry Flag.
13887 st9_spm, // Select Extended Memory addressing scheme through CSR Register.
13888 st9_sdm, // Select Extended Memory addressing scheme through DPR Registers.
13889 st9_nop, // No Operation.
13890 st9_wfi, // Stop Program Execution and Wait for the next Enable Interrupt.
13891 st9_halt, // Stop Program Execution until System Reset.
13892 st9_etrap, // Undocumented instruction.
13893 st9_eret, // Undocumented instruction.
13894 st9_ald, // PSEUDO INSTRUCTION. SHOULD NEVER BE USED.
13895 st9_aldw, // PSEUDO INSTRUCTION. SHOULD NEVER BE USED.
13897};
13898
13899
13900
13901
13902
13903enum
13904{
13905 fr_null = 0, // null instruction
13906
13907 fr_add, // add word data of source register / 4-bit immediate data to destination register
13908 fr_add2, // add 4-bit immediate data to destination register
13909 fr_addc, // add word data of source register and carry bit to destination register
13910 fr_addn, // add word data of source register / immediate data to destination register
13911 fr_addn2, // add immediate data to destination register
13912 fr_sub, // subtract word data in source register from destination register
13913 fr_subc, // subtract word data in source register and carry bit from destination register
13914 fr_subn, // subtract word data in source register from destination register
13915 fr_cmp, // compare word / immediate data in source register and destination register
13916 fr_cmp2, // compare immediate data and destination register
13917 fr_and, // and word data of source register to destination register / data in memory
13918 fr_andh, // and half-word data of source register to data in memory
13919 fr_andb, // and byte data of source register to data in memory
13920 fr_or, // or word data of source register to destination register / data in memory
13921 fr_orh, // or half-word data of source register to data in memory
13922 fr_orb, // or byte data of source register to data in memory
13923 fr_eor, // exclusive or word data of source register to destination register / data in memory
13924 fr_eorh, // exclusive or half-word data of source register to data in memory
13925 fr_eorb, // exclusive or byte data of source register to data in memory
13926 fr_bandl, // and 4-bit immediate data to lower 4 bits of byte data in memory
13927 fr_bandh, // and 4-bit immediate data to higher 4 bits of byte data in memory
13928 fr_borl, // or 4-bit immediate data to lower 4 bits of byte data in memory
13929 fr_borh, // or 4-bit immediate data to higher 4 bits of byte data in memory
13930 fr_beorl, // eor 4-bit immediate data to lower 4 bits of byte data in memory
13931 fr_beorh, // eor 4-bit immediate data to higher 4 bits of byte data in memory
13932 fr_btstl, // test lower 4 bits of byte data in memory
13933 fr_btsth, // test higher 4 bits of byte data in memory
13934 fr_mul, // multiply word data
13935 fr_mulu, // multiply unsigned word data
13936 fr_mulh, // multiply half-word data
13937 fr_muluh, // multiply unsigned half-word data
13938 fr_div0s, // initial setting up for signed division
13939 fr_div0u, // initial setting up for unsigned division
13940 fr_div1, // main process of division
13941 fr_div2, // correction when remainder is 0
13942 fr_div3, // correction when remainder is 0
13943 fr_div4s, // correction answer for signed division
13944 fr_lsl, // logical shift to the left direction
13945 fr_lsl2, // logical shift to the left direction
13946 fr_lsr, // logical shift to the right direction
13947 fr_lsr2, // logical shift to the right direction
13948 fr_asr, // arithmetic shift to the right direction
13949 fr_asr2, // arithmetic shift to the right direction
13950 fr_ldi_32, // load immediate 32-bit data to destination register
13951 fr_ldi_20, // load immediate 20-bit data to destination register
13952 fr_ldi_8, // load immediate 8-bit data to destination register
13953 fr_ld, // load word data in memory to register / program status register
13954 fr_lduh, // load half-word data in memory to register
13955 fr_ldub, // load byte data in memory to register
13956 fr_st, // store word data in register / program status register to memory
13957 fr_sth, // store half-word data in register to memory
13958 fr_stb, // store byte data in register to memory
13959 fr_mov, // move word data in source register / program status register to destination register / program status register
13960 fr_jmp, // jump
13961 fr_call, // call subroutine
13962 fr_ret, // return from subroutine
13963 fr_int, // software interrupt
13964 fr_inte, // software interrupt for emulator
13965 fr_reti, // return from interrupt
13966 fr_bra, // branch relative if condition satisfied
13967 fr_bno, // branch relative if condition satisfied
13968 fr_beq, // branch relative if condition satisfied
13969 fr_bne, // branch relative if condition satisfied
13970 fr_bc, // branch relative if condition satisfied
13971 fr_bnc, // branch relative if condition satisfied
13972 fr_bn, // branch relative if condition satisfied
13973 fr_bp, // branch relative if condition satisfied
13974 fr_bv, // branch relative if condition satisfied
13975 fr_bnv, // branch relative if condition satisfied
13976 fr_blt, // branch relative if condition satisfied
13977 fr_bge, // branch relative if condition satisfied
13978 fr_ble, // branch relative if condition satisfied
13979 fr_bgt, // branch relative if condition satisfied
13980 fr_bls, // branch relative if condition satisfied
13981 fr_bhi, // branch relative if condition satisfied
13982 fr_dmov, // move word data from register / address to register / address
13983 fr_dmovh, // move half-word data from register / address to register / address
13984 fr_dmovb, // move byte data from register / address to register / address
13985 fr_ldres, // load word data in memory to resource
13986 fr_stres, // store word data in resource to memory
13987 fr_copop, // coprocessor operation
13988 fr_copld, // load 32-bit data from register to coprocessor register
13989 fr_copst, // store 32-bit data from coprocessor register to register
13990 fr_copsv, // save 32-bit data from coprocessor register to register
13991 fr_nop, // no operation
13992 fr_andccr, // and condition code register and immediate data
13993 fr_orccr, // or condition code register and immediate data
13994 fr_stilm, // set immediate data to interrupt level mask register
13995 fr_addsp, // add stack pointer and immediate data
13996 fr_extsb, // sign extend from byte data to word data
13997 fr_extub, // unsign extend from byte data to word data
13998 fr_extsh, // sign extend from byte data to word data
13999 fr_extuh, // unsigned extend from byte data to word data
14000 fr_ldm0, // load multiple registers
14001 fr_ldm1, // load multiple registers
14002 fr_stm0, // store multiple registers
14003 fr_stm1, // store multiple registers
14004 fr_enter, // enter function
14005 fr_leave, // leave function
14006 fr_xchb, // exchange byte data
14007 fr_last // last instruction
14008};
14009
14010/*
14011 * Interactive disassembler (IDA).
14012 * Copyright (c) 1990-2025 Hex-Rays
14013 * ALL RIGHTS RESERVED.
14014 *
14015 */
14016
14017
14018
14019enum
14020{
14021ALPHA_null = 0, // Unknown Operation
14022
14023ALPHA_addf, // Add F_floating
14024ALPHA_addg, // Add G_floating
14025ALPHA_addl, // Add longword
14026ALPHA_addl_v, // Add longword with overflow
14027ALPHA_addq, // Add quadword
14028ALPHA_addq_v, // Add quadword with overflow
14029ALPHA_adds, // Add S_floating
14030ALPHA_addt, // Add T_floating
14031ALPHA_amask, // Architecture mask
14032ALPHA_and, // Logical product
14033ALPHA_beq, // Branch if = zero
14034ALPHA_bge, // Branch if >= zero
14035ALPHA_bgt, // Branch if > zero
14036ALPHA_bic, // Bit clear
14037ALPHA_bis, // Logical sum
14038ALPHA_blbc, // Branch if low bit clear
14039ALPHA_blbs, // Branch if low bit set
14040ALPHA_ble, // Branch if <= zero
14041ALPHA_blt, // Branch if < zero
14042ALPHA_bne, // Branch if != zero
14043ALPHA_br, // Unconditional branch
14044ALPHA_bsr, // Branch to subroutine
14045ALPHA_call_pal, // Trap to PALcode
14046ALPHA_cmoveq, // CMOVE if = zero
14047ALPHA_cmovge, // CMOVE if >= zero
14048ALPHA_cmovgt, // CMOVE if > zero
14049ALPHA_cmovlbc, // CMOVE if low bit clear
14050ALPHA_cmovlbs, // CMOVE if low bit set
14051ALPHA_cmovle, // CMOVE if <= zero
14052ALPHA_cmovlt, // CMOVE if < zero
14053ALPHA_cmovne, // CMOVE if != zero
14054ALPHA_cmpbge, // Compare byte
14055ALPHA_cmpeq, // Compare signed quadword equal
14056ALPHA_cmpgeq, // Compare G_floating equal
14057ALPHA_cmpgle, // Compare G_floating less than or equal
14058ALPHA_cmpglt, // Compare G_floating less than
14059ALPHA_cmple, // Compare signed quadword less than or equal
14060ALPHA_cmplt, // Compare signed quadword less than
14061ALPHA_cmpteq, // Compare T_floating equal
14062ALPHA_cmptle, // Compare T_floating less than or equal
14063ALPHA_cmptlt, // Compare T_floating less than
14064ALPHA_cmptun, // Compare T_floating unordered
14065ALPHA_cmpule, // Compare unsigned quadword less than or equal
14066ALPHA_cmpult, // Compare unsigned quadword less than
14067ALPHA_cpys, // Copy sign
14068ALPHA_cpyse, // Copy sign and exponent
14069ALPHA_cpysn, // Copy sign negate
14070ALPHA_ctlz, // Count leading zero
14071ALPHA_ctpop, // Count population
14072ALPHA_cttz, // Count trailing zero
14073ALPHA_cvtdg, // Convert D_floating to G_floating
14074ALPHA_cvtgd, // Convert G_floating to D_floating
14075ALPHA_cvtgf, // Convert G_floating to F_floating
14076ALPHA_cvtgq, // Convert G_floating to quadword
14077ALPHA_cvtlq, // Convert longword to quadword
14078ALPHA_cvtqf, // Convert quadword to F_floating
14079ALPHA_cvtqg, // Convert quadword to G_floating
14080ALPHA_cvtql, // Convert quadword to longword
14081ALPHA_cvtqs, // Convert quadword to S_floating
14082ALPHA_cvtqt, // Convert quadword to T_floating
14083ALPHA_cvtst, // Convert S_floating to T_floating
14084ALPHA_cvttq, // Convert T_floating to quadword
14085ALPHA_cvtts, // Convert T_floating to S_floating
14086ALPHA_divf, // Divide F_floating
14087ALPHA_divg, // Divide G_floating
14088ALPHA_divs, // Divide S_floating
14089ALPHA_divt, // Divide T_floating
14090ALPHA_ecb, // Evict cache block
14091ALPHA_eqv, // Logical equivalence
14092ALPHA_excb, // Exception barrier
14093ALPHA_extbl, // Extract byte low
14094ALPHA_extlh, // Extract longword high
14095ALPHA_extll, // Extract longword low
14096ALPHA_extqh, // Extract quadword high
14097ALPHA_extql, // Extract quadword low
14098ALPHA_extwh, // Extract word high
14099ALPHA_extwl, // Extract word low
14100ALPHA_fbeq, // Floating branch if = zero
14101ALPHA_fbge, // Floating branch if >= zero
14102ALPHA_fbgt, // Floating branch if > zero
14103ALPHA_fble, // Floating branch if <= zero
14104ALPHA_fblt, // Floating branch if < zero
14105ALPHA_fbne, // Floating branch if != zero
14106ALPHA_fcmoveq, // FCMOVE if = zero
14107ALPHA_fcmovge, // FCMOVE if >= zero
14108ALPHA_fcmovgt, // FCMOVE if > zero
14109ALPHA_fcmovle, // FCMOVE if <= zero
14110ALPHA_fcmovlt, // FCMOVE if < zero
14111ALPHA_fcmovne, // FCMOVE if != zero
14112ALPHA_fetch, // Prefetch data
14113ALPHA_fetch_m, // Prefetch data, modify intent
14114ALPHA_ftois, // Floating to integer move, S_floating
14115ALPHA_ftoit, // Floating to integer move, T_floating
14116ALPHA_implver, // Implementation version
14117ALPHA_insbl, // Insert byte low
14118ALPHA_inslh, // Insert longword high
14119ALPHA_insll, // Insert longword low
14120ALPHA_insqh, // Insert quadword high
14121ALPHA_insql, // Insert quadword low
14122ALPHA_inswh, // Insert word high
14123ALPHA_inswl, // Insert word low
14124ALPHA_itoff, // Integer to floating move, F_floating
14125ALPHA_itofs, // Integer to floating move, S_floating
14126ALPHA_itoft, // Integer to floating move, T_floating
14128ALPHA_jsr, // Jump to subroutine
14129ALPHA_jsr_coroutine,// Jump to subroutine return
14130ALPHA_lda, // Load address
14131ALPHA_ldah, // Load address high
14132ALPHA_ldbu, // Load zero-extended byte
14133ALPHA_ldwu, // Load zero-extended word
14134ALPHA_ldf, // Load F_floating
14135ALPHA_ldg, // Load G_floating
14136ALPHA_ldl, // Load sign-extended longword
14137ALPHA_ldl_l, // Load sign-extended longword locked
14138ALPHA_ldq, // Load quadword
14139ALPHA_ldq_l, // Load quadword locked
14140ALPHA_ldq_u, // Load unaligned quadword
14141ALPHA_lds, // Load S_floating
14142ALPHA_ldt, // Load T_floating
14143ALPHA_maxsb8, // Vector signed byte maximum
14144ALPHA_maxsw4, // Vector signed word maximum
14145ALPHA_maxub8, // Vector unsigned byte maximum
14146ALPHA_maxuw4, // Vector unsigned word maximum
14147ALPHA_mb, // Memory barrier
14148ALPHA_mf_fpcr, // Move from FPCR
14149ALPHA_minsb8, // Vector signed byte minimum
14150ALPHA_minsw4, // Vector signed word minimum
14151ALPHA_minub8, // Vector unsigned byte minimum
14152ALPHA_minuw4, // Vector unsigned word minimum
14153ALPHA_mskbl, // Mask byte low
14154ALPHA_msklh, // Mask longword high
14155ALPHA_mskll, // Mask longword low
14156ALPHA_mskqh, // Mask quadword high
14157ALPHA_mskql, // Mask quadword low
14158ALPHA_mskwh, // Mask word high
14159ALPHA_mskwl, // Mask word low
14160ALPHA_mt_fpcr, // Move to FPCR
14161ALPHA_mulf, // Multiply F_floating
14162ALPHA_mulg, // Multiply G_floating
14163ALPHA_mull, // Multiply longword
14164ALPHA_mull_v, // Multiply longword with overflow
14165ALPHA_mulq, // Multiply quadword
14166ALPHA_mulq_v, // Multiply quadword with overflow
14167ALPHA_muls, // Multiply S_floating
14168ALPHA_mult, // Multiply T_floating
14169ALPHA_ornot, // Logical sum with complement
14170ALPHA_perr, // Pixel error
14171ALPHA_pklb, // Pack longwords to bytes
14172ALPHA_pkwb, // Pack words to bytes
14173ALPHA_rc, // Read and clear
14174ALPHA_ret, // Return from subroutine
14175ALPHA_rpcc, // Read process cycle counter
14176ALPHA_rs, // Read and set
14177ALPHA_s4addl, // Scaled add longword by 4
14178ALPHA_s4addq, // Scaled add quadword by 4
14179ALPHA_s4subl, // Scaled subtract longword by 4
14180ALPHA_s4subq, // Scaled subtract quadword by 4
14181ALPHA_s8addl, // Scaled add longword by 8
14182ALPHA_s8addq, // Scaled add quadword by 8
14183ALPHA_s8subl, // Scaled subtract longword by 8
14184ALPHA_s8subq, // Scaled subtract quadword by 8
14185ALPHA_sextb, // Sign extend byte
14186ALPHA_sextw, // Sign extend word
14187ALPHA_sll, // Shift left logical
14188ALPHA_sqrtf, // Square root F_floating
14189ALPHA_sqrtg, // Square root G_floating
14190ALPHA_sqrts, // Square root S_floating
14191ALPHA_sqrtt, // Square root T_floating
14192ALPHA_sra, // Shift right arithmetic
14193ALPHA_srl, // Shift right logical
14194ALPHA_stb, // Store byte
14195ALPHA_stf, // Store F_floating
14196ALPHA_stg, // Store G_floating
14197ALPHA_sts, // Store S_floating
14198ALPHA_stl, // Store longword
14199ALPHA_stl_c, // Store longword conditional
14200ALPHA_stq, // Store quadword
14201ALPHA_stq_c, // Store quadword conditional
14202ALPHA_stq_u, // Store unaligned quadword
14203ALPHA_stt, // Store T_floating
14204ALPHA_stw, // Store word
14205ALPHA_subf, // Subtract F_floating
14206ALPHA_subg, // Subtract G_floating
14207ALPHA_subl, // Subtract longword
14208ALPHA_subl_v, // Subtract longword with overflow
14209ALPHA_subq, // Subtract quadword
14210ALPHA_subq_v, // Subtract quadword with overflow
14211ALPHA_subs, // Subtract S_floating
14212ALPHA_subt, // Subtract T_floating
14213ALPHA_trapb, // Trap barrier
14214ALPHA_umulh, // Unsigned multiply quadword high
14215ALPHA_unpkbl, // Unpack bytes to longwords
14216ALPHA_unpkbw, // Unpack bytes to words
14217ALPHA_wh64, // Write hint 64 bytes
14218ALPHA_wmb, // Write memory barrier
14219ALPHA_xor, // Logical difference
14220ALPHA_zap, // Zero bytes
14221ALPHA_zapnot, // Zero bytes not
14222
14223// Macros
14224
14225ALPHA_unop, // Universal NOP
14226ALPHA_nop, // Integer NOP
14227ALPHA_fnop, // Floating point NOP
14228ALPHA_clr, // Clear
14229ALPHA_fabs, // Floating point absolute value
14230ALPHA_fclr, // Floating point clear
14231ALPHA_fmov, // Floating point register move
14232ALPHA_fneg, // Floating point negate
14233ALPHA_mov, // Move to register
14234ALPHA_negl, // Negate longword
14235ALPHA_negl_v, // Negate longword with overflow
14236ALPHA_negq, // Negate quadword
14237ALPHA_negq_v, // Negate quadword with overflow
14238ALPHA_negf, // Negate F_floating
14239ALPHA_negg, // Negate G_floating
14240ALPHA_negs, // Negate S_floating
14241ALPHA_negt, // Negate T_floating
14242ALPHA_not, // Bitwise NOT
14243ALPHA_sextl, // Move sign extended
14244ALPHA_or, // Bitwise OR
14245ALPHA_andnot, // Bit clear
14246ALPHA_xornot, // Logical equivalence
14247ALPHA_br0, // Branch
14248
14250
14251};
14252
14253
14254
14255
14256enum
14257{
14258KR1878_null = 0, // Unknown Operation
14259
14261KR1878_cmp, // Compare
14262KR1878_add, // Addition
14263KR1878_sub, // Subtract
14264KR1878_and, // Logical AND
14265KR1878_or, // Logical Inclusive OR
14266KR1878_xor, // Logical Exclusive OR
14267
14269KR1878_cmpl, // Compare
14270KR1878_addl, // Addition
14271KR1878_subl, // Subtract
14276
14280KR1878_shl, // Shift Left
14281KR1878_shr, // Shift Right
14282KR1878_shra, // Arithmetic Shift Right
14283KR1878_rlc, // Rotate Left
14284KR1878_rrc, // Rotate Right
14285KR1878_adc, // Add with Carry
14286KR1878_sbc, // Subtract with Carry
14287
14297
14299KR1878_jsr, // Jump to Subroutine
14307KR1878_ijsr, // Jump to Subroutine
14308KR1878_rts, // Return from Subroutine
14309KR1878_rtsc, // Return from Subroutine
14310KR1878_rti, // Return from Interrupt
14311
14312KR1878_nop, // No Operation
14317
14319
14320};
14321
14322
14323
14324
14325enum
14326{
14327AD218X_null = 0, // Unknown Operation
14328// AMF subcodes
14329AD218X_amf_01, // op = op * op (rnd)
14330AD218X_amf_03, // op = mr + op * op (rnd)
14331AD218X_amf_02, // op = mr - op * op (rnd)
14332AD218X_amf_04, // op = op * op (ss)
14333AD218X_amf_05, // op = op * op (su)
14334AD218X_amf_06, // op = op * op (us)
14335AD218X_amf_07, // op = op * op (uu)
14336AD218X_amf_08, // op = mr + op * op
14337AD218X_amf_09, // op = mr + op * op
14338AD218X_amf_0a, // op = mr + op * op
14339AD218X_amf_0b, // op = mr + op * op
14340AD218X_amf_0c, // op = mr - op * op
14341AD218X_amf_0d, // op = mr - op * op
14342AD218X_amf_0e, // op = mr - op * op
14343AD218X_amf_0f, // op = mr - op * op
14344AD218X_amf_10, // op = op
14345AD218X_amf_11, // op = op + 1
14346AD218X_amf_12, // op = op + op + C
14347AD218X_amf_13, // op = op + op
14348AD218X_amf_14, // op = not op
14349AD218X_amf_15, // op = - op
14350AD218X_amf_16, // op = op - op + C - 1
14351AD218X_amf_17, // op = op - op
14352AD218X_amf_18, // op = op - 1
14353AD218X_amf_19, // op = op - op
14354AD218X_amf_1a, // op = op - op + C - 1
14355AD218X_amf_1b, // op = not op
14356AD218X_amf_1c, // op = op and op
14357AD218X_amf_1d, // op = op or op
14358AD218X_amf_1e, // op = op xor op
14359AD218X_amf_1f, // op = abs op
14360// Shifter subcodes
14361AD218X_shft_0, // sr = lshift op (hi)
14362AD218X_shft_1, // sr = sr or lshift op (hi)
14363AD218X_shft_2, // sr = lshift op (lo)
14364AD218X_shft_3, // sr = sr or lshift op (lo)
14365AD218X_shft_4, // sr = ashift op (hi)
14366AD218X_shft_5, // sr = sr or ashift op (hi)
14367AD218X_shft_6, // sr = ashift op (lo)
14368AD218X_shft_7, // sr = sr or ashift op (lo)
14369AD218X_shft_8, // sr = norm op (hi)
14370AD218X_shft_9, // sr = sr or norm op (hi)
14371AD218X_shft_a, // sr = norm op (lo)
14372AD218X_shft_b, // sr = sr or norm op (lo)
14373AD218X_shft_c, // sr = exp op (hi)
14374AD218X_shft_d, // sr = exp op (hix)
14375AD218X_shft_e, // sr = exp op (lo)
14376AD218X_shft_f, // sr = expadj op
14377// ALU/MAC specific options
14378AD218X_alu_00, // op = op + op + C [IF COND] X + Const
14379AD218X_alu_01, // op = op + op
14380AD218X_alu_02, // op = op - op + C - 1 [IF COND] X - Const
14381AD218X_alu_03, // op = op - op
14382AD218X_alu_04, // op = op - op + C - 1 [IF COND] Const - X
14383AD218X_alu_05, // op = op - op
14384AD218X_alu_06, // op = op and op [IF COND] X and,or,xor Const
14385AD218X_alu_07, // op = op or op
14386AD218X_alu_08, // op = op xor op
14387AD218X_alu_09, // op = op [IF COND] PASS constant; constant <> 0,1, -1
14388AD218X_alu_0a, // op = op + 1
14389AD218X_alu_0b, // op = op - 1
14390AD218X_alu_0c, // divq op ALU Type 23
14391AD218X_alu_0d, // divs op, op ALU Type 24
14392AD218X_alu_0e, // none = op ALU Type 9, with no result
14393AD218X_alu_0f, // none = op + 1
14394AD218X_alu_10, // none = op + op + C
14395AD218X_alu_11, // none = op + op
14396AD218X_alu_12, // none = not op
14397AD218X_alu_13, // none = - op
14398AD218X_alu_14, // none = op - op + C - 1
14399AD218X_alu_15, // none = op - op
14400AD218X_alu_16, // none = op - 1
14401AD218X_alu_17, // none = op - op + C - 1
14402AD218X_alu_18, // none = op - op
14403AD218X_alu_19, // none = not op
14404AD218X_alu_1a, // none = op and op
14405AD218X_alu_1b, // none = op or op
14406AD218X_alu_1c, // none = op xor op
14407AD218X_alu_1d, // none = abs op
14408AD218X_mac_0, // op = 0 [IF COND] MAC CLEAR
14409AD218X_mac_1, // op = mr (rnd) [IF COND] MAC TRANSFER
14410AD218X_mac_2, // op = op * op (ss) [IF COND] X * X
14411AD218X_mac_3, // op = op * op (uu)
14412AD218X_mac_4, // op = op * op (rnd)
14413AD218X_mac_5, // op = mr + op * op (ss) [IF COND] MR + X * X
14414AD218X_mac_6, // op = mr + op * op (uu)
14415AD218X_mac_7, // op = mr + op * op (rnd)
14416AD218X_mac_8, // op = mr - op * op (ss) [IF COND] MR - X * X
14417AD218X_mac_9, // op = mr - op * op (uu)
14418AD218X_mac_a, // op = mr - op * op (rnd)
14419AD218X_mac_b, // if mv sat mr ALU/MAC Type 25
14420// ALU/MAC Common case
14421AD218X_amf, // [IF COND] AMF
14422// Shifter Common case
14423AD218X_shft, // [IF COND] Shifter
14424// Shifter specific options. Shifter Type 15, const
14425AD218X_shifter_0, // sr = ashift op by op (hi)
14426AD218X_shifter_1, // sr = sr or ashift op by op (hi)
14427AD218X_shifter_2, // sr = ashift op by op (lo)
14428AD218X_shifter_3, // sr = sr or ashift op by op (lo)
14429AD218X_shifter_4, // sr = lshift op by op (hi)
14430AD218X_shifter_5, // sr = sr or lshift op by op (hi)
14431AD218X_shifter_6, // sr = lshift op by op (lo)
14432AD218X_shifter_7, // sr = sr or lshift op by op (lo)
14433// Data Movement
14434AD218X_move_0, // op = op Internal Data Move, Instruction Type 17:
14435AD218X_move_1, // op = op Load Register Immediate, Instruction Type 6:
14436AD218X_move_2, // op = op Load Non-Data Register Immediate, Instruction Type 7:
14437AD218X_move_3, // op = dm(op) Data Memory Read (Direct Address), Instruction Type 3:
14438AD218X_move_4, // op = dm(op, op) Data Memory Read, Instruction Type 4:
14439AD218X_move_5, // op = pm(op, op) Program Memory Read
14440AD218X_move_6, // dm(op) = op Data Memory Write (Direct Address)
14441AD218X_move_7, // dm(op, op) = op Data Memory Write, Instruction Type 4:
14442AD218X_move_8, // dm(op, op) = op Data Memory Write, Immediate Data, Instruction Type 2:
14443AD218X_move_9, // pm(op, op) = op Program Memory Write, Instruction Type 5
14444AD218X_move_a, // op = io(op) I/O Memory Space Read/Write, Instruction Type 29:
14445AD218X_move_b, // io(op) = op
14446// Flow control
14447AD218X_jump, // Unconditional JUMP Direct, Instruction Type 10:
14448AD218X_jump_1, // Conditional JUMP Direct, Instruction Type 10:
14449AD218X_jump_2, // Unconditional JUMP Indirect, Instruction Type 19:
14450AD218X_jump_3, // Conditional JUMP Indirect, Instruction Type 19:
14451AD218X_jump_4, // Conditional JUMP on Flag In Direct Instruction Type 27:
14452AD218X_call, // Conditional CALL Direct, Instruction Type 10:
14453AD218X_call_1, // Conditional CALL Indirect, Instruction Type 19:
14454AD218X_call_2, // Conditional CALL on Flag In Direct Instruction Type 27:
14455AD218X_rts, // Unconditional Return, Instruction Type 20:
14456AD218X_rts_cond, // Conditional Return, Instruction Type 20:
14457AD218X_rti, // Unconditional Return, Instruction Type 20:
14458AD218X_rti_cond, // Conditional Return, Instruction Type 20:
14459AD218X_nop, // No operation, Instruction Type 30
14460AD218X_do, // Do Until, Instruction Type 11:
14461// Misc
14462AD218X_idle, // Idle, Instruction Type 31:
14464AD218X_flag_out, // Flag Out Mode Control Instruction Type 28:
14465AD218X_stack_ctl, // Stack Control, Instruction Type 26:
14466AD218X_mode_ctl, // Mode Control, Instruction Type 18:
14467AD218X_tops_w, // toppcstack = op Internal Data Move, Instruction Type 17:
14468AD218X_tops_r, // op = toppcstack
14471AD218X_modify, // modify(op, op) Modify Address Register, Instruction Type 21:
14472// ALU/MAC operation with Data Memory Read/Write
14473AD218X_double_move, // op = dm(op, op), op = pm(op, op) Data & Program Memory Read, Instruction Type 1:
14474AD218X_amf_move_0, // amf_cmd, op = dm(op, op) ALU/MAC operation with Data Memory Read, Instruction Type 4:
14475AD218X_amf_move_1, // amf_cmd, op = pm(op, op) ALU/MAC operation with Program Memory Read, Instruction Type 5:
14476AD218X_amf_move_2, // amf_cmd, op = dm(op, op) Shift operation with Data Memory Read, Instruction Type 12:
14477AD218X_amf_move_3, // amf_cmd, op = pm(op, op) Shift operation with Program Memory Read, Instruction Type 13:
14478AD218X_amf_move_4, // amf_cmd, op = op ALU/MAC operation with Data Register Move, Instruction Type 8:
14479AD218X_amf_move_5, // amf_cmd, op = op Shift operation with Data Register Move, Instruction Type 14:
14480AD218X_amf_move_6, // dm(op, op) = op, amf_cmd ALU/MAC operation with Data Memory Write, Instruction Type 4:
14481AD218X_amf_move_7, // pm(op, op) = op, amf_cmd ALU/MAC operation with Program Memory Write, Instruction Type 5:
14482AD218X_amf_move_8, // dm(op, op) = op, amf_cmd Shift operation with Data Memory Write, Instruction Type 12:
14483AD218X_amf_move_9, // pm(op, op) = op, amf_cmd Shift operation with Program Memory Write, Instruction Type 13:
14484AD218X_amf_move_a, // amf_cmd, op = dm(op, op), op = pm(op, op) ALU/MAC with Data and Program Memory Read, Instruction Type 1:
14486
14487};
14488
14489
14490
14491
14492enum
14493{
14494OAK_Dsp_null = 0, // Unknown Operation
14495OAK_Dsp_proc, // cmd need further process
14496// ALU-ALM subcodes
14497OAK_Dsp_or, // 000 Logical Or
14498OAK_Dsp_and, // 001 And
14499OAK_Dsp_xor, // 010 Exclusive Or
14500OAK_Dsp_add, // 011 Add
14501OAK_Dsp_alm_tst0, // 100 Test Bit-field for Zeros
14502OAK_Dsp_alm_tst1, // 101 Test Bit-field for Ones
14503OAK_Dsp_cmp, // 110 Compare
14504OAK_Dsp_sub, // 111 Subtract
14505// ALM subcodes
14506OAK_Dsp_alm_msu, // 1000 Multiply and Subtract Previous Product
14507OAK_Dsp_addh, // 1001 Add to High Accumulator
14508OAK_Dsp_addl, // 1010 Add to Low Accumulator
14509OAK_Dsp_subh, // 1011 Subtract from High Accumulator
14510OAK_Dsp_subl, // 1100 Subtract from Low Accumulator
14511OAK_Dsp_sqr, // 1101 Square
14512OAK_Dsp_sqra, // 1110 Square and Accumulate Previous Product
14513OAK_Dsp_cmpu, // 1111 Compare Unsigned
14514// MODA-MODB subcodes conditional
14515OAK_Dsp_shr, // 000 Shift Accumulator Right
14516OAK_Dsp_shr4, // 001 Shift Accumulator Right by 4 Bits
14517OAK_Dsp_shl, // 010 Shift Accumulator Left
14518OAK_Dsp_shl4, // 011 Shift Accumulator Left by 4 Bits
14519OAK_Dsp_ror, // 100 Rotate Accumulator Right through Carry
14520OAK_Dsp_rol, // 101 Rotate Accumulator Left through Carry
14521OAK_Dsp_clr, // 110 Clear Accumulator
14522OAK_Dsp_mod_reserved, // 111 Mod Reserved
14523// MODA subcodes conditional
14524OAK_Dsp_not, // 1000 Logical Not
14525OAK_Dsp_neg, // 1001 2's Complement of aX-accumulator
14526OAK_Dsp_rnd, // 1010 Round Upper 20 Bits of aX-accumulator
14527OAK_Dsp_pacr, // 1011 Product Move and Round to aX-accumulator
14528OAK_Dsp_clrr, // 1100 Clear and Round aX-accumulator
14529OAK_Dsp_inc, // 1101 Increment Accumulator by One
14530OAK_Dsp_dec, // 1110 Decrement aX-accumulator by One
14531OAK_Dsp_copy, // 1111 Copy aX-accumulator
14532// ---
14533OAK_Dsp_norm, // Normalize
14534OAK_Dsp_divs, // Division Step
14535// ALB subcodes
14536OAK_Dsp_set, // 000 Set Bit-field
14537OAK_Dsp_rst, // 001 Reset Bit-field
14538OAK_Dsp_chng, // 010 Change Bit-field
14539OAK_Dsp_addv, // 011 Add Long Immediate Value or Data Memory Location
14540OAK_Dsp_alb_tst0, // 100 Test Bit-field for Zeros
14541OAK_Dsp_alb_tst1, // 101 Test Bit-field for Ones
14542OAK_Dsp_cmpv, // 110 Compare Long Immediate Value to Register or Data Memory Location
14543OAK_Dsp_subv, // 111 Subtract Long Immediate Value from a Register or a Data Memory Location
14544// ---
14545OAK_Dsp_maxd, // Maximum between Data Memory Location and Accumulator
14546OAK_Dsp_max, // Maximum between Two Accumulators
14547OAK_Dsp_min, // Minimum between Two Accumulators
14548OAK_Dsp_lim, // Limit Accumulator (lim aX[, aX])
14549// MUL subcodes
14550OAK_Dsp_mpy, // 000 Multiply
14551OAK_Dsp_mpysu, // 001 Multiply Signed by Unsigned
14552OAK_Dsp_mac, // 010 Multiply and Accumulate Previous Product
14553OAK_Dsp_macus, // 011 Multiply Unsigned by Signed and Accumulate Previous Product
14554OAK_Dsp_maa, // 100 Multiply and Accumulate Aligned Previous Product
14555OAK_Dsp_macuu, // 101 Multiply Unsigned by Unsigned and Accumulate Previous Product
14556OAK_Dsp_macsu, // 110 Multiply Signed by Unsigned and Accumulate Previous Product
14557OAK_Dsp_maasu, // 111 Multiply Signed by Unsigned and Accumulate Aligned Previous Product
14558//---
14559OAK_Dsp_mpyi, // Multiply Signed Short Immediate
14560OAK_Dsp_msu, // Multiply and Subtract Previous Product
14561OAK_Dsp_tstb, // Test Specific Bit
14562OAK_Dsp_shfc, // Shift Accumulators according to Shift Value Register
14563OAK_Dsp_shfi, // Shift Accumulators by an Immediate Shift Value
14564OAK_Dsp_exp, // Evaluate the Exponent Value
14565//---
14566OAK_Dsp_mov, // Move Data
14567OAK_Dsp_movp, // Move from Program Memory into Data Memory
14568OAK_Dsp_movs, // Move and Shift According to Shift Value Register
14569OAK_Dsp_movsi, // Move and Shift According to an Immediate Shift Value
14570OAK_Dsp_movr, // Move and Round
14571OAK_Dsp_movd, // Move from Data Memory into Program Memory
14572//---
14573OAK_Dsp_push, // Push Register or Long Immediate Value onto Stack
14574OAK_Dsp_pop, // Pop from Stack into Register
14575//---
14576OAK_Dsp_swap, // Swap aX- and bX-accumulators
14577OAK_Dsp_banke, // Bank Exchange
14578OAK_Dsp_rep, // Repeat Next Instruction
14579OAK_Dsp_bkrep, // Block-Repeat
14580OAK_Dsp_break, // Break from Block-repeat
14581//---
14582OAK_Dsp_br, // Conditional Branch
14583OAK_Dsp_brr, // Relative Conditional Branch
14584OAK_Dsp_br_u, // UnConditional Branch
14585OAK_Dsp_brr_u, // Relative UnConditional Branch
14586OAK_Dsp_call, // Conditional Call Subroutine
14587OAK_Dsp_callr, // Relative Conditional Call Subroutine
14588OAK_Dsp_calla, // Call Subroutine at Location Specified by Accumulator
14589//---
14590OAK_Dsp_ret, // Return Conditionally
14591OAK_Dsp_ret_u, // Return UnConditionally
14592OAK_Dsp_retd, // Delayed Return
14593OAK_Dsp_reti, // Return from Interrupt Conditionally
14594OAK_Dsp_reti_u, // Return from Interrupt UnConditionally
14595OAK_Dsp_retid, // Delayed Return from Interrupt
14596OAK_Dsp_rets, // Return with Short Immediate Parameter
14597//---
14598OAK_Dsp_cntx, // Context Switching Store or Restore
14599OAK_Dsp_nop, // No operation
14600OAK_Dsp_modr, // Modify rN
14601OAK_Dsp_dint, // Disable Interrupt
14602OAK_Dsp_eint, // Enable Interrupt
14603//---
14604OAK_Dsp_trap, // Software Interrupt
14605//---
14606OAK_Dsp_lpg, // Load the Page Bits
14607OAK_Dsp_load, // Load Specific Fields into Registers
14608OAK_Dsp_mov_eu, // Move Data, eu
14610
14611};
14612
14613/*
14614 * TLCS900 processor module for IDA.
14615 * Copyright (c) 1998-2006 Konstantin Norvatoff, <konnor@bk.ru>
14616 * Freeware.
14617 */
14618
14619
14620// List of instructions
14621
14622//
14623enum
14624{
14625T900_null = 0, // Unknown Operation
14756};
14757
14758/*
14759 * Rockwell C39 processor module for IDA.
14760 * Copyright (c) 2000-2006 Konstantin Norvatoff, <konnor@bk.ru>
14761 * Freeware.
14762 */
14763
14764
14765// List of instructions
14766
14767//
14768enum
14769{
14770C39_null = 0, // Unknown Operation
14886};
14887
14888/*
14889 * National Semiconductor Corporation CR16 processor module for IDA.
14890 * Copyright (c) 2002-2006 Konstantin Norvatoff, <konnor@bk.ru>
14891 * Freeware.
14892 */
14893
14894
14895// list of instructions
14896
14897enum
14898{
14899CR16_null = 0, // Unknown Operation
14910// !!! don't change sequence !!!
14926//----------------------------
14941// !!! don't change sequence !!!
14957//----------------------------
14982// !!! don't change sequence !!!
14997//----------------------------
15018};
15019
15020/*
15021 * Panasonic MN102 (PanaXSeries) processor module for IDA.
15022 * Copyright (c) 2000-2006 Konstantin Norvatoff, <konnor@bk.ru>
15023 * Freeware.
15024 */
15025
15026
15027// List of instructions
15028
15029enum
15030{
15031mn102_null = 0, // Unknown Operation
15102};
15103
15104/*
15105 * Interactive disassembler (IDA).
15106 * Copyright (c) 1990-2025 Hex-Rays
15107 * ALL RIGHTS RESERVED.
15108 *
15109 * PowerPC - RISC with very complex instructions
15110 */
15111
15112
15113
15114enum
15115{
15116PPC_null = 0, // Unknown Operation
15117PPC_add, // Add
15118PPC_addc, // Add Carrying
15119PPC_adde, // Add Extended
15120PPC_addi, // Add Immediate
15121PPC_addic, // Add Immediate Carrying
15122PPC_addis, // Add Immediate Shifted
15123PPC_addme, // Add to Minus One Extended
15124PPC_addze, // Add to Zero Extended
15125PPC_and, // AND
15126PPC_andc, // AND with Complement
15127PPC_andi, // AND Immediate
15128PPC_andis, // AND Immediate Shifted
15129PPC_b, // Branch
15130PPC_bc, // Branch Conditional
15131PPC_bcctr, // Branch Conditional to Count Register
15132PPC_bclr, // Branch Conditional to Link Register
15133PPC_cmp, // Compare
15134PPC_cmpi, // Compare Immediate
15135PPC_cmpl, // Compare Logical
15136PPC_cmpli, // Compare Logical Immediate
15137PPC_cntlzd, // Count Leading Zeros Double Word
15138PPC_cntlzw, // Count Leading Zeros Word
15139PPC_crand, // Condition Register AND
15140PPC_crandc, // Condition Register AND with Complement
15141PPC_creqv, // Condition Register Equivalent
15142PPC_crnand, // Condition Register NAND
15143PPC_crnor, // Condition Register NOR
15144PPC_cror, // Condiiton Register OR
15145PPC_crorc, // Condition Register OR with Comlement
15146PPC_crxor, // Condition Register XOR
15148PPC_dcbf, // Data Cache Block Flush
15149PPC_dcbi, // Data Cache Block Invalidate
15150PPC_dcbst, // Data Cache Block Store
15151PPC_dcbt, // Data Cache Block Touch
15152PPC_dcbtst, // Data Cache Block Touch for Store
15153PPC_dcbz, // Data Cache Block Set to Zero
15154PPC_divd, // Divide Double Word
15155PPC_divdu, // Divide Double Word Unsigned
15156PPC_divw, // Divide Word
15157PPC_divwu, // Divide Word Unsigned
15158PPC_eciwx, // External Control In Word Indexed
15159PPC_ecowx, // External Control Out Word Indexed
15160PPC_eieio, // Enforce In-Order Execution of I/O
15161PPC_eqv, // Equivalent
15162PPC_extsb, // Extend Sign Byte
15163PPC_extsh, // Extend Sign Half Word
15164PPC_extsw, // Extend Sign Word
15165PPC_fabs, // Floating-Point Absolute Value
15166PPC_fadd, // Floating-Point Add
15167PPC_fadds, // Floating-Point Add (Single-Precision)
15168PPC_fcfid, // Floating-Point Convert from Integer Double Word
15169PPC_fcmpo, // Floating-Point Compare Ordered
15170PPC_fcmpu, // Floating-Point Compare Unordered
15171PPC_fctid, // Floating-Point Convert to Integer Double Word
15172PPC_fctidz, // Floating-Point Convert to Integer Double Word with Round toward Zero
15173PPC_fctiw, // Floating-Point Convert to Integer Word
15174PPC_fctiwz, // Floating-Point Convert to Integer Word with Round toward Zero
15175PPC_fdiv, // Floating-Point Divide
15176PPC_fdivs, // Floating-Point Divide Single-Precision
15177PPC_fmadd, // Floating-Point Multiply-Add
15178PPC_fmadds, // Floating-Point Multiply-Add Single-Precision
15179PPC_fmr, // Floating-Point Move Register
15180PPC_fmsub, // Floating-Point Multiply-Subtract
15181PPC_fmsubs, // Floating-Point Multiply-Subtract (Single-Precision)
15182PPC_fmul, // Floating-Point Multiply
15183PPC_fmuls, // Floating-Point Multiply Single-Precision
15184PPC_fnabs, // Floating-Point Negative Absolute Value
15185PPC_fneg, // Floating-Point Negate
15186PPC_fnmadd, // Floating-Point Negative Multiply-Add
15187PPC_fnmadds, // Floating-Point Negative Multiply-Add Single-Precision
15188PPC_fnmsub, // Floating-Point Negative Multiply-Subtract
15189PPC_fnmsubs, // Floating-Point Negative Multiply-Subtract Single-Precision
15190PPC_fres, // Floating-Point Reciprocal Estimate Single-Precision
15191PPC_frsp, // Floating-Point Round to Single-Precision
15192PPC_frsqrte, // Floating-Point Reciprocal Square Root Estimate
15193PPC_fsel, // Floating-Point Select
15194PPC_fsqrt, // Floating-Point Square Root
15195PPC_fsqrts, // Floating-Point Square Root Single-Precision
15196PPC_fsub, // Floating-Point Subtract
15197PPC_fsubs, // Floating-Point Subtract Single-Precision
15198PPC_icbi, // Instruction Cache Block Invalidate
15199PPC_isync, // Instruction Synchronize
15200PPC_lbz, // Load Byte and Zero
15201PPC_lbzu, // Load Byte and Zero with Update
15202PPC_lbzux, // Load Byte and Zero with Update Indexed
15203PPC_lbzx, // Load Byte and Zero Indexed
15204PPC_ld, // Load Double Word
15205PPC_ldarx, // Load Double Word and Reserve Indexed
15206PPC_ldu, // Load Double Word with Update
15207PPC_ldux, // Load Double Word with Update Indexed
15208PPC_ldx, // Load Double Word Indexed
15209PPC_lfd, // Load Floating-Point Double-Precision
15210PPC_lfdu, // Load Floating-Point Double-Precision with Update
15211PPC_lfdux, // Load Floating-Point Double-Precision with Update Indexed
15212PPC_lfdx, // Load Floating-Point Double-Precision Indexed
15213PPC_lfs, // Load Floating-Point Single-Precision
15214PPC_lfsu, // Load Floating-Point Single-Precision with Update
15215PPC_lfsux, // Load Floating-Point Single-Precision with Update Indexed
15216PPC_lfsx, // Load Floating-Point Single-Precision Indexed
15217PPC_lha, // Load Half Word Algebraic
15218PPC_lhau, // Load Half Word Algebraic with Update
15219PPC_lhaux, // Load Half Word Algebraic with Update Indexed
15220PPC_lhax, // Load Half Word Algebraic Indexed
15221PPC_lhbrx, // Load Half Word Byte-reverse Indexed
15222PPC_lhz, // Load Half Word and Zero
15223PPC_lhzu, // Load Half Word and Zero with Update
15224PPC_lhzux, // Load Half Word and Zero with Update Indexed
15225PPC_lhzx, // Load Half Word and Zero Indexed
15226PPC_lmw, // Load Multiple Word
15227PPC_lswi, // Load String Word Immediate
15228PPC_lswx, // Load String Word Indexed
15229PPC_lwa, // Load Word Algebraic
15230PPC_lwarx, // Load Word and Reserve Indexed
15231PPC_lwaux, // Load Word Algebraic with Update Indexed
15232PPC_lwax, // Load Word Algebraic Indexed
15233PPC_lwbrx, // Load Word Byte-Reverse Indexed
15234PPC_lwz, // Load Word and Zero
15235PPC_lwzu, // Load Word and Zero with Update
15236PPC_lwzux, // Load Word and Zero with Update Indexed
15237PPC_lwzx, // Load Word and Zero Indexed
15238PPC_mcrf, // Move Condition register Field
15239PPC_mcrfs, // Move to Condition Register from FPSCR
15240PPC_mcrxr, // Move to Condition Register from XER
15241PPC_mfcr, // Move from Condition Register
15242PPC_mffs, // Move from FPSCR
15243PPC_mfmsr, // Move from Machine State Register
15244PPC_mfspr, // Move from Special Purpose Register
15245PPC_mfsr, // Move from Segment Register
15246PPC_mfsrin, // Move from Segment Register Indexed
15247PPC_mftb, // Move from Time Base
15248PPC_mtcrf, // Move to Condition Register Fields
15249PPC_mtfsb0, // Move to FPSCR Bit 0
15250PPC_mtfsb1, // Move to FPSCR Bit 1
15251PPC_mtfsf, // Move to FPSCR Fields
15252PPC_mtfsfi, // Move to FPSCR Field Immediate
15253PPC_mtmsr, // Move to Machine State Register
15254PPC_mtmsrd, // Move to Machine State Register Double Word
15255PPC_mtspr, // Move to Special Purpose Register
15256PPC_mtsr, // Move to Segment Register
15257PPC_mtsrd, // Move to Segment Register Double Word
15258PPC_mtsrdin, // Move to Segment Register Indirect Double
15259PPC_mtsrin, // Move to Segment Register Indirect
15260PPC_mulhd, // Multiply High Double Word
15261PPC_mulhdu, // Multiply High Double Word Unsigned
15262PPC_mulhw, // Multiply High Word
15263PPC_mulhwu, // Multiply High Word Unsigned
15264PPC_mulld, // Multiply Low Double Word
15265PPC_mulli, // Multiply Low Immediate
15266PPC_mullw, // Multiply Low
15267PPC_nand, // NAND (not AND)
15268PPC_neg, // Negate
15269PPC_nor, // NOR (not OR)
15271PPC_orc, // OR with Complement
15272PPC_ori, // OR Immediate
15273PPC_oris, // OR Immediate Shifted
15274PPC_rfi, // Return from Interrupt
15275PPC_rfid, // Return from Interrupt Double Word
15276PPC_rldcl, // Rotate Left Double Word then Clear Left
15277PPC_rldcr, // Rotate Left Double Word then Clear Right
15278PPC_rldic, // Rotate Left Double Word Immediate then Clear
15279PPC_rldicl, // Rotate Left Double Word Immediate then Clear Left
15280PPC_rldicr, // Rotate Left Double Word Immediate then Clear Right
15281PPC_rldimi, // Rotate Left Double Word Immediate then Mask Insert
15282PPC_rlwimi, // Rotate Left Word Immediate then Mask Insert
15283PPC_rlwinm, // Rotate Left Word Immediate then AND with Mask
15284PPC_rlwnm, // Rotate Left Word then AND with Mask
15285PPC_sc, // System Call
15286PPC_slbia, // SLB Invalidate All, ISA 3.0 format
15287PPC_slbie, // SLB Invalidate Entry
15288PPC_sld, // Shift Left Double Word
15289PPC_slw, // Shift Left Word
15290PPC_srad, // Shift Right Algebraic Double Word
15291PPC_sradi, // Shift Right Algebraic Double Word Immediate
15292PPC_sraw, // Shift Right Algebraic Word
15293PPC_srawi, // Shift Right Algebraic Word Immediate
15294PPC_srd, // Shift Right Double Word
15295PPC_srw, // Shift Right Word
15296PPC_stb, // Store Byte
15297PPC_stbu, // Store Byte with Update
15298PPC_stbux, // Store Byte with Update Indexed
15299PPC_stbx, // Store Byte Indexed
15300PPC_std, // Store Double Word
15301PPC_stdcx, // Store Double Word Conditional Indexed
15302PPC_stdu, // Store Double Word with Update
15303PPC_stdux, // Store Double Word with Update Indexed
15304PPC_stdx, // Store Double Word Indexed
15305PPC_stfd, // Store Floating-Point Double-Precision
15306PPC_stfdu, // Store Floating-Point Double-Precision wiht Update
15307PPC_stfdux, // Store Floating-Point Double-Precision wiht Update Indexed
15308PPC_stfdx, // Store Floating-Point Double-Precision Indexed
15309PPC_stfiwx, // Store Floating-Point as Integer Word Indexed
15310PPC_stfs, // Store Floating-Point Single-Precision
15311PPC_stfsu, // Store Floating-Point Single-Precision with Update
15312PPC_stfsux, // Store Floating-Point Single-Precision with Update Indexed
15313PPC_stfsx, // Store Floating-Point Single-Precision Indexed
15314PPC_sth, // Store Half Word
15315PPC_sthbrx, // Store Half Word Byte-Reverse Indexed
15316PPC_sthu, // Store Half Word with Update
15317PPC_sthux, // Store Half Word with Update Indexed
15318PPC_sthx, // Store Half Word Indexed
15319PPC_stmw, // Store Multiple Word
15320PPC_stswi, // Store String Word Immediate
15321PPC_stswx, // Store String Word Indexed
15322PPC_stw, // Store Word
15323PPC_stwbrx, // Store Word Byte-Reverse Indexed
15324PPC_stwcx, // Store Word Conditional Indexed
15325PPC_stwu, // Store Word with Update
15326PPC_stwux, // Store Word with Update Indexed
15327PPC_stwx, // Store Word Indexed
15328PPC_subf, // Subtract from
15329PPC_subfc, // Subtract from Carrying
15330PPC_subfe, // Subtract from Extended
15331PPC_subfic, // Subtract from Immediate Carrying
15332PPC_subfme, // Subtract from Minus One Extended
15333PPC_subfze, // Subtract from Zero Extended
15334PPC_sync, // Synchronize
15335PPC_td, // Trap Double Word
15336PPC_tdi, // Trap Double Word Immediate
15337PPC_tlbia, // TLB Invalidate All
15338PPC_tlbie, // TLB Invalidate Entry, ISA 3.0 format
15339PPC_tlbsync, // TLB Synchronize
15340PPC_tw, // Trap Word
15341PPC_twi, // Trap Word Immediate
15342PPC_xor, // XOR
15343PPC_xori, // XOR Immediate
15344PPC_xoris, // XOR Immediate Shifted
15345
15347
15348//
15349// Simplified mnemonics
15350//
15351
15352PPC_cmpwi, // Compare Word Immediate
15353PPC_cmpw, // Compare Word
15354PPC_cmplwi, // Compare Logical Word Immediate
15355PPC_cmplw, // Compare Logical Word
15356PPC_cmpdi, // Compare Double Word Immediate
15357PPC_cmpd, // Compare Double Word
15358PPC_cmpldi, // Compare Logical Double Word Immediate
15359PPC_cmpld, // Compare Logical Double Word
15360
15361PPC_trap, // Trap Word Unconditionally
15362// "trapd" seems like a bug; no such mnemonic appears to exist as just plain
15363// "trap" is used regardless of word/doubleword, but we have to leave it here
15364// to not mess up existing databases
15365PPC_trapd, // Trap Double Word Unconditionally
15366PPC_twlgt, // Trap Word if Logically Greater Than
15367PPC_twllt, // Trap Word if Logically Less Than
15368PPC_tweq, // Trap Word if Equal
15369PPC_twlge, // Trap Word if Logically Greater Than or Equal
15370PPC_twlle, // Trap Word if Logically Less Than or Equal
15371PPC_twgt, // Trap Word if Greater Than
15372PPC_twge, // Trap Word if Greater Than or Equal
15373PPC_twlt, // Trap Word if Less Than
15374PPC_twle, // Trap Word if Less Than or Equal
15375PPC_twne, // Trap Word if Not Equal
15376PPC_twlgti, // Trap Word Immediate if Logically Greater Than
15377PPC_twllti, // Trap Word Immediate if Logically Less Than
15378PPC_tweqi, // Trap Word Immediate if Equal
15379PPC_twlgei, // Trap Word Immediate if Logically Greater Than or Equal
15380PPC_twllei, // Trap Word Immediate if Logically Less Than or Equal
15381PPC_twgti, // Trap Word Immediate if Greater Than
15382PPC_twgei, // Trap Word Immediate if Greater Than or Equal
15383PPC_twlti, // Trap Word Immediate if Less Than
15384PPC_twlei, // Trap Word Immediate if Less Than or Equal
15385PPC_twnei, // Trap Word Immediate if Not Equal
15386PPC_tdlgt, // Trap Double Word if Logically Greater Than
15387PPC_tdllt, // Trap Double Word if Logically Less Than
15388PPC_tdeq, // Trap Double Word if Equal
15389PPC_tdlge, // Trap Double Word if Logically Greater Than or Equal
15390PPC_tdlle, // Trap Double Word if Logically Less Than or Equal
15391PPC_tdgt, // Trap Double Word if Greater Than
15392PPC_tdge, // Trap Double Word if Greater Than or Equal
15393PPC_tdlt, // Trap Double Word if Less Than
15394PPC_tdle, // Trap Double Word if Less Than or Equal
15395PPC_tdne, // Trap Double Word if Not Equal
15396PPC_tdlgti, // Trap Double Word Immediate if Logically Greater Than
15397PPC_tdllti, // Trap Double Word Immediate if Logically Less Than
15398PPC_tdeqi, // Trap Double Word Immediate if Equal
15399PPC_tdlgei, // Trap Double Word Immediate if Logically Greater Than or Equal
15400PPC_tdllei, // Trap Double Word Immediate if Logically Less Than or Equal
15401PPC_tdgti, // Trap Double Word Immediate if Greater Than
15402PPC_tdgei, // Trap Double Word Immediate if Greater Than or Equal
15403PPC_tdlti, // Trap Double Word Immediate if Less Than
15404PPC_tdlei, // Trap Double Word Immediate if Less Than or Equal
15405PPC_tdnei, // Trap Double Word Immediate if Not Equal
15406// all trap mnemonics are covered as of Power ISA 2.07; t[dw]nl*, t[dw]lnl*,
15407// and t[dw]lng* are intentionally missing since they are redundant. in other
15408// words, the assembler supports (e.g.) both "logically less than or equal"
15409// (tdlei) in addition to "logically not greater than" (tdlngi)--a disassembler
15410// need not support both
15411
15412PPC_nop, // No Operation
15413PPC_not, // Complement Register
15414PPC_mr, // Move Register
15415
15416PPC_subi, // Subtract Immediate
15417PPC_subic, // Subtract Immediate Carrying
15418PPC_subis, // Subtract Immediate Shifted
15419PPC_li, // Load Immediate
15420PPC_lis, // Load Immediate Shifted
15421
15422PPC_crset, // Condition Register Set
15423PPC_crnot, // Condition Register NOT
15424PPC_crmove, // Condition Register Move
15425PPC_crclr, // Condition Register Clear
15426
15427PPC_mtxer, // Move to integer unit exception register
15428PPC_mtlr, // Move to link register
15429PPC_mtctr, // Move to count register
15430PPC_mtdsisr, // Move to DAE/source instruction service register
15431PPC_mtdar, // Move to data address register
15432PPC_mtdec, // Move to decrementer register
15433PPC_mtsrr0, // Move to status save/restore register 0
15434PPC_mtsrr1, // Move to status save/restore register 1
15435PPC_mtsprg0, // Move to general special purpose register 0
15436PPC_mtsprg1, // Move to general special purpose register 1
15437PPC_mtsprg2, // Move to general special purpose register 2
15438PPC_mtsprg3, // Move to general special purpose register 3
15439PPC_mttbl, // Move to time base register (lower)
15440PPC_mttbu, // Move to time base register (upper)
15441PPC_mfxer, // Move from integer unit exception register
15442PPC_mflr, // Move from link register
15443PPC_mfctr, // Move from count register
15444PPC_mfdsisr, // Move from DAE/source instruction service register
15445PPC_mfdar, // Move from data address register
15446PPC_mfdec, // Move from decrementer register
15447PPC_mfsrr0, // Move from status save/restore register 0
15448PPC_mfsrr1, // Move from status save/restore register 1
15449PPC_mfsprg0, // Move from general special purpose register 0
15450PPC_mfsprg1, // Move from general special purpose register 1
15451PPC_mfsprg2, // Move from general special purpose register 2
15452PPC_mfsprg3, // Move from general special purpose register 3
15453PPC_mftbl, // Move from time base register (lower)
15454PPC_mftbu, // Move from time base register (upper)
15455PPC_mfpvr, // Move from processor version register
15456
15457// suffixes:
15458// lr - goto lr
15459// ctr - goto ctr
15460// l - update lr
15461// a - absolute
15462
15463// branch forms not listed here or elsewhere in the file (e.g. bltlr) are
15464// being handled by emitting extra characters when printing the instructions
15465// instead of having separate enums
15466
15467PPC_balways, // Branch unconditionally
15468PPC_bt, // Branch if true
15469PPC_bf, // Branch if false
15470PPC_bdnz, // CTR--; branch if CTR non-zero
15471PPC_bdnzt, // CTR--; branch if CTR non-zero and condition is true
15472PPC_bdnzf, // CTR--; branch if CTR non-zero and condition is false
15473PPC_bdz, // CTR--; branch if CTR zero
15474PPC_bdzt, // CTR--; branch if CTR zero and condition is true
15475PPC_bdzf, // CTR--; branch if CTR zero and condition is false
15476
15477PPC_blt, // Branch if less than
15478PPC_ble, // Branch if less than or equal
15479PPC_beq, // Branch if equal
15480PPC_bge, // Branch if greater than or equal
15481PPC_bgt, // Branch if greater than
15482PPC_bne, // Branch if not equal
15483PPC_bso, // Branch if summary overflow
15484PPC_bns, // Branch if not summary overflow
15485// bun and bnu are intentionally missing from this list; they are handled by
15486// bso/bns (this is the result of historical differences between POWER and PPC
15487// mnemonics)
15488
15489PPC_extlwi, // Extract and Left Justify Immediate
15490PPC_extrwi, // Extract and Right Justify Immediate
15491PPC_inslwi, // Insert from Left Immediate
15492PPC_insrwi, // Insert from Right Immediate
15493PPC_rotlwi, // Rotate Left Immediate
15494PPC_rotrwi, // Rotate Right Immediate
15495PPC_rotlw, // Rotate Left
15496PPC_slwi, // Shift Left Immediate
15497PPC_srwi, // Shift Right Immediate
15498PPC_clrlwi, // Clear Left Immediate
15499PPC_clrrwi, // Clear Right Immediate
15500PPC_clrlslwi, // Clear Left and Shift Left Immediate
15501
15502//
15503// PowerPC Embedded Controller Instructions
15504//
15505
15506PPC_dccci, // Data cache congruence class invalidate (p.438-439)
15507PPC_dcread, // Data cache read (p.440-441)
15508PPC_icbt, // Instruction cache block touch (p.450-451)
15509PPC_iccci, // Instruction cache congruence class invalidate (p.452-453)
15510PPC_icread, // Instruction cache read (p.454-455)
15511PPC_mfdcr, // Move from device control register (p.484-485)
15512PPC_mtdcr, // Move to device control register (p.491-492)
15513PPC_rfci, // Return from critical interrupt (p.507)
15514PPC_tlbre, // TLB read entry (p.548-549)
15515PPC_tlbsx, // TLB search indexed (p.550)
15516PPC_tlbwe, // TLB write entry (p.552-553)
15517PPC_wrtee, // Write external enable (p.560)
15518PPC_wrteei, // Write external enable immediate (p.561)
15519
15520//
15521// New PowerPC instructions
15522//
15523
15524PPC_abs, // Absolute
15525PPC_clcs, // Cache Lines Compute Size
15526PPC_clf, // Cache Line Flush
15527PPC_cli, // Cache Line Invalidate
15528PPC_dclst, // Data Cache Line Store
15529PPC_div, // Divide
15530PPC_divs, // Divide Short
15531PPC_doz, // Different Or Zero
15532PPC_dozi, // Different Or Zero Immediate
15533PPC_frsqrtes, // Floating Reciprocal Square Root Estimate Single
15534PPC_hrfid, // Hypervisor Return from Interrupt Doubleword
15535PPC_lscbx, // Load String And Compare Byte Indexed
15536PPC_maskg, // Mask Generate
15537PPC_maskir, // Mask Insert From Register
15538PPC_mfsri, // Move From Segment Register Indirect
15539PPC_mul, // Multiply
15540PPC_nabs, // Negative Absolute
15541PPC_popcntb, // Population Count Bytes
15542PPC_rac, // Real Address Compute
15543PPC_rfsvc, // Return From SVC, obsolete, see ana.cpp
15544PPC_rlmi, // Rotate Left Then Mask Insert
15545PPC_rrib, // Rotate Right And Insert Bit
15546PPC_slbmfee, // SLB Move From Entry ESID
15547PPC_slbmfev, // SLB Move From Entry VSID
15548PPC_slbmte, // SLB Move To Entry
15549PPC_sle, // Shift Left Extended
15550PPC_sleq, // Shift Left Extended With MQ
15551PPC_sliq, // Shift Left Immediate With MQ
15552PPC_slliq, // Shift Left Long Immediate With MQ
15553PPC_sllq, // Shift Left Long With MQ
15554PPC_slq, // Shift Left With MQ
15555PPC_sraiq, // Shift Right Algebraic Immediate With MQ
15556PPC_sraq, // Shift Right Algebraic With MQ
15557PPC_sre, // Shift Right Extended
15558PPC_srea, // Shift Right Extended Algebraic
15559PPC_sreq, // Shift Right Extended With MQ
15560PPC_sriq, // Shift Right Immediate With MQ
15561PPC_srliq, // Shift Right Long Immediate With MQ
15562PPC_srlq, // Shift Right Long With MQ
15563PPC_srq, // Shift Right With MQ
15564
15565// New instructions
15566
15567PPC_mtocrf, // Move To One Condition Register Field
15568PPC_mfocrf, // Move From One Condition Register Field
15569
15570// Freescale e200z6 instructions
15571PPC_isel, // Integer Select
15572PPC_isellt, // Integer Select Less Than
15573PPC_iselgt, // Integer Select Greater Than
15574PPC_iseleq, // Integer Select Equal
15575PPC_dcblc, // Data Cache Block Lock Clear
15576PPC_dcbtls, // Data Cache Block Touch and Lock Set
15577PPC_dcbtstls, // Data Cache Block Touch for Store and Lock Set
15578PPC_icblc, // Instruction Cache Block Lock Clear
15579PPC_icbtls, // Instruction Cache Block Touch and Lock Set
15580PPC_tlbivax, // TLB Invalidate Virtual Address Indexed
15581PPC_rfdi, // Return from Debug Interrupt
15582
15583// Freescale MPC603e instructions (G2 core)
15584
15585PPC_tlbld, // Load Data TLB Entry
15586PPC_tlbli, // Load Instruction TLB Entry
15587
15588// SPE (Signal Processing Engine) instructions
15589
15590PPC_brinc, // Bit Reversed Increment
15591PPC_evabs, // Vector Absolute Value
15592PPC_evaddiw, // Vector Add Immediate Word
15593PPC_evaddsmiaaw, // Vector Add Signed, Modulo, Integer to Accumulator Word
15594PPC_evaddssiaaw, // Vector Add Signed, Saturate, Integer to Accumulator Word
15595PPC_evaddumiaaw, // Vector Add Unsigned, Modulo, Integer to Accumulator Word
15596PPC_evaddusiaaw, // Vector Add Unsigned, Saturate, Integer to Accumulator Word
15597PPC_evaddw, // Vector Add Word
15598PPC_evand, // Vector AND
15599PPC_evandc, // Vector AND with Complement
15600PPC_evcmpeq, // Vector Compare Equal
15601PPC_evcmpgts, // Vector Compare Greater Than Signed
15602PPC_evcmpgtu, // Vector Compare Greater Than Unsigned
15603PPC_evcmplts, // Vector Compare Less Than Signed
15604PPC_evcmpltu, // Vector Compare Less Than Unsigned
15605PPC_evcntlsw, // Vector Count Leading Signed Bits Word
15606PPC_evcntlzw, // Vector Count Leading Zeros Word
15607PPC_evdivws, // Vector Divide Word Signed
15608PPC_evdivwu, // Vector Divide Word Unsigned
15609PPC_eveqv, // Vector Equivalent
15610PPC_evextsb, // Vector Extend Sign Byte
15611PPC_evextsh, // Vector Extend Sign Halfword
15612PPC_evldd, // Vector Load Double Word into Double Word
15613PPC_evlddx, // Vector Load Double Word into Double Word Indexed
15614PPC_evldh, // Vector Load Double into Four Halfwords
15615PPC_evldhx, // Vector Load Double into Four Halfwords Indexed
15616PPC_evldw, // Vector Load Double into Two Words
15617PPC_evldwx, // Vector Load Double into Two Words Indexed
15618PPC_evlhhesplat, // Vector Load Halfword into Halfwords Even and Splat
15619PPC_evlhhesplatx, // Vector Load Halfword into Halfwords Even and Splat Indexed
15620PPC_evlhhossplat, // Vector Load Halfword into Halfword Odd Signed and Splat
15621PPC_evlhhossplatx, // Vector Load Halfword into Halfword Odd Signed and Splat Indexed
15622PPC_evlhhousplat, // Vector Load Halfword into Halfword Odd Unsigned and Splat
15623PPC_evlhhousplatx, // Vector Load Halfword into Halfword Odd Unsigned and Splat Indexed
15624PPC_evlwhe, // Vector Load Word into Two Halfwords Even
15625PPC_evlwhex, // Vector Load Word into Two Halfwords Even Indexed
15626PPC_evlwhos, // Vector Load Word into Two Halfwords Odd Signed (with sign extension)
15627PPC_evlwhosx, // Vector Load Word into Two Halfwords Odd Signed Indexed (with sign extension)
15628PPC_evlwhou, // Vector Load Word into Two Halfwords Odd Unsigned (zero-extended)
15629PPC_evlwhoux, // Vector Load Word into Two Halfwords Odd Unsigned Indexed (zero-extended)
15630PPC_evlwhsplat, // Vector Load Word into Two Halfwords and Splat
15631PPC_evlwhsplatx, // Vector Load Word into Two Halfwords and Splat Indexed
15632PPC_evlwwsplat, // Vector Load Word into Word and Splat
15633PPC_evlwwsplatx, // Vector Load Word into Word and Splat Indexed
15634PPC_evmergehi, // Vector Merge High
15635PPC_evmergehilo, // Vector Merge High/Low
15636PPC_evmergelo, // Vector Merge Low
15637PPC_evmergelohi, // Vector Merge Low/High
15638PPC_evmhegsmfaa, // Vector Multiply Halfwords, Even, Guarded, Signed, Modulo, Fractional and Accumulate
15639PPC_evmhegsmfan, // Vector Multiply Halfwords, Even, Guarded, Signed, Modulo, Fractional and Accumulate Negative
15640PPC_evmhegsmiaa, // Vector Multiply Halfwords, Even, Guarded, Signed, Modulo, Integer and Accumulate
15641PPC_evmhegsmian, // Vector Multiply Halfwords, Even, Guarded, Signed, Modulo, Integer and Accumulate Negative
15642PPC_evmhegumiaa, // Vector Multiply Halfwords, Even, Guarded, Unsigned, Modulo, Integer and Accumulate
15643PPC_evmhegumian, // Vector Multiply Halfwords, Even, Guarded, Unsigned, Modulo, Integer and Accumulate Negative
15644PPC_evmhesmf, // Vector Multiply Halfwords, Even, Signed, Modulo, Fractional
15645PPC_evmhesmfa, // Vector Multiply Halfwords, Even, Signed, Modulo, Fractional to Accumulator
15646PPC_evmhesmfaaw, // Vector Multiply Halfwords, Even, Signed, Modulo, Fractional and Accumulate into Words
15647PPC_evmhesmfanw, // Vector Multiply Halfwords, Even, Signed, Modulo, Fractional and Accumulate Negative into Words
15648PPC_evmhesmi, // Vector Multiply Halfwords, Even, Signed, Modulo, Integer
15649PPC_evmhesmia, // Vector Multiply Halfwords, Even, Signed, Modulo, Integer to Accumulator
15650PPC_evmhesmiaaw, // Vector Multiply Halfwords, Even, Signed, Modulo, Integer and Accumulate into Words
15651PPC_evmhesmianw, // Vector Multiply Halfwords, Even, Signed, Modulo, Integer and Accumulate Negative into Words
15652PPC_evmhessf, // Vector Multiply Halfwords, Even, Signed, Saturate, Fractional
15653PPC_evmhessfa, // Vector Multiply Halfwords, Even, Signed, Saturate, Fractional to Accumulator
15654PPC_evmhessfaaw, // Vector Multiply Halfwords, Even, Signed, Saturate, Fractional and Accumulate into Words
15655PPC_evmhessfanw, // Vector Multiply Halfwords, Even, Signed, Saturate, Fractional and Accumulate Negative into Words
15656PPC_evmhessiaaw, // Vector Multiply Halfwords, Even, Signed, Saturate, Integer and Accumulate into Words
15657PPC_evmhessianw, // Vector Multiply Halfwords, Even, Signed, Saturate, Integer and Accumulate Negative into Words
15658PPC_evmheumi, // Vector Multiply Halfwords, Even, Unsigned, Modulo, Integer
15659PPC_evmheumia, // Vector Multiply Halfwords, Even, Unsigned, Modulo, Integer to Accumulator
15660PPC_evmheumiaaw, // Vector Multiply Halfwords, Even, Unsigned, Modulo, Integer and Accumulate into Words
15661PPC_evmheumianw, // Vector Multiply Halfwords, Even, Unsigned, Modulo, Integer and Accumulate Negative into Words
15662PPC_evmheusiaaw, // Vector Multiply Halfwords, Even, Unsigned, Saturate, Integer and Accumulate into Words
15663PPC_evmheusianw, // Vector Multiply Halfwords, Even, Unsigned, Saturate, Integer and Accumulate Negative into Words
15664PPC_evmhogsmfaa, // Vector Multiply Halfwords, Odd, Guarded, Signed, Modulo, Fractional and Accumulate
15665PPC_evmhogsmfan, // Vector Multiply Halfwords, Odd, Guarded, Signed, Modulo, Fractional and Accumulate Negative
15666PPC_evmhogsmiaa, // Vector Multiply Halfwords, Odd, Guarded, Signed, Modulo, Integer and Accumulate
15667PPC_evmhogsmian, // Vector Multiply Halfwords, Odd, Guarded, Signed, Modulo, Integer and Accumulate Negative
15668PPC_evmhogumiaa, // Vector Multiply Halfwords, Odd, Guarded, Unsigned, Modulo, Integer and Accumulate
15669PPC_evmhogumian, // Vector Multiply Halfwords, Odd, Guarded, Unsigned, Modulo, Integer and Accumulate Negative
15670PPC_evmhosmf, // Vector Multiply Halfwords, Odd, Signed, Modulo, Fractional
15671PPC_evmhosmfa, // Vector Multiply Halfwords, Odd, Signed, Modulo, Fractional to Accumulator
15672PPC_evmhosmfaaw, // Vector Multiply Halfwords, Odd, Signed, Modulo, Fractional and Accumulate into Words
15673PPC_evmhosmfanw, // Vector Multiply Halfwords, Odd, Signed, Modulo, Fractional and Accumulate Negative into Words
15674PPC_evmhosmi, // Vector Multiply Halfwords, Odd, Signed, Modulo, Integer
15675PPC_evmhosmia, // Vector Multiply Halfwords, Odd, Signed, Modulo, Integer to Accumulator
15676PPC_evmhosmiaaw, // Vector Multiply Halfwords, Odd, Signed, Modulo, Integer and Accumulate into Words
15677PPC_evmhosmianw, // Vector Multiply Halfwords, Odd, Signed, Modulo, Integer and Accumulate Negative into Words
15678PPC_evmhossf, // Vector Multiply Halfwords, Odd, Signed, Saturate, Fractional
15679PPC_evmhossfa, // Vector Multiply Halfwords, Odd, Signed, Saturate, Fractional to Accumulator
15680PPC_evmhossfaaw, // Vector Multiply Halfwords, Odd, Signed, Saturate, Fractional and Accumulate into Words
15681PPC_evmhossfanw, // Vector Multiply Halfwords, Odd, Signed, Saturate, Fractional and Accumulate Negative into Words
15682PPC_evmhossiaaw, // Vector Multiply Halfwords, Odd, Signed, Saturate, Integer and Accumulate into Words
15683PPC_evmhossianw, // Vector Multiply Halfwords, Odd, Signed, Saturate, Integer and Accumulate Negative into Words
15684PPC_evmhoumi, // Vector Multiply Halfwords, Odd, Unsigned, Modulo, Integer
15685PPC_evmhoumia, // Vector Multiply Halfwords, Odd, Unsigned, Modulo, Integer to Accumulator
15686PPC_evmhoumiaaw, // Vector Multiply Halfwords, Odd, Unsigned, Modulo, Integer and Accumulate into Words
15687PPC_evmhoumianw, // Vector Multiply Halfwords, Odd, Unsigned, Modulo, Integer and Accumulate Negative into Words
15688PPC_evmhousiaaw, // Vector Multiply Halfwords, Odd, Unsigned, Saturate, Integer and Accumulate into Words
15689PPC_evmhousianw, // Vector Multiply Halfwords, Odd, Unsigned, Saturate, Integer and Accumulate Negative into Words
15690PPC_evmra, // Initialize Accumulator
15691PPC_evmwhsmf, // Vector Multiply Word High Signed, Modulo, Fractional
15692PPC_evmwhsmfa, // Vector Multiply Word High Signed, Modulo, Fractional to Accumulator
15693PPC_evmwhsmi, // Vector Multiply Word High Signed, Modulo, Integer
15694PPC_evmwhsmia, // Vector Multiply Word High Signed, Modulo, Integer to Accumulator
15695PPC_evmwhssf, // Vector Multiply Word High Signed, Saturate, Fractional
15696PPC_evmwhssfa, // Vector Multiply Word High Signed, Saturate, Fractional to Accumulator
15697PPC_evmwhumi, // Vector Multiply Word High Unsigned, Modulo, Integer
15698PPC_evmwhumia, // Vector Multiply Word High Unsigned, Modulo, Integer to Accumulator
15699PPC_evmwlsmiaaw, // Vector Multiply Word Low Signed, Modulo, Integer and Accumulate into Words
15700PPC_evmwlsmianw, // Vector Multiply Word Low Signed, Modulo, Integer and Accumulate Negative in Words
15701PPC_evmwlssiaaw, // Vector Multiply Word Low Signed, Saturate, Integer and Accumulate into Words
15702PPC_evmwlssianw, // Vector Multiply Word Low Signed, Saturate, Integer and Accumulate Negative in Words
15703PPC_evmwlumi, // Vector Multiply Word Low Unsigned, Modulo, Integer
15704PPC_evmwlumia, // Vector Multiply Word Low Unsigned, Modulo, Integer to Accumulator
15705PPC_evmwlumiaaw, // Vector Multiply Word Low Unsigned, Modulo, Integer and Accumulate into Words
15706PPC_evmwlumianw, // Vector Multiply Word Low Unsigned, Modulo, Integer and Accumulate Negative in Words
15707PPC_evmwlusiaaw, // Vector Multiply Word Low Unsigned, Saturate, Integer and Accumulate into Words
15708PPC_evmwlusianw, // Vector Multiply Word Low Unsigned, Saturate, Integer and Accumulate Negative in Words
15709PPC_evmwsmf, // Vector Multiply Word Signed, Modulo, Fractional
15710PPC_evmwsmfa, // Vector Multiply Word Signed, Modulo, Fractional to Accumulator
15711PPC_evmwsmfaa, // Vector Multiply Word Signed, Modulo, Fractional and Accumulate
15712PPC_evmwsmfan, // Vector Multiply Word Signed, Modulo, Fractional and Accumulate Negative
15713PPC_evmwsmi, // Vector Multiply Word Signed, Modulo, Integer
15714PPC_evmwsmia, // Vector Multiply Word Signed, Modulo, Integer to Accumulator
15715PPC_evmwsmiaa, // Vector Multiply Word Signed, Modulo, Integer and Accumulate
15716PPC_evmwsmian, // Vector Multiply Word Signed, Modulo, Integer and Accumulate Negative
15717PPC_evmwssf, // Vector Multiply Word Signed, Saturate, Fractional
15718PPC_evmwssfa, // Vector Multiply Word Signed, Saturate, Fractional to Accumulator
15719PPC_evmwssfaa, // Vector Multiply Word Signed, Saturate, Fractional and Accumulate
15720PPC_evmwssfan, // Vector Multiply Word Signed, Saturate, Fractional and Accumulate Negative
15721PPC_evmwumi, // Vector Multiply Word Unsigned, Modulo, Integer
15722PPC_evmwumia, // Vector Multiply Word Unsigned, Modulo, Integer to Accumulator
15723PPC_evmwumiaa, // Vector Multiply Word Unsigned, Modulo, Integer and Accumulate
15724PPC_evmwumian, // Vector Multiply Word Unsigned, Modulo, Integer and Accumulate Negative
15725PPC_evnand, // Vector NAND
15726PPC_evneg, // Vector Negate
15727PPC_evnor, // Vector NOR
15728PPC_evor, // Vector OR
15729PPC_evorc, // Vector OR with Complement Form
15730PPC_evrlw, // Vector Rotate Left Word
15731PPC_evrlwi, // Vector Rotate Left Word Immediate
15732PPC_evrndw, // Vector Round Word
15733PPC_evsel, // Vector Select
15734PPC_evslw, // Vector Shift Left Word
15735PPC_evslwi, // Vector Shift Left Word Immediate
15736PPC_evsplatfi, // Vector Splat Fractional Immediate
15737PPC_evsplati, // Vector Splat Immediate
15738PPC_evsrwis, // Vector Shift Right Word Immediate Signed
15739PPC_evsrwiu, // Vector Shift Right Word Immediate Unsigned
15740PPC_evsrws, // Vector Shift Right Word Signed
15741PPC_evsrwu, // Vector Shift Right Word Unsigned
15742PPC_evstdd, // Vector Store Double of Double
15743PPC_evstddx, // Vector Store Double of Double Indexed
15744PPC_evstdh, // Vector Store Double of Four Halfwords
15745PPC_evstdhx, // Vector Store Double of Four Halfwords Indexed
15746PPC_evstdw, // Vector Store Double of Two Words
15747PPC_evstdwx, // Vector Store Double of Two Words Indexed
15748PPC_evstwhe, // Vector Store Word of Two Halfwords from Even
15749PPC_evstwhex, // Vector Store Word of Two Halfwords from Even Indexed
15750PPC_evstwho, // Vector Store Word of Two Halfwords from Odd
15751PPC_evstwhox, // Vector Store Word of Two Halfwords from Odd Indexed
15752PPC_evstwwe, // Vector Store Word of Word from Even
15753PPC_evstwwex, // Vector Store Word of Word from Even Indexed
15754PPC_evstwwo, // Vector Store Word of Word from Odd
15755PPC_evstwwox, // Vector Store Word of Word from Odd Indexed
15756PPC_evsubfsmiaaw, // Vector Subtract Signed, Modulo, Integer to Accumulator Word
15757PPC_evsubfssiaaw, // Vector Subtract Signed, Saturate, Integer to Accumulator Word
15758PPC_evsubfumiaaw, // Vector Subtract Unsigned, Modulo, Integer to Accumulator Word
15759PPC_evsubfusiaaw, // Vector Subtract Unsigned, Saturate, Integer to Accumulator Word
15760PPC_evsubfw, // Vector Subtract from Word
15761PPC_evsubifw, // Vector Subtract Immediate from Word
15762PPC_evxor, // Vector XOR
15763
15764// SPE.Embedded Float Scalar Double
15765
15766PPC_efdabs, // Floating-Point Double-Precision Absolute Value
15767PPC_efdadd, // Floating-Point Double-Precision Add
15768PPC_efdcfs, // Floating-Point Double-Precision Convert from Single-Precision
15769PPC_efdcfsf, // Convert Floating-Point Double-Precision from Signed Fraction
15770PPC_efdcfsi, // Convert Floating-Point Double-Precision from Signed Integer
15771PPC_efdcfsid, // Convert Floating-Point Double-Precision from Signed Integer Doubleword
15772PPC_efdcfuf, // Convert Floating-Point Double-Precision from Unsigned Fraction
15773PPC_efdcfui, // Convert Floating-Point Double-Precision from Unsigned Integer
15774PPC_efdcfuid, // Convert Floating-Point Double-Precision from Unsigned Integer Doubleword
15775PPC_efdcmpeq, // Floating-Point Double-Precision Compare Equal
15776PPC_efdcmpgt, // Floating-Point Double-Precision Compare Greater Than
15777PPC_efdcmplt, // Floating-Point Double-Precision Compare Less Than
15778PPC_efdctsf, // Convert Floating-Point Double-Precision to Signed Fraction
15779PPC_efdctsi, // Convert Floating-Point Double-Precision to Signed Integer
15780PPC_efdctsidz, // Convert Floating-Point Double-Precision to Signed Integer Doubleword with Round toward Zero
15781PPC_efdctsiz, // Convert Floating-Point Double-Precision to Signed Integer with Round toward Zero
15782PPC_efdctuf, // Convert Floating-Point Double-Precision to Unsigned Fraction
15783PPC_efdctui, // Convert Floating-Point Double-Precision to Unsigned Integer
15784PPC_efdctuidz, // Convert Floating-Point Double-Precision to Unsigned Integer Doubleword with Round toward Zero
15785PPC_efdctuiz, // Convert Floating-Point Double-Precision to Unsigned Integer with Round toward Zero
15786PPC_efddiv, // Floating-Point Double-Precision Divide
15787PPC_efdmul, // Floating-Point Double-Precision Multiply
15788PPC_efdnabs, // Floating-Point Double-Precision Negative Absolute Value
15789PPC_efdneg, // Floating-Point Double-Precision Negate
15790PPC_efdsub, // Floating-Point Double-Precision Subtract
15791PPC_efdtsteq, // Floating-Point Double-Precision Test Equal
15792PPC_efdtstgt, // Floating-Point Double-Precision Test Greater Than
15793PPC_efdtstlt, // Floating-Point Double-Precision Test Less Than
15794PPC_efscfd, // Floating-Point Single-Precision Convert from Double-Precision
15795
15796// SPE.Embedded Float Scalar Single
15797
15798PPC_efsabs, // Floating-Point Single-Precision Absolute Value
15799PPC_efsadd, // Floating-Point Single-Precision Add
15800PPC_efscfsf, // Convert Floating-Point Single-Precision from Signed Fraction
15801PPC_efscfsi, // Convert Floating-Point Single-Precision from Signed Integer
15802PPC_efscfuf, // Convert Floating-Point Single-Precision from Unsigned Fraction
15803PPC_efscfui, // Convert Floating-Point Single-Precision from Unsigned Integer
15804PPC_efscmpeq, // Floating-Point Single-Precision Compare Equal
15805PPC_efscmpgt, // Floating-Point Single-Precision Compare Greater Than
15806PPC_efscmplt, // Floating-Point Single-Precision Compare Less Than
15807PPC_efsctsf, // Convert Floating-Point Single-Precision to Signed Fraction
15808PPC_efsctsi, // Convert Floating-Point Single-Precision to Signed Integer
15809PPC_efsctsiz, // Convert Floating-Point Single-Precision to Signed Integer with Round toward Zero
15810PPC_efsctuf, // Convert Floating-Point Single-Precision to Unsigned Fraction
15811PPC_efsctui, // Convert Floating-Point Single-Precision to Unsigned Integer
15812PPC_efsctuiz, // Convert Floating-Point Single-Precision to Unsigned Integer with Round toward Zero
15813PPC_efsdiv, // Floating-Point Single-Precision Divide
15814PPC_efsmul, // Floating-Point Single-Precision Multiply
15815PPC_efsnabs, // Floating-Point Single-Precision Negative Absolute Value
15816PPC_efsneg, // Floating-Point Single-Precision Negate
15817PPC_efssub, // Floating-Point Single-Precision Subtract
15818PPC_efststeq, // Floating-Point Single-Precision Test Equal
15819PPC_efststgt, // Floating-Point Single-Precision Test Greater Than
15820PPC_efststlt, // Floating-Point Single-Precision Test Less Than
15821
15822// SPE.Embedded Float Vector
15823
15824PPC_evfsabs, // Vector Floating-Point Single-Precision Absolute Value
15825PPC_evfsadd, // Vector Floating-Point Single-Precision Add
15826PPC_evfscfsf, // Vector Convert Floating-Point Single-Precision from Signed Fraction
15827PPC_evfscfsi, // Vector Convert Floating-Point Single-Precision from Signed Integer
15828PPC_evfscfuf, // Vector Convert Floating-Point Single-Precision from Unsigned Fraction
15829PPC_evfscfui, // Vector Convert Floating-Point Single-Precision from Unsigned Integer
15830PPC_evfscmpeq, // Vector Floating-Point Single-Precision Compare Equal
15831PPC_evfscmpgt, // Vector Floating-Point Single-Precision Compare Greater Than
15832PPC_evfscmplt, // Vector Floating-Point Single-Precision Compare Less Than
15833PPC_evfsctsf, // Vector Convert Floating-Point Single-Precision to Signed Fraction
15834PPC_evfsctsi, // Vector Convert Floating-Point Single-Precision to Signed Integer
15835PPC_evfsctsiz, // Vector Convert Floating-Point Single-Precision to Signed Integer with Round toward Zero
15836PPC_evfsctuf, // Vector Convert Floating-Point Single-Precision to Unsigned Fraction
15837PPC_evfsctui, // Vector Convert Floating-Point Single-Precision to Unsigned Integer
15838PPC_evfsctuiz, // Vector Convert Floating-Point Single-Precision to Unsigned Integer with Round toward Zero
15839PPC_evfsdiv, // Vector Floating-Point Single-Precision Divide
15840PPC_evfsmul, // Vector Floating-Point Single-Precision Multiply
15841PPC_evfsnabs, // Vector Floating-Point Single-Precision Negative Absolute Value
15842PPC_evfsneg, // Vector Floating-Point Single-Precision Negate
15843PPC_evfssub, // Vector Floating-Point Single-Precision Subtract
15844PPC_evfststeq, // Vector Floating-Point Single-Precision Test Equal
15845PPC_evfststgt, // Vector Floating-Point Single-Precision Test Greater Than
15846PPC_evfststlt, // Vector Floating-Point Single-Precision Test Less Than
15847
15848// Missing instructions from Power ISA 2.06
15849
15850// category: 64-bit
15851PPC_bpermd, // Bit Permute Doubleword
15852PPC_divde, // Divide Doubleword Extended
15853PPC_divdeu, // Divide Doubleword Extended Unsigned
15854PPC_ldbrx, // Load Doubleword Byte-Reverse Indexed
15855PPC_prtyd, // Parity Doubleword
15856PPC_stdbrx, // Store Doubleword Byte-Reverse Indexed
15857// category: Base
15858PPC_cmpb, // Compare Bytes
15859PPC_divwe, // Divide Word Extended
15860PPC_divweu, // Divide Word Extended Unsigned
15861PPC_lbarx, // Load Byte and Reserve Indexed
15862PPC_lharx, // Load Halfword and Reserve Indexed
15863PPC_popcntd, // Population Count Doubleword
15864PPC_popcntw, // Population Count Word
15865PPC_prtyw, // Parity Word
15866PPC_stbcx, // Store Byte Conditional Indexed
15867PPC_sthcx, // Store Halfword Conditional Indexed
15868// category: Binary Coded Decimal Assist
15869PPC_addg6s, // Add and Generate Sixes
15870PPC_cbcdtd, // Convert Binary Coded Decimal to Declets
15871PPC_cdtbcd, // Convert Declets To Binary Coded Decimal
15872// category: Decimal Floating-Point
15873PPC_dadd, // DFP Add
15874PPC_daddq, // DFP Add Quad
15875PPC_dcffix, // DFP Convert From Fixed
15876PPC_dcffixq, // DFP Convert From Fixed Quad
15877PPC_dcmpo, // DFP Compare Ordered
15878PPC_dcmpoq, // DFP Compare Ordered Quad
15879PPC_dcmpu, // DFP Compare Unordered
15880PPC_dcmpuq, // DFP Compare Unordered Quad
15881PPC_dctdp, // DFP Convert To DFP Long
15882PPC_dctfix, // DFP Convert To Fixed
15883PPC_dctfixq, // DFP Convert To Fixed Quad
15884PPC_dctqpq, // DFP Convert To DFP Extended
15885PPC_ddedpd, // DFP Decode DPD To BCD
15886PPC_ddedpdq, // DFP Decode DPD To BCD Quad
15887PPC_ddiv, // DFP Divide
15888PPC_ddivq, // DFP Divide Quad
15889PPC_denbcd, // DFP Encode BCD To DPD
15890PPC_denbcdq, // DFP Encode BCD To DPD Quad
15891PPC_diex, // DFP Insert Biased Exponent
15892PPC_diexq, // DFP Insert Biased Exponent Quad
15893PPC_dmul, // DFP Multiply
15894PPC_dmulq, // DFP Multiply Quad
15895PPC_dqua, // DFP Quantize
15896PPC_dquai, // DFP Quantize Immediate
15897PPC_dquaiq, // DFP Quantize Immediate Quad
15898PPC_dquaq, // DFP Quantize Quad
15899PPC_drdpq, // DFP Round To DFP Long
15900PPC_drintn, // DFP Round To FP Integer Without Inexact
15901PPC_drintnq, // DFP Round To FP Integer Without Inexact Quad
15902PPC_drintx, // DFP Round To FP Integer With Inexact
15903PPC_drintxq, // DFP Round To FP Integer With Inexact Quad
15904PPC_drrnd, // DFP Reround
15905PPC_drrndq, // DFP Reround Quad
15906PPC_drsp, // DFP Round To DFP Short
15907PPC_dscli, // DFP Shift Significand Left Immediate
15908PPC_dscliq, // DFP Shift Significand Left Immediate Quad
15909PPC_dscri, // DFP Shift Significand Right Immediate
15910PPC_dscriq, // DFP Shift Significand Right Immediate Quad
15911PPC_dsub, // DFP Subtract
15912PPC_dsubq, // DFP Subtract Quad
15913PPC_dtstdc, // DFP Test Data Class
15914PPC_dtstdcq, // DFP Test Data Class Quad
15915PPC_dtstdg, // DFP Test Data Group
15916PPC_dtstdgq, // DFP Test Data Group Quad
15917PPC_dtstex, // DFP Test Exponent
15918PPC_dtstexq, // DFP Test Exponent Quad
15919PPC_dtstsf, // DFP Test Significance
15920PPC_dtstsfq, // DFP Test Significance Quad
15921PPC_dxex, // DFP Extract Biased Exponent
15922PPC_dxexq, // DFP Extract Biased Exponent Quad
15923// category: Decorated Storage
15924PPC_dsn, // Decorated Storage Notify
15925PPC_lbdx, // Load Byte with Decoration Indexed
15926PPC_lddx, // Load Doubleword with Decoration Indexed
15927PPC_lfddx, // Load Floating Doubleword with Decoration Indexed
15928PPC_lhdx, // Load Halfword with Decoration Indexed
15929PPC_lwdx, // Load Word with Decoration Indexed
15930PPC_stbdx, // Store Byte with Decoration Indexed
15931PPC_stddx, // Store Doubleword with Decoration Indexed
15932PPC_stfddx, // Store Floating Doubleword with Decoration Indexed
15933PPC_sthdx, // Store Halfword with Decoration Indexed
15934PPC_stwdx, // Store Word with Decoration Indexed
15935// category: Embedded
15936PPC_mbar, // Memory Barrier
15937PPC_rfmci, // Return From Machine Check Interrupt
15938PPC_tlbilx, // TLB Invalidate Local
15939PPC_dci, // Data Cache Invalidate
15940PPC_ici, // Instruction Cache Invalidate
15941PPC_mfdcrux, // Move From Device Control Register User-mode Indexed
15942PPC_mfdcrx, // Move From Device Control Register Indexed
15943PPC_mtdcrux, // Move To Device Control Register User-mode Indexed
15944PPC_mtdcrx, // Move To Device Control Register Indexed
15945// category: Embedded.Enhanced Debug
15946PPC_dnh, // Debugger Notify Halt
15947// category: Embedded.Hypervisor
15948PPC_ehpriv, // Embedded Hypervisor Privilege
15949PPC_rfgi, // Return From Guest Interrupt
15950// category: Embedded.Processor Control
15951PPC_msgclr, // Message Clear
15952PPC_msgsnd, // Message Send
15953// category: Embedded.External PID
15954PPC_dcbfep, // Data Cache Block Flush by External PID
15955PPC_dcbstep, // Data Cache Block Store by External PID
15956PPC_dcbtep, // Data Cache Block Touch by External PID
15957PPC_dcbtstep, // Data Cache Block Touch for Store by External PID
15958PPC_dcbzep, // Data Cache Block set to Zero by External PID
15959PPC_evlddepx, // Vector Load Doubleword into Doubleword by External Process ID Indexed
15960PPC_evstddepx, // Vector Store Doubleword into Doubleword by External Process ID Indexed
15961PPC_icbiep, // Instruction Cache Block Invalidate by External PID
15962PPC_lbepx, // Load Byte by External Process ID Indexed
15963PPC_lfdepx, // Load Floating-Point Double by External Process ID Indexed
15964PPC_lhepx, // Load Halfword by External Process ID Indexed
15965PPC_lvepx, // Load Vector by External Process ID Indexed
15966PPC_lvepxl, // Load Vector by External Process ID Indexed LRU
15967PPC_lwepx, // Load Word by External Process ID Indexed
15968PPC_stbepx, // Store Byte by External Process ID Indexed
15969PPC_stfdepx, // Store Floating-Point Double by External Process ID Indexed
15970PPC_sthepx, // Store Halfword by External Process ID Indexed
15971PPC_stvepx, // Store Vector by External Process ID Indexed
15972PPC_stvepxl, // Store Vector by External Process ID Indexed LRU
15973PPC_stwepx, // Store Word by External Process ID Indexed
15974PPC_ldepx, // Load Doubleword by External Process ID Indexed
15975PPC_stdepx, // Store Doubleword by External Process ID Indexed
15976// category: Embedded.Performance Monitor
15977PPC_mfpmr, // Move From Performance Monitor Register
15978PPC_mtpmr, // Move To Performance Monitor Register
15979// category: Embedded.Thread Management
15980PPC_mftmr, // Move From Thread Management Register
15981PPC_mttmr, // Move To Thread Management Register
15982// category: Embedded.TLB Write Conditional
15983PPC_tlbsrx, // TLB Search and Reserve
15984// category: Floating-point
15985PPC_fcfids, // Floating Convert From Integer Doubleword Single
15986PPC_fcfidu, // Floating Convert From Integer Doubleword Unsigned
15987PPC_fcfidus, // Floating Convert From Integer Doubleword Unsigned Single
15988PPC_fctidu, // Floating Convert To Integer Doubleword Unsigned
15989PPC_fctiduz, // Floating Convert To Integer Doubleword Unsigned with round toward Zero
15990PPC_fctiwu, // Floating Convert To Integer Word Unsigned
15991PPC_fctiwuz, // Floating Convert To Integer Word Unsigned with round toward Zero
15992PPC_ftdiv, // Floating Test for software Divide
15993PPC_ftsqrt, // Floating Test for software Square Root
15994PPC_lfiwax, // Load Floating-Point as Integer Word Algebraic Indexed
15995PPC_lfiwzx, // Load Floating-Point as Integer Word and Zero Indexed
15996PPC_lfdp, // Load Floating-Point Double Pair
15997PPC_lfdpx, // Load Floating-Point Double Pair Indexed
15998PPC_stfdp, // Store Floating-Point Double Pair
15999PPC_stfdpx, // Store Floating-Point Double Pair Indexed
16000PPC_fcpsgn, // Floating Copy Sign
16001PPC_fre, // Floating Reciprocal Estimate
16002PPC_frim, // Floating Round to Integer Minus
16003PPC_frin, // Floating Round to Integer Nearest
16004PPC_frip, // Floating Round to Integer Plus
16005PPC_friz, // Floating Round to Integer Toward Zero
16006// category: Legacy Integer Multiply-Accumulate
16007PPC_macchw, // Multiply Accumulate Cross Halfword to Word Modulo Signed
16008PPC_macchws, // Multiply Accumulate Cross Halfword to Word Saturate Signed
16009PPC_macchwsu, // Multiply Accumulate Cross Halfword to Word Saturate Unsigned
16010PPC_macchwu, // Multiply Accumulate Cross Halfword to Word Modulo Unsigned
16011PPC_machhw, // Multiply Accumulate High Halfword to Word Modulo Signed
16012PPC_machhws, // Multiply Accumulate High Halfword to Word Saturate Signed
16013PPC_machhwsu, // Multiply Accumulate High Halfword to Word Saturate Unsigned
16014PPC_machhwu, // Multiply Accumulate High Halfword to Word Modulo Unsigned
16015PPC_maclhw, // Multiply Accumulate Low Halfword to Word Modulo Signed
16016PPC_maclhws, // Multiply Accumulate Low Halfword to Word Saturate Signed
16017PPC_maclhwsu, // Multiply Accumulate Low Halfword to Word Saturate Unsigned
16018PPC_maclhwu, // Multiply Accumulate Low Halfword to Word Modulo Unsigned
16019PPC_mulchw, // Multiply Cross Halfword to Word Signed
16020PPC_mulchwu, // Multiply Cross Halfword to Word Unsigned
16021PPC_mulhhw, // Multiply High Halfword to Word Signed
16022PPC_mulhhwu, // Multiply High Halfword to Word Unsigned
16023PPC_mullhw, // Multiply Low Halfword to Word Signed
16024PPC_mullhwu, // Multiply Low Halfword to Word Unsigned
16025PPC_nmacchw, // Negative Multiply Accumulate Cross Halfword to Word Modulo Signed
16026PPC_nmacchws, // Negative Multiply Accumulate Cross Halfword to Word Saturate Signed
16027PPC_nmachhw, // Negative Multiply Accumulate High Halfword to Word Modulo Signed
16028PPC_nmachhws, // Negative Multiply Accumulate High Halfword to Word Saturate Signed
16029PPC_nmaclhw, // Negative Multiply Accumulate Low Halfword to Word Modulo Signed
16030PPC_nmaclhws, // Negative Multiply Accumulate Low Halfword to Word Saturate Signed
16031// category: Legacy Move Assist
16032PPC_dlmzb, // Determine Leftmost Zero Byte
16033// category: Load/Store Quadword
16034PPC_lq, // Load Quadword
16035PPC_stq, // Store Quadword
16036// category: Server
16037PPC_doze, // Doze
16038PPC_lbzcix, // Load Byte and Zero Caching Inhibited Indexed
16039PPC_ldcix, // Load Doubleword Caching Inhibited Indexed
16040PPC_lhzcix, // Load Halfword and Zero Caching Inhibited Indexed
16041PPC_lwzcix, // Load Word and Zero Caching Inhibited Indexed
16042PPC_nap, // Nap
16043PPC_rvwinkle, // Rip Van Winkle
16044PPC_slbfee, // SLB Find Entry ESID
16045PPC_sleep, // Sleep
16046PPC_stbcix, // Store Byte Caching Inhibited Indexed
16047PPC_stdcix, // Store Doubleword Caching Inhibited Indexed
16048PPC_sthcix, // Store Halfword Caching Inhibited Indexed
16049PPC_stwcix, // Store Word Caching Inhibited Indexed
16050PPC_tlbiel, // TLB Invalidate Entry Local, ISA 3.0 format
16051// category: Vector
16052PPC_lvebx, // Load Vector Element Byte Indexed
16053PPC_lvehx, // Load Vector Element Halfword Indexed
16054PPC_lvewx, // Load Vector Element Word Indexed
16055PPC_lvsl, // Load Vector for Shift Left Indexed
16056PPC_lvsr, // Load Vector for Shift Right Indexed
16057PPC_lvx, // Load Vector Indexed
16058PPC_lvxl, // Load Vector Indexed LRU
16059PPC_mfvscr, // Move From Vector Status and Control Register
16060PPC_mtvscr, // Move To Vector Status and Control Register
16061PPC_stvebx, // Store Vector Element Byte Indexed
16062PPC_stvehx, // Store Vector Element Halfword Indexed
16063PPC_stvewx, // Store Vector Element Word Indexed
16064PPC_stvx, // Store Vector Indexed
16065PPC_stvxl, // Store Vector Indexed LRU
16066PPC_vaddcuw, // Vector Add and Write Carry-Out Unsigned Word
16067PPC_vaddfp, // Vector Add Single-Precision
16068PPC_vaddsbs, // Vector Add Signed Byte Saturate
16069PPC_vaddshs, // Vector Add Signed Halfword Saturate
16070PPC_vaddsws, // Vector Add Signed Word Saturate
16071PPC_vaddubm, // Vector Add Unsigned Byte Modulo
16072PPC_vaddubs, // Vector Add Unsigned Byte Saturate
16073PPC_vadduhm, // Vector Add Unsigned Halfword Modulo
16074PPC_vadduhs, // Vector Add Unsigned Halfword Saturate
16075PPC_vadduwm, // Vector Add Unsigned Word Modulo
16076PPC_vadduws, // Vector Add Unsigned Word Saturate
16077PPC_vand, // Vector Logical AND
16078PPC_vandc, // Vector Logical AND with Complement
16079PPC_vavgsb, // Vector Average Signed Byte
16080PPC_vavgsh, // Vector Average Signed Halfword
16081PPC_vavgsw, // Vector Average Signed Word
16082PPC_vavgub, // Vector Average Unsigned Byte
16083PPC_vavguh, // Vector Average Unsigned Halfword
16084PPC_vavguw, // Vector Average Unsigned Word
16085PPC_vcfsx, // Vector Convert From Signed Fixed-Point Word
16086PPC_vcfux, // Vector Convert From Unsigned Fixed-Point Word
16087PPC_vcmpbfp, // Vector Compare Bounds Single-Precision
16088PPC_vcmpeqfp, // Vector Compare Equal To Single-Precision
16089PPC_vcmpequb, // Vector Compare Equal To Unsigned Byte
16090PPC_vcmpequh, // Vector Compare Equal To Unsigned Halfword
16091PPC_vcmpequw, // Vector Compare Equal To Unsigned Word
16092PPC_vcmpgefp, // Vector Compare Greater Than or Equal To Single-Precision
16093PPC_vcmpgtfp, // Vector Compare Greater Than Single-Precision
16094PPC_vcmpgtsb, // Vector Compare Greater Than Signed Byte
16095PPC_vcmpgtsh, // Vector Compare Greater Than Signed Halfword
16096PPC_vcmpgtsw, // Vector Compare Greater Than Signed Word
16097PPC_vcmpgtub, // Vector Compare Greater Than Unsigned Byte
16098PPC_vcmpgtuh, // Vector Compare Greater Than Unsigned Halfword
16099PPC_vcmpgtuw, // Vector Compare Greater Than Unsigned Word
16100PPC_vctsxs, // Vector Convert To Signed Fixed-Point Word Saturate
16101PPC_vctuxs, // Vector Convert To Unsigned Fixed-Point Word Saturate
16102PPC_vexptefp, // Vector 2 Raised to the Exponent Estimate FloatingPoint
16103PPC_vlogefp, // Vector Log Base 2 Estimate Floating-Point
16104PPC_vmaddfp, // Vector Multiply-Add Single-Precision
16105PPC_vmaxfp, // Vector Maximum Single-Precision
16106PPC_vmaxsb, // Vector Maximum Signed Byte
16107PPC_vmaxsh, // Vector Maximum Signed Halfword
16108PPC_vmaxsw, // Vector Maximum Signed Word
16109PPC_vmaxub, // Vector Maximum Unsigned Byte
16110PPC_vmaxuh, // Vector Maximum Unsigned Halfword
16111PPC_vmaxuw, // Vector Maximum Unsigned Word
16112PPC_vmhaddshs, // Vector Multiply-High-Add Signed Halfword Saturate
16113PPC_vmhraddshs, // Vector Multiply-High-Round-Add Signed Halfword Saturate
16114PPC_vminfp, // Vector Minimum Single-Precision
16115PPC_vminsb, // Vector Minimum Signed Byte
16116PPC_vminsh, // Vector Minimum Signed Halfword
16117PPC_vminsw, // Vector Minimum Signed Word
16118PPC_vminub, // Vector Minimum Unsigned Byte
16119PPC_vminuh, // Vector Minimum Unsigned Halfword
16120PPC_vminuw, // Vector Minimum Unsigned Word
16121PPC_vmladduhm, // Vector Multiply-Low-Add Unsigned Halfword Modulo
16122PPC_vmrghb, // Vector Merge High Byte
16123PPC_vmrghh, // Vector Merge High Halfword
16124PPC_vmrghw, // Vector Merge High Word
16125PPC_vmrglb, // Vector Merge Low Byte
16126PPC_vmrglh, // Vector Merge Low Halfword
16127PPC_vmrglw, // Vector Merge Low Word
16128PPC_vmsummbm, // Vector Multiply-Sum Mixed Byte Modulo
16129PPC_vmsumshm, // Vector Multiply-Sum Signed Halfword Modulo
16130PPC_vmsumshs, // Vector Multiply-Sum Signed Halfword Saturate
16131PPC_vmsumubm, // Vector Multiply-Sum Unsigned Byte Modulo
16132PPC_vmsumuhm, // Vector Multiply-Sum Unsigned Halfword Modulo
16133PPC_vmsumuhs, // Vector Multiply-Sum Unsigned Halfword Saturate
16134PPC_vmulesb, // Vector Multiply Even Signed Byte
16135PPC_vmulesh, // Vector Multiply Even Signed Halfword
16136PPC_vmuleub, // Vector Multiply Even Unsigned Byte
16137PPC_vmuleuh, // Vector Multiply Even Unsigned Halfword
16138PPC_vmulosb, // Vector Multiply Odd Signed Byte
16139PPC_vmulosh, // Vector Multiply Odd Signed Halfword
16140PPC_vmuloub, // Vector Multiply Odd Unsigned Byte
16141PPC_vmulouh, // Vector Multiply Odd Unsigned Halfword
16142PPC_vnmsubfp, // Vector Negative Multiply-Subtract Single-Precision
16143PPC_vnor, // Vector Logical NOR
16144PPC_vor, // Vector Logical OR
16145PPC_vperm, // Vector Permute
16146PPC_vpkpx, // Vector Pack Pixel
16147PPC_vpkshss, // Vector Pack Signed Halfword Signed Saturate
16148PPC_vpkshus, // Vector Pack Signed Halfword Unsigned Saturate
16149PPC_vpkswss, // Vector Pack Signed Word Signed Saturate
16150PPC_vpkswus, // Vector Pack Signed Word Unsigned Saturate
16151PPC_vpkuhum, // Vector Pack Unsigned Halfword Unsigned Modulo
16152PPC_vpkuhus, // Vector Pack Unsigned Halfword Unsigned Saturate
16153PPC_vpkuwum, // Vector Pack Unsigned Word Unsigned Modulo
16154PPC_vpkuwus, // Vector Pack Unsigned Word Unsigned Saturate
16155PPC_vrefp, // Vector Reciprocal Estimate Single-Precision
16156PPC_vrfim, // Vector Round to Single-Precision Integer toward -Infinity
16157PPC_vrfin, // Vector Round to Single-Precision Integer Nearest
16158PPC_vrfip, // Vector Round to Single-Precision Integer toward +Infinity
16159PPC_vrfiz, // Vector Round to Single-Precision Integer toward Zero
16160PPC_vrlb, // Vector Rotate Left Byte
16161PPC_vrlh, // Vector Rotate Left Halfword
16162PPC_vrlw, // Vector Rotate Left Word
16163PPC_vrsqrtefp, // Vector Reciprocal Square Root Estimate Single-Precision
16164PPC_vsel, // Vector Select
16165PPC_vsl, // Vector Shift Left
16166PPC_vslb, // Vector Shift Left Byte
16167PPC_vsldoi, // Vector Shift Left Double by Octet Immediate
16168PPC_vslh, // Vector Shift Left Halfword
16169PPC_vslo, // Vector Shift Left by Octet
16170PPC_vslw, // Vector Shift Left Word
16171PPC_vspltb, // Vector Splat Byte
16172PPC_vsplth, // Vector Splat Halfword
16173PPC_vspltisb, // Vector Splat Immediate Signed Byte
16174PPC_vspltish, // Vector Splat Immediate Signed Halfword
16175PPC_vspltisw, // Vector Splat Immediate Signed Word
16176PPC_vspltw, // Vector Splat Word
16177PPC_vsr, // Vector Shift Right
16178PPC_vsrab, // Vector Shift Right Algebraic Byte
16179PPC_vsrah, // Vector Shift Right Algebraic Halfword
16180PPC_vsraw, // Vector Shift Right Algebraic Word
16181PPC_vsrb, // Vector Shift Right Byte
16182PPC_vsrh, // Vector Shift Right Halfword
16183PPC_vsro, // Vector Shift Right by Octet
16184PPC_vsrw, // Vector Shift Right Word
16185PPC_vsubcuw, // Vector Subtract and Write Carry-Out Unsigned Word
16186PPC_vsubfp, // Vector Subtract Single-Precision
16187PPC_vsubsbs, // Vector Subtract Signed Byte Saturate
16188PPC_vsubshs, // Vector Subtract Signed Halfword Saturate
16189PPC_vsubsws, // Vector Subtract Signed Word Saturate
16190PPC_vsububm, // Vector Subtract Unsigned Byte Modulo
16191PPC_vsububs, // Vector Subtract Unsigned Byte Saturate
16192PPC_vsubuhm, // Vector Subtract Unsigned Halfword Modulo
16193PPC_vsubuhs, // Vector Subtract Unsigned Halfword Saturate
16194PPC_vsubuwm, // Vector Subtract Unsigned Word Modulo
16195PPC_vsubuws, // Vector Subtract Unsigned Word Saturate
16196PPC_vsum2sws, // Vector Sum across Half Signed Word Saturate
16197PPC_vsum4sbs, // Vector Sum across Quarter Signed Byte Saturate
16198PPC_vsum4shs, // Vector Sum across Quarter Signed Halfword Saturate
16199PPC_vsum4ubs, // Vector Sum across Quarter Unsigned Byte Saturate
16200PPC_vsumsws, // Vector Sum across Signed Word Saturate
16201PPC_vupkhpx, // Vector Unpack High Pixel
16202PPC_vupkhsb, // Vector Unpack High Signed Byte
16203PPC_vupkhsh, // Vector Unpack High Signed Halfword
16204PPC_vupklpx, // Vector Unpack Low Pixel
16205PPC_vupklsb, // Vector Unpack Low Signed Byte
16206PPC_vupklsh, // Vector Unpack Low Signed Halfword
16207PPC_vxor, // Vector Logical XOR
16208// category: Vector-Scalar Floating-Point
16209PPC_lxsdx, // Load VSR Scalar Doubleword Indexed
16210PPC_lxvd2x, // Load VSR Vector Doubleword*2 Indexed
16211PPC_lxvdsx, // Load VSR Vector Doubleword & Splat Indexed
16212PPC_lxvw4x, // Load VSR Vector Word*4 Indexed
16213PPC_stxsdx, // Store VSR Scalar Doubleword Indexed
16214PPC_stxvd2x, // Store VSR Vector Doubleword*2 Indexed
16215PPC_stxvw4x, // Store VSR Vector Word*4 Indexed
16216PPC_xsabsdp, // VSX Scalar Absolute Value Double-Precision
16217PPC_xsadddp, // VSX Scalar Add Double-Precision
16218PPC_xscmpodp, // VSX Scalar Compare Ordered Double-Precision
16219PPC_xscmpudp, // VSX Scalar Compare Unordered Double-Precision
16220PPC_xscpsgndp, // VSX Scalar Copy Sign Double-Precision
16221PPC_xscvdpsp, // VSX Scalar Convert Double-Precision to SinglePrecision
16222PPC_xscvdpsxds, // VSX Scalar truncate Double-Precision to integer and Convert to Signed Fixed-Point Doubleword format with Saturate
16223PPC_xscvdpsxws, // VSX Scalar truncate Double-Precision to integer and Convert to Signed Fixed-Point Word format with Saturate
16224PPC_xscvdpuxds, // VSX Scalar truncate Double-Precision to integer and Convert to Unsigned Fixed-Point Doubleword format with Saturate
16225PPC_xscvdpuxws, // VSX Scalar truncate Double-Precision to integer and Convert to Unsigned Fixed-Point Word format with Saturate
16226PPC_xscvspdp, // VSX Scalar Convert Single-Precision to DoublePrecision format
16227PPC_xscvsxddp, // VSX Scalar Convert and round Signed Fixed-Point Doubleword to Double-Precision format
16228PPC_xscvuxddp, // VSX Scalar Convert and round Unsigned Fixed-Point Doubleword to Double-Precision format
16229PPC_xsdivdp, // VSX Scalar Divide Double-Precision
16230PPC_xsmaddadp, // VSX Scalar Multiply-Add Type-A Double-Precision
16231PPC_xsmaddmdp, // VSX Scalar Multiply-Add Type-M Double-Precision
16232PPC_xsmaxdp, // VSX Scalar Maximum Double-Precision
16233PPC_xsmindp, // VSX Scalar Minimum Double-Precision
16234PPC_xsmsubadp, // VSX Scalar Multiply-Subtract Type-A Double-Precision
16235PPC_xsmsubmdp, // VSX Scalar Multiply-Subtract Type-M Double-Precision
16236PPC_xsmuldp, // VSX Scalar Multiply Double-Precision
16237PPC_xsnabsdp, // VSX Scalar Negative Absolute Value Double-Precision
16238PPC_xsnegdp, // VSX Scalar Negate Double-Precision
16239PPC_xsnmaddadp, // VSX Scalar Negative Multiply-Add Type-A DoublePrecision
16240PPC_xsnmaddmdp, // VSX Scalar Negative Multiply-Add Type-M DoublePrecision
16241PPC_xsnmsubadp, // VSX Scalar Negative Multiply-Subtract Type-A DoublePrecision
16242PPC_xsnmsubmdp, // VSX Scalar Negative Multiply-Subtract Type-M DoublePrecision
16243PPC_xsrdpi, // VSX Scalar Round to Double-Precision Integer
16244PPC_xsrdpic, // VSX Scalar Round to Double-Precision Integer using Current rounding mode
16245PPC_xsrdpim, // VSX Scalar Round to Double-Precision Integer toward Infinity
16246PPC_xsrdpip, // VSX Scalar Round to Double-Precision Integer toward + Infinity
16247PPC_xsrdpiz, // VSX Scalar Round to Double-Precision Integer toward Zero
16248PPC_xsredp, // VSX Scalar Reciprocal Estimate Double-Precision
16249PPC_xsrsqrtedp, // VSX Scalar Reciprocal Square Root Estimate DoublePrecision
16250PPC_xssqrtdp, // VSX Scalar Square Root Double-Precision
16251PPC_xssubdp, // VSX Scalar Subtract Double-Precision
16252PPC_xstdivdp, // VSX Scalar Test for software Divide Double-Precision
16253PPC_xstsqrtdp, // VSX Scalar Test for software Square Root DoublePrecision
16254PPC_xvabsdp, // VSX Vector Absolute Value Double-Precision
16255PPC_xvabssp, // VSX Vector Absolute Value Single-Precision
16256PPC_xvadddp, // VSX Vector Add Double-Precision
16257PPC_xvaddsp, // VSX Vector Add Single-Precision
16258PPC_xvcmpeqdp, // VSX Vector Compare Equal To Double-Precision
16259PPC_xvcmpeqsp, // VSX Vector Compare Equal To Single-Precision
16260PPC_xvcmpgedp, // VSX Vector Compare Greater Than or Equal To Double-Precision
16261PPC_xvcmpgesp, // VSX Vector Compare Greater Than or Equal To SinglePrecision
16262PPC_xvcmpgtdp, // VSX Vector Compare Greater Than Double-Precision
16263PPC_xvcmpgtsp, // VSX Vector Compare Greater Than Single-Precision
16264PPC_xvcpsgndp, // VSX Vector Copy Sign Double-Precision
16265PPC_xvcpsgnsp, // VSX Vector Copy Sign Single-Precision
16266PPC_xvcvdpsp, // VSX Vector round and Convert Double-Precision to Single-Precision format
16267PPC_xvcvdpsxds, // VSX Vector truncate Double-Precision to integer and Convert to Signed Fixed-Point Doubleword Saturate
16268PPC_xvcvdpsxws, // VSX Vector truncate Double-Precision to integer and Convert to Signed Fixed-Point Word Saturate
16269PPC_xvcvdpuxds, // VSX Vector truncate Double-Precision to integer and Convert to Unsigned Fixed-Point Doubleword format with Saturate
16270PPC_xvcvdpuxws, // VSX Vector truncate Double-Precision to integer and Convert to Unsigned Fixed-Point Word format with Saturate
16271PPC_xvcvspdp, // VSX Vector Convert Single-Precision to DoublePrecision
16272PPC_xvcvspsxds, // VSX Vector truncate Single-Precision to integer and Convert to Signed Fixed-Point Doubleword format with Saturate
16273PPC_xvcvspsxws, // VSX Vector truncate Single-Precision to integer and Convert to Signed Fixed-Point Word format with Saturate
16274PPC_xvcvspuxds, // VSX Vector truncate Single-Precision to integer and Convert to Unsigned Fixed-Point Doubleword format with Saturate
16275PPC_xvcvspuxws, // VSX Vector truncate Single-Precision to integer and Convert to Unsigned Fixed-Point Word Saturate
16276PPC_xvcvsxddp, // VSX Vector Convert and round Signed Fixed-Point Doubleword to Double-Precision format
16277PPC_xvcvsxdsp, // VSX Vector Convert and round Signed Fixed-Point Doubleword to Single-Precision format
16278PPC_xvcvsxwdp, // VSX Vector Convert Signed Fixed-Point Word to Double-Precision format
16279PPC_xvcvsxwsp, // VSX Vector Convert and round Signed Fixed-Point Word to Single-Precision format
16280PPC_xvcvuxddp, // VSX Vector Convert and round Unsigned Fixed-Point Doubleword to Double-Precision format
16281PPC_xvcvuxdsp, // VSX Vector Convert and round Unsigned Fixed-Point Doubleword to Single-Precision format
16282PPC_xvcvuxwdp, // VSX Vector Convert Unsigned Fixed-Point Word to Double-Precision format
16283PPC_xvcvuxwsp, // VSX Vector Convert and round Unsigned Fixed-Point Word to Single-Precision format
16284PPC_xvdivdp, // VSX Vector Divide Double-Precision
16285PPC_xvdivsp, // VSX Vector Divide Single-Precision
16286PPC_xvmaddadp, // VSX Vector Multiply-Add Type-A Double-Precision
16287PPC_xvmaddasp, // VSX Vector Multiply-Add Type-A Single-Precision
16288PPC_xvmaddmdp, // VSX Vector Multiply-Add Type-M Double-Precision
16289PPC_xvmaddmsp, // VSX Vector Multiply-Add Type-M Single-Precision
16290PPC_xvmaxdp, // VSX Vector Maximum Double-Precision
16291PPC_xvmaxsp, // VSX Vector Maximum Single-Precision
16292PPC_xvmindp, // VSX Vector Minimum Double-Precision
16293PPC_xvminsp, // VSX Vector Minimum Single-Precision
16294PPC_xvmsubadp, // VSX Vector Multiply-Subtract Type-A Double-Precision
16295PPC_xvmsubasp, // VSX Vector Multiply-Subtract Type-A Single-Precision
16296PPC_xvmsubmdp, // VSX Vector Multiply-Subtract Type-M Double-Precision
16297PPC_xvmsubmsp, // VSX Vector Multiply-Subtract Type-M Single-Precision
16298PPC_xvmuldp, // VSX Vector Multiply Double-Precision
16299PPC_xvmulsp, // VSX Vector Multiply Single-Precision
16300PPC_xvnabsdp, // VSX Vector Negative Absolute Value Double-Precision
16301PPC_xvnabssp, // VSX Vector Negative Absolute Value Single-Precision
16302PPC_xvnegdp, // VSX Vector Negate Double-Precision
16303PPC_xvnegsp, // VSX Vector Negate Single-Precision
16304PPC_xvnmaddadp, // VSX Vector Negative Multiply-Add Type-A DoublePrecision
16305PPC_xvnmaddasp, // VSX Vector Negative Multiply-Add Type-A SinglePrecision
16306PPC_xvnmaddmdp, // VSX Vector Negative Multiply-Add Type-M DoublePrecision
16307PPC_xvnmaddmsp, // VSX Vector Negative Multiply-Add Type-M SinglePrecision
16308PPC_xvnmsubadp, // VSX Vector Negative Multiply-Subtract Type-A DoublePrecision
16309PPC_xvnmsubasp, // VSX Vector Negative Multiply-Subtract Type-A SinglePrecision
16310PPC_xvnmsubmdp, // VSX Vector Negative Multiply-Subtract Type-M DoublePrecision
16311PPC_xvnmsubmsp, // VSX Vector Negative Multiply-Subtract Type-M SinglePrecision
16312PPC_xvrdpi, // VSX Vector Round to Double-Precision Integer
16313PPC_xvrdpic, // VSX Vector Round to Double-Precision Integer using Current rounding mode
16314PPC_xvrdpim, // VSX Vector Round to Double-Precision Integer toward Infinity
16315PPC_xvrdpip, // VSX Vector Round to Double-Precision Integer toward + Infinity
16316PPC_xvrdpiz, // VSX Vector Round to Double-Precision Integer toward Zero
16317PPC_xvredp, // VSX Vector Reciprocal Estimate Double-Precision
16318PPC_xvresp, // VSX Vector Reciprocal Estimate Single-Precision
16319PPC_xvrspi, // VSX Vector Round to Single-Precision Integer
16320PPC_xvrspic, // VSX Vector Round to Single-Precision Integer using Current rounding mode
16321PPC_xvrspim, // VSX Vector Round to Single-Precision Integer toward Infinity
16322PPC_xvrspip, // VSX Vector Round to Single-Precision Integer toward + Infinity
16323PPC_xvrspiz, // VSX Vector Round to Single-Precision Integer toward Zero
16324PPC_xvrsqrtedp, // VSX Vector Reciprocal Square Root Estimate DoublePrecision
16325PPC_xvrsqrtesp, // VSX Vector Reciprocal Square Root Estimate SinglePrecision
16326PPC_xvsqrtdp, // VSX Vector Square Root Double-Precision
16327PPC_xvsqrtsp, // VSX Vector Square Root Single-Precision
16328PPC_xvsubdp, // VSX Vector Subtract Double-Precision
16329PPC_xvsubsp, // VSX Vector Subtract Single-Precision
16330PPC_xvtdivdp, // VSX Vector Test for software Divide Double-Precision
16331PPC_xvtdivsp, // VSX Vector Test for software Divide Single-Precision
16332PPC_xvtsqrtdp, // VSX Vector Test for software Square Root DoublePrecision
16333PPC_xvtsqrtsp, // VSX Vector Test for software Square Root SinglePrecision
16334PPC_xxland, // VSX Logical AND
16335PPC_xxlandc, // VSX Logical AND with Complement
16336PPC_xxlnor, // VSX Logical NOR
16337PPC_xxlor, // VSX Logical OR
16338PPC_xxlxor, // VSX Logical XOR
16339PPC_xxmrghw, // VSX Merge High Word
16340PPC_xxmrglw, // VSX Merge Low Word
16341PPC_xxpermdi, // VSX Permute Doubleword Immediate
16342PPC_xxsel, // VSX Select
16343PPC_xxsldwi, // VSX Shift Left Double by Word Immediate
16344PPC_xxspltw, // VSX Splat Word
16345// category: Wait
16346PPC_wait, // Wait
16347
16348// Obsolete AltiVec instructions
16349
16350PPC_dss, // Data Stream Stop
16351PPC_dssall, // Data Stream Stop All
16352PPC_dst, // Data Stream Touch
16353PPC_dstt, // Data Stream Touch Transient
16354PPC_dstst, // Data Stream Touch for Store
16355PPC_dststt, // Data Stream Touch for Store Transient
16356
16357// Cell BE AltiVec extension
16358PPC_lvlx, // Load Vector Left Indexed
16359PPC_lvlxl, // Load Vector Left Indexed Last
16360PPC_lvrx, // Load Vector Right Indexed
16361PPC_lvrxl, // Load Vector Right Indexed Last
16362PPC_stvlx, // Store Vector Left Indexed
16363PPC_stvlxl, // Store Vector Left Indexed Last
16364PPC_stvrx, // Store Vector Right Indexed
16365PPC_stvrxl, // Store Vector Right Indexed Last
16366
16367// VLE instructions that don't have matching mnemonics
16368PPC_add16i, // [e_add16i] Add Immediate
16369PPC_add2i, // [e_add2i] Add (2 operand) Immediate and Record
16370PPC_add2is, // [e_add2is] Add (2 operand) Immediate Shifted
16371PPC_and2i, // [e_and2i] AND (two operand) Immediate
16372PPC_and2is, // [e_and2is] AND (2 operand) Immediate Shifted
16373PPC_cmp16i, // [e_cmp16i] Compare Immediate Word
16374PPC_cmph, // [e_cmph] Compare Halfword
16375PPC_cmph16i, // [e_cmph16i] Compare Halfword Immediate
16376PPC_cmphl, // [e_cmphl] Compare Halfword Logical
16377PPC_cmphl16i, // [e_cmphl16i] Compare Halfword Logical Immediate
16378PPC_cmpl16i, // [e_cmpl16i] Compare Logical Immediate Word
16379PPC_mull2i, // [e_mull2i] Multiply (2 operand) Low Immediate
16380PPC_or2i, // [e_or2i] OR (two operand) Immediate
16381PPC_or2is, // [e_or2is] OR (2 operand) Immediate Shifted
16382PPC_rlw, // [e_rlw] Rotate Left Word
16383PPC_rlwi, // [e_rlwi] Rotate Left Word Immediate
16384PPC_bclri, // [se_bclri] Bit Clear Immediate
16385// PPC_bctr, // [se_bctr] Branch to Count Register
16386// PPC_bctrl, // [se_bctrl] Branch to Count Register and Link
16387PPC_bgeni, // [se_bgeni] Bit Generate Immediate
16388PPC_bmaski, // [se_bmaski] Bit Mask Generate Immediate
16389PPC_bseti, // [se_bseti] Bit Set Immediate
16390PPC_btsti, // [se_btsti] Bit Test Immediate
16391PPC_extzb, // [se_extzb] Extend Zero Byte
16392PPC_extzh, // [se_extzh] Extend Zero Halfword
16393PPC_illegal, // [se_illegal] Illegal
16394PPC_mfar, // [se_mfar] Move from Alternate Register
16395PPC_mtar, // [se_mtar] Move To Alternate Register
16396PPC_sub, // [se_sub] Subtract
16397// simplified VLE mnemonics
16398PPC_sub16i, // [e_sub16i] Subtract Immediate
16399PPC_sub2i, // [e_sub2i] Subtract (2 operand) Immediate
16400PPC_sub2is, // [e_sub2is] Subtract (2 operand) Immediate Shifted
16401
16402// misc extended mnemonics
16403PPC_extldi, // Extract and Left Justify Immediate
16404PPC_extrdi, // Extract and Right Justify Immediate
16405PPC_insrdi, // Insert from Right Immediate
16406PPC_rotldi, // Rotate Left Immediate
16407PPC_rotrdi, // Rotate Right Immediate
16408PPC_rotld, // Rotate Left
16409PPC_sldi, // Shift Left Immediate
16410PPC_srdi, // Shift Right Immediate
16411PPC_clrldi, // Clear Left Immediate
16412PPC_clrrdi, // Clear Right Immediate
16413PPC_clrlsldi, // Clear Left and Shift Left Immediate
16414
16415PPC_xnop, // Extended No Operation
16416PPC_hnop, // Reserved no-op hint
16417PPC_dcbfl, // Data Cache Block Flush Local
16418PPC_dcbflp, // Data Cache Block Flush Local Primary
16419PPC_dcbtt, // Data Cache Block Touch
16420PPC_dcbtstt, // Data Cache Block Touch for Store
16421PPC_lwsync, // Lightweight Sync
16422PPC_ptesync, // Page Table Entry Sync
16423PPC_waitrsv, // Wait For Reservation Loss
16424PPC_waitimpl, // Wait For Implementation-specific Condition
16425PPC_evmr, // Vector Move
16426PPC_evnot, // Vector Not
16427PPC_mtcr, // Move to Condition Register
16428PPC_xvmovdp, // VSX Vector Copy Double-Precision
16429PPC_xvmovsp, // VSX Vector Copy Single-Precision
16430PPC_xxspltd, // VSX Splat Doubleword
16431PPC_xxmrghd, // VSX Merge High Doubleword
16432PPC_xxmrgld, // VSX Merge Low Doubleword
16433PPC_xxswapd, // VSX Swap Doubleword
16434
16435// Xbox 360 specific
16436PPC_dcbz128, // Data Cache Block Clear to Zero (128 bytes)
16437PPC_mtmsree, // Move to Machine State Register EE
16438
16439// new Xbox 360 instructions (VMX128)
16440PPC_vcfpsxws, // Vector Convert From Single-Precision to Signed Fixed-point Word Saturate
16441PPC_vcfpuxws, // Vector Convert From Single-Precision to Unsigned Fixed-point Word Saturate
16442PPC_vcsxwfp, // Vector Convert from Signed Fixed-point Word to Single-Precision
16443PPC_vcuxwfp, // Vector Convert from Unsigned Fixed-point Word to Single-Precision
16444PPC_vmaddcfp, // Vector Convert from Unsigned Fixed-point Word to Single-Precision
16445PPC_vmsum3fp, // Vector Multiply-Sum 3-way Single-Precision
16446PPC_vmsum4fp, // Vector Multiply-Sum 4-way Single-Precision
16447PPC_vmulfp, // Vector Multiply Single-Precision
16448PPC_vpermwi, // Vector Permute Word Immediate
16449PPC_vpkd3d, // Vector Pack D3Dtype, Rotate Left Immediate and Mask Insert
16450PPC_vrlimi, // Vector Rotate Left Immediate and Mask Insert
16451PPC_vupkd3d, // Vector Unpack D3Dtype
16452
16453// Paired Singles (750CL/Gekko/Broadway)
16454PPC_ps_cmpu0, // Paired Single Compare Unordered High
16455PPC_psq_lx, // Paired Single Quantized Load Indexed
16456PPC_psq_stx, // Paired Single Quantized Store Indexed
16457PPC_ps_sum0, // Paired Single Vector Sum High
16458PPC_ps_sum1, // Paired Single Vector Sum Low
16459PPC_ps_muls0, // Paired Single Multiply Scalar High
16460PPC_ps_muls1, // Paired Single Multiply Scalar Low
16461PPC_ps_madds0, // Paired Single Multiply-Add Scalar High
16462PPC_ps_madds1, // Paired Single Multiply-Add Scalar Low
16463PPC_ps_div, // Paired Single Divide
16464PPC_ps_sub, // Paired Single Subtract
16465PPC_ps_add, // Paired Single Add
16466PPC_ps_sel, // Paired Single Select
16467PPC_ps_res, // Paired Single Reciprocal Estimate
16468PPC_ps_mul, // Paired Single Multiply
16469PPC_ps_rsqrte, // Paired Single Reciprocal Square Root Estimate
16470PPC_ps_msub, // Paired Single Multiply-Subtract
16471PPC_ps_madd, // Paired Single Multiply-Add
16472PPC_ps_nmsub, // Paired Single Negative Multiply-Subtract
16473PPC_ps_nmadd, // Paired Single Negative Multiply-Add
16474PPC_ps_cmpo0, // Paired Single Compare Ordered High
16475PPC_psq_lux, // Paired Single Quantized Load with update Indexed
16476PPC_psq_stux, // Paired Single Quantized Store with update Indexed
16477PPC_ps_neg, // Paired Single Negate
16478PPC_ps_cmpu1, // Paired Single Compare Unordered Low
16479PPC_ps_mr, // Paired Single Move Register
16480PPC_ps_cmpo1, // Paired Single Compare Ordered Low
16481PPC_ps_nabs, // Paired Single Negative Absolute Value
16482PPC_ps_abs, // Paired Single Absolute Value
16483PPC_ps_merge00, // Paired Single Merge High
16484PPC_ps_merge01, // Paired Single Merge Direct
16485PPC_ps_merge10, // Paired Single Merge Swapped
16486PPC_ps_merge11, // Paired Single Merge Low
16487PPC_dcbz_l, // Data Cache Block Set to Zero Locked
16488PPC_psq_l, // Paired Single Quantized Load
16489PPC_psq_lu, // Paired Single Quantized Load update
16490PPC_psq_st, // Paired Single Quantized Store
16491PPC_psq_stu, // Paired Single Quantized Store update
16492
16493// additional SPE/EFPU2 instructions
16494PPC_evfsmadd, // Vector Floating-Point Single-Precision Multiply-Add
16495PPC_evfsmsub, // Vector Floating-Point Single-Precision Multiply-Subtract
16496PPC_evfssqrt, // Vector Floating-Point Single-Precision Square Root
16497PPC_evfsnmadd, // Vector Floating-Point Single-Precision Negative Multiply-Add
16498PPC_evfsnmsub, // Vector Floating-Point Single-Precision Negative Multiply-Subtract
16499PPC_evfsmax, // Vector Floating-Point Single-Precision Maximum
16500PPC_evfsmin, // Vector Floating-Point Single-Precision Minimum
16501PPC_evfsaddsub, // Vector Floating-Point Single-Precision Add / Subtract
16502PPC_evfssubadd, // Vector Floating-Point Single-Precision Subtract / Add
16503PPC_evfssum, // Vector Floating-Point Single-Precision Sums
16504PPC_evfsdiff, // Vector Floating-Point Single-Precision Differences
16505PPC_evfssumdiff,// Vector Floating-Point Single-Precision Sum / Difference
16506PPC_evfsdiffsum,// Vector Floating-Point Single-Precision Difference / Sum
16507PPC_evfsaddx, // Vector Floating-Point Single-Precision Add Exchanged
16508PPC_evfssubx, // Vector Floating-Point Single-Precision Subtract Exchanged
16509PPC_evfsaddsubx,// Vector Floating-Point Single-Precision Add / Subtract Exchanged
16510PPC_evfssubaddx,// Vector Floating-Point Single-Precision Subtract / Add Exchanged
16511PPC_evfsmulx, // Vector Floating-Point Single-Precision Multiply Exchanged
16512PPC_evfsmule, // Vector Floating-Point Single-Precision Multiply By Even Element
16513PPC_evfsmulo, // Vector Floating-Point Single-Precision Multiply By Odd Element
16514PPC_evfscfh, // Vector Convert Floating-Point Single-Precision from Half-Precision
16515PPC_evfscth, // Vector Convert Floating-Point Single-Precision to Half-Precision
16516PPC_efsmax, // Floating-Point Single-Precision Maximum
16517PPC_efsmin, // Floating-Point Single-Precision Minimum
16518PPC_efsmadd, // Floating-Point Single-Precision Multiply-Add
16519PPC_efsmsub, // Floating-Point Single-Precision Multiply-Subtract
16520PPC_efssqrt, // Floating-Point Single-Precision Square Root
16521PPC_efsnmadd, // Floating-Point Single-Precision Negative Multiply-Add
16522PPC_efsnmsub, // Floating-Point Single-Precision Negative Multiply-Subtract
16523PPC_efscfh, // Convert Floating-Point Single-Precision from Half-Precision
16524PPC_efscth, // Convert Floating-Point Single-Precision to Half-Precision
16525
16526// Volatile Context Save/Restore APU
16527PPC_lmvgprw, // Load Multiple Volatile GPR Word
16528PPC_stmvgprw, // Store Multiple Volatile GPR Word
16529PPC_lmvsprw, // Load Multiple Volatile SPR Word
16530PPC_stmvsprw, // Store Multiple Volatile SPR Word
16531PPC_lmvsrrw, // Load Multiple Volatile SRR Word
16532PPC_stmvsrrw, // Store Multiple Volatile SRR Word
16533PPC_lmvcsrrw, // Load Multiple Volatile CSRR Word
16534PPC_stmvcsrrw, // Store Multiple Volatile CSRR Word
16535PPC_lmvdsrrw, // Load Multiple Volatile DSRR Word
16536PPC_stmvdsrrw, // Store Multiple Volatile DSRR Word
16537PPC_lmvmcsrrw, // Load Multiple Volatile MCSRR Word
16538PPC_stmvmcsrrw, // Store Multiple Volatile MCSRR Word
16539
16540// SPE2 (Signal Processing Engine 2) instructions
16541PPC_evdotpwcssi, // Vector Dot Product of Words, Complex, Signed, Saturate, Integer (to Accumulator)
16542PPC_evdotpwcsmi, // Vector Dot Product of Words, Complex, Signed, Modulo, Integer (to Accumulator)
16543PPC_evdotpwcssfr, // Vector Dot Product of Words, Complex, Signed, Saturate, Fractional, Round (to Accumulator)
16544PPC_evdotpwcssf, // Vector Dot Product of Words, Complex, Signed, Saturate, Fractional (to Accumulator)
16545PPC_evdotpwgasmf, // Vector Dot Product of Words Guarded, Add, Signed, Modulo, Fractional (to Accumulator)
16546PPC_evdotpwxgasmf, // Vector Dot Product of Words Exchanged, Guarded, Add, Signed, Modulo, Fractional (to Accumulator)
16547PPC_evdotpwgasmfr, // Vector Dot Product of Words Guarded, Add, Signed, Modulo, Fractional, Round (to Accumulator)
16548PPC_evdotpwxgasmfr, // Vector Dot Product of Words Exchanged, Guarded, Add, Signed, Modulo, Fractional, Round (to Accumulator)
16549PPC_evdotpwgssmf, // Vector Dot Product of Words Guarded, Subtract, Signed, Modulo, Fractional (to Accumulator)
16550PPC_evdotpwxgssmf, // Vector Dot Product of Words Exchanged, Guarded, Subtract, Signed, Modulo, Fractional (to Accumulator)
16551PPC_evdotpwgssmfr, // Vector Dot Product of Words Guarded, Subtract, Signed, Modulo, Fractional, Round (to Accumulator)
16552PPC_evdotpwxgssmfr, // Vector Dot Product of Words Exchanged, Guarded, Add, Signed, Modulo, Fractional, Round (to Accumulator)
16553PPC_evdotpwcssiaaw3, // Vector Dot Product of Words, Complex, Signed, Saturate, Integer and Accumulate into Words 3 operand
16554PPC_evdotpwcsmiaaw3, // Vector Dot Product of Words, Complex, Signed, Modulo, Integer and Accumulate into Words 3 operand
16555PPC_evdotpwcssfraaw3, // Vector Dot Product of Words, Complex, Signed, Saturate, Fractional, Round and Accumulate into Words 3 operand
16556PPC_evdotpwcssfaaw3, // Vector Dot Product of Words, Complex, Signed, Saturate, Fractional and Accumulate into Words 3 operand
16557PPC_evdotpwgasmfaa3, // Vector Dot Product of Words Guarded, Add, Signed, Modulo, Fractional and Accumulate 3 operand
16558PPC_evdotpwxgasmfaa3, // Vector Dot Product of Words Exchanged, Guarded, Add, Signed, Modulo, Fractional and Accumulate 3 operand
16559PPC_evdotpwgasmfraa3, // Vector Dot Product of Words Guarded, Add, Signed, Modulo, Fractional, Round and Accumulate 3 operand
16560PPC_evdotpwxgasmfraa3, // Vector Dot Product of Words Exchanged, Guarded, Add, Signed, Modulo, Fractional, Round and Accumulate 3 operand
16561PPC_evdotpwgssmfaa3, // Vector Multiply Word Complex, Real, Guarded, Signed, Modulo, Fractional and Accumulate 3 operand
16562PPC_evdotpwxgssmfaa3, // Vector Dot Product of Words Exchanged, Guarded, Subtract, Signed, Modulo, Fractional and Accumulate 3 operand
16563PPC_evdotpwgssmfraa3, // Vector Dot Product of Words Guarded, Subtract, Signed, Modulo, Fractional, Round and Accumulate 3 operand
16564PPC_evdotpwxgssmfraa3, // Vector Dot Product of Words Exchanged, Guarded, Subtract, Signed, Modulo, Fractional, Round and Accumulate 3 operand
16565PPC_evdotpwcssia, // Vector Dot Product of Words, Complex, Signed, Saturate, Integer (to Accumulator)
16566PPC_evdotpwcsmia, // Vector Dot Product of Words, Complex, Signed, Modulo, Integer (to Accumulator)
16567PPC_evdotpwcssfra, // Vector Dot Product of Words, Complex, Signed, Saturate, Fractional, Round (to Accumulator)
16568PPC_evdotpwcssfa, // Vector Dot Product of Words, Complex, Signed, Saturate, Fractional (to Accumulator)
16569PPC_evdotpwgasmfa, // Vector Dot Product of Words Guarded, Add, Signed, Modulo, Fractional (to Accumulator)
16570PPC_evdotpwxgasmfa, // Vector Dot Product of Words Exchanged, Guarded, Add, Signed, Modulo, Fractional (to Accumulator)
16571PPC_evdotpwgasmfra, // Vector Dot Product of Words Guarded, Add, Signed, Modulo, Fractional, Round (to Accumulator)
16572PPC_evdotpwxgasmfra, // Vector Dot Product of Words Exchanged, Guarded, Add, Signed, Modulo, Fractional, Round (to Accumulator)
16573PPC_evdotpwgssmfa, // Vector Dot Product of Words Guarded, Subtract, Signed, Modulo, Fractional (to Accumulator)
16574PPC_evdotpwxgssmfa, // Vector Dot Product of Words Exchanged, Guarded, Subtract, Signed, Modulo, Fractional (to Accumulator)
16575PPC_evdotpwgssmfra, // Vector Dot Product of Words Guarded, Subtract, Signed, Modulo, Fractional, Round (to Accumulator)
16576PPC_evdotpwxgssmfra, // Vector Dot Product of Words Exchanged, Guarded, Add, Signed, Modulo, Fractional, Round (to Accumulator)
16577PPC_evdotpwcssiaaw, // Vector Dot Product of Words, Complex, Signed, Saturate, Integer and Accumulate into Words
16578PPC_evdotpwcsmiaaw, // Vector Dot Product of Words, Complex, Signed, Modulo, Integer and Accumulate into Words
16579PPC_evdotpwcssfraaw, // Vector Dot Product of Words, Complex, Signed, Saturate, Fractional, Round and Accumulate into Words
16580PPC_evdotpwcssfaaw, // Vector Dot Product of Words, Complex, Signed, Saturate, Fractional and Accumulate into Words
16581PPC_evdotpwgasmfaa, // Vector Dot Product of Words Guarded, Add, Signed, Modulo, Fractional and Accumulate
16582PPC_evdotpwxgasmfaa, // Vector Dot Product of Words Exchanged, Guarded, Add, Signed, Modulo, Fractional and Accumulate
16583PPC_evdotpwgasmfraa, // Vector Dot Product of Words Guarded, Add, Signed, Modulo, Fractional, Round and Accumulate
16584PPC_evdotpwxgasmfraa, // Vector Dot Product of Words Exchanged, Guarded, Add, Signed, Modulo, Fractional, Round and Accumulate
16585PPC_evdotpwgssmfaa, // Vector Multiply Word Complex, Real, Guarded, Signed, Modulo, Fractional and Accumulate
16586PPC_evdotpwxgssmfaa, // Vector Dot Product of Words Exchanged, Guarded, Subtract, Signed, Modulo, Fractional and Accumulate
16587PPC_evdotpwgssmfraa, // Vector Dot Product of Words Guarded, Subtract, Signed, Modulo, Fractional, Round and Accumulate
16588PPC_evdotpwxgssmfraa, // Vector Dot Product of Words Exchanged, Guarded, Subtract, Signed, Modulo, Fractional, Round and Accumulate
16589PPC_evdotphihcssi, // Vector Dot Product of High Halfwords, Complex, Signed, Saturate, Integer (to Accumulator)
16590PPC_evdotplohcssi, // Vector Dot Product of Low Halfwords, Complex, Signed, Saturate, Integer (to Accumulator)
16591PPC_evdotphihcssf, // Vector Dot Product of High Halfwords, Complex, Signed, Saturate, Fractional (to Accumulator)
16592PPC_evdotplohcssf, // Vector Dot Product of Low Halfwords, Complex, Signed, Saturate, Fractional (to Accumulator)
16593PPC_evdotphihcsmi, // Vector Dot Product of High Halfwords, Complex, Signed, Modulo, Integer (to Accumulator)
16594PPC_evdotplohcsmi, // Vector Dot Product of Low Halfwords, Complex, Signed, Modulo, Integer (to Accumulator)
16595PPC_evdotphihcssfr, // Vector Dot Product of High Halfwords, Complex, Signed, Saturate, Fractional, Round (to Accumulator)
16596PPC_evdotplohcssfr, // Vector Dot Product of Low Halfwords, Complex, Signed, Saturate, Fractional, Round (to Accumulator)
16597PPC_evdotphihcssiaaw3, // Vector Dot Product of High Halfwords, Complex, Signed, Saturate, Integer and Accumulate into Words, 3 operand
16598PPC_evdotplohcssiaaw3, // Vector Dot Product of Low Halfwords, Complex, Signed, Saturate, Integer and Accumulate into Words, 3 operand
16599PPC_evdotphihcssfaaw3, // Vector Dot Product of High Halfwords, Complex, Signed, Saturate, Fractional and Accumulate into Words, 3 operand
16600PPC_evdotplohcssfaaw3, // Vector Dot Product of Low Halfwords, Complex, Signed, Saturate, Fractional and Accumulate into Words, 3 operand
16601PPC_evdotphihcsmiaaw3, // Vector Dot Product of High Halfwords, Complex, Signed, Modulo, Integer and Accumulate into Words, 3 operand
16602PPC_evdotplohcsmiaaw3, // Vector Dot Product of Low Halfwords, Complex, Signed, Modulo, Integer and Accumulate into Words, 3 operand
16603PPC_evdotphihcssfraaw3, // Vector Dot Product of High Halfwords, Complex, Signed, Saturate, Fractional, Round and Accumulate into Words, 3 operand
16604PPC_evdotplohcssfraaw3, // Vector Dot Product of Low Halfwords, Complex, Signed, Saturate, Fractional, Round and Accumulate into Words, 3 operand
16605PPC_evdotphihcssia, // Vector Dot Product of High Halfwords, Complex, Signed, Saturate, Integer (to Accumulator)
16606PPC_evdotplohcssia, // Vector Dot Product of Low Halfwords, Complex, Signed, Saturate, Integer (to Accumulator)
16607PPC_evdotphihcssfa, // Vector Dot Product of High Halfwords, Complex, Signed, Saturate, Fractional (to Accumulator)
16608PPC_evdotplohcssfa, // Vector Dot Product of Low Halfwords, Complex, Signed, Saturate, Fractional (to Accumulator)
16609PPC_evdotphihcsmia, // Vector Dot Product of High Halfwords, Complex, Signed, Modulo, Integer (to Accumulator)
16610PPC_evdotplohcsmia, // Vector Dot Product of Low Halfwords, Complex, Signed, Modulo, Integer (to Accumulator)
16611PPC_evdotphihcssfra, // Vector Dot Product of High Halfwords, Complex, Signed, Saturate, Fractional, Round (to Accumulator)
16612PPC_evdotplohcssfra, // Vector Dot Product of Low Halfwords, Complex, Signed, Saturate, Fractional, Round (to Accumulator)
16613PPC_evdotphihcssiaaw, // Vector Dot Product of High Halfwords, Complex, Signed, Saturate, Integer and Accumulate into Words
16614PPC_evdotplohcssiaaw, // Vector Dot Product of Low Halfwords, Complex, Signed, Saturate, Integer and Accumulate into Words
16615PPC_evdotphihcssfaaw, // Vector Dot Product of High Halfwords, Complex, Signed, Saturate, Fractional and Accumulate into Words
16616PPC_evdotplohcssfaaw, // Vector Dot Product of Low Halfwords, Complex, Signed, Saturate, Fractional and Accumulate into Words
16617PPC_evdotphihcsmiaaw, // Vector Dot Product of High Halfwords, Complex, Signed, Modulo, Integer and Accumulate into Words
16618PPC_evdotplohcsmiaaw, // Vector Dot Product of Low Halfwords, Complex, Signed, Modulo, Integer and Accumulate into Words
16619PPC_evdotphihcssfraaw, // Vector Dot Product of High Halfwords, Complex, Signed, Saturate, Fractional, Round and Accumulate into Words
16620PPC_evdotplohcssfraaw, // Vector Dot Product of Low Halfwords, Complex, Signed, Saturate, Fractional, Round and Accumulate into Words
16621PPC_evdotphausi, // Vector Dot Product of Halfwords, Add, Unsigned, Saturate, Integer (to Accumulator)
16622PPC_evdotphassi, // Vector Dot Product of Halfwords, Add, Signed, Saturate, Integer (to Accumulator)
16623PPC_evdotphasusi, // Vector Dot Product of Halfwords, Add, Signed by Unsigned, Saturate, Integer (to Accumulator)
16624PPC_evdotphassf, // Vector Dot Product of Halfwords, Add, Signed, Saturate, Fractional (to Accumulator)
16625PPC_evdotphsssf, // Vector Dot Product of Halfwords, Subtract, Signed, Saturate, Fractional (to Accumulator)
16626PPC_evdotphaumi, // Vector Dot Product of Halfwords, Add, Unsigned, Modulo, Integer (to Accumulator)
16627PPC_evdotphasmi, // Vector Dot Product of Halfwords, Add, Signed, Modulo, Integer (to Accumulator)
16628PPC_evdotphasumi, // Vector Dot Product of Halfwords, Add, Signed by Unsigned, Modulo, Integer (to Accumulator)
16629PPC_evdotphassfr, // Vector Dot Product of Halfwords, Add, Signed, Saturate, Fractional, Round (to Accumulator)
16630PPC_evdotphssmi, // Vector Dot Product of Halfwords, Subtract, Signed, Modulo, Integer (to Accumulator)
16631PPC_evdotphsssfr, // Vector Dot Product of Halfwords, Subtract, Signed, Saturate, Fractional, Round (to Accumulator)
16632PPC_evdotphausiaaw3, // Vector Dot Product of Halfwords, Add, Unsigned, Saturate, Integer and Accumulate into Words, 3 operand
16633PPC_evdotphassiaaw3, // Vector Dot Product of Halfwords, Add, Signed, Saturate, Integer and Accumulate into Words, 3 operand
16634PPC_evdotphasusiaaw3, // Vector Dot Product of Halfwords, Add, Signed by Unsigned, Saturate, Integer and Accumulate into Words, 3 operand
16635PPC_evdotphassfaaw3, // Vector Dot Product of Halfwords, Add, Signed, Saturate, Fractional and Accumulate into Words, 3 operand
16636PPC_evdotphsssiaaw3, // Vector Dot Product of Halfwords, Subtract, Signed, Saturate, Integer and Accumulate into Words, 3 operand
16637PPC_evdotphsssfaaw3, // Vector Dot Product of Halfwords, Subtract, Signed, Saturate, Fractional and Accumulate into Words, 3 operand
16638PPC_evdotphaumiaaw3, // Vector Dot Product of Halfwords, Add, Unsigned, Modulo, Integer and Accumulate into Words, 3 operand
16639PPC_evdotphasmiaaw3, // Vector Dot Product of Halfwords, Add, Signed, Modulo, Integer and Accumulate into Words, 3 operand
16640PPC_evdotphasumiaaw3, // Vector Dot Product of Halfwords, Add, Signed by Unsigned, Modulo, Integer and Accumulate into Words, 3 operand
16641PPC_evdotphassfraaw3, // Vector Dot Product of Halfwords, Add, Signed, Saturate, Fractional, Round and Accumulate into Words, 3 operand
16642PPC_evdotphssmiaaw3, // Vector Dot Product of Halfwords, Subtract, Signed, Modulo, Integer and Accumulate into Words, 3 operand
16643PPC_evdotphsssfraaw3, // Vector Dot Product of Halfwords, Subtract, Signed, Saturate, Fractional, Round and Accumulate into Words, 3 operand
16644PPC_evdotphausia, // Vector Dot Product of Halfwords, Add, Unsigned, Saturate, Integer (to Accumulator)
16645PPC_evdotphassia, // Vector Dot Product of Halfwords, Add, Signed, Saturate, Integer (to Accumulator)
16646PPC_evdotphasusia, // Vector Dot Product of Halfwords, Add, Signed by Unsigned, Saturate, Integer (to Accumulator)
16647PPC_evdotphassfa, // Vector Dot Product of Halfwords, Add, Signed, Saturate, Fractional (to Accumulator)
16648PPC_evdotphsssfa, // Vector Dot Product of Halfwords, Subtract, Signed, Saturate, Fractional (to Accumulator)
16649PPC_evdotphaumia, // Vector Dot Product of Halfwords, Add, Unsigned, Modulo, Integer (to Accumulator)
16650PPC_evdotphasmia, // Vector Dot Product of Halfwords, Add, Signed, Modulo, Integer (to Accumulator)
16651PPC_evdotphasumia, // Vector Dot Product of Halfwords, Add, Signed by Unsigned, Modulo, Integer (to Accumulator)
16652PPC_evdotphassfra, // Vector Dot Product of Halfwords, Add, Signed, Saturate, Fractional, Round (to Accumulator)
16653PPC_evdotphssmia, // Vector Dot Product of Halfwords, Subtract, Signed, Modulo, Integer (to Accumulator)
16654PPC_evdotphsssfra, // Vector Dot Product of Halfwords, Subtract, Signed, Saturate, Fractional, Round (to Accumulator)
16655PPC_evdotphausiaaw, // Vector Dot Product of Halfwords, Add, Unsigned, Saturate, Integer and Accumulate into Words
16656PPC_evdotphassiaaw, // Vector Dot Product of Halfwords, Add, Signed, Saturate, Integer and Accumulate into Words
16657PPC_evdotphasusiaaw, // Vector Dot Product of Halfwords, Add, Signed by Unsigned, Saturate, Integer and Accumulate into Words
16658PPC_evdotphassfaaw, // Vector Dot Product of Halfwords, Add, Signed, Saturate, Fractional and Accumulate into Words
16659PPC_evdotphsssiaaw, // Vector Dot Product of Halfwords, Subtract, Signed, Saturate, Integer and Accumulate into Words
16660PPC_evdotphsssfaaw, // Vector Dot Product of Halfwords, Subtract, Signed, Saturate, Fractional and Accumulate into Words
16661PPC_evdotphaumiaaw, // Vector Dot Product of Halfwords, Add, Unsigned, Modulo, Integer and Accumulate into Words
16662PPC_evdotphasmiaaw, // Vector Dot Product of Halfwords, Add, Signed, Modulo, Integer and Accumulate into Words
16663PPC_evdotphasumiaaw, // Vector Dot Product of Halfwords, Add, Signed by Unsigned, Modulo, Integer and Accumulate into Words
16664PPC_evdotphassfraaw, // Vector Dot Product of Halfwords, Add, Signed, Saturate, Fractional, Round and Accumulate into Words
16665PPC_evdotphssmiaaw, // Vector Dot Product of Halfwords, Subtract, Signed, Modulo, Integer and Accumulate into Words
16666PPC_evdotphsssfraaw, // Vector Dot Product of Halfwords, Subtract, Signed, Saturate, Fractional, Round and Accumulate into Words
16667PPC_evdotp4hgaumi, // Vector Dot Product of Four Halfwords, Guarded, Add, Unsigned, Modulo, Integer (to Accumulator)
16668PPC_evdotp4hgasmi, // Vector Dot Product of Four Halfwords, Guarded, Add, Signed, Modulo, Integer (to Accumulator)
16669PPC_evdotp4hgasumi, // Vector Dot Product of Four Halfwords, Guarded, Add, Signed by Unsigned, Modulo, Integer (to Accumulator)
16670PPC_evdotp4hgasmf, // Vector Dot Product of Four Halfwords, Guarded, Add, Signed, Modulo, Fractional (to Accumulator)
16671PPC_evdotp4hgssmi, // Vector Dot Product of Four Halfwords, Guarded, Subtract, Signed, Modulo, Integer (to Accumulator)
16672PPC_evdotp4hgssmf, // Vector Dot Product of Four Halfwords, Guarded, Subtract, Signed, Modulo, Fractional (to Accumulator)
16673PPC_evdotp4hxgasmi, // Vector Dot Product of Four Halfwords Exchanged, Guarded, Add, Signed, Modulo, Integer (to Accumulator)
16674PPC_evdotp4hxgasmf, // Vector Dot Product of Four Halfwords Exchanged, Guarded, Add, Signed, Modulo, Fractional (to Accumulator)
16675PPC_evdotpbaumi, // Vector Dot Product of Bytes, Add, Unsigned, Modulo, Integer (to Accumulator)
16676PPC_evdotpbasmi, // Vector Dot Product of Bytes, Add, Signed, Modulo, Integer (to Accumulator)
16677PPC_evdotpbasumi, // Vector Dot Product of Bytes, Add, Signed by Unsigned, Modulo, Integer (to Accumulator)
16678PPC_evdotp4hxgssmi, // Vector Dot Product of Four Halfwords Exchanged, Guarded, Subtract, Signed, Modulo, Integer (to Accumulator)
16679PPC_evdotp4hxgssmf, // Vector Dot Product of Four Halfwords Exchanged, Guarded, Subtract, Signed, Modulo, Fractional (to Accumulator)
16680PPC_evdotp4hgaumiaa3, // Vector Dot Product of Four Halfwords, Guarded, Add, Unsigned, Modulo, Integer and Accumulate, 3 operand
16681PPC_evdotp4hgasmiaa3, // Vector Dot Product of Four Halfwords, Guarded, Add, Signed, Modulo, Integer and Accumulate, 3 operand
16682PPC_evdotp4hgasumiaa3, // Vector Dot Product of Four Halfwords, Guarded, Add, Signed by Unsigned, Modulo, Integer and Accumulate, 3 operand
16683PPC_evdotp4hgasmfaa3, // Vector Dot Product of Four Halfwords, Guarded, Add, Signed, Modulo, Fractional and Accumulate, 3 operand
16684PPC_evdotp4hgssmiaa3, // Vector Dot Product of Four Halfwords, Guarded, Subtract, Signed, Modulo, Integer and Accumulate 3 operand
16685PPC_evdotp4hgssmfaa3, // Vector Dot Product of Four Halfwords, Guarded, Subtract, Signed, Modulo, Fractional and Accumulate 3 operand
16686PPC_evdotp4hxgasmiaa3, // Vector Dot Product of Four Halfwords Exchanged, Guarded, Add, Signed, Modulo, Integer and Accumulate 3 operand
16687PPC_evdotp4hxgasmfaa3, // Vector Dot Product of Four Halfwords Exchanged, Guarded, Add, Signed, Modulo, Fractional and Accumulate 3 operand
16688PPC_evdotpbaumiaaw3, // Vector Dot Product of Bytes, Add, Unsigned, Modulo, Integer and Accumulate into Words, 3 operand
16689PPC_evdotpbasmiaaw3, // Vector Dot Product of Bytes, Add, Signed, Modulo, Integer and Accumulate into Words, 3 operand
16690PPC_evdotpbasumiaaw3, // Vector Dot Product of Bytes, Add, Signed by Unsigned, Modulo, Integer and Accumulate into Words, 3 operand
16691PPC_evdotp4hxgssmiaa3, // Vector Dot Product of Four Halfwords Exchanged, Guarded, Subtract, Signed, Modulo, Integer and Accumulate 3 operand
16692PPC_evdotp4hxgssmfaa3, // Vector Dot Product of Four Halfwords Exchanged, Guarded, Subtract, Signed, Modulo, Fractional and Accumulate 3 operand
16693PPC_evdotp4hgaumia, // Vector Dot Product of Four Halfwords, Guarded, Add, Unsigned, Modulo, Integer (to Accumulator)
16694PPC_evdotp4hgasmia, // Vector Dot Product of Four Halfwords, Guarded, Add, Signed, Modulo, Integer (to Accumulator)
16695PPC_evdotp4hgasumia, // Vector Dot Product of Four Halfwords, Guarded, Add, Signed by Unsigned, Modulo, Integer (to Accumulator)
16696PPC_evdotp4hgasmfa, // Vector Dot Product of Four Halfwords, Guarded, Add, Signed, Modulo, Fractional (to Accumulator)
16697PPC_evdotp4hgssmia, // Vector Dot Product of Four Halfwords, Guarded, Subtract, Signed, Modulo, Integer (to Accumulator)
16698PPC_evdotp4hgssmfa, // Vector Dot Product of Four Halfwords, Guarded, Subtract, Signed, Modulo, Fractional (to Accumulator)
16699PPC_evdotp4hxgasmia, // Vector Dot Product of Four Halfwords Exchanged, Guarded, Add, Signed, Modulo, Integer (to Accumulator)
16700PPC_evdotp4hxgasmfa, // Vector Dot Product of Four Halfwords Exchanged, Guarded, Add, Signed, Modulo, Fractional (to Accumulator)
16701PPC_evdotpbaumia, // Vector Dot Product of Bytes, Add, Unsigned, Modulo, Integer (to Accumulator)
16702PPC_evdotpbasmia, // Vector Dot Product of Bytes, Add, Signed, Modulo, Integer (to Accumulator)
16703PPC_evdotpbasumia, // Vector Dot Product of Bytes, Add, Signed by Unsigned, Modulo, Integer (to Accumulator)
16704PPC_evdotp4hxgssmia, // Vector Dot Product of Four Halfwords Exchanged, Guarded, Subtract, Signed, Modulo, Integer (to Accumulator)
16705PPC_evdotp4hxgssmfa, // Vector Dot Product of Four Halfwords Exchanged, Guarded, Subtract, Signed, Modulo, Fractional (to Accumulator)
16706PPC_evdotp4hgaumiaa, // Vector Dot Product of Four Halfwords, Guarded, Add, Unsigned, Modulo, Integer and Accumulate
16707PPC_evdotp4hgasmiaa, // Vector Dot Product of Four Halfwords, Guarded, Add, Signed, Modulo, Integer and Accumulate
16708PPC_evdotp4hgasumiaa, // Vector Dot Product of Four Halfwords, Guarded, Add, Signed by Unsigned, Modulo, Integer and Accumulate
16709PPC_evdotp4hgasmfaa, // Vector Dot Product of Four Halfwords, Guarded, Add, Signed, Modulo, Fractional and Accumulate
16710PPC_evdotp4hgssmiaa, // Vector Dot Product of Four Halfwords, Guarded, Subtract, Signed, Modulo, Integer and Accumulate
16711PPC_evdotp4hgssmfaa, // Vector Dot Product of Four Halfwords, Guarded, Subtract, Signed, Modulo, Fractional and Accumulate
16712PPC_evdotp4hxgasmiaa, // Vector Dot Product of Four Halfwords Exchanged, Guarded, Add, Signed, Modulo, Integer and Accumulate
16713PPC_evdotp4hxgasmfaa, // Vector Dot Product of Four Halfwords Exchanged, Guarded, Add, Signed, Modulo, Fractional and Accumulate
16714PPC_evdotpbaumiaaw, // Vector Dot Product of Bytes, Add, Unsigned, Modulo, Integer and Accumulate into Words
16715PPC_evdotpbasmiaaw, // Vector Dot Product of Bytes, Add, Signed, Modulo, Integer and Accumulate into Words
16716PPC_evdotpbasumiaaw, // Vector Dot Product of Bytes, Add, Signed by Unsigned, Modulo, Integer and Accumulate into Words
16717PPC_evdotp4hxgssmiaa, // Vector Dot Product of Four Halfwords Exchanged, Guarded, Subtract, Signed, Modulo, Integer and Accumulate
16718PPC_evdotp4hxgssmfaa, // Vector Dot Product of Four Halfwords Exchanged, Guarded, Subtract, Signed, Modulo, Fractional and Accumulate
16719PPC_evdotpwausi, // Vector Dot Product of Words, Add, Unsigned, Saturate, integer (to Accumulator)
16720PPC_evdotpwassi, // Vector Dot Product of Words, Add, Signed, Saturate, integer (to Accumulator)
16721PPC_evdotpwasusi, // Vector Dot Product of Words, Add, Signed by Unsigned, Saturate, integer (to Accumulator)
16722PPC_evdotpwaumi, // Vector Dot Product of Words, Add, Unsigned, Modulo, integer (to Accumulator)
16723PPC_evdotpwasmi, // Vector Dot Product of Words, Add, Signed, Modulo, integer (to Accumulator)
16724PPC_evdotpwasumi, // Vector Dot Product of Words, Add, Signed by Unsigned, Modulo, integer (to Accumulator)
16725PPC_evdotpwssmi, // Vector Dot Product of Words, Subtract, Signed, Modulo, integer (to Accumulator)
16726PPC_evdotpwausiaa3, // Vector Dot Product of Words, Add, Unsigned, Saturate, Integer and Accumulate, 3 operand
16727PPC_evdotpwassiaa3, // Vector Dot Product of Words, Add, Signed, Saturate, Integer and Accumulate, 3 operand
16728PPC_evdotpwasusiaa3, // Vector Dot Product of Words, Add, Signed by Unsigned, Saturate, Integer and Accumulate, 3 operand
16729PPC_evdotpwsssiaa3, // Vector Dot Product of Words, Subtract, Signed, Saturate, Integer and Accumulate, 3 operand
16730PPC_evdotpwaumiaa3, // Vector Dot Product of Words, Add, Unsigned, Modulo, Integer and Accumulate, 3 operand
16731PPC_evdotpwasmiaa3, // Vector Dot Product of Words, Add, Signed, Modulo, Integer and Accumulate, 3 operand
16732PPC_evdotpwasumiaa3, // Vector Dot Product of Words, Add, Signed by Unsigned, Modulo, Integer and Accumulate, 3 operand
16733PPC_evdotpwssmiaa3, // Vector Dot Product of Words, Subtract, Signed, Modulo, Integer and Accumulate, 3 operand
16734PPC_evdotpwausia, // Vector Dot Product of Words, Add, Unsigned, Saturate, integer (to Accumulator)
16735PPC_evdotpwassia, // Vector Dot Product of Words, Add, Signed, Saturate, integer (to Accumulator)
16736PPC_evdotpwasusia, // Vector Dot Product of Words, Add, Signed by Unsigned, Saturate, integer (to Accumulator)
16737PPC_evdotpwaumia, // Vector Dot Product of Words, Add, Unsigned, Modulo, integer (to Accumulator)
16738PPC_evdotpwasmia, // Vector Dot Product of Words, Add, Signed, Modulo, integer (to Accumulator)
16739PPC_evdotpwasumia, // Vector Dot Product of Words, Add, Signed by Unsigned, Modulo, integer (to Accumulator)
16740PPC_evdotpwssmia, // Vector Dot Product of Words, Subtract, Signed, Modulo, integer (to Accumulator)
16741PPC_evdotpwausiaa, // Vector Dot Product of Words, Add, Unsigned, Saturate, Integer and Accumulate
16742PPC_evdotpwassiaa, // Vector Dot Product of Words, Add, Signed, Saturate, Integer and Accumulate
16743PPC_evdotpwasusiaa, // Vector Dot Product of Words, Add, Signed by Unsigned, Saturate, Integer and Accumulate
16744PPC_evdotpwsssiaa, // Vector Dot Product of Words, Subtract, Signed, Saturate, Integer and Accumulate
16745PPC_evdotpwaumiaa, // Vector Dot Product of Words, Add, Unsigned, Modulo, Integer and Accumulate
16746PPC_evdotpwasmiaa, // Vector Dot Product of Words, Add, Signed, Modulo, Integer and Accumulate
16747PPC_evdotpwasumiaa, // Vector Dot Product of Words, Add, Signed by Unsigned, Modulo, Integer and Accumulate
16748PPC_evdotpwssmiaa, // Vector Dot Product of Words, Subtract, Signed, Modulo, Integer and Accumulate
16749PPC_evaddih, // Vector Add Immediate Halfword
16750PPC_evaddib, // Vector Add Immediate Byte
16751PPC_evsubifh, // Vector Subtract Immediate from Halfword
16752PPC_evsubifb, // Vector Subtract Immediate from Byte
16753PPC_evabsb, // Vector Absolute Value Byte
16754PPC_evabsh, // Vector Absolute Value Halfword
16755PPC_evabsd, // Vector Absolute Value Doubleword
16756PPC_evabss, // Vector Absolute Value (Word) and Saturate
16757PPC_evabsbs, // Vector Absolute Value Byte and Saturate
16758PPC_evabshs, // Vector Absolute Value Halfword and Saturate
16759PPC_evabsds, // Vector Absolute Value Doubleword and Saturate
16760PPC_evnegwo, // Vector Negate Word Odd
16761PPC_evnegb, // Vector Negate Byte
16762PPC_evnegbo, // Vector Negate Byte Odd
16763PPC_evnegh, // Vector Negate Halfword
16764PPC_evnegho, // Vector Negate Halfwords Odd
16765PPC_evnegd, // Vector Negate Doubleword
16766PPC_evnegs, // Vector Negate (Word) and Saturate
16767PPC_evnegwos, // Vector Negate Word Odd and Saturate
16768PPC_evnegbs, // Vector Negate Byte and Saturate
16769PPC_evnegbos, // Vector Negate Byte Odd and Saturate
16770PPC_evneghs, // Vector Negate Halfword and Saturate
16771PPC_evneghos, // Vector Negate Halfwords Odd and Saturate
16772PPC_evnegds, // Vector Negate Doubleword and Saturate
16773PPC_evextzb, // Vector Extend Zero Byte
16774PPC_evextsbh, // Vector Extend Sign of Bytes (Odd) to Halfwords
16775PPC_evextsw, // Vector Extend Sign Word
16776PPC_evrndhb, // Vector Round Halfword to Byte
16777PPC_evrnddw, // Vector Round Doubleword to Word
16778PPC_evrndwhus, // Vector Round Word to Halfword Unsigned and Saturate
16779PPC_evrndwhss, // Vector Round Word to Halfword Signed and Saturate
16780PPC_evrndhbus, // Vector Round Halfword to Byte Unsigned and Saturate
16781PPC_evrndhbss, // Vector Round Halfword to Byte Signed and Saturate
16782PPC_evrnddwus, // Vector Round Doubleword to Word Unsigned and Saturate
16783PPC_evrnddwss, // Vector Round Doubleword to Word Signed and Saturate
16784PPC_evrndwnh, // Vector Round Word to Nearest Even Halfword
16785PPC_evrndhnb, // Vector Round Halfword to Nearest Even Byte
16786PPC_evrnddnw, // Vector Round Doubleword to Nearest Even Word
16787PPC_evrndwnhus, // Vector Round Word to Nearest Even Halfword Unsigned and Saturate
16788PPC_evrndwnhss, // Vector Round Word to Nearest Even Halfword Signed and Saturate
16789PPC_evrndhnbus, // Vector Round Halfword to Nearest Byte Unsigned and Saturate
16790PPC_evrndhnbss, // Vector Round Halfword to Nearest Even Byte Signed and Saturate
16791PPC_evrnddnwus, // Vector Round Doubleword to Nearest Even Word Unsigned and Saturate
16792PPC_evrnddnwss, // Vector Round Doubleword to Nearest Even Word Signed and Saturate
16793PPC_evcntlzh, // Vector Count Leading Zeros Halfword
16794PPC_evcntlsh, // Vector Count Leading Signed Bits Halfword
16795PPC_evpopcntb, // Vector Population Count Byte
16796PPC_circinc, // Circular Increment
16797PPC_evunpkhibui, // Vector Unpack High Bytes as Unsigned Integers
16798PPC_evunpkhibsi, // Vector Unpack High Bytes as Signed Integers
16799PPC_evunpkhihui, // Vector Extract High Halfwords as Unsigned Integers
16800PPC_evunpkhihsi, // Vector Extract High Halfwords as Signed Integers
16801PPC_evunpklobui, // Vector Unpack Low Bytes Unsigned Integers
16802PPC_evunpklobsi, // Vector Unpack Low Bytes as Signed Integers
16803PPC_evunpklohui, // Vector Unpack Low Halfwords as Unsigned Integers
16804PPC_evunpklohsi, // Vector Unpack Low Halfwords as Signed Integers
16805PPC_evunpklohf, // Vector Unpack Low Halfwords as Fractional
16806PPC_evunpkhihf, // Vector Unpack High Halfwords as Fractional
16807PPC_evunpklowgsf, // Vector Unpack Low Word to Guarded Signed Fraction
16808PPC_evunpkhiwgsf, // Vector Unpack High Word to Guarded Signed Fraction
16809PPC_evsatsduw, // Vector Saturate Signed Doubleword to Unsigned Word Range
16810PPC_evsatsdsw, // Vector Saturate Signed Doubleword to Signed Word Range
16811PPC_evsatshub, // Vector Saturate Signed Halfwords to Unsigned Byte Range
16812PPC_evsatshsb, // Vector Saturate Signed Halfwords to Signed Byte Range
16813PPC_evsatuwuh, // Vector Saturate Unsigned Words to Unsigned Halfword Range
16814PPC_evsatswsh, // Vector Saturate Signed Words to Signed Halfword Range
16815PPC_evsatswuh, // Vector Pack Signed Words to Unsigned Halfword Range
16816PPC_evsatuhub, // Vector Saturate Unsigned Halfwords to Unsigned Byte Range
16817PPC_evsatuduw, // Vector Saturate Unsigned Doubleword to Unsigned Word Range
16818PPC_evsatuwsw, // Vector Saturate Unsigned Words to Signed Word Range
16819PPC_evsatshuh, // Vector Saturate Signed Halfwords to Unsigned Halfword Range
16820PPC_evsatuhsh, // Vector Saturate Unsigned Halfwords to Signed Halfword Range
16821PPC_evsatswuw, // Vector Pack Signed Words to Unsigned Word Range
16822PPC_evsatswgsdf, // Vector Saturate Signed Word Guarded to Signed Doubleword Fractional
16823PPC_evsatsbub, // Vector Saturate Signed Bytes to Unsigned Byte Range
16824PPC_evsatubsb, // Vector Saturate Unsigned Bytes to Signed Byte Range
16825PPC_evmaxhpuw, // Vector Maximum of Halfword Pairs Unsigned to Word
16826PPC_evmaxhpsw, // Vector Maximum of Halfword Pairs Signed to Word
16827PPC_evmaxbpuh, // Vector Maximum of Byte Pairs Unsigned to Halfword
16828PPC_evmaxbpsh, // Vector Maximum of Byte Pairs Signed to Halfword
16829PPC_evmaxwpud, // Vector Maximum of Word Pair Unsigned to Doubleword
16830PPC_evmaxwpsd, // Vector Maximum of Word Pair Signed to Doubleword
16831PPC_evminhpuw, // Vector Minimum of Halfword Pairs Unsigned to Word
16832PPC_evminhpsw, // Vector Minimum of Halfword Pairs Signed to Word
16833PPC_evminbpuh, // Vector Minimum of Byte Pairs Unsigned to Halfword
16834PPC_evminbpsh, // Vector Minimum of Byte Pairs Signed to Halfword
16835PPC_evminwpud, // Vector Minimum of Word Pair Unsigned to Doubleword
16836PPC_evminwpsd, // Vector Minimum of Word Pair Signed to Doubleword
16837PPC_evmaxmagws, // Vector Maximum Magnitude Word Signed
16838PPC_evsl, // Vector Shift Left
16839PPC_evsli, // Vector Shift Left Immediate
16840PPC_evsplatie, // Vector Splat Immediate Even (to Accumulator)
16841PPC_evsplatib, // Vector Splat Immediate Byte (to Accumulator)
16842PPC_evsplatibe, // Vector Splat Immediate Byte Even (to Accumulator)
16843PPC_evsplatih, // Vector Splat Immediate Halfword (to Accumulator)
16844PPC_evsplatihe, // Vector Splat Immediate Halfword Even (to Accumulator)
16845PPC_evsplatid, // Vector Splat Immediate Doubleword (to Accumulator)
16846PPC_evsplatia, // Vector Splat Immediate (to Accumulator)
16847PPC_evsplatiea, // Vector Splat Immediate Even (to Accumulator)
16848PPC_evsplatiba, // Vector Splat Immediate Byte (to Accumulator)
16849PPC_evsplatibea, // Vector Splat Immediate Byte Even (to Accumulator)
16850PPC_evsplatiha, // Vector Splat Immediate Halfword (to Accumulator)
16851PPC_evsplatihea, // Vector Splat Immediate Halfword Even (to Accumulator)
16852PPC_evsplatida, // Vector Splat Immediate Doubleword (to Accumulator)
16853PPC_evsplatfio, // Vector Splat Fractional Immediate Odd (to Accumulator)
16854PPC_evsplatfib, // Vector Splat Fractional Immediate Byte (to Accumulator)
16855PPC_evsplatfibo, // Vector Splat Fractional Immediate Byte Odd (to Accumulator)
16856PPC_evsplatfih, // Vector Splat Fractional Immediate Halfword (to Accumulator)
16857PPC_evsplatfiho, // Vector Splat Fractional Immediate Halfword Odd (to Accumulator)
16858PPC_evsplatfid, // Vector Splat Fractional Immediate Doubleword (to Accumulator)
16859PPC_evsplatfia, // Vector Splat Fractional Immediate (to Accumulator)
16860PPC_evsplatfioa, // Vector Splat Fractional Immediate Odd (to Accumulator)
16861PPC_evsplatfiba, // Vector Splat Fractional Immediate Byte (to Accumulator)
16862PPC_evsplatfiboa, // Vector Splat Fractional Immediate Byte Odd (to Accumulator)
16863PPC_evsplatfiha, // Vector Splat Fractional Immediate Halfword (to Accumulator)
16864PPC_evsplatfihoa, // Vector Splat Fractional Immediate Halfword Odd (to Accumulator)
16865PPC_evsplatfida, // Vector Splat Fractional Immediate Doubleword (to Accumulator)
16866PPC_evcmpgtdu, // Vector Compare Greater Than Doubleword Unsigned
16867PPC_evcmpgtds, // Vector Compare Greater Than Doubleword Signed
16868PPC_evcmpltdu, // Vector Compare Less Than Doubleword Unsigned
16869PPC_evcmpltds, // Vector Compare Less Than Doubleword Signed
16870PPC_evcmpeqd, // Vector Compare Equal Doubleword
16871PPC_evswapbhilo, // Vector Swap Bytes High/Low
16872PPC_evswapblohi, // Vector Swap Bytes Low/High
16873PPC_evswaphhilo, // Vector Swap Halfwords High/Low
16874PPC_evswaphlohi, // Vector Swap Halfwords Low/High
16875PPC_evswaphe, // Vector Swap Halfwords Even
16876PPC_evswaphhi, // Vector Swap Halfwords High
16877PPC_evswaphlo, // Vector Swap Halfwords Low
16878PPC_evswapho, // Vector Swap Halfwords Odd
16879PPC_evinsb, // Vector Insert Byte
16880PPC_evxtrb, // Vector Extract Byte
16881PPC_evsplath, // Vector Splat Halfword
16882PPC_evsplatb, // Vector Splat Byte
16883PPC_evinsh, // Vector Insert Halfword
16884PPC_evclrbe, // Vector Clear Bytes Even
16885PPC_evclrbo, // Vector Clear Bytes Odd
16886PPC_evxtrh, // Vector Extract Halfword
16887PPC_evclrh, // Vector Clear Halfwords
16888PPC_evselbitm0, // Vector Select Bit if Mask is 0
16889PPC_evselbitm1, // Vector Select Bit if Mask is 1
16890PPC_evselbit, // Vector Select Bit
16891PPC_evperm, // Vector Permute
16892PPC_evperm2, // Vector Permute (form 2)
16893PPC_evperm3, // Vector Permute (form 3)
16894PPC_evxtrd, // Vector Extract Doubleword
16895PPC_evsrbu, // Vector Shift Right Byte Unsigned
16896PPC_evsrbs, // Vector Shift Right Byte Signed
16897PPC_evsrbiu, // Vector Shift Right Byte Immediate Unsigned
16898PPC_evsrbis, // Vector Shift Right Byte Immediate Signed
16899PPC_evslb, // Vector Shift Left Byte
16900PPC_evrlb, // Vector Rotate Left Byte
16901PPC_evslbi, // Vector Shift Left Byte Immediate
16902PPC_evrlbi, // Vector Rotate Left Byte Immediate
16903PPC_evsrhu, // Vector Shift Right Halfword Unsigned
16904PPC_evsrhs, // Vector Shift Right Halfword Signed
16905PPC_evsrhiu, // Vector Shift Right Halfword Immediate Unsigned
16906PPC_evsrhis, // Vector Shift Right Halfword Immediate Signed
16907PPC_evslh, // Vector Shift Left Halfword
16908PPC_evrlh, // Vector Rotate Left Halfword
16909PPC_evslhi, // Vector Shift Left Halfword Immediate
16910PPC_evrlhi, // Vector Rotate Left Halfword Immediate
16911PPC_evsru, // Vector Shift Right Unsigned
16912PPC_evsrs, // Vector Shift Right Signed
16913PPC_evsriu, // Vector Shift Right Immediate Unsigned
16914PPC_evsris, // Vector Shift Right Immediate Signed
16915PPC_evlvsl, // Load Vector for Shift Left
16916PPC_evlvsr, // Load Vector for Shift Right
16917PPC_evsroiu, // Vector Shift Right by Octet Immediate Unsigned
16918PPC_evsloi, // Vector Shift Left by Octet Immediate
16919PPC_evsrois, // Vector Shift Right by Octet Immediate Signed
16920PPC_evldbx, // Vector Load Double into Eight Bytes [with Modify] Indexed
16921PPC_evldb, // Vector Load Double into Eight Bytes [with Update]
16922PPC_evlhhsplathx, // Vector Load Halfword into Halfword and Splat Halfwords [with Modify] Indexed
16923PPC_evlhhsplath, // Vector Load Halfword into Halfword and Splat Halfwords [with Update]
16924PPC_evlwbsplatwx, // Vector Load Word as Bytes and Splat Words [with Modify] Indexed
16925PPC_evlwbsplatw, // Vector Load Word as Bytes and Splat Words [with Update]
16926PPC_evlwhsplatwx, // Vector Load Word as Halfwords and Splat Words [with Modify] Indexed
16927PPC_evlwhsplatw, // Vector Load Word as Halfwords and Splat Words [with Update]
16928PPC_evlbbsplatbx, // Vector Load Byte into Byte and Splat Bytes [with Modify] Indexed
16929PPC_evlbbsplatb, // Vector Load Byte into Byte and Splat Bytes [with Update]
16930PPC_evstdbx, // Vector Store Double of Eight Bytes [with Modify] Indexed
16931PPC_evstdb, // Vector Store Double of Eight Bytes [with Update]
16932PPC_evlwbex, // Vector Load Word into Four Bytes Even [with Modify] Indexed
16933PPC_evlwbe, // Vector Load Word into Four Bytes Even [with Update]
16934PPC_evlwboux, // Vector Load Word into Four Bytes Odd Unsigned [with Modify] Indexed
16935PPC_evlwbou, // Vector Load Word into Four Bytes Odd Unsigned [with Update]
16936PPC_evlwbosx, // Vector Load Word into Two Halfwords Odd Signed [with Modify] Indexed
16937PPC_evlwbos, // Vector Load Word into Four Bytes Odd Signed [with Update]
16938PPC_evstwbex, // Vector Store Word of Four Bytes from Even [with Modify] Indexed
16939PPC_evstwbe, // Vector Store Word of Four Bytes from Even [with Update]
16940PPC_evstwbox, // Vector Store Word of Four Bytes from Odd [with Modify] Indexed
16941PPC_evstwbo, // Vector Store Word of Four Bytes from Odd [with Update]
16942PPC_evstwbx, // Vector Store Word of Four Bytes [with Modify] Indexed
16943PPC_evstwb, // Vector Store Word of Four Bytes [with Update]
16944PPC_evsthbx, // Vector Store Halfword of Two Bytes [with Modify] Indexed
16945PPC_evsthb, // Vector Store Halfword of Two Bytes [with Update]
16946PPC_evlddmx, // Vector Load Double Word into Double Word [with Modify] Indexed
16947PPC_evlddu, // Vector Load Double Word into Double Word [with Update]
16948PPC_evldwmx, // Vector Load Double into Two Words [with Modify] Indexed
16949PPC_evldwu, // Vector Load Double into Two Words [with Update]
16950PPC_evldhmx, // Vector Load Double into Four Halfwords [with Modify] Indexed
16951PPC_evldhu, // Vector Load Double into Four Halfwords [with Update]
16952PPC_evldbmx, // Vector Load Double into Eight Bytes [with Modify] Indexed
16953PPC_evldbu, // Vector Load Double into Eight Bytes [with Update]
16954PPC_evlhhesplatmx, // Vector Load Halfword into Halfwords Even and Splat [with Modify] Indexed
16955PPC_evlhhesplatu, // Vector Load Halfword into Halfwords Even and Splat [with Update]
16956PPC_evlhhsplathmx, // Vector Load Halfword into Halfword and Splat Halfwords [with Modify] Indexed
16957PPC_evlhhsplathu, // Vector Load Halfword into Halfword and Splat Halfwords [with Update]
16958PPC_evlhhousplatmx, // Vector Load Halfword into Halfword Odd Unsigned and Splat [with Modify] Indexed
16959PPC_evlhhousplatu, // Vector Load Halfword into Halfword Odd Unsigned and Splat [with Update]
16960PPC_evlhhossplatmx, // Vector Load Halfword into Halfword Odd Signed and Splat [with Modify] Indexed
16961PPC_evlhhossplatu, // Vector Load Halfword into Halfword Odd Signed and Splat [with Update]
16962PPC_evlwhemx, // Vector Load Word into Two Halfwords Even [with Modify] Indexed
16963PPC_evlwheu, // Vector Load Word into Two Halfwords Even [with Update]
16964PPC_evlwbsplatwmx, // Vector Load Word as Bytes and Splat Words [with Modify] Indexed
16965PPC_evlwbsplatwu, // Vector Load Word as Bytes and Splat Words [with Update]
16966PPC_evlwhoumx, // Vector Load Word into Two Halfwords Odd Unsigned [with Modify] Indexed (zero-extended)
16967PPC_evlwhouu, // Vector Load Word into Two Halfwords Odd Unsigned (zero-extended) [with Update]
16968PPC_evlwhosmx, // Vector Load Word into Two Halfwords Odd Signed [with Modify] Indexed (with sign extension)
16969PPC_evlwhosu, // Vector Load Word into Two Halfwords Odd Signed (with sign extension) [with Update]
16970PPC_evlwwsplatmx, // Vector Load Word into Word and Splat [with Modify] Indexed
16971PPC_evlwwsplatu, // Vector Load Word into Word and Splat [with Update]
16972PPC_evlwhsplatwmx, // Vector Load Word as Halfwords and Splat Words [with Modify] Indexed
16973PPC_evlwhsplatwu, // Vector Load Word as Halfwords and Splat Words [with Update]
16974PPC_evlwhsplatmx, // Vector Load Word into Two Halfwords and Splat [with Modify] Indexed
16975PPC_evlwhsplatu, // Vector Load Word into Two Halfwords and Splat [with Update]
16976PPC_evlbbsplatbmx, // Vector Load Byte into Byte and Splat Bytes [with Modify] Indexed
16977PPC_evlbbsplatbu, // Vector Load Byte into Byte and Splat Bytes [with Update]
16978PPC_evstddmx, // Vector Store Double of Double [with Modify] Indexed
16979PPC_evstddu, // Vector Store Double of Double [with Update]
16980PPC_evstdwmx, // Vector Store Double of Two Words [with Modify] Indexed
16981PPC_evstdwu, // Vector Store Double of Two Words [with Update]
16982PPC_evstdhmx, // Vector Store Double of Four Halfwords [with Modify] Indexed
16983PPC_evstdhu, // Vector Store Double of Four Halfwords [with Update]
16984PPC_evstdbmx, // Vector Store Double of Eight Bytes [with Modify] Indexed
16985PPC_evstdbu, // Vector Store Double of Eight Bytes [with Update]
16986PPC_evlwbemx, // Vector Load Word into Four Bytes Even [with Modify] Indexed
16987PPC_evlwbeu, // Vector Load Word into Four Bytes Even [with Update]
16988PPC_evlwboumx, // Vector Load Word into Four Bytes Odd Unsigned [with Modify] Indexed
16989PPC_evlwbouu, // Vector Load Word into Four Bytes Odd Unsigned [with Update]
16990PPC_evlwbosmx, // Vector Load Word into Two Halfwords Odd Signed [with Modify] Indexed
16991PPC_evlwbosu, // Vector Load Word into Four Bytes Odd Signed [with Update]
16992PPC_evstwhemx, // Vector Store Word of Two Halfwords from Even [with Modify] Indexed
16993PPC_evstwheu, // Vector Store Word of Two Halfwords from Even [with Update]
16994PPC_evstwbemx, // Vector Store Word of Four Bytes from Even [with Modify] Indexed
16995PPC_evstwbeu, // Vector Store Word of Four Bytes from Even [with Update]
16996PPC_evstwhomx, // Vector Store Word of Two Halfwords from Odd [with Modify] Indexed
16997PPC_evstwhou, // Vector Store Word of Two Halfwords from Odd [with Update]
16998PPC_evstwbomx, // Vector Store Word of Four Bytes from Odd [with Modify] Indexed
16999PPC_evstwbou, // Vector Store Word of Four Bytes from Odd [with Update]
17000PPC_evstwwemx, // Vector Store Word of Word from Even [with Modify] Indexed
17001PPC_evstwweu, // Vector Store Word of Word from Even [with Update]
17002PPC_evstwbmx, // Vector Store Word of Four Bytes [with Modify] Indexed
17003PPC_evstwbu, // Vector Store Word of Four Bytes [with Update]
17004PPC_evstwwomx, // Vector Store Word of Word from Odd [with Modify] Indexed
17005PPC_evstwwou, // Vector Store Word of Word from Odd [with Update]
17006PPC_evsthbmx, // Vector Store Halfword of Two Bytes [with Modify] Indexed
17007PPC_evsthbu, // Vector Store Halfword of Two Bytes [with Update]
17008PPC_evmhusi, // Vector Multiply Halfword Unsigned, Saturate, Integer
17009PPC_evmhssi, // Vector Multiply Halfword Signed, Saturate, Integer
17010PPC_evmhsusi, // Vector Multiply Halfword Signed by Unsigned, Saturate, Integer
17011PPC_evmhssf, // Vector Multiply Halfword Signed, Saturate, Fractional
17012PPC_evmhumi, // Vector Multiply Halfword Unsigned, Modulo, Integer
17013PPC_evmhssfr, // Vector Multiply Halfword Signed, Saturate, Fractional and Round
17014PPC_evmhesumi, // Vector Multiply Halfwords, Even, Signed by Unsigned, Modulo, Integer (to Accumulator)
17015PPC_evmhosumi, // Vector Multiply Halfwords, Odd, Signed by Unsigned, Modulo, Integer (to Accumulator)
17016PPC_evmbeumi, // Vector Multiply Bytes Even, Unsigned, Modulo, Integer (to Accumulator)
17017PPC_evmbesmi, // Vector Multiply Bytes Even, Signed, Modulo, Integer (to Accumulator)
17018PPC_evmbesumi, // Vector Multiply Bytes Even, Signed by Unsigned, Modulo, Integer (to Accumulator)
17019PPC_evmboumi, // Vector Multiply Bytes Odd, Unsigned, Modulo, Integer (to Accumulator)
17020PPC_evmbosmi, // Vector Multiply Bytes Odd, Signed, Modulo, Integer (to Accumulator)
17021PPC_evmbosumi, // Vector Multiply Bytes Odd, Signed by Unsigned, Modulo, Integer (to Accumulator)
17022PPC_evmhesumia, // Vector Multiply Halfwords, Even, Signed by Unsigned, Modulo, Integer (to Accumulator)
17023PPC_evmhosumia, // Vector Multiply Halfwords, Odd, Signed by Unsigned, Modulo, Integer (to Accumulator)
17024PPC_evmbeumia, // Vector Multiply Bytes Even, Unsigned, Modulo, Integer (to Accumulator)
17025PPC_evmbesmia, // Vector Multiply Bytes Even, Signed, Modulo, Integer (to Accumulator)
17026PPC_evmbesumia, // Vector Multiply Bytes Even, Signed by Unsigned, Modulo, Integer (to Accumulator)
17027PPC_evmboumia, // Vector Multiply Bytes Odd, Unsigned, Modulo, Integer (to Accumulator)
17028PPC_evmbosmia, // Vector Multiply Bytes Odd, Signed, Modulo, Integer (to Accumulator)
17029PPC_evmbosumia, // Vector Multiply Bytes Odd, Signed by Unsigned, Modulo, Integer (to Accumulator)
17030PPC_evmwusiw, // Vector Multiply Word Unsigned, Saturate, Integer Word
17031PPC_evmwssiw, // Vector Multiply Word Signed, Saturate, Integer Word
17032PPC_evmwhssfr, // Vector Multiply Word High Signed, Saturate, Fractional and Round (to Accumulator)
17033PPC_evmwehgsmfr, // Vector Multiply Word Even High Guarded Signed, Modulo, Fractional, Round (to Accumulator)
17034PPC_evmwehgsmf, // Vector Multiply Word Even High Guarded Signed, Modulo, Fractional (to Accumulator)
17035PPC_evmwohgsmfr, // Vector Multiply Word Odd, High, Guarded, Signed, Modulo, Fractional, Round (to Accumulator)
17036PPC_evmwohgsmf, // Vector Multiply Word Odd, High, Guarded, Signed, Modulo, Fractional (to Accumulator)
17037PPC_evmwhssfra, // Vector Multiply Word High Signed, Saturate, Fractional and Round (to Accumulator)
17038PPC_evmwehgsmfra, // Vector Multiply Word Even High Guarded Signed, Modulo, Fractional, Round (to Accumulator)
17039PPC_evmwehgsmfa, // Vector Multiply Word Even High Guarded Signed, Modulo, Fractional (to Accumulator)
17040PPC_evmwohgsmfra, // Vector Multiply Word Odd, High, Guarded, Signed, Modulo, Fractional, Round (to Accumulator)
17041PPC_evmwohgsmfa, // Vector Multiply Word Odd, High, Guarded, Signed, Modulo, Fractional (to Accumulator)
17042PPC_evaddusiaa, // Vector Add Unsigned, Saturate, Integer to Accumulator
17043PPC_evaddssiaa, // Vector Add Signed, Saturate, Integer to Accumulator
17044PPC_evsubfusiaa, // Vector Subtract from (Accumulator) Unsigned, Saturate, Integer to Accumulator
17045PPC_evsubfssiaa, // Vector Subtract from Signed, Saturate, Integer to Accumulator
17046PPC_evaddsmiaa, // Vector Add to Accumulator
17047PPC_evsubfsmiaa, // Vector Subtract from Accumulator to Accumulator
17048PPC_evaddh, // Vector Add Halfwords
17049PPC_evaddhss, // Vector Add Halfwords Signed and Saturate
17050PPC_evsubfh, // Vector Subtract from Halfword
17051PPC_evsubfhss, // Vector Subtract from Halfwords Signed and Saturate
17052PPC_evaddhx, // Vector Add Halfwords Exchanged
17053PPC_evaddhxss, // Vector Add Halfwords Exchanged, Signed and Saturate
17054PPC_evsubfhx, // Vector Subtract from Halfwords Exchanged
17055PPC_evsubfhxss, // Vector Subtract from Halfwords Exchanged, Signed and Saturate
17056PPC_evaddd, // Vector Add Doubleword
17057PPC_evadddss, // Vector Add Doubleword Signed and Saturate
17058PPC_evsubfd, // Vector Subtract from Doubleword
17059PPC_evsubfdss, // Vector Subtract from Doubleword Signed and Saturate
17060PPC_evaddb, // Vector Add Bytes
17061PPC_evaddbss, // Vector Add Bytes Signed and Saturate
17062PPC_evsubfb, // Vector Subtract from Byte
17063PPC_evsubfbss, // Vector Subtract from Byte Signed and Saturate
17064PPC_evaddsubfh, // Vector Add / Subtract from Halfword
17065PPC_evaddsubfhss, // Vector Add / Subtract from Halfword Signed and Saturate
17066PPC_evsubfaddh, // Vector Subtract from / Add Halfwords
17067PPC_evsubfaddhss, // Vector Subtract from / Add Halfwords Signed and Saturate
17068PPC_evaddsubfhx, // Vector Add / Subtract from Halfword Exchanged
17069PPC_evaddsubfhxss, // Vector Add / Subtract from Halfword Exchanged, Signed and Saturate
17070PPC_evsubfaddhx, // Vector Subtract from / Add Halfwords Exchanged
17071PPC_evsubfaddhxss, // Vector Subtract from / Add Halfwords Exchanged, Signed and Saturate
17072PPC_evadddus, // Vector Add Doubleword Unsigned and Saturate
17073PPC_evaddbus, // Vector Add Bytes Unsigned and Saturate
17074PPC_evsubfdus, // Vector Subtract from Doubleword Unsigned and Saturate
17075PPC_evsubfbus, // Vector Subtract from Byte Unsigned and Saturate
17076PPC_evaddwus, // Vector Add Word Unsigned and Saturate
17077PPC_evaddwxus, // Vector Add Word Exchanged Unsigned and Saturate
17078PPC_evsubfwus, // Vector Subtract from Word Unsigned and Saturate
17079PPC_evsubfwxus, // Vector Subtract from Word Exchanged Unsigned and Saturate
17080PPC_evadd2subf2h, // Vector Add Upper 2 and Subtract from Lower 2 Halfwords
17081PPC_evadd2subf2hss, // Vector Add Upper 2 and Subtract from Lower 2 Halfwords Signed and Saturate
17082PPC_evsubf2add2h, // Vector Subtract from Upper 2 / Add Lower 2 Halfwords
17083PPC_evsubf2add2hss, // Vector Subtract from Upper 2 / Add Lower 2 Halfwords Signed and Saturate
17084PPC_evaddhus, // Vector Add Halfwords Unsigned and Saturate
17085PPC_evaddhxus, // Vector Add Halfwords Exchanged, Unsigned and Saturate
17086PPC_evsubfhus, // Vector Subtract from Halfwords Unsigned and Saturate
17087PPC_evsubfhxus, // Vector Subtract from Halfwords Exchanged, Unsigned and Saturate
17088PPC_evaddwss, // Vector Add Word Signed and Saturate
17089PPC_evsubfwss, // Vector Subtract from Word Signed and Saturate
17090PPC_evaddwx, // Vector Add Word Exchanged
17091PPC_evaddwxss, // Vector Add Word Exchanged Signed and Saturate
17092PPC_evsubfwx, // Vector Subtract from Word Exchanged
17093PPC_evsubfwxss, // Vector Subtract from Word Exchanged Signed and Saturate
17094PPC_evaddsubfw, // Vector Add / Subtract from Word
17095PPC_evaddsubfwss, // Vector Add / Subtract from Word Signed and Saturate
17096PPC_evsubfaddw, // Vector Subtract from / Add Word
17097PPC_evsubfaddwss, // Vector Subtract from / Add Word Signed and Saturate
17098PPC_evaddsubfwx, // Vector Add / Subtract from Word Exchanged
17099PPC_evaddsubfwxss, // Vector Add / Subtract from Word Exchanged Signed and Saturate
17100PPC_evsubfaddwx, // Vector Subtract from / Add Word Exchanged
17101PPC_evsubfaddwxss, // Vector Subtract from / Add Word Exchanged Signed and Saturate
17102PPC_evmar, // Store Accumulator
17103PPC_evsumwu, // Vector Sum of Words Unsigned (to Accumulator)
17104PPC_evsumws, // Vector Sum of Words Signed (to Accumulator)
17105PPC_evsum4bu, // Vector Sum of 4 Bytes UnsIgned (to Accumulator)
17106PPC_evsum4bs, // Vector Sum of 4 Bytes SIgned (to Accumulator)
17107PPC_evsum2hu, // Vector Sum of 2 Halfwords Unsigned (to Accumulator)
17108PPC_evsum2hs, // Vector Sum of 2 Halfwords Signed (to Accumulator)
17109PPC_evdiff2his, // Vector Difference of 2 Halfwords Interleaved Signed (to Accumulator)
17110PPC_evsum2his, // Vector Sum of 2 Halfwords Interleaved Signed (to Accumulator)
17111PPC_evsumwua, // Vector Sum of Words Unsigned (to Accumulator)
17112PPC_evsumwsa, // Vector Sum of Words Signed (to Accumulator)
17113PPC_evsum4bua, // Vector Sum of 4 Bytes UnsIgned (to Accumulator)
17114PPC_evsum4bsa, // Vector Sum of 4 Bytes SIgned (to Accumulator)
17115PPC_evsum2hua, // Vector Sum of 2 Halfwords Unsigned (to Accumulator)
17116PPC_evsum2hsa, // Vector Sum of 2 Halfwords Signed (to Accumulator)
17117PPC_evdiff2hisa, // Vector Difference of 2 Halfwords Interleaved Signed (to Accumulator)
17118PPC_evsum2hisa, // Vector Sum of 2 Halfwords Interleaved Signed (to Accumulator)
17119PPC_evsumwuaa, // Vector Sum of Words Unsigned and Accumulate
17120PPC_evsumwsaa, // Vector Sum of Words Signed and Accumulate
17121PPC_evsum4buaaw, // Vector Sum of 4 Bytes Unsigned and Accumulate into Words
17122PPC_evsum4bsaaw, // Vector Sum of 4 Bytes Signed and Accumulate into Words
17123PPC_evsum2huaaw, // Vector Sum of 2 Halfwords Unsigned and Accumulate into Words
17124PPC_evsum2hsaaw, // Vector Sum of 2 Halfwords Signed and Accumulate into Words
17125PPC_evdiff2hisaaw, // Vector Difference of 2 Halfwords Interleaved Signed and Accumulate into Words
17126PPC_evsum2hisaaw, // Vector Sum of 2 Halfwords Interleaved Signed and Accumulate into Words
17127PPC_evdivwsf, // Vector Divide Word Signed Fractional
17128PPC_evdivwuf, // Vector Divide Word Unsigned Fractional
17129PPC_evdivs, // Vector Divide Signed
17130PPC_evdivu, // Vector Divide Unsigned
17131PPC_evaddwegsi, // Vector Add Word Even Guarded Signed Integer
17132PPC_evaddwegsf, // Vector Add Word Even Guarded Signed Fraction
17133PPC_evsubfwegsi, // Vector Subtract from Word Even Guarded Signed Integer
17134PPC_evsubfwegsf, // Vector Subtract from Word Even Guarded Signed Fraction
17135PPC_evaddwogsi, // Vector Add Word Odd Guarded Signed Integer
17136PPC_evaddwogsf, // Vector Add Word Odd Guarded Signed Fraction
17137PPC_evsubfwogsi, // Vector Subtract from Word Odd Guarded Signed Integer
17138PPC_evsubfwogsf, // Vector Subtract from Word Odd Guarded Signed Fraction
17139PPC_evaddhhiuw, // Vector Add Halfwords High Unsigned to Words
17140PPC_evaddhhisw, // Vector Add Halfwords High Signed to Words
17141PPC_evsubfhhiuw, // Vector Subtract from Halfwords High Unsigned to Words
17142PPC_evsubfhhisw, // Vector Subtract from Halfwords High Signed to Words
17143PPC_evaddhlouw, // Vector Add Halfwords Low Unsigned to Words
17144PPC_evaddhlosw, // Vector Add Halfwords Low Signed to Words
17145PPC_evsubfhlouw, // Vector Subtract from Halfwords Low Unsigned to Words
17146PPC_evsubfhlosw, // Vector Subtract from Halfwords Low Signed to Words
17147PPC_evmhesusiaaw, // Vector Multiply Halfwords, Even, Signed by Unsigned, Saturate, Integer and Accumulate into Words
17148PPC_evmhosusiaaw, // Vector Multiply Halfwords, Odd, Signed by Unsigned, Saturate, Integer and Accumulate into Words
17149PPC_evmhesumiaaw, // Vector Multiply Halfwords, Even, Signed by Unsigned, Modulo, Integer and Accumulate into Words
17150PPC_evmhosumiaaw, // Vector Multiply Halfwords, Odd, Signed by Unsigned, Modulo, Integer and Accumulate into Words
17151PPC_evmbeusiaah, // Vector Multiply Byte Even, Unsigned, Saturate, Integer and Accumulate Halfwords
17152PPC_evmbessiaah, // Vector Multiply Byte Even, Signed, Saturate, Integer and Accumulate Halfwords
17153PPC_evmbesusiaah, // Vector Multiply Byte Even, Signed by Unsigned, Saturate, Integer and Accumulate Halfwords
17154PPC_evmbousiaah, // Vector Multiply Byte Odd, Unsigned, Saturate, Integer and Accumulate Halfwords
17155PPC_evmbossiaah, // Vector Multiply Byte Odd, Signed, Saturate, Integer and Accumulate Halfwords
17156PPC_evmbosusiaah, // Vector Multiply Byte Odd, Signed by Unsigned, Saturate, Integer and Accumulate Halfwords
17157PPC_evmbeumiaah, // Vector Multiply Byte Even, Unsigned, Modulo, Integer and Accumulate Halfwords
17158PPC_evmbesmiaah, // Vector Multiply Byte Even, Signed, Modulo, Integer and Accumulate Halfwords
17159PPC_evmbesumiaah, // Vector Multiply Byte Even, Signed by Unsigned, Modulo, Integer and Accumulate Halfwords
17160PPC_evmboumiaah, // Vector Multiply Byte Odd, Unsigned, Modulo, Integer and Accumulate Halfwords
17161PPC_evmbosmiaah, // Vector Multiply Byte Odd, Signed, Modulo, Integer and Accumulate Halfwords
17162PPC_evmbosumiaah, // Vector Multiply Byte Odd, Signed by Unsigned, Modulo, Integer and Accumulate Halfwords
17163PPC_evmwlusiaaw3, // Vector Multiply Word Low Unsigned, Saturate, Integer and Accumulate in Words 3 operand
17164PPC_evmwlssiaaw3, // Vector Multiply Word Low Signed, Saturate, Integer and Accumulate in Words
17165PPC_evmwhssfraaw3, // Vector Multiply Word High Signed, Saturate, Fractional, Round and Accumulate into Words 3 operand
17166PPC_evmwhssfaaw3, // Vector Multiply Word High Signed, Saturate, Fractional and Accumulate into Words 3 operand
17167PPC_evmwhssfraaw, // Vector Multiply Word High Signed, Saturate, Fractional, Round and Accumulate into Words
17168PPC_evmwhssfaaw, // Vector Multiply Word High Signed, Saturate, Fractional and Accumulate into Words
17169PPC_evmwlumiaaw3, // Vector Multiply Word Low Unsigned, Modulo, Integer and Accumulate in Words 3 operand
17170PPC_evmwlsmiaaw3, // Vector Multiply Word Low Signed, Modulo, Integer and Accumulate in Words 3 operand
17171PPC_evmwusiaa, // Vector Multiply Word Unsigned, Saturate, Integer and Accumulate
17172PPC_evmwssiaa, // Vector Multiply Word Signed, Saturate, Integer and Accumulate
17173PPC_evmwehgsmfraa, // Vector Multiply Word Even High Guarded Signed, Modulo, Fractional, Round and Accumulate
17174PPC_evmwehgsmfaa, // Vector Multiply Word Even High Guarded Signed, Modulo, Fractional and Accumulate
17175PPC_evmwohgsmfraa, // Vector Multiply Word Odd High Guarded Signed, Modulo, Fractional, Round and Accumulate
17176PPC_evmwohgsmfaa, // Vector Multiply Word Odd High Guarded Signed, Modulo, Fractional and Accumulate
17177PPC_evmhesusianw, // Vector Multiply Halfwords, Even, Signed by Unsigned, Saturate, Integer and Accumulate Negative into Words
17178PPC_evmhosusianw, // Vector Multiply Halfwords, Odd, Signed by Unsigned, Saturate, Integer and Accumulate Negative into Words
17179PPC_evmhesumianw, // Vector Multiply Halfwords, Even, Signed by Unsigned, Modulo, Integer and Accumulate Negative into Words
17180PPC_evmhosumianw, // Vector Multiply Halfwords, Odd, Signed by Unsigned, Modulo, Integer and Accumulate Negative into Words
17181PPC_evmbeusianh, // Vector Multiply Byte Even, Unsigned, Saturate, Integer and Accumulate Negative Halfwords
17182PPC_evmbessianh, // Vector Multiply Byte Even, Signed, Saturate, Integer and Accumulate Negative Halfwords
17183PPC_evmbesusianh, // Vector Multiply Byte Even, Signed by Unsigned, Saturate, Integer and Accumulate Negative Halfwords
17184PPC_evmbousianh, // Vector Multiply Byte Odd, Unsigned, Saturate, Integer and Accumulate Negative Halfwords
17185PPC_evmbossianh, // Vector Multiply Byte Odd, Signed, Saturate, Integer and Accumulate Negative Halfwords
17186PPC_evmbosusianh, // Vector Multiply Byte Odd, Signed by Unsigned, Saturate, Integer and Accumulate Negative Halfwords
17187PPC_evmbeumianh, // Vector Multiply Byte Even, Unsigned, Modulo, Integer and Accumulate Negative Halfwords
17188PPC_evmbesmianh, // Vector Multiply Byte Even, Signed, Modulo, Integer and Accumulate Negative Halfwords
17189PPC_evmbesumianh, // Vector Multiply Byte Even, Signed by Unsigned, Modulo, Integer and Accumulate Negative Halfwords
17190PPC_evmboumianh, // Vector Multiply Byte Odd, Unsigned, Modulo, Integer and Accumulate Negative Halfwords
17191PPC_evmbosmianh, // Vector Multiply Byte Odd, Signed, Modulo, Integer and Accumulate Negative Halfwords
17192PPC_evmbosumianh, // Vector Multiply Byte Odd, Signed by Unsigned, Modulo, Integer and Accumulate Negative Halfwords
17193PPC_evmwlusianw3, // Vector Multiply Word Low Unsigned, Saturate, Integer and Accumulate Negative in Words 3 operand
17194PPC_evmwlssianw3, // Vector Multiply Word Low Signed, Saturate, Integer and Accumulate Negative in Words 3 operand
17195PPC_evmwhssfranw3, // Vector Multiply Word High Signed, Saturate, Fractional, Round, and Accumulate Negative into Words 3 operand
17196PPC_evmwhssfanw3, // Vector Multiply Word High Signed, Saturate, Fractional and Accumulate Negative into Words 3 operand
17197PPC_evmwhssfranw, // Vector Multiply Word High Signed, Saturate, Fractional, Round, and Accumulate Negative into Words
17198PPC_evmwhssfanw, // Vector Multiply Word High Signed, Saturate, Fractional and Accumulate Negative into Words
17199PPC_evmwlumianw3, // Vector Multiply Word Low Unsigned, Modulo, Integer and Accumulate Negative in Words 3 operand
17200PPC_evmwlsmianw3, // Vector Multiply Word Low Signed, Modulo, Integer and Accumulate Negative in Words 3 operand
17201PPC_evmwusian, // Vector Multiply Word Unsigned, Saturate, Integer and Accumulate Negative
17202PPC_evmwssian, // Vector Multiply Word Signed, Saturate, Integer and Accumulate Negative
17203PPC_evmwehgsmfran, // Vector Multiply Word Even High, Guarded, Signed, Modulo, Fractional, Round and Accumulate Negative
17204PPC_evmwehgsmfan, // Vector Multiply Word Even High, Guarded, Signed, Modulo, Fractional and Accumulate Negative
17205PPC_evmwohgsmfran, // Vector Multiply Word Odd, High, Guarded, Signed, Modulo, Fractional, Round and Accumulate Negative
17206PPC_evmwohgsmfan, // Vector Multiply Word Odd, High, Guarded, Signed, Modulo, Fractional and Accumulate Negative
17207PPC_evseteqb, // Vector Set if Equal Byte [and Record]
17208PPC_evseteqh, // Vector Set if Equal Halfword [and Record]
17209PPC_evseteqw, // Vector Set if Equal Word [and Record]
17210PPC_evsetgthu, // Vector Set if Greater Than Halfword UnsIgned [and Record]
17211PPC_evsetgths, // Vector Set if Greater Than Halfword SIgned [and Record]
17212PPC_evsetgtwu, // Vector Set if Greater Than Word Unsigned [and Record]
17213PPC_evsetgtws, // Vector Set if Greater Than Word Signed [and Record]
17214PPC_evsetgtbu, // Vector Set if Greater Than Byte Unsigned [and Record]
17215PPC_evsetgtbs, // Vector Set if Greater Than Byte SIgned [and Record]
17216PPC_evsetltbu, // Vector Set if Less Than Byte Unsigned [and Record]
17217PPC_evsetltbs, // Vector Set if Less Than Byte SIgned [and Record]
17218PPC_evsetlthu, // Vector Set if Less Than Halfword UnsIgned [and Record]
17219PPC_evsetlths, // Vector Set if Less Than Halfword SIgned [and Record]
17220PPC_evsetltwu, // Vector Set if Less Than Word Unsigned [and Record]
17221PPC_evsetltws, // Vector Set if Less Than Word Signed [and Record]
17222PPC_evsaduw, // Vector Sum of Absolute Differences of Unsigned Words (to Accumulator)
17223PPC_evsadsw, // Vector Sum of Absolute Differences of Signed Words (to Accumulator)
17224PPC_evsad4ub, // Vector Sum of Absolute Differences of 4 Unsigned Bytes (to Accumulator)
17225PPC_evsad4sb, // Vector Sum of Absolute Differences of 4 Signed Bytes (to Accumulator)
17226PPC_evsad2uh, // Vector Sum of Absolute Differences of 2 Unsigned Halfwords (to Accumulator)
17227PPC_evsad2sh, // Vector Sum of Absolute Differences of 2 Signed Halfwords (to Accumulator)
17228PPC_evsaduwa, // Vector Sum of Absolute Differences of Unsigned Words (to Accumulator)
17229PPC_evsadswa, // Vector Sum of Absolute Differences of Signed Words (to Accumulator)
17230PPC_evsad4uba, // Vector Sum of Absolute Differences of 4 Unsigned Bytes (to Accumulator)
17231PPC_evsad4sba, // Vector Sum of Absolute Differences of 4 Signed Bytes (to Accumulator)
17232PPC_evsad2uha, // Vector Sum of Absolute Differences of 2 Unsigned Halfwords (to Accumulator)
17233PPC_evsad2sha, // Vector Sum of Absolute Differences of 2 Signed Halfwords (to Accumulator)
17234PPC_evabsdifuw, // Vector Absolute Difference of Unsigned Words
17235PPC_evabsdifsw, // Vector Absolute Difference of Signed Words
17236PPC_evabsdifub, // Vector Absolute Difference of Unsigned Bytes
17237PPC_evabsdifsb, // Vector Absolute Difference of Signed Bytes
17238PPC_evabsdifuh, // Vector Absolute Difference of Unsigned Halfwords
17239PPC_evabsdifsh, // Vector Absolute Difference of Signed Halfwords
17240PPC_evsaduwaa, // Vector Sum of Absolute Differences of Unsigned Words and Accumulate
17241PPC_evsadswaa, // Vector Sum of Absolute Differences of Signed Words and Accumulate
17242PPC_evsad4ubaaw, // Vector Sum of Absolute Differences of 4 Unsigned Bytes and Accumulate into Words
17243PPC_evsad4sbaaw, // Vector Sum of Absolute Differences of 4 Signed Bytes and Accumulate into Words
17244PPC_evsad2uhaaw, // Vector Sum of Absolute Differences of 2 Unsigned Halfwords and Accumulate into Words
17245PPC_evsad2shaaw, // Vector Sum of Absolute Differences of 2 Signed Halfwords and Accumulate into Words
17246PPC_evpkshubs, // Vector Pack Signed Halfwords to Unsigned Bytes and Saturate
17247PPC_evpkshsbs, // Vector Pack Signed Halfwords to Signed Bytes and Saturate
17248PPC_evpkswuhs, // Vector Pack Signed Words to Unsigned Halfwords and Saturate
17249PPC_evpkswshs, // Vector Pack Signed Words to Signed Halfwords and Saturate
17250PPC_evpkuhubs, // Vector Pack Unsigned Halfwords to Unsigned Bytes and Saturate
17251PPC_evpkuwuhs, // Vector Pack Unsigned Words to Unsigned Halfwords and Saturate
17252PPC_evpkswshilvs, // Vector Pack Signed Words to Signed Halfwords Interleaved and Saturate
17253PPC_evpkswgshefrs, // Vector Pack Signed Words Guarded to Signed Halfwords Even Fractional Round and Saturate
17254PPC_evpkswshfrs, // Vector Pack Signed Words to Signed Halfwords Fractional, Round and Saturate
17255PPC_evpkswshilvfrs, // Vector Pack Signed Words to Signed Halfwords Interleaved, Fractional, Round and Saturate
17256PPC_evpksdswfrs, // Vector Pack Signed Doublewords to Signed Words Fractional, Round and Saturate
17257PPC_evpksdshefrs, // Vector Pack Signed Doublewords to Signed Halfwords Even, Fractional, Round, and Saturate
17258PPC_evpkuduws, // Vector Pack Unsigned Doublewords to Unsigned Words and Saturate
17259PPC_evpksdsws, // Vector Pack Signed Doublewords to Signed Words and Saturate
17260PPC_evpkswgswfrs, // Vector Pack Signed Words Guarded to Signed Words Fractional Round and Saturate
17261PPC_evilveh, // Vector Interleave Even Halfwords
17262PPC_evilveoh, // Vector Interleave Even/Odd Halfwords
17263PPC_evilvhih, // Vector Interleave High Halfwords
17264PPC_evilvhiloh, // Vector Interleave High/Low Halfwords
17265PPC_evilvloh, // Vector Interleave Low Halfwords
17266PPC_evilvlohih, // Vector Interleave Low/High Halfwords
17267PPC_evilvoeh, // Vector Interleave Odd/Even Halfwords
17268PPC_evilvoh, // Vector Interleave Odd Halfwords
17269PPC_evdlveb, // Vector De-interleave Even Bytes
17270PPC_evdlveh, // Vector De-interleave Even Halfwords
17271PPC_evdlveob, // Vector De-interleave Even/Odd Bytes
17272PPC_evdlveoh, // Vector De-interleave Even/Odd Halfwords
17273PPC_evdlvob, // Vector De-interleave Odd Bytes
17274PPC_evdlvoh, // Vector De-interleave Odd Halfwords
17275PPC_evdlvoeb, // Vector De-interleave Odd/Even Bytes
17276PPC_evdlvoeh, // Vector De-interleave Odd/Even Halfwords
17277PPC_evmaxbu, // Vector Maximum Byte Unsigned
17278PPC_evmaxbs, // Vector Maximum Byte Signed
17279PPC_evmaxhu, // Vector Maximum Halfword Unsigned
17280PPC_evmaxhs, // Vector Maximum Halfword Signed
17281PPC_evmaxwu, // Vector Maximum Word Unsigned
17282PPC_evmaxws, // Vector Maximum Word Signed
17283PPC_evmaxdu, // Vector Maximum Doubleword Unsigned
17284PPC_evmaxds, // Vector Maximum Doubleword Signed
17285PPC_evminbu, // Vector Minimum Byte Unsigned
17286PPC_evminbs, // Vector Minimum Byte Signed
17287PPC_evminhu, // Vector Minimum Halfword Unsigned
17288PPC_evminhs, // Vector Minimum Halfword Signed
17289PPC_evminwu, // Vector Minimum Word Unsigned
17290PPC_evminws, // Vector Minimum Word Signed
17291PPC_evmindu, // Vector Minimum Doubleword Unsigned
17292PPC_evminds, // Vector Minimum Doubleword Signed
17293PPC_evavgwu, // Vector Average Word Unsigned
17294PPC_evavgws, // Vector Average Word Signed
17295PPC_evavgbu, // Vector Average Byte Unsigned
17296PPC_evavgbs, // Vector Average Byte Signed
17297PPC_evavghu, // Vector Average Halfword Unsigned
17298PPC_evavghs, // Vector Average Halfword Signed
17299PPC_evavgdu, // Vector Average Doubleword Unsigned
17300PPC_evavgds, // Vector Average Doubleword Signed
17301PPC_evavgwur, // Vector Average Word Unsigned with Round
17302PPC_evavgwsr, // Vector Average Word Signed with Round
17303PPC_evavgbur, // Vector Average Byte Unsigned with Round
17304PPC_evavgbsr, // Vector Average Byte Signed with Round
17305PPC_evavghur, // Vector Average Halfword Unsigned with Round
17306PPC_evavghsr, // Vector Average Halfword Signed with Round
17307PPC_evavgdur, // Vector Average Doubleword Unsigned with Round
17308PPC_evavgdsr, // Vector Average Doubleword Signed with Round
17309
17310// Some simplifications that were missed previously
17311PPC_tdui, // Trap Doubleword Unconditionally with Immediate
17312PPC_tdu, // Trap Doubleword Unconditionally
17313PPC_twui, // Trap Word Unconditionally with Immediate
17314PPC_twu, // Trap Word Unconditionally
17315
17316// Power ISA 2.07
17317PPC_bctar, // Branch Conditional to Branch Target Address Register
17318PPC_clrbhrb, // Clear BHRB
17319PPC_mfbhrbe, // Move From Branch History Rolling Buffer
17320PPC_mtsle, // Move To Split Little Endian
17321PPC_mfvsrd, // Move From VSR Doubleword
17322PPC_mfvsrwz, // Move From VSR Word and Zero
17323PPC_mtvsrd, // Move To VSR Doubleword
17324PPC_mtvsrwa, // Move To VSR Word Algebraic
17325PPC_mtvsrwz, // Move To VSR Word and Zero
17326PPC_fmrgew, // Floating Merge Even Word
17327PPC_fmrgow, // Floating Merge Odd Word
17328PPC_vpksdss, // Vector Pack Signed Doubleword Signed Saturate
17329PPC_vpksdus, // Vector Pack Signed Doubleword Unsigned Saturate
17330PPC_vpkudus, // Vector Pack Unsigned Doubleword Unsigned Saturate
17331PPC_vpkudum, // Vector Pack Unsigned Doubleword Unsigned Modulo
17332PPC_vupkhsw, // Vector Unpack High Signed Word
17333PPC_vupklsw, // Vector Unpack Low Signed Word
17334PPC_vmrgew, // Vector Merge Even Word
17335PPC_vmrgow, // Vector Merge Odd Word
17336PPC_vaddudm, // Vector Add Unsigned Doubleword Modulo
17337PPC_vadduqm, // Vector Add Unsigned Quadword Modulo
17338PPC_vaddeuqm, // Vector Add Extended Unsigned Quadword Modulo
17339PPC_vaddcuq, // Vector Add & write Carry Unsigned Quadword
17340PPC_vaddecuq, // Vector Add Extended & write Carry Unsigned Quadword
17341PPC_vsubudm, // Vector Subtract Unsigned Doubleword Modulo
17342PPC_vsubuqm, // Vector Subtract Unsigned Quadword Modulo
17343PPC_vsubeuqm, // Vector Subtract Extended Unsigned Quadword Modulo
17344PPC_vsubcuq, // Vector Subtract & write Carry Unsigned Quadword
17345PPC_vsubecuq, // Vector Subtract Extended & write Carry Unsigned Quadword
17346PPC_vmulesw, // Vector Multiply Even Signed Word
17347PPC_vmuleuw, // Vector Multiply Even Unsigned Word
17348PPC_vmulosw, // Vector Multiply Odd Signed Word
17349PPC_vmulouw, // Vector Multiply Odd Unsigned Word
17350PPC_vmuluwm, // Vector Multiply Unsigned Word Modulo
17351PPC_vmaxsd, // Vector Maximum Signed Doubleword
17352PPC_vmaxud, // Vector Maximum Unsigned Doubleword
17353PPC_vminsd, // Vector Minimum Signed Doubleword
17354PPC_vminud, // Vector Minimum Unsigned Doubleword
17355PPC_vcmpequd, // Vector Compare Equal To Unsigned Doubleword
17356PPC_vcmpgtsd, // Vector Compare Greater Than Signed Doubleword
17357PPC_vcmpgtud, // Vector Compare Greater Than Unsigned Doubleword
17358PPC_veqv, // Vector Equivalence
17359PPC_vnand, // Vector NAND
17360PPC_vorc, // Vector OR with Complement
17361PPC_vrld, // Vector Rotate Left Doubleword
17362PPC_vsld, // Vector Shift Left Doubleword
17363PPC_vsrd, // Vector Shift Right Doubleword
17364PPC_vsrad, // Vector Shift Right Algebraic Doubleword
17365PPC_vcipher, // Vector AES Cipher
17366PPC_vcipherlast, // Vector AES Cipher Last
17367PPC_vncipher, // Vector AES Inverse Cipher
17368PPC_vncipherlast, // Vector AES Inverse Cipher Last
17369PPC_vsbox, // Vector AES S-Box
17370PPC_vshasigmad, // Vector SHA-512 Sigma Doubleword
17371PPC_vshasigmaw, // Vector SHA-256 Sigma Word
17372PPC_vpmsumb, // Vector Polynomial Multiply-Sum Byte
17373PPC_vpmsumd, // Vector Polynomial Multiply-Sum Doubleword
17374PPC_vpmsumh, // Vector Polynomial Multiply-Sum Halfword
17375PPC_vpmsumw, // Vector Polynomial Multiply-Sum Word
17376PPC_vpermxor, // Vector Permute and Exclusive-OR
17377PPC_vgbbd, // Vector Gather Bits by Byte by Doubleword
17378PPC_vclzb, // Vector Count Leading Zeros Byte
17379PPC_vclzh, // Vector Count Leading Zeros Halfword
17380PPC_vclzw, // Vector Count Leading Zeros Word
17381PPC_vclzd, // Vector Count Leading Zeros Doubleword
17382PPC_vpopcntb, // Vector Population Count Byte
17383PPC_vpopcntd, // Vector Population Count Doubleword
17384PPC_vpopcnth, // Vector Population Count Halfword
17385PPC_vpopcntw, // Vector Population Count Word
17386PPC_vbpermq, // Vector Bit Permute Quadword
17387PPC_bcdadd, // Decimal Add Modulo
17388PPC_bcdsub, // Decimal Subtract Modulo
17389PPC_lxsiwax, // Load VSX Scalar as Integer Word Algebraic Indexed
17390PPC_lxsspx, // Load VSX Scalar Single-Precision Indexed
17391PPC_lxsiwzx, // Load VSX Scalar as Integer Word and Zero Indexed
17392PPC_stxsiwx, // Store VSX Scalar as Integer Word Indexed
17393PPC_stxsspx, // Store VSR Scalar Word Indexed
17394PPC_xsaddsp, // VSX Scalar Add Single-Precision
17395PPC_xscvdpspn, // VSX Scalar Convert Double-Precision to Single-Precision format Non-signalling
17396PPC_xscvspdpn, // Scalar Convert Single-Precision to Double-Precision format Non-signalling
17397PPC_xscvsxdsp, // VSX Scalar Convert Signed Fixed-Point Doubleword to Single-Precision
17398PPC_xscvuxdsp, // VSX Scalar Convert Unsigned Fixed-Point Doubleword to Single-Precision
17399PPC_xsdivsp, // VSX Scalar Divide Single-Precision
17400PPC_xsmaddasp, // VSX Scalar Multiply-Add Type-A Single-Precision
17401PPC_xsmaddmsp, // VSX Scalar Multiply-Add Type-M Single-Precision
17402PPC_xsmsubasp, // VSX Scalar Multiply-Subtract Type-A Single-Precision
17403PPC_xsmsubmsp, // VSX Scalar Multiply-Subtract Type-M Single-Precision
17404PPC_xsmulsp, // VSX Scalar Multiply Single-Precision
17405PPC_xsnmaddasp, // VSX Scalar Negative Multiply-Add Type-A Single-Precision
17406PPC_xsnmaddmsp, // VSX Scalar Negative Multiply-Add Type-M Single-Precision
17407PPC_xsnmsubasp, // VSX Scalar Negative Multiply-Subtract Type-A Single-Precision
17408PPC_xsnmsubmsp, // VSX Scalar Negative Multiply-Subtract Type-M Single-Precision
17409PPC_xsresp, // VSX Scalar Reciprocal Estimate Single-Precision
17410PPC_xsrsp, // VSX Scalar Round to Single-Precision
17411PPC_xsrsqrtesp, // VSX Scalar Reciprocal Square Root Estimate Single-Precision
17412PPC_xssqrtsp, // VSX Scalar Square Root Single-Precision
17413PPC_xssubsp, // VSX Scalar Subtract Single-Precision
17414PPC_xxleqv, // VSX Logical Equivalence
17415PPC_xxlnand, // VSX Logical NAND
17416PPC_xxlorc, // VSX Logical OR with Complement
17417PPC_lqarx, // Load Quadword And Reserve Indexed
17418PPC_stqcx, // Store Quadword Conditional Indexed and record CR0
17419PPC_tbegin, // Transaction Begin
17420PPC_tend, // Transaction End
17421PPC_tabort, // Transaction Abort
17422PPC_tabortwc, // Transaction Abort Word Conditional
17423PPC_tabortwci, // Transaction Abort Word Conditional Immediate
17424PPC_tabortdc, // Transaction Abort Doubleword Conditional
17425PPC_tabortdci, // Transaction Abort Doubleword Conditional Immediate
17426PPC_tsr, // Transaction Suspend or Resume
17427PPC_tcheck, // Transaction Check
17428PPC_rfebb, // Return from Event Based Branch
17429PPC_treclaim, // Transaction Reclaim
17430PPC_trechkpt, // Transaction Recheckpoint
17431PPC_msgsndp, // Message Send Privileged
17432PPC_msgclrp, // Message Clear Privileged
17433PPC_dcblq, // Data Cache Block Lock Query
17434PPC_icblq, // Instruction Cache Block Lock Query
17435
17436// Simplifications for Power ISA 2.07
17437PPC_vmr, // Vector Move Register
17438PPC_vnot, // Vector Complement Register
17439PPC_tendall, // Transaction End All
17440PPC_tsuspend, // Transaction Suspend
17441PPC_tresume, // Transaction Resume
17442PPC_mtppr, // Move To Program Priority Register
17443PPC_mfppr, // Move From Program Priority Register
17444PPC_mtppr32, // Move To Program Priority Register 32-Bit
17445PPC_mfppr32, // Move From Program Priority Register 32-Bit
17446PPC_mtic, // Move To IC
17447PPC_mfic, // Move From IC
17448PPC_mtvtb, // Move to VTB
17449PPC_mfvtb, // Move From VTB
17450PPC_miso, // "or" Cache Control Hint
17451PPC_mdoio, // "or" Shared Resource Hint
17452PPC_mdoom, // "or" Shared Resource Hint
17453PPC_yield, // "or" Shared Resource Hint
17454// these are mentioned in the Power ISA 2.07 document but not implemented by
17455// binutils; since they are just simplifications better to ignore them than to
17456// emit "weird" mnemonics
17457// PPC_mtuamr, // Move To Authority Mask Register
17458// PPC_mfuamr, // Move From Authority Mask Register
17459// PPC_dcbtct, // Data Cache Block Touch
17460// PPC_dcbtds, // Data Cache Block Touch
17461// PPC_dcbna, // Data Cache Block Touch
17462// PPC_dcbtctep, // Data Cache Block Touch by External PID
17463// PPC_dcbtdsep, // Data Cache Block Touch by External PID
17464// PPC_dcbflep, // Data Cache Block Flush by External PID
17465// PPC_dcbflpep, // Data Cache Block Flush by External PID
17466// PPC_dcbtstctep, // Data Cache Block Touch for Store by External PID
17467//
17468// these are only needed by assemblers
17469// PPC_lxvx, // Load VSX Vector Doubleword*2 Indexed
17470// PPC_stxvx, // Store VSX Vector Doubleword*2 Indexed
17471// PPC_mffprd, // Move From FPR Doubleword
17472// PPC_mfvrd, // Move From VR Doubleword
17473// PPC_mffprwz, // Move From FPR Word and Zero
17474// PPC_mfvrwz, // Move From VR Word and Zero
17475// PPC_mtfprd, // Move To FPR Doubleword
17476// PPC_mtvrd, // Move To VR Doubleword
17477// PPC_mtfprwa, // Move To FPR Word Algebraic
17478// PPC_mtvrwa, // Move To VR Word Algebraic
17479// PPC_mtfprwz, // Move To FPR Word and Zero
17480// PPC_mtvrwz, // Move To VR Word and Zero
17481
17482// e500 core family, category ISAT, valid for VLE
17483// EREF_RM Rev. 1 (EIS 2.1) 06/2014
17484PPC_addbss, // Add Byte Signed Saturate
17485PPC_addhss, // Add Halfword Signed Saturate
17486PPC_addwss, // Add Word Signed Saturate
17487PPC_addbus, // Add Byte Unsigned Saturate
17488PPC_addhus, // Add Halfword Unsigned Saturate
17489PPC_addwus, // Add Word Unsigned Saturate
17490PPC_mulhss, // Multiply Halfword SIgned Saturate
17491PPC_mulwss, // Multiply Word SIgned Saturate
17492PPC_mulhus, // Multiply Halfword Unsigned Saturate
17493PPC_mulwus, // Multiply Word Unsigned Saturate
17494PPC_sat, // Saturate
17495PPC_subfbss, // Subtract From Byte Signed Saturate
17496PPC_subfhss, // Subtract From Halfword Signed Saturate
17497PPC_subfwss, // Subtract From Word Signed Saturate
17498PPC_subfbus, // Subtract From Byte Unsigned Saturate
17499PPC_subfhus, // Subtract From Halfword Unsigned Saturate
17500PPC_subfwus, // Subtract From Word Unsigned Saturate
17501// simplified mnemonics for PPC_sat
17502PPC_satsbs, // Saturate
17503PPC_satubs, // Saturate
17504PPC_satsbu, // Saturate
17505PPC_satubu, // Saturate
17506PPC_abssb, // Saturate
17507PPC_absub, // Saturate
17508PPC_satshs, // Saturate
17509PPC_satuhs, // Saturate
17510PPC_satshu, // Saturate
17511PPC_satuhu, // Saturate
17512PPC_abssh, // Saturate
17513PPC_absuh, // Saturate
17514PPC_satsws, // Saturate
17515PPC_satuws, // Saturate
17516PPC_satswu, // Saturate
17517PPC_satuwu, // Saturate
17518PPC_abssw, // Saturate
17519PPC_absuw, // Saturate
17520
17521// e200 Enhanced Debug extension
17522PPC_dni, // Debugger Notify Interrupt
17523
17524// Power ISA Version 3.0
17525PPC_slbieg, // SLB Invalidate Entry Global
17526PPC_slbiag, // SLB Invalidate All Global
17527PPC_slbsync, // SLB Synchronize
17528
17529PPC_addpcis, // Add PC Immediate Shifted
17530PPC_lnia, // Add PC Immediate Shifted
17531PPC_subpcis, // Add PC Immediate Shifted
17532PPC_cmpeqb, // Compare Equal Byte
17533PPC_cmprb, // Compare Ranged Byte
17534PPC_cnttzw, // Count Trailing Zeros Word
17535PPC_cnttzd, // Count Trailing Zeros Dword
17536PPC_darn, // Deliver A Random Number
17537PPC_extswsli, // Extend-Sign Word and Shift Left
17538PPC_maddhd, // Multiply-Add High Doublewor
17539PPC_maddhdu, // Multiply-Add High Doubleword Unsigned
17540PPC_maddld, // Multiply-Add Low Doubleword
17541PPC_mcrxrx, // Move to CR from XER Extended, PPC_mcrxr disappeared
17542PPC_setb, // Set Boolean
17543PPC_modsd, // Modulo Signed Dword
17544PPC_modud, // Modulo Unsigned Dword
17545PPC_modsw, // Modulo Signed Word
17546PPC_moduw, // Modulo Unsigned Word
17547PPC_mfvsrld, // Move From VSR Lower Doubleword
17548PPC_mtvsrdd, // Move To VSR Double Dword
17549PPC_mtvsrws, // Move To VSR Word & Splat
17550PPC_scv, // System Call Vectored
17551PPC_rfscv, // Return From System Call Vectored
17552PPC_stop, // Stop
17553
17554PPC_copy, // Copy
17555PPC_paste, // Paste
17556PPC_ldat, // Load Dword ATomic
17557PPC_lwat, // Load Word ATomic
17558PPC_stdat, // Store Dword ATomic
17559PPC_stwat, // Store Word ATomic
17560PPC_cpabort, // Copy-Paste Abort
17561PPC_wait30, // Wait for Interrupt
17562
17563PPC_dtstsfi, // DFP Test Significance Immediate
17564PPC_dtstsfiq, // DFP Test Significance Immediate Quad
17565
17566PPC_bcdcfn, // Decimal Convert From National & record
17567PPC_bcdcfz, // Decimal Convert From Zoned & record
17568PPC_bcdctn, // Decimal Convert To National & record
17569PPC_bcdctz, // Decimal Convert To Zoned & record
17570PPC_bcdctsq, // Decimal Convert To Signed Qword & record
17571PPC_bcdcfsq, // Decimal Convert From Signed Qword & record
17572PPC_bcdsetsgn, // Decimal Set Sign & record
17573PPC_bcdcpsgn, // Decimal CopySign & record
17574PPC_bcds, // Decimal Shift & record
17575PPC_bcdus, // Decimal Unsigned Shift & record
17576PPC_bcdsr, // Decimal Shift & Round & record
17577PPC_bcdtrunc, // Decimal Truncate & record
17578PPC_bcdutrunc, // Decimal Unsigned Truncate & record
17579
17580PPC_vabsdub, // Vector Absolute Difference Unsigned Byte
17581PPC_vabsduh, // Vector Absolute Difference Unsigned Hword
17582PPC_vabsduw, // Vector Absolute Difference Unsigned Word
17583PPC_vbpermd, // Vector Bit Permute Dword
17584PPC_vclzlsbb, // Vector Count Leading Zero Least-Significant Bits Byte
17585PPC_vctzlsbb, // Vector Count Trailing Zero Least-Significant Bits Byte
17586PPC_vcmpneb, // Vector Compare Not Equal Byte
17587PPC_vcmpnezb, // Vector Compare Not Equal or Zero Byte
17588PPC_vcmpneh, // Vector Compare Not Equal Hword
17589PPC_vcmpnezh, // Vector Compare Not Equal or Zero Hword
17590PPC_vcmpnew, // Vector Compare Not Equal Word
17591PPC_vcmpnezw, // Vector Compare Not Equal or Zero Word
17592PPC_vctzb, // Vector Count Trailing Zeros Byte
17593PPC_vctzh, // Vector Count Trailing Zeros Hword
17594PPC_vctzw, // Vector Count Trailing Zeros Word
17595PPC_vctzd, // Vector Count Trailing Zeros Dword
17596PPC_vextractub, // Vector Extract Unsigned Byte
17597PPC_vextractuh, // Vector Extract Unsigned Hword
17598PPC_vextractuw, // Vector Extract Unsigned Word
17599PPC_vextractd, // Vector Extract Dword
17600PPC_vextsb2w, // Vector Extend Sign Byte to Word
17601PPC_vextsb2d, // Vector Extend Sign Byte to Dword
17602PPC_vextsh2w, // Vector Extend Sign Hword to Word
17603PPC_vextsh2d, // Vector Extend Sign Hword to Dword
17604PPC_vextsw2d, // Vector Extend Sign Word to Dword
17605PPC_vextublx, // Vector Extract Unsigned Byte Left-Indexed
17606PPC_vextubrx, // Vector Extract Unsigned Byte Right-Indexed
17607PPC_vextuhlx, // Vector Extract Unsigned Hword Left-Indexed
17608PPC_vextuhrx, // Vector Extract Unsigned Hword Right-Indexed
17609PPC_vextuwlx, // Vector Extract Unsigned Word Left-Indexed
17610PPC_vextuwrx, // Vector Extract Unsigned Word Right-Indexed
17611PPC_vinsertb, // Vector Insert Byte
17612PPC_vinserth, // Vector Insert Hword
17613PPC_vinsertw, // Vector Insert Word
17614PPC_vinsertd, // Vector Insert Dword
17615PPC_vmul10uq, // Vector Multiply-by-10 Unsigned Qword
17616PPC_vmul10euq, // Vector Multiply-by-10 Extended Unsigned Qword
17617PPC_vmul10cuq, // Vector Multiply-by-10 & write Carry Unsigned Qword
17618PPC_vmul10ecuq, // Vector Multiply-by-10 Extended & write Carry Unsigned Qword
17619PPC_vnegw, // Vector Negate Word
17620PPC_vnegd, // Vector Negate Dword
17621PPC_vpermr, // Vector Permute Right-indexed
17622PPC_vprtybw, // Vector Parity Byte Word
17623PPC_vprtybd, // Vector Parity Byte Dword
17624PPC_vprtybq, // Vector Parity Byte Qword
17625PPC_vrlwnm, // Vector Rotate Left Word then AND with Mask
17626PPC_vrlwmi, // Vector Rotate Left Word then Mask Insert
17627PPC_vrldnm, // Vector Rotate Left Dword then AND with Mask
17628PPC_vrldmi, // Vector Rotate Left Dword then Mask Insert
17629PPC_vslv, // Vector Shift Left Variable
17630PPC_vsrv, // Vector Shift Right Variable
17631
17632PPC_lxsd, // Load VSX Scalar Dword
17633PPC_lxssp, // Load VSX Scalar Single
17634PPC_lxsibzx, // Load VSX Scalar as Integer Byte & Zero Indexed
17635PPC_lxsihzx, // Load VSX Scalar as Integer Hword & Zero Indexed
17636PPC_lxv, // Load VSX Vector
17637PPC_lxvb16x, // Load VSX Vector Byte*16 Indexed
17638PPC_lxvh8x, // Load VSX Vector Hword*8 Indexed
17639PPC_lxvl, // Load VSX Vector with Length
17640PPC_lxvll, // Load VSX Vector Left-justified with Length
17641PPC_lxvwsx, // Load VSX Vector Word & Splat Indexed
17642PPC_lxvx, // Load VSX Vector Indexed
17643PPC_stxsd, // Store VSX Scalar Dword
17644PPC_stxsibx, // Store VSX Scalar as Integer Byte Indexed
17645PPC_stxsihx, // Store VSX Scalar as Integer Hword Indexed
17646PPC_stxssp, // Store VSX Scalar SP
17647PPC_stxv, // Store VSX Vector
17648PPC_stxvb16x, // Store VSX Vector Byte*16 Indexed
17649PPC_stxvh8x, // Store VSX Vector Hword*8 Indexed
17650PPC_stxvl, // Store VSX Vector with Length
17651PPC_stxvll, // Store VSX Vector Left-justified with Length
17652PPC_stxvx, // Store VSX Vector Indexed
17653
17654PPC_xsabsqp, // VSX Scalar Absolute QP
17655PPC_xsaddqp, // VSX Scalar Add QP
17656PPC_xscmpexpqp, // VSX Scalar Compare Exponents QP
17657PPC_xscmpoqp, // VSX Scalar Compare Ordered QP
17658PPC_xscmpuqp, // VSX Scalar Compare Unordered QP
17659PPC_xscpsgnqp, // VSX Scalar Copy Sign QP
17660PPC_xscvdpqp, // VSX Scalar Convert DP to QP
17661PPC_xscvqpdp, // VSX Scalar Convert QP to DP
17662PPC_xscvqpsdz, // VSX Scalar Convert QP to Signed Dword truncate
17663PPC_xscvqpswz, // VSX Scalar Convert QP to Signed Word truncate
17664PPC_xscvqpudz, // VSX Scalar Convert QP to Unsigned Dword truncate
17665PPC_xscvqpuwz, // VSX Scalar Convert QP to Unsigned Word truncate
17666PPC_xscvsdqp, // VSX Scalar Convert Signed Dword to QP
17667PPC_xscvudqp, // VSX Scalar Convert Unsigned Dword to QP
17668PPC_xsdivqp, // VSX Scalar Divide QP
17669PPC_xsiexpqp, // VSX Scalar Insert Exponent QP
17670PPC_xsmaddqp, // VSX Scalar Multiply-Add QP
17671PPC_xsmsubqp, // VSX Scalar Multiply-Subtract QP
17672PPC_xsmulqp, // VSX Scalar Multiply QP
17673PPC_xsnabsqp, // VSX Scalar Negative Absolute QP
17674PPC_xsnegqp, // VSX Scalar Negate QP
17675PPC_xsnmaddqp, // VSX Scalar Negative Multiply-Add QP
17676PPC_xsnmsubqp, // VSX Scalar Negative Multiply-Subtract QP
17677PPC_xssqrtqp, // VSX Scalar Square Root QP
17678PPC_xssubqp, // VSX Scalar Subtract QP
17679PPC_xsxexpqp, // VSX Scalar Extract Exponent QP
17680PPC_xsxsigqp, // VSX Scalar Extract Significand QP
17681PPC_xststdcqp, // VSX Scalar Test Data Class QP
17682PPC_xsrqpxp, // VSX Scalar Round QP to XP
17683PPC_xsrqpi, // VSX Scalar Round QP to Integral [with Inexact]
17684PPC_xscmpeqdp, // VSX Scalar Compare Equal Double-Precision
17685PPC_xscmpexpdp, // VSX Scalar Compare Exponents DP
17686PPC_xscmpgedp, // VSX Scalar Compare Greater Than or Equal Double-Precision
17687PPC_xscmpgtdp, // VSX Scalar Compare Greater Than Double-Precision
17688PPC_xsiexpdp, // VSX Scalar Insert Exponent DP
17689PPC_xsmaxcdp, // VSX Scalar Maximum Type-C Double-Precision
17690PPC_xsmaxjdp, // VSX Scalar Maximum Type-J Double-Precision
17691PPC_xsmincdp, // VSX Scalar Minimum Type-C Double-Precision
17692PPC_xsminjdp, // VSX Scalar Minimum Type-J Double-Precision
17693PPC_xviexpdp, // VSX Vector Insert Exponent DP
17694PPC_xviexpsp, // VSX Vector Insert Exponent SP
17695PPC_xxextractuw,// VSX Vector Extract Unsigned Word
17696PPC_xxinsertw, // VSX Vector Insert Word
17697PPC_xxperm, // VSX Vector Permute
17698PPC_xxpermr, // VSX Vector Permute Right-indexed
17699PPC_xxspltib, // VSX Vector Splat Immediate Byte
17700PPC_xststdcdp, // VSX Scalar Test Data Class DP
17701PPC_xststdcsp, // VSX Scalar Test Data Class SP
17702PPC_xvtstdcdp, // VSX Vector Test Data Class DP
17703PPC_xvtstdcsp, // VSX Vector Test Data Class SP
17704PPC_xsxexpdp, // VSX Scalar Extract Exponent DP
17705PPC_xsxsigdp, // VSX Scalar Extract Significand DP
17706PPC_xscvdphp, // VSX Scalar Convert DP to HP
17707PPC_xscvhpdp, // VSX Scalar Convert HP to DP
17708PPC_xvxexpdp, // VSX Vector Extract Exponent DP
17709PPC_xvxexpsp, // VSX Vector Extract Exponent SP
17710PPC_xvxsigdp, // VSX Vector Extract Significand DP
17711PPC_xvxsigsp, // VSX Vector Extract Significand SP
17712PPC_xxbrd, // VSX Vector Byte-Reverse Dword
17713PPC_xxbrh, // VSX Vector Byte-Reverse Hword
17714PPC_xxbrq, // VSX Vector Byte-Reverse Qword
17715PPC_xxbrw, // VSX Vector Byte-Reverse Word
17716PPC_xvcvhpsp, // VSX Vector Convert HP to SP
17717PPC_xvcvsphp, // VSX Vector Convert SP to HP
17718
17719PPC_msgsync, // Message Synchronize
17720
17721// Instructions introduced in ISA 3.0 and withdrawn in ISA 3.0B :
17722// ldmx "Load Dword Monitored Indexed"
17723// xscmpnedp "VSX Scalar Compare Not Equal Double-Precision"
17724// xvcmpnedp[.] "VSX Vector Compare Not Equal Double-Precision"
17725// xvcmpnesp[.] "VSX Vector Compare Not Equal Single-Precision"
17726
17727// Power ISA Version 3.0 B
17728PPC_addex, // Add Extended using alternate carry
17729PPC_vmsumudm, // Vector Multiply-Sum Unsigned Doubleword Modulo
17730PPC_mffsce, // Move From FPSCR & Clear Enables
17731PPC_mffscdrn, // Move From FPSCR Control & set DRN
17732PPC_mffscdrni, // Move From FPSCR Control & set DRN Immediate
17733PPC_mffscrn, // Move From FPSCR Control & set RN
17734PPC_mffscrni, // Move From FPSCR Control & set RN Immediate
17735PPC_mffsl, // Move From FPSCR Lightweight
17736
17737// Cache Bypass Storage APU
17738PPC_lbdcbx, // Load Byte with Decoration Indexed Cache Bypass
17739PPC_lhdcbx, // Load Halfword with Decoration Indexed Cache Bypass
17740PPC_lwdcbx, // Load Word with Decoration Indexed Cache Bypass
17741PPC_stbdcbx, // Store Byte with Decoration Indexed Cache Bypass
17742PPC_sthdcbx, // Store Halfword with Decoration Indexed Cache Bypass
17743PPC_stwdcbx, // Store Word with Decoration Indexed Cache Bypass
17744
17745PPC_lbcbx, // Load Byte Indexed Cache Bypass
17746PPC_lhcbx, // Load Halfword Indexed Cache Bypass
17747PPC_lwcbx, // Load Word Indexed Cache Bypass
17748PPC_stbwtx, // Store Byte Indexed Cache Bypass
17749PPC_sthwtx, // Store Halfword Indexed Cache Bypass
17750PPC_stwwtx, // Store Word Indexed Cache Bypass
17751PPC_dsncb, // Decorated Storage Notify Cache Bypass
17752
17753// AIOP (E200Z490)
17754PPC_ldw, // Load Doubleword
17755PPC_stdw, // Store Doubleword
17756PPC_lqw, // Load Quadword
17757PPC_stqw, // Store Quadword
17758PPC_ldwcb, // Load Doubleword Cache Bypassed
17759PPC_ldbrw, // Load Byte Reversed Doubleword
17760PPC_ldwbrw, // Load Two Byte Reversed Words
17761PPC_stdwwt, // Store Doubleword with Write-Through
17762PPC_stdbrw, // Store Doubleword Bytes Reversed
17763PPC_stdwbrw, // Store Doubleword Byte Reversed in Word
17764PPC_lqdbrw, // Load Quadword Byte Reversed
17765PPC_stqdbrw, // Store Quadword Byte Reversed
17766PPC_lwbr, // Load Word Byte Reversed
17767PPC_lhbr, // Load Halfword Byte Reversed
17768PPC_stwbr, // Store Word Byte Reversed
17769PPC_sthbr, // Store Halfword Byte Reversed
17770PPC_ldwar, // Load Doubleword and reserve
17771PPC_stdwc, // Store Doubleword conditional on reservation
17772PPC_addb, // Add Two Bytes
17773PPC_addbu, // Add Two Unsigned Bytes
17774PPC_addh, // Add Two Halfwords
17775PPC_addhu, // Add Two Unsigned Halfwords
17776PPC_subfb, // Signed Byte One's Complement Add
17777PPC_subfbu, // Unsigned Byte One's Complement Add
17778PPC_subfh, // Signed Halfword One's Complement Subtract
17779PPC_subfhu, // Unsigned Halfword One's Complement Subtract
17780PPC_byterevw, // Reverse bytes in a word
17781PPC_byterevh, // Reverse bytes in each halfword
17782PPC_hwaccel, // Hardware Acceleration Request
17783PPC_hwacceli, // Hardware Acceleration Request
17784PPC_ordhwaccel, // Ordered Hardware Acceleration Request
17785PPC_ordhwacceli,// Ordered Hardware Acceleration Request
17786PPC_osmcmd, // Ordered Scope Management Command Request
17787PPC_mpure, // MPU Read Entry Instruction
17788PPC_mpuwe, // MPU Write Entry Instruction
17789PPC_mpusync, // MPU Synchronize Instruction
17790
17791// EFP 2.0 instructions
17792PPC_efdmax, // Floating-Point Double-Precision Maximum
17793PPC_efdmin, // Floating-Point Double-Precision Minimum
17794PPC_efdsqrt, // Floating-Point Double-Precision Square Root
17795PPC_efdcfh, // Convert Floating-Point Double-Precision from Half-Precision
17796PPC_efdcth, // Convert Floating-Point Double-Precision to Half-Precision
17797
17798// LSP (Lightweight Signal Processing) instructions
17799PPC_zbrminc, // Bit-reversed masked increment
17800PPC_zcircinc, // Circular increment
17801PPC_zvabsh, // Vector Absolute Value Halfword
17802PPC_zvabshs, // Vector absolute value halfword and saturate
17803PPC_zabsw, // Absolute value word
17804PPC_zabsws, // Absolute value word and saturate
17805PPC_zaddd, // Add doubleword
17806PPC_zadddss, // Add doubleword signed saturate
17807PPC_zadddus, // Add doubleword unsigned saturate
17808PPC_zvaddh, // Vector add halfwords
17809PPC_zvaddhss, // Vector add halfwords signed and saturate
17810PPC_zvaddhus, // Vector add halfwords unsigned and saturate
17811PPC_zvaddhx, // Vector add halfwords exchanged
17812PPC_zvaddhxss, // Vector add halfwords exchanged, signed and saturate
17813PPC_zvaddih, // Vector add immediate halfword
17814PPC_zvaddsubfh, // Vector add / subtract from halfword
17815PPC_zvaddsubfhss, // Vector add / subtract from halfword signed and saturate
17816PPC_zvaddsubfhx, // Vector add / subtract from halfword exchanged
17817PPC_zvaddsubfhxss, // Vector add / subtract from halfword exchanged, signed and saturate
17818PPC_zaddhesw, // Add halfword even signed to word
17819PPC_zaddheuw, // Add halfword even unsigned to word
17820PPC_zaddhosw, // Add halfword odd signed to word
17821PPC_zaddhouw, // Add halfword odd unsigned to word
17822PPC_zvaddw, // Vector add word
17823PPC_zvaddsubfw, // Vector add / subtract from word
17824PPC_zvaddsubfwss, // Vector add / subtract from word signed and saturate
17825PPC_zaddwgsf, // Add word guarded signed fraction
17826PPC_zaddwgsi, // Add word guarded signed integer
17827PPC_zaddwgui, // Add word guarded unsigned integer
17828PPC_zaddwss, // Add word signed and saturate
17829PPC_zvaddwss, // Vector add word signed and saturate
17830PPC_zaddwus, // Add Word Unsigned And Saturate
17831PPC_zvaddwus, // Vector add word unsigned and saturate
17832PPC_zvcmpeqh, // Vector compare equal halfword
17833PPC_zvcmpgths, // Vector compare greater than halfword signed
17834PPC_zvcmpgthu, // Vector compare greater than halfword unsigned
17835PPC_zvcmplths, // Vector compare less than halfword signed
17836PPC_zvcmplthu, // Vector compare less than halfword unsigned
17837PPC_zvcntlsh, // Vector count leading signed bits halfword
17838PPC_zcntlsw, // Count leading signed bits word
17839PPC_zvcntlzh, // Vector count leading zeros halfword
17840PPC_zdivwsf, // Divide word signed fractional and saturate
17841PPC_zvmergehih, // Vector merge high halfwords
17842PPC_zvmergehiloh, // Vector merge high/low halfwords
17843PPC_zvmergeloh, // Vector merge low halfwords
17844PPC_zvmergelohih, // Vector merge low/high halfwords
17845PPC_zvnegh, // Vector negate halfwords
17846PPC_zvnegho, // Vector negate halfword odd
17847PPC_zvneghos, // Vector negate halfwords odd and saturate
17848PPC_zvneghs, // Vector negate halfword and saturate
17849PPC_znegws, // Negate word and saturate
17850PPC_zvpkshgwshfrs, // Vector pack signed halfwords guarded to word to signed halfwords fractional round and saturate
17851PPC_zpkswgshfrs, // Pack signed word guarded to signed halfword fractional round and saturate
17852PPC_zpkswgswfrs, // Pack signed word guarded to signed word fractional round and saturate
17853PPC_zvpkswshfrs, // Vector pack signed words to signed halfwords fractional, round and saturate
17854PPC_zvpkswshs, // Vector pack signed words to signed halfwords and saturate
17855PPC_zvpkswuhs, // Vector pack signed words to unsigned halfwords and saturate
17856PPC_zvpkuwuhs, // Vector pack unsigned words to unsigned halfwords and saturate
17857PPC_zvrlh, // Vector rotate left halfword
17858PPC_zvrlhi, // Vector rotate left halfword immediate
17859PPC_zrndwh, // Round word to halfword
17860PPC_zrndwhss, // Round word to halfword signed and saturate
17861PPC_zsatsdsw, // Saturate signed doubleword to signed word range
17862PPC_zsatsduw, // Saturate signed doubleword to unsigned word range
17863PPC_zvsatshuh, // Vector saturate signed halfwords to unsigned halfword range
17864PPC_zsatswsh, // Saturate signed word to signed halfword range
17865PPC_zsatswuh, // Saturate signed word to unsigned halfword range
17866PPC_zsatswuw, // Saturate signed word to unsigned word range
17867PPC_zsatuduw, // Saturate unsigned doubleword to unsigned word range
17868PPC_zvsatuhsh, // Vector saturate unsigned halfword to signed halfword range
17869PPC_zsatuwsw, // Saturate unsigned word to signed word range
17870PPC_zsatuwsh, // Saturate unsigned word to unsigned halfword range
17871PPC_zsatuwuh, // Saturate unsigned word to signed halfword range
17872PPC_zvselh, // Vector select halfwords
17873PPC_zvslh, // Vector shift left halfword
17874PPC_zvslhi, // Vector shift left halfword immediate
17875PPC_zvslhss, // Vector shift left halfword signed and saturate
17876PPC_zvslhiss, // Vector shift left halfword immediate signed and saturate
17877PPC_zvslhus, // Vector shift left halfword unsigned and saturate
17878PPC_zvslhius, // Vector shift left halfword immediate unsigned and saturate
17879PPC_zslwss, // Shift left word signed and saturate
17880PPC_zslwiss, // Shift left word immediate signed and saturate
17881PPC_zslwus, // Shift left word unsigned and saturate
17882PPC_zslwius, // Shift left word immediate unsigned and saturate
17883PPC_zvsplatfih, // Vector splat fractional immediate halfword
17884PPC_zvsplatih, // Vector splat immediate halfword
17885PPC_zvsrhis, // Vector shift right halfword immediate signed
17886PPC_zvsrhiu, // Vector shift right halfword immediate unsigned
17887PPC_zvsrhs, // Vector shift right halfword signeds
17888PPC_zvsrhu, // Vector shift right halfword unsigned
17889PPC_zvsubfaddh, // Vector subtract from / add halfwords
17890PPC_zvsubfaddhss, // Vector subtract from / add halfwords signed and saturate
17891PPC_zvsubfaddhx, // Vector subtract from / add halfwords exchanged
17892PPC_zvsubfaddhxss, // Vector Subtract from / add halfwords exchanged, signed and saturate
17893PPC_zsubfd, // Subtract from doubleword
17894PPC_zsubfdss, // Subtract from doubleword signed saturate
17895PPC_zsubfdus, // Subtract from doubleword unsigned saturate
17896PPC_zvsubfh, // Vector subtract from halfword
17897PPC_zsubfhesw, // Subtract from halfword even signed to word
17898PPC_zsubfheuw, // Subtract from halfword even unsigned to word
17899PPC_zsubfhosw, // Subtract from halfword odd signed to word
17900PPC_zsubfhouw, // Vector subtract from halfword odd unsigned to word
17901PPC_zvsubfhss, // Vector subtract from halfword signed and saturate
17902PPC_zvsubfhus, // Vector subtract from halfword unsigned and saturate
17903PPC_zvsubfhx, // Vector subtract from halfwords exchanged
17904PPC_zvsubfhxss, // Vector subtract from halfwords exchanged, signed and saturate
17905PPC_zvsubfw, // Vector subtract from word
17906PPC_zvsubfaddw, // Vector subtract from / add word
17907PPC_zvsubfaddwss, // Vector subtract from / add word signed and saturate
17908PPC_zsubfwgsf, // Subtract from word guarded signed fraction
17909PPC_zsubfwgsi, // Subtract from word guarded signed integer
17910PPC_zsubfwgui, // Subtract from word guarded unsigned integer
17911PPC_zsubfwss, // Subtract from word signed and saturate
17912PPC_zvsubfwss, // Vector subtract from word signed and saturate
17913PPC_zsubfwus, // Subtract from word unsigned and saturate
17914PPC_zvsubfwus, // Vector subtract from word unsigned and saturate
17915PPC_zvsubifh, // Vector subtract immediate from halfword
17916PPC_zvunpkhgwsf, // Vector unpack halfwords as guarded word signed fractions
17917PPC_zvunpkhsf, // Vector unpack halfwords as signed fractions
17918PPC_zvunpkhsi, // Vector unpack halfwords as signed integers
17919PPC_zvunpkhui, // Vector unpack halfwords as unsigned integers
17920PPC_zunpkwgsf, // Unpack word to guarded signed fraction
17921PPC_zxtrw, // Extract word
17922PPC_zldd, // Vector load doubleword into doubleword
17923PPC_zlddu, // Vector load doubleword into doubleword with update
17924PPC_zlddx, // Vector load doubleword into doubleword indexed
17925PPC_zlddmx, // Vector load doubleword into doubleword with modify indexed
17926PPC_zldh, // Vector load doubleword into four halfwords
17927PPC_zldhu, // Vector load doubleword into four halfwords with update
17928PPC_zldhx, // Vector load doubleword into four halfwords indexed
17929PPC_zldhmx, // Vector load doubleword into four halfwords with modify indexed
17930PPC_zldw, // Vector load doubleword into two words
17931PPC_zldwu, // Vector load doubleword into two words with update
17932PPC_zldwx, // Vector load double into two words indexed
17933PPC_zldwmx, // Vector load double into two words with modify indexed
17934PPC_zlhgwsf, // Vector load halfword guarded to word signed fraction
17935PPC_zlhgwsfu, // Vector load halfword guarded to word signed fraction with update
17936PPC_zlhgwsfx, // Vector load halfword guarded to word signed fraction indexed
17937PPC_zlhgwsfmx, // Vector load halfword guarded to word signed fraction with modify indexed
17938PPC_zlhhe, // Vector load halfword into halfword even
17939PPC_zlhheu, // Vector load halfword into halfword even with update
17940PPC_zlhhex, // Vector load halfword into halfword even indexed
17941PPC_zlhhemx, // Vector load halfword into halfword even with modify indexed
17942PPC_zlhhos, // Vector load halfword into halfword odd signed
17943PPC_zlhhosu, // Vector load halfword into halfword odd signed with update
17944PPC_zlhhosx, // Vector load halfword into halfword odd signed indexed
17945PPC_zlhhosmx, // Vector load halfword into halfword odd signed with modify indexed
17946PPC_zlhhou, // Vector load halfword into halfword odd unsigned
17947PPC_zlhhouu, // Vector load halfword into halfword odd unsigned with update
17948PPC_zlhhoux, // Vector load halfword into halfword odd unsigned indexed
17949PPC_zlhhoumx, // Vector load halfword into halfword odd unsigned with modify indexed
17950PPC_zlhhsplat, // Vector load halfword into halfwords and splat
17951PPC_zlhhsplatu, // Vector load halfword into halfwords and splat with update
17952PPC_zlhhsplatx, // Vector load halfword into halfwords and splat indexed
17953PPC_zlhhsplatmx, // Vector load halfword into halfwords and splat with modify indexed
17954PPC_zlwgsfd, // Vector load word as guarded signed fraction to doubleword
17955PPC_zlwgsfdu, // Vector load word as guarded signed fraction to doubleword with update
17956PPC_zlwgsfdx, // Vector load word as guarded signed fraction to doubleword indexed
17957PPC_zlwgsfdmx, // Vector load word as guarded signed fraction to doubleword with modify indexed
17958PPC_zlwh, // Vector load word into two halfwords
17959PPC_zlwhu, // Vector load word into two halfwords with update
17960PPC_zlwhx, // Vector load word into two halfwords indexed
17961PPC_zlwhmx, // Vector load word into two halfwords with modify indexed
17962PPC_zlwhed, // Vector load word into two halfwords even to doubleword
17963PPC_zlwhedu, // Vector load word into two halfwords even to doubleword with update
17964PPC_zlwhedx, // Vector load word into two halfwords even to doubleword indexed
17965PPC_zlwhedmx, // Vector load word into two halfwords even to doubleword with modify indexed
17966PPC_zlwhgwsfd, // Vector load word as halfwords guarded to word signed fraction to doubleword
17967PPC_zlwhgwsfdu, // Vector load word as halfwords guarded to word signed fraction to doubleword with update
17968PPC_zlwhgwsfdx, // Vector load word as halfwords guarded to word signed fraction to doubleword indexed
17969PPC_zlwhgwsfdmx, // Vector load word as halfwords guarded to word signed fraction to doubleword with modify indexed
17970PPC_zlwhosd, // Vector load word into two halfwords odd signed (with sign extension) to doubleword
17971PPC_zlwhosdu, // Vector load word into two halfwords odd signed (with sign extension) to doubleword with update
17972PPC_zlwhosdx, // Vector load word into two halfwords odd signed (with sign extension) to doubleword indexed
17973PPC_zlwhosdmx, // Vector load word into two halfwords odd signed (with sign extension) to doubleword with modify indexed
17974PPC_zlwhoud, // Vector load word into two halfwords odd unsigned (zero-extended) to doubleword
17975PPC_zlwhoudu, // Vector load word into two halfwords odd unsigned (zero-extended) to doubleword with update
17976PPC_zlwhoudx, // Vector load word into two halfwords odd unsigned (zero-extended) to doubleword indexed
17977PPC_zlwhoudmx, // Vector load word into two halfwords odd unsigned (zero-extended) to doubleword with modify indexed
17978PPC_zlwhsplatd, // Vector load word into two halfwords and splat to doubleword
17979PPC_zlwhsplatdu, // Vector load word into two halfwords and splat to doubleword with update
17980PPC_zlwhsplatdx, // Vector load word into two halfwords and splat to doubleword indexed
17981PPC_zlwhsplatdmx, // Vector load word into two halfwords and splat to doubleword with modify indexed
17982PPC_zlwhsplatwd, // Vector load word as halfwords and splat words to doubleword
17983PPC_zlwhsplatwdu, // Vector load word as halfwords and splat words to doubleword with update
17984PPC_zlwhsplatwdx, // Vector load word as halfwords and splat words to doubleword indexed
17985PPC_zlwhsplatwdmx, // Vector load word as halfwords and splat words to doubleword with modify indexed
17986PPC_zlww, // Vector load word into word
17987PPC_zlwwu, // Vector load word into word with update
17988PPC_zlwwx, // Vector load word into word indexed
17989PPC_zlwwmx, // Vector load word into word with modify indexed
17990PPC_zlwwosd, // Vector load word as word odd signed to doubleword
17991PPC_zlwwosdu, // Vector load word as word odd signed to doubleword with update
17992PPC_zlwwosdx, // Vector load word as word odd signed to doubleword indexed
17993PPC_zlwwosdmx, // Vector load word as word odd signed to doubleword with modify indexed
17994PPC_zstdd, // Vector store double of double
17995PPC_zstddu, // Vector store double of double with update
17996PPC_zstddx, // Vector store double of double indexed
17997PPC_zstddmx, // Vector store double of double with modify indexed
17998PPC_zstdh, // Vector store double of four halfwords
17999PPC_zstdhu, // Vector store double of four halfwords with update
18000PPC_zstdhx, // Vector store double of four halfwords indexed
18001PPC_zstdhmx, // Vector store double of four halfwords with modify indexed
18002PPC_zstdw, // Vector store double of two words
18003PPC_zstdwu, // Vector store double of two words with update
18004PPC_zstdwx, // Vector store double of two words indexed
18005PPC_zstdwmx, // Vector store double of two words with modify indexed
18006PPC_zsthe, // Vector store halfword even
18007PPC_zstheu, // Vector store halfword even with update
18008PPC_zsthex, // Vector store halfword even indexed
18009PPC_zsthemx, // Vector store halfword even with modify indexed
18010PPC_zstho, // Vector store halfword odd
18011PPC_zsthou, // Vector store halfword odd with update
18012PPC_zsthox, // Vector store halfword odd indexed
18013PPC_zsthomx, // Vector store halfword odd with modify indexed
18014PPC_zstwh, // Vector store word of two halfwords
18015PPC_zstwhu, // Vector store word of two halfwords with update
18016PPC_zstwhx, // Vector store word of two halfwords indexed
18017PPC_zstwhmx, // Vector store word of two halfwords with modify indexed
18018PPC_zstwhed, // Vector store word of two halfwords even from double
18019PPC_zstwhedu, // Vector store word of two halfwords even from double with update
18020PPC_zstwhedx, // Vector store word of two halfwords even from double indexed
18021PPC_zstwhedmx, // Vector store word of two halfwords even from double with modify indexed
18022PPC_zstwhod, // Vector store word of two halfwords odd from double
18023PPC_zstwhodu, // Vector store word of two halfwords odd from double with update
18024PPC_zstwhodx, // Vector store word of two halfwords odd from double indexed
18025PPC_zstwhodmx, // Vector store word of two halfwords odd from double with modify indexed
18026PPC_zstww, // Vector store word of word
18027PPC_zstwwu, // Vector store word of word with update
18028PPC_zstwwx, // Vector store word of word indexed
18029PPC_zstwwmx, // Vector store word of word with modify indexed
18030PPC_zmhegui, // Multiply halfwords, even guarded, unsigned integer
18031PPC_zmhegsi, // Multiply halfwords, even guarded, signed integer
18032PPC_zmhegsui, // Multiply halfwords, even guarded, signed by unsigned integer
18033PPC_zmhegsmf, // Multiply halfwords, even guarded, signed modulo fractional
18034PPC_zmheogui, // Multiply halfwords, even/odd guarded, unsigned integer
18035PPC_zmheogsi, // Multiply halfwords, even/odd guarded, signed integer
18036PPC_zmheogsui, // Multiply halfwords, even/odd guarded, signed by unsigned integer
18037PPC_zmheogsmf, // Multiply halfwords, even/odd guarded, signed modulo fractional
18038PPC_zmhogui, // Multiply halfwords, odd guarded, unsigned integer
18039PPC_zmhogsi, // Multiply halfwords, odd guarded, signed integer
18040PPC_zmhogsui, // Multiply halfwords, odd guarded, signed by unsigned integer
18041PPC_zmhogsmf, // Multiply halfwords, odd guarded, signed modulo fractional
18042PPC_zmheguiaa, // Multiply halfwords, even guarded, unsigned integer and accumulate
18043PPC_zmheguian, // Multiply halfwords, even guarded, unsigned integer and accumulate negative
18044PPC_zmhegsiaa, // Multiply halfwords, even guarded, signed integer and accumulate
18045PPC_zmhegsian, // Multiply halfwords, even guarded, signed integer and accumulate negative
18046PPC_zmhegsuiaa, // Multiply halfwords, even guarded, signed by unsigned integer and accumulate
18047PPC_zmhegsuian, // Multiply halfwords, even guarded, signed by unsigned integer and accumulate negative
18048PPC_zmhegsmfaa, // Multiply halfwords, even guarded, signed modulo fractional and accumulate
18049PPC_zmhegsmfan, // Multiply halfwords, even guarded, signed modulo fractional and accumulate negative
18050PPC_zmheoguiaa, // Multiply halfwords, even/odd guarded, unsigned integer and accumulate
18051PPC_zmheoguian, // Multiply halfwords, even/odd guarded, unsigned integer and accumulate negative
18052PPC_zmheogsiaa, // Multiply halfwords, even/odd guarded, signed integer and accumulate
18053PPC_zmheogsian, // Multiply halfwords, even/odd guarded, signed integer and accumulate negative
18054PPC_zmheogsuiaa, // Multiply halfwords, even/odd guarded, signed by unsigned integer and accumulate
18055PPC_zmheogsuian, // Multiply halfwords, even/odd guarded, signed by unsigned integer and accumulate negative
18056PPC_zmheogsmfaa, // Multiply halfwords, even/odd guarded, signed modulo fractional and accumulate
18057PPC_zmheogsmfan, // Multiply halfwords, even/odd guarded, signed modulo fractional and accumulate negative
18058PPC_zmhoguiaa, // Multiply halfwords, odd guarded, unsigned integer and accumulate
18059PPC_zmhoguian, // Multiply halfwords, odd guarded, unsigned integer and accumulate negative
18060PPC_zmhogsiaa, // Multiply halfwords, odd guarded, signed integer and accumulate
18061PPC_zmhogsian, // Multiply halfwords, odd guarded, signed integer and accumulate negative
18062PPC_zmhogsuiaa, // Multiply halfwords, odd guarded, signed by unsigned integer and accumulate
18063PPC_zmhogsuian, // Multiply halfwords, odd guarded, signed by unsigned integer and accumulate negative
18064PPC_zmhogsmfaa, // Multiply halfwords, odd guarded, signed modulo fractional and accumulate
18065PPC_zmhogsmfan, // Multiply halfwords, odd guarded, signed modulo fractional and accumulate negative
18066PPC_zmhegwsmf, // Multiply halfwords, even guarded to word, signed modulo fractional
18067PPC_zmheogwsmf, // Multiply halfwords, even/odd guarded to word, signed modulo fractional
18068PPC_zmhogwsmf, // Multiply halfwords, odd guarded to word, signed modulo fractional
18069PPC_zmhegwsmfr, // Multiply halfwords, even guarded to word, signed modulo fractional with round
18070PPC_zmheogwsmfr, // Multiply halfwords, even/odd guarded to word, signed modulo fractional with round
18071PPC_zmhogwsmfr, // Multiply halfwords, odd guarded to word, signed modulo fractional with round
18072PPC_zmhegwsmfaa, // Multiply halfwords, even guarded to word, signed modulo fractional and accumulate
18073PPC_zmheogwsmfaa, // Multiply halfwords, even/odd guarded to word, signed modulo fractional and accumulate
18074PPC_zmhogwsmfaa, // Multiply halfwords, odd guarded to word, signed modulo fractional and accumulate
18075PPC_zmhegwsmfan, // Multiply halfwords, even guarded to word, signed modulo fractional and accumulate negative
18076PPC_zmheogwsmfan, // Multiply halfwords, even/odd guarded to word, signed modulo fractional and accumulate negative
18077PPC_zmhogwsmfan, // Multiply halfwords, odd guarded to word, signed modulo fractional and accumulate negative
18078PPC_zmhegwsmfraa, // Multiply halfwords, even guarded to word, signed modulo fractional with round and accumulate
18079PPC_zmheogwsmfraa, // Multiply halfwords, even/odd guarded to word, signed modulo fractional with round and accumulate
18080PPC_zmhogwsmfraa, // Multiply halfwords, odd guarded to word, signed modulo fractional with round and accumulate
18081PPC_zmhegwsmfran, // Multiply halfwords, even guarded to word, signed modulo fractional with round and accumulate negative
18082PPC_zmheogwsmfran, // Multiply halfwords, even/odd guarded to word, signed modulo fractional with round and accumulate negative
18083PPC_zmhogwsmfran, // Multiply halfwords, odd guarded to word, signed modulo fractional with round and accumulate negative
18084PPC_zmhesf, // Multiply halfwords, even, signed fractional
18085PPC_zmheosf, // Multiply halfwords, even/odd, signed fractional
18086PPC_zmhosf, // Multiply halfwords, odd, signed fractional
18087PPC_zmhesfr, // Multiply halfwords, even, signed fractional with round
18088PPC_zmheosfr, // Multiply halfwords, even/odd, signed fractional with round
18089PPC_zmhosfr, // Multiply halfwords, odd, signed fractional with round
18090PPC_zmhesfaas, // Multiply halfwords, even signed fractional and accumulate with saturate
18091PPC_zmheosfaas, // Multiply halfwords, even/odd signed fractional and accumulate with saturate
18092PPC_zmhosfaas, // Multiply halfwords, odd signed fractional and accumulate with saturate
18093PPC_zmhesfans, // Multiply halfwords, even signed fractional and accumulate negative with saturate
18094PPC_zmheosfans, // Multiply halfwords, even/odd signed fractional and accumulate negative with saturate
18095PPC_zmhosfans, // Multiply halfwords, odd signed fractional and accumulate negative with saturate
18096PPC_zmhesfraas, // Multiply halfwords, even signed fractional with round and accumulate with saturate
18097PPC_zmheosfraas, // Multiply halfwords, even/odd signed fractional with round and accumulate with saturate
18098PPC_zmhosfraas, // Multiply halfwords, odd signed fractional with round and accumulate with saturate
18099PPC_zmhesfrans, // Multiply halfwords, even signed fractional with round and accumulate negative with saturate
18100PPC_zmheosfrans, // Multiply halfwords, even/odd signed fractional with round and accumulate negative with saturate
18101PPC_zmhosfrans, // Multiply halfwords, odd signed fractional with round and accumulate negative with saturate
18102PPC_zmhesi, // Multiply halfwords, even, signed integer
18103PPC_zmheosi, // Multiply halfwords, even/odd, signed integer
18104PPC_zmhosi, // Multiply halfwords, odd, signed integer
18105PPC_zmhesui, // Multiply halfwords, even, signed by unsigned integer
18106PPC_zmheosui, // Multiply halfwords, even/odd, signed by unsigned integer
18107PPC_zmhosui, // Multiply halfwords, odd, signed by unsigned integer
18108PPC_zmheui, // Multiply halfwords, even, unsigned integer
18109PPC_zmheoui, // Multiply halfwords, even/odd, unsigned integer
18110PPC_zmhoui, // Multiply halfwords, odd, unsigned integer
18111PPC_zmhesiaa, // Multiply halfwords, even, signed integer and accumulate
18112PPC_zmheosiaa, // Multiply halfwords, even/odd, signed integer and accumulate
18113PPC_zmhosiaa, // Multiply halfwords, odd, signed integer and accumulate
18114PPC_zmhesian, // Multiply halfwords, even, signed integer and accumulate negative
18115PPC_zmheosian, // Multiply halfwords, even/odd, signed integer and accumulate negative
18116PPC_zmhosian, // Multiply halfwords, odd, signed integer and accumulate negative
18117PPC_zmhesuiaa, // Multiply halfwords, even, signed by unsigned integer and accumulate
18118PPC_zmheosuiaa, // Multiply halfwords, even/odd, signed by unsigned integer and accumulate
18119PPC_zmhosuiaa, // Multiply halfwords, odd, signed by unsigned integer and accumulate
18120PPC_zmhesuian, // Multiply halfwords, even, signed by unsigned integer and accumulate negative
18121PPC_zmheosuian, // Multiply halfwords, even/odd, signed by unsigned integer and accumulate negative
18122PPC_zmhosuian, // Multiply halfwords, odd, signed by unsigned integer and accumulate negative
18123PPC_zmheuiaa, // Multiply halfwords, even, unsigned integer and accumulate
18124PPC_zmheouiaa, // Multiply halfwords, even/odd, unsigned integer and accumulate
18125PPC_zmhouiaa, // Multiply halfwords, odd, unsigned integer and accumulate
18126PPC_zmheuian, // Multiply halfwords, even, unsigned integer and accumulate negative
18127PPC_zmheouian, // Multiply halfwords, even/odd, unsigned integer and accumulate negative
18128PPC_zmhouian, // Multiply halfwords, odd, unsigned integer and accumulate negative
18129PPC_zmhesiaas, // Multiply halfwords, even, signed integer and accumulate with saturate
18130PPC_zmheosiaas, // Multiply halfwords, even/odd, signed integer and accumulate with saturate
18131PPC_zmhosiaas, // Multiply halfwords, odd, signed integer and accumulate with saturate
18132PPC_zmhesians, // Multiply halfwords, even, signed integer and accumulate negative with saturate
18133PPC_zmheosians, // Multiply halfwords, even/odd, signed integer and accumulate negative with saturate
18134PPC_zmhosians, // Multiply halfwords, odd, signed integer and accumulate negative with saturate
18135PPC_zmhesuiaas, // Multiply halfwords, even, signed by unsigned integer and accumulate with saturate
18136PPC_zmheosuiaas, // Multiply halfwords, even/odd, signed by unsigned integer and accumulate with saturate
18137PPC_zmhosuiaas, // Multiply halfwords, odd, signed by unsigned integer and accumulate with saturate
18138PPC_zmhesuians, // Multiply halfwords, even, signed by unsigned integer and accumulate negative with saturate
18139PPC_zmheosuians, // Multiply halfwords, even/odd, signed by unsigned integer and accumulate negative with saturate
18140PPC_zmhosuians, // Multiply halfwords, odd, signed by unsigned integer and accumulate negative with saturate
18141PPC_zmheuiaas, // Multiply halfwords, even, unsigned integer and accumulate with saturate
18142PPC_zmheouiaas, // Multiply halfwords, even/odd, unsigned integer and accumulate with saturate
18143PPC_zmhouiaas, // Multiply halfwords, odd, unsigned integer and accumulate with saturate
18144PPC_zmheuians, // Multiply halfwords, even, unsigned integer and accumulate negative with saturate
18145PPC_zmheouians, // Multiply halfwords, even/odd, unsigned integer and accumulate negative with saturate
18146PPC_zmhouians, // Multiply halfwords, odd, unsigned integer and accumulate negative with saturate
18147PPC_zvmhsfh, // Vector multiply halfword signed, fractional, to halfword
18148PPC_zvmhsfrh, // Vector multiply halfword signed, fractional and round, to halfword
18149PPC_zvmhsfaahs, // Vector multiply halfword, signed fractional and accumulate to halfword with saturate
18150PPC_zvmhsfanhs, // Vector multiply halfword, signed fractional and accumulate negative to halfword with saturate
18151PPC_zvmhsfraahs, // Vector multiply halfword, signed fractional with round and accumulate to halfword with saturate
18152PPC_zvmhsfranhs, // Vector multiply halfword, signed fractional with round and accumulate negative to halfword with saturate
18153PPC_zvmhsih, // Vector multiply halfword signed integer to halfword
18154PPC_zvmhsuih, // Vector multiply halfword signed by unsigned integer to halfword
18155PPC_zvmhuih, // Vector multiply halfword unsigned integer to halfword
18156PPC_zvmhsihs, // Vector multiply halfword signed integer to halfword with saturate
18157PPC_zvmhsuihs, // Vector multiply halfword signed by unsigned integer to halfword with saturate
18158PPC_zvmhuihs, // Vector multiply halfword unsigned integer to halfword with saturate
18159PPC_zvmhsiaah, // Vector multiply halfword signed integer and accumulate to halfword
18160PPC_zvmhsuiaah, // Vector multiply halfword signed by unsigned integer and accumulate to halfword
18161PPC_zvmhuiaah, // Vector multiply halfword unsigned integer and accumulate to halfword
18162PPC_zvmhsianh, // Vector multiply halfword signed integer and accumulate negative to halfword
18163PPC_zvmhsuianh, // Vector multiply halfword signed by unsigned integer and accumulate negative to halfword
18164PPC_zvmhuianh, // Vector multiply halfword unsigned integer and accumulate negative to halfword
18165PPC_zvmhsiaahs, // Vector multiply halfword signed integer and accumulate to halfword with saturate
18166PPC_zvmhsuiaahs, // Vector multiply halfword signed by unsigned integer and accumulate to halfword with saturate
18167PPC_zvmhuiaahs, // Vector multiply halfword unsigned integer and accumulate to halfword with saturate
18168PPC_zvmhsianhs, // Vector multiply halfword signed integer and accumulate negative to halfword with saturate
18169PPC_zvmhsuianhs, // Vector multiply halfword signed by unsigned integer and accumulate negative to halfword with saturate
18170PPC_zvmhuianhs, // Vector multiply halfword unsigned integer and accumulate negative to halfword with saturate
18171PPC_zmwgsi, // Multiply word guarded, signed integer
18172PPC_zmwgsui, // Multiply word guarded, signed by unsigned integer
18173PPC_zmwgui, // Multiply word guarded, unsigned integer
18174PPC_zmwgsiaa, // Multiply word guarded, signed integer and accumulate
18175PPC_zmwgsian, // Multiply word guarded, signed integer and accumulate negative
18176PPC_zmwgsuiaa, // Multiply word guarded, signed by unsigned integer and accumulate
18177PPC_zmwgsuian, // Multiply word guarded, signed by unsigned integer and accumulate negative
18178PPC_zmwguiaa, // Multiply word guarded, unsigned integer and accumulate
18179PPC_zmwguian, // Multiply word guarded, unsigned integer and accumulate negative
18180PPC_zmwgsiaas, // Multiply word guarded, signed integer and accumulate with saturate
18181PPC_zmwgsians, // Multiply word guarded, signed integer and accumulate negative with saturate
18182PPC_zmwgsuiaas, // Multiply word guarded, signed by unsigned integer and accumulate with saturate
18183PPC_zmwgsuians, // Multiply word guarded, signed by unsigned integer and accumulate negative with saturate
18184PPC_zmwguiaas, // Multiply word guarded, unsigned integer and accumulate with saturate
18185PPC_zmwguians, // Multiply word guarded, unsigned integer and accumulate negative with saturate
18186PPC_zmwgsmf, // Multiply word guarded signed, modulo, fractional
18187PPC_zmwgsmfr, // Multiply word guarded signed, modulo, fractional with round
18188PPC_zmwgsmfaa, // Multiply word guarded signed, modulo, fractional and accumulate
18189PPC_zmwgsmfan, // Multiply word guarded signed, modulo, fractional and accumulate negative
18190PPC_zmwgsmfraa, // Multiply word guarded signed, modulo, fractional with round and accumulate
18191PPC_zmwgsmfran, // Multiply word guarded signed, modulo, fractional with round and accumulate negative
18192PPC_zmwlsis, // Multiply word low signed integer with saturate
18193PPC_zmwlsuis, // Multiply word low signed by unsigned integer with saturate
18194PPC_zmwluis, // Multiply word low unsigned integer with saturate
18195PPC_zmwlsiaa, // Multiply word low signed integer and and accumulate
18196PPC_zmwlsuiaa, // Multiply word low signed by unsigned integer and and accumulate
18197PPC_zmwluiaa, // Multiply word low unsigned integer and and accumulate
18198PPC_zmwlsian, // Multiply word low signed integer and and accumulate negative
18199PPC_zmwlsuian, // Multiply word low signed by unsigned integer and and accumulate negative
18200PPC_zmwluian, // Multiply word low unsigned integer and and accumulate negative
18201PPC_zmwlsiaas, // Multiply word low signed integer and and accumulate with saturate
18202PPC_zmwlsuiaas, // Multiply word low signed by unsigned integer and and accumulate with saturate
18203PPC_zmwluiaas, // Multiply word low unsigned integer and and accumulate with saturate
18204PPC_zmwlsians, // Multiply word low signed integer and and accumulate negative with saturate
18205PPC_zmwlsuians, // Multiply word low signed by unsigned integer and and accumulate negative with saturate
18206PPC_zmwluians, // Multiply word low unsigned integer and and accumulate negative with saturate
18207PPC_zmwsf, // Multiply word signed, fractional
18208PPC_zmwsfr, // Multiply word signed, fractional with round
18209PPC_zmwsfaas, // Multiply word signed, fractional and accumulate with saturate
18210PPC_zmwsfans, // Multiply word signed, fractional and accumulate negative with saturate
18211PPC_zmwsfraas, // Multiply word signed, fractional with round and accumulate with saturate
18212PPC_zmwsfrans, // Multiply word signed, fractional with round and accumulate negative with saturate
18213PPC_zvmhulgwsmf, // Vector multiply halfwords, upper/lower guarded-word, signed modulo fractional
18214PPC_zvmhllgwsmf, // Vector multiply halfwords, lower/lower guarded-word, signed modulo fractional
18215PPC_zvmhuugwsmf, // Vector multiply halfwords, upper/upper guarded-word, signed modulo fractional
18216PPC_zvmhxlgwsmf, // Vector multiply halfwords, exchanged/lower guarded-word, signed modulo fractional
18217PPC_zvmhulgwsmfr, // Vector multiply halfwords, upper/lower guarded-word, signed modulo fractional with round
18218PPC_zvmhllgwsmfr, // Vector multiply halfwords, lower/lower guarded-word, signed modulo fractional with round
18219PPC_zvmhuugwsmfr, // Vector multiply halfwords, upper/upper guarded-word, signed modulo fractional with round
18220PPC_zvmhxlgwsmfr, // Vector multiply halfwords, exchanged/lower guarded-word, signed modulo fractional with round
18221PPC_zvmhulgwsmfaa, // Vector multiply halfwords, upper/lower guarded-word, signed modulo fractional and accumulate
18222PPC_zvmhllgwsmfaa, // Vector multiply halfwords, lower/lower guarded-word, signed modulo fractional and accumulate
18223PPC_zvmhuugwsmfaa, // Vector multiply halfwords, upper/upper guarded-word, signed modulo fractional and accumulate
18224PPC_zvmhxlgwsmfaa, // Vector multiply halfwords, exchanged/lower guarded-word, signed modulo fractional and accumulate
18225PPC_zvmhulgwsmfraa, // Vector multiply halfwords, upper/lower guarded-word, signed modulo fractional with round and accumulate
18226PPC_zvmhllgwsmfraa, // Vector multiply halfwords, lower/lower guarded-word, signed modulo fractional with round and accumulate
18227PPC_zvmhuugwsmfraa, // Vector multiply halfwords, upper/upper guarded-word, signed modulo fractional with round and accumulate
18228PPC_zvmhxlgwsmfraa, // Vector multiply halfwords, exchanged/lower guarded-word, signed modulo fractional with round and accumulate
18229PPC_zvmhulgwsmfan, // Vector multiply halfwords, upper/lower guarded-word, signed modulo fractional and accumulate negative
18230PPC_zvmhllgwsmfan, // Vector multiply halfwords, lower/lower guarded-word, signed modulo fractional and accumulate negative
18231PPC_zvmhuugwsmfan, // Vector multiply halfwords, upper/upper guarded-word, signed modulo fractional and accumulate negative
18232PPC_zvmhxlgwsmfan, // Vector multiply halfwords, exchanged/lower guarded-word, signed modulo fractional and accumulate negative
18233PPC_zvmhulgwsmfran, // Vector multiply halfwords, upper/lower guarded-word, signed modulo fractional with round and accumulate negative
18234PPC_zvmhllgwsmfran, // Vector multiply halfwords, lower/lower guarded-word, signed modulo fractional with round and accumulate negative
18235PPC_zvmhuugwsmfran, // Vector multiply halfwords, upper/upper guarded-word, signed modulo fractional with round and accumulate negative
18236PPC_zvmhxlgwsmfran, // Vector multiply halfwords, exchanged/lower guarded-word, signed modulo fractional with round and accumulate negative
18237PPC_zvmhulgwsmfanp, // Vector multiply halfwords, upper/lower guarded-word, signed modulo fractional and accumulate negative/positive
18238PPC_zvmhllgwsmfanp, // Vector multiply halfwords, lower/lower guarded-word, signed modulo fractional and accumulate negative/positive
18239PPC_zvmhuugwsmfanp, // Vector multiply halfwords, upper/upper guarded-word, signed modulo fractional and accumulate negative/positive
18240PPC_zvmhxlgwsmfanp, // Vector multiply halfwords, exchanged/lower guarded-word, signed modulo fractional and accumulate negative/positive
18241PPC_zvmhulgwsmfranp, // Vector multiply halfwords, upper/lower guarded-word, signed modulo fractional with round and accumulate negative/positive
18242PPC_zvmhllgwsmfranp, // Vector multiply halfwords, lower/lower guarded-word, signed modulo fractional with round and accumulate negative/positive
18243PPC_zvmhuugwsmfranp, // Vector multiply halfwords, upper/upper guarded-word, signed modulo fractional with round and accumulate negative/positive
18244PPC_zvmhxlgwsmfranp, // Vector multiply halfwords, exchanged/lower guarded-word, signed modulo fractional with round and accumulate negative/positive
18245PPC_zvmhulsf, // Vector multiply halfwords, upper/lower, signed fractional
18246PPC_zvmhllsf, // Vector multiply halfwords, lower/lower, signed fractional
18247PPC_zvmhuusf, // Vector multiply halfwords, upper/upper, signed fractional
18248PPC_zvmhxlsf, // Vector multiply halfwords, exchanged/lower, signed fractional
18249PPC_zvmhulsfr, // Vector multiply halfwords, upper/lower, signed fractional with round
18250PPC_zvmhllsfr, // Vector multiply halfwords, lower/lower, signed fractional with round
18251PPC_zvmhuusfr, // Vector multiply halfwords, upper/upper, signed fractional with round
18252PPC_zvmhxlsfr, // Vector multiply halfwords, exchanged/lower, signed fractional with round
18253PPC_zvmhulsfaas, // Vector multiply halfwords, upper/lower, signed fractional and accumulate with saturate
18254PPC_zvmhllsfaas, // Vector multiply halfwords, lower/lower, signed fractional and accumulate with saturate
18255PPC_zvmhuusfaas, // Vector multiply halfwords, upper/upper, signed fractional and accumulate with saturate
18256PPC_zvmhxlsfaas, // Vector multiply halfwords, exchanged/lower, signed fractional and accumulate with saturate
18257PPC_zvmhulsfans, // Vector multiply halfwords, upper/lower, signed fractional and accumulate negative with saturate
18258PPC_zvmhllsfans, // Vector multiply halfwords, lower/lower, signed fractional and accumulate negative with saturate
18259PPC_zvmhuusfans, // Vector multiply halfwords, upper/upper, signed fractional and accumulate negative with saturate
18260PPC_zvmhxlsfans, // Vector multiply halfwords, exchanged/lower, signed fractional and accumulate negative with saturate
18261PPC_zvmhulsfanps, // Vector multiply halfwords, upper/lower, signed fractional and accumulate negative/positive with saturate
18262PPC_zvmhllsfanps, // Vector multiply halfwords, lower/lower, signed fractional and accumulate negative/positive with saturate
18263PPC_zvmhuusfanps, // Vector multiply halfwords, upper/upper, signed fractional and accumulate negative/positive with saturate
18264PPC_zvmhxlsfanps, // Vector multiply halfwords, exchanged/lower, signed fractional and accumulate negative/positive with saturate
18265PPC_zvmhulsfraas, // Vector multiply halfwords, upper/lower, signed fractional round (to halfword) and accumulate with saturate
18266PPC_zvmhllsfraas, // Vector multiply halfwords, lower/lower, signed fractional round (to halfword) and accumulate with saturate
18267PPC_zvmhuusfraas, // Vector multiply halfwords, upper/upper, signed fractional round (to halfword) and accumulate with saturate
18268PPC_zvmhxlsfraas, // Vector multiply halfwords, exchanged/lower, signed fractional round (to halfword) and accumulate with saturate
18269PPC_zvmhulsfrans, // Vector multiply halfwords, upper/lower, signed fractional round (to halfword) and accumulate negative with saturate
18270PPC_zvmhllsfrans, // Vector multiply halfwords, lower/lower, signed fractional round (to halfword) and accumulate negative with saturate
18271PPC_zvmhuusfrans, // Vector multiply halfwords, upper/upper, signed fractional round (to halfword) and accumulate negative with saturate
18272PPC_zvmhxlsfrans, // Vector multiply halfwords, exchanged/lower, signed fractional round (to halfword) and accumulate negative with saturate
18273PPC_zvmhulsfranps, // Vector multiply halfwords, upper/lower, signed fractional round (to halfword) and accumulate negative/positive with saturate
18274PPC_zvmhllsfranps, // Vector multiply halfwords, lower/lower, signed fractional round (to halfword) and accumulate negative/positive with saturate
18275PPC_zvmhuusfranps, // Vector multiply halfwords, upper/upper, signed fractional round (to halfword) and accumulate negative/positive with saturate
18276PPC_zvmhxlsfranps, // Vector multiply halfwords, exchanged/lower, signed fractional round (to halfword) and accumulate negative/positive with saturate
18277PPC_zvmhulsi, // Vector multiply halfwords, upper/lower, signed integer
18278PPC_zvmhllsi, // Vector multiply halfwords, lower/lower, signed integer
18279PPC_zvmhuusi, // Vector multiply halfwords, upper/upper, signed integer
18280PPC_zvmhxlsi, // Vector multiply halfwords, exchanged/lower, signed integer
18281PPC_zvmhulsui, // Vector multiply halfwords, upper/lower, signed by unsigned integer
18282PPC_zvmhllsui, // Vector multiply halfwords, lower/lower, signed by unsigned integer
18283PPC_zvmhuusui, // Vector multiply halfwords, upper/upper, signed by unsigned integer
18284PPC_zvmhxlsui, // Vector multiply halfwords, exchanged/lower, signed by unsigned integer
18285PPC_zvmhului, // Vector multiply halfwords, upper/lower, unsigned integer
18286PPC_zvmhllui, // Vector multiply halfwords, lower/lower, unsigned integer
18287PPC_zvmhuuui, // Vector multiply halfwords, upper/upper, unsigned integer
18288PPC_zvmhxlui, // Vector multiply halfwords, exchanged/lower, unsigned integer
18289PPC_zvmhulsiaa, // Vector multiply halfwords, upper/lower, signed integer and accumulate
18290PPC_zvmhllsiaa, // Vector multiply halfwords, lower/lower, signed integer and accumulate
18291PPC_zvmhuusiaa, // Vector multiply halfwords, upper/upper, signed integer and accumulate
18292PPC_zvmhxlsiaa, // Vector multiply halfwords, exchanged/lower, signed integer and accumulate
18293PPC_zvmhulsian, // Vector multiply halfwords, upper/lower, signed integer and accumulate negative
18294PPC_zvmhllsian, // Vector multiply halfwords, lower/lower, signed integer and accumulate negative
18295PPC_zvmhuusian, // Vector multiply halfwords, upper/upper, signed integer and accumulate negative
18296PPC_zvmhxlsian, // Vector multiply halfwords, exchanged/lower, signed integer and accumulate negative
18297PPC_zvmhulsianp, // Vector multiply halfwords, upper/lower, signed integer and accumulate negative/positive
18298PPC_zvmhllsianp, // Vector multiply halfwords, lower/lower, signed integer and accumulate negative/positive
18299PPC_zvmhuusianp, // Vector multiply halfwords, upper/upper, signed integer and accumulate negative/positive
18300PPC_zvmhxlsianp, // Vector multiply halfwords, exchanged/lower, signed integer and accumulate negative/positive
18301PPC_zvmhulsuiaa, // Vector multiply halfwords, upper/lower, signed by unsigned integer and accumulate
18302PPC_zvmhllsuiaa, // Vector multiply halfwords, lower/lower, signed by unsigned integer and accumulate
18303PPC_zvmhuusuiaa, // Vector multiply halfwords, upper/upper, signed by unsigned integer and accumulate
18304PPC_zvmhxlsuiaa, // Vector multiply halfwords, exchanged/lower, signed by unsigned integer and accumulate
18305PPC_zvmhulsuian, // Vector multiply halfwords, upper/lower, signed by unsigned integer and accumulate negative
18306PPC_zvmhllsuian, // Vector multiply halfwords, lower/lower, signed by unsigned integer and accumulate negative
18307PPC_zvmhuusuian, // Vector multiply halfwords, upper/upper, signed by unsigned integer and accumulate negative
18308PPC_zvmhxlsuian, // Vector multiply halfwords, exchanged/lower, signed by unsigned integer and accumulate negative
18309PPC_zvmhulsuianp, // Vector multiply halfwords, upper/lower, signed by unsigned integer and accumulate negative/positive
18310PPC_zvmhllsuianp, // Vector multiply halfwords, lower/lower, signed by unsigned integer and accumulate negative/positive
18311PPC_zvmhuusuianp, // Vector multiply halfwords, upper/upper, signed by unsigned integer and accumulate negative/positive
18312PPC_zvmhxlsuianp, // Vector multiply halfwords, exchanged/lower, signed by unsigned integer and accumulate negative/positive
18313PPC_zvmhuluiaa, // Vector multiply halfwords, upper/lower, unsigned integer and accumulate
18314PPC_zvmhlluiaa, // Vector multiply halfwords, lower/lower, unsigned integer and accumulate
18315PPC_zvmhuuuiaa, // Vector multiply halfwords, upper/upper, unsigned integer and accumulate
18316PPC_zvmhxluiaa, // Vector multiply halfwords, exchanged/lower, unsigned integer and accumulate
18317PPC_zvmhuluian, // Vector multiply halfwords, upper/lower, unsigned integer and accumulate negative
18318PPC_zvmhlluian, // Vector multiply halfwords, lower/lower, unsigned integer and accumulate negative
18319PPC_zvmhuuuian, // Vector multiply halfwords, upper/upper, unsigned integer and accumulate negative
18320PPC_zvmhxluian, // Vector multiply halfwords, exchanged/lower, unsigned integer and accumulate negative
18321PPC_zvmhuluianp, // Vector multiply halfwords, upper/lower, unsigned integer and accumulate negative/positive
18322PPC_zvmhlluianp, // Vector multiply halfwords, lower/lower, unsigned integer and accumulate negative/positive
18323PPC_zvmhuuuianp, // Vector multiply halfwords, upper/upper, unsigned integer and accumulate negative/positive
18324PPC_zvmhxluianp, // Vector multiply halfwords, exchanged/lower, unsigned integer and accumulate negative/positive
18325PPC_zvmhulsiaas, // Vector multiply halfwords, upper/lower, signed integer and accumulate with saturate
18326PPC_zvmhllsiaas, // Vector multiply halfwords, lower/lower, signed integer and accumulate with saturate
18327PPC_zvmhuusiaas, // Vector multiply halfwords, upper/upper, signed integer and accumulate with saturate
18328PPC_zvmhxlsiaas, // Vector multiply halfwords, exchanged/lower, signed integer and accumulate with saturate
18329PPC_zvmhulsians, // Vector multiply halfwords, upper/lower, signed integer and accumulate negative with saturate
18330PPC_zvmhllsians, // Vector multiply halfwords, lower/lower, signed integer and accumulate negative with saturate
18331PPC_zvmhuusians, // Vector multiply halfwords, upper/upper, signed integer and accumulate negative with saturate
18332PPC_zvmhxlsians, // Vector multiply halfwords, exchanged/lower, signed integer and accumulate negative with saturate
18333PPC_zvmhulsianps, // Vector multiply halfwords, upper/lower, signed integer and accumulate negative/positive with saturate
18334PPC_zvmhllsianps, // Vector multiply halfwords, lower/lower, signed integer and accumulate negative/positive with saturate
18335PPC_zvmhuusianps, // Vector multiply halfwords, upper/upper, signed integer and accumulate negative/positive with saturate
18336PPC_zvmhxlsianps, // Vector multiply halfwords, exchanged/lower, signed integer and accumulate negative/positive with saturate
18337PPC_zvmhulsuiaas, // Vector multiply halfwords, upper/lower, signed by unsigned integer and accumulate with saturate
18338PPC_zvmhllsuiaas, // Vector multiply halfwords, lower/lower, signed by unsigned integer and accumulate with saturate
18339PPC_zvmhuusuiaas, // Vector multiply halfwords, upper/upper, signed by unsigned integer and accumulate with saturate
18340PPC_zvmhxlsuiaas, // Vector multiply halfwords, exchanged/lower, signed by unsigned integer and accumulate with saturate
18341PPC_zvmhulsuians, // Vector multiply halfwords, upper/lower, signed by unsigned integer and accumulate negative with saturate
18342PPC_zvmhllsuians, // Vector multiply halfwords, lower/lower, signed by unsigned integer and accumulate negative with saturate
18343PPC_zvmhuusuians, // Vector multiply halfwords, upper/upper, signed by unsigned integer and accumulate negative with saturate
18344PPC_zvmhxlsuians, // Vector multiply halfwords, exchanged/lower, signed by unsigned integer and accumulate negative with saturate
18345PPC_zvmhulsuianps, // Vector multiply halfwords, upper/lower, signed by unsigned integer and accumulate negative/positive with saturate
18346PPC_zvmhllsuianps, // Vector multiply halfwords, lower/lower, signed by unsigned integer and accumulate negative/positive with saturate
18347PPC_zvmhuusuianps, // Vector multiply halfwords, upper/upper, signed by unsigned integer and accumulate negative/positive with saturate
18348PPC_zvmhxlsuianps, // Vector multiply halfwords, exchanged/lower, signed by unsigned integer and accumulate negative/positive with saturate
18349PPC_zvmhuluiaas, // Vector multiply halfwords, upper/lower, unsigned integer and accumulate with saturate
18350PPC_zvmhlluiaas, // Vector multiply halfwords, lower/lower, unsigned integer and accumulate with saturate
18351PPC_zvmhuuuiaas, // Vector multiply halfwords, upper/upper, unsigned integer and accumulate with saturate
18352PPC_zvmhxluiaas, // Vector multiply halfwords, exchanged/lower, unsigned integer and accumulate with saturate
18353PPC_zvmhuluians, // Vector multiply halfwords, upper/lower, unsigned integer and accumulate negative with saturate
18354PPC_zvmhlluians, // Vector multiply halfwords, lower/lower, unsigned integer and accumulate negative with saturate
18355PPC_zvmhuuuians, // Vector multiply halfwords, upper/upper, unsigned integer and accumulate negative with saturate
18356PPC_zvmhxluians, // Vector multiply halfwords, exchanged/lower, unsigned integer and accumulate negative with saturate
18357PPC_zvmhuluianps, // Vector multiply halfwords, upper/lower, unsigned integer and accumulate negative/positive with saturate
18358PPC_zvmhlluianps, // Vector multiply halfwords, lower/lower, unsigned integer and accumulate negative/positive with saturate
18359PPC_zvmhuuuianps, // Vector multiply halfwords, upper/upper, unsigned integer and accumulate negative/positive with saturate
18360PPC_zvmhxluianps, // Vector multiply halfwords, exchanged/lower, unsigned integer and accumulate negative/positive with saturate
18361PPC_zvdotphgaui, // Vector dot product of halfwords, guarded, add, unsigned integer
18362PPC_zvdotphxgaui, // Vector dot product of halfwords exchanged, guarded, add, unsigned integer
18363PPC_zvdotphgasi, // Vector dot product of halfwords, guarded, add, signed integer
18364PPC_zvdotphxgasi, // Vector dot product of halfwords exchanged, guarded, add, signed integer
18365PPC_zvdotphgasui, // Vector dot product of halfwords, guarded, add, signed by unsigned integer
18366PPC_zvdotphxgasui, // Vector dot product of halfwords exchanged, guarded, add, signed by unsigned integer
18367PPC_zvdotphgasmf, // Vector dot product of halfwords, guarded, add, signed modulo fractional
18368PPC_zvdotphxgasmf, // Vector dot product of halfwords exchanged, guarded, add, signed modulo fractional
18369PPC_zvdotphgauiaa, // Vector dot product of halfwords, guarded, add, unsigned integer and accumulate
18370PPC_zvdotphxgauiaa, // Vector dot product of halfwords exchanged, guarded, add, unsigned integer and accumulate
18371PPC_zvdotphgasiaa, // Vector dot product of halfwords, guarded, add, signed integer and accumulate
18372PPC_zvdotphxgasiaa, // Vector dot product of halfwords exchanged, guarded, add, signed integer and accumulate
18373PPC_zvdotphgasuiaa, // Vector dot product of halfwords, guarded, add, signed by unsigned integer and accumulate
18374PPC_zvdotphxgasuiaa, // Vector dot product of halfwords exchanged, guarded, add, signed by unsigned integer and accumulate
18375PPC_zvdotphgasmfaa, // Vector dot product of halfwords, guarded, add, signed modulo fractional and accumulate
18376PPC_zvdotphxgasmfaa, // Vector dot product of halfwords exchanged, guarded, add, signed modulo fractional and accumulate
18377PPC_zvdotphgauian, // Vector dot product of halfwords, guarded, add, unsigned integer and accumulate negative
18378PPC_zvdotphxgauian, // Vector dot product of halfwords exchanged, guarded, add, unsigned integer and accumulate negative
18379PPC_zvdotphgasian, // Vector dot product of halfwords, guarded, add, signed integer and accumulate negative
18380PPC_zvdotphxgasian, // Vector dot product of halfwords exchanged, guarded, add, signed integer and accumulate negative
18381PPC_zvdotphgasuian, // Vector dot product of halfwords, guarded, add, signed by unsigned integer and accumulate negative
18382PPC_zvdotphxgasuian, // Vector dot product of halfwords exchanged, guarded, add, signed by unsigned integer and accumulate negative
18383PPC_zvdotphgasmfan, // Vector dot product of halfwords, guarded, add, signed modulo fractional and accumulate negative
18384PPC_zvdotphxgasmfan, // Vector dot product of halfwords exchanged, guarded, add, signed modulo fractional and accumulate negative
18385PPC_zvdotphgsui, // Vector dot product of halfwords, guarded, subtract, unsigned integer
18386PPC_zvdotphgssi, // Vector dot product of halfwords, guarded, subtract, signed integer
18387PPC_zvdotphgssui, // Vector dot product of halfwords, guarded, subtract, signed by unsigned integer
18388PPC_zvdotphgssmf, // Vector dot product of halfwords, guarded, subtract, signed modulo fractional
18389PPC_zvdotphgsuiaa, // Vector dot product of halfwords, guarded, subtract, unsigned integer and accumulate
18390PPC_zvdotphgssiaa, // Vector dot product of halfwords, guarded, subtract, signed integer and accumulate
18391PPC_zvdotphgssuiaa, // Vector dot product of halfwords, guarded, subtract, signed by unsigned integer and accumulate
18392PPC_zvdotphgssmfaa, // Vector dot product of halfwords, guarded, subtract, signed modulo fractional and accumulate
18393PPC_zvdotphgsuian, // Vector dot product of halfwords, guarded, subtract, unsigned integer and accumulate negative
18394PPC_zvdotphgssian, // Vector dot product of halfwords, guarded, subtract, signed integer and accumulate negative
18395PPC_zvdotphgssuian, // Vector dot product of halfwords, guarded, subtract, signed by unsigned integer and accumulate negative
18396PPC_zvdotphgssmfan, // Vector dot product of halfwords, guarded, subtract, signed modulo fractional and accumulate negative
18397PPC_zvdotphasfs, // Vector dot product of halfwords, add, signed fractional, with saturate
18398PPC_zvdotphxasfs, // Vector dot product of halfwords exchanged, add, signed fractional, with saturate
18399PPC_zvdotphasfrs, // Vector dot product of halfwords, add, signed fractional with round, with saturate
18400PPC_zvdotphxasfrs, // Vector dot product of halfwords exchanged, add, signed fractional with round, with saturate
18401PPC_zvdotphasfaas, // Vector dot product of halfwords, add, signed fractional, and accumulate with saturate
18402PPC_zvdotphxasfaas, // Vector dot product of halfwords exchanged, add, signed fractional, and accumulate with saturate
18403PPC_zvdotphasfans, // Vector dot product of halfwords, add, signed fractional, and accumulate negative with saturate
18404PPC_zvdotphxasfans, // Vector dot product of halfwords exchanged, add, signed fractional, and accumulate negative with saturate
18405PPC_zvdotphasfraas, // Vector dot product of halfwords, add, signed fractional with round, and accumulate with saturate
18406PPC_zvdotphxasfraas, // Vector dot product of halfwords exchanged, add, signed fractional with round, and accumulate with saturate
18407PPC_zvdotphasfrans, // Vector dot product of halfwords, add, signed fractional with round, and accumulate negative with saturate
18408PPC_zvdotphxasfrans, // Vector dot product of halfwords exchanged, add, signed fractional with round, and accumulate negative with saturate
18409PPC_zvdotphaui, // Vector dot product of halfwords, add, unsigned integer
18410PPC_zvdotphxaui, // Vector dot product of halfwords exchanged, add, unsigned integer
18411PPC_zvdotphasi, // Vector dot product of halfwords, add, signed integer
18412PPC_zvdotphxasi, // Vector dot product of halfwords exchanged, add, signed integer
18413PPC_zvdotphasui, // Vector dot product of halfwords, add, signed by unsigned integer
18414PPC_zvdotphxasui, // Vector dot product of halfwords exchanged, add, signed by unsigned integer
18415PPC_zvdotphauiaa, // Vector dot product of halfwords, add, unsigned integer and accumulate
18416PPC_zvdotphxauiaa, // Vector dot product of halfwords exchanged, add, unsigned integer and accumulate
18417PPC_zvdotphasiaa, // Vector dot product of halfwords, add, signed integer and accumulate
18418PPC_zvdotphxasiaa, // Vector dot product of halfwords exchanged, add, signed integer and accumulate
18419PPC_zvdotphasuiaa, // Vector dot product of halfwords, add, signed by unsigned integer and accumulate
18420PPC_zvdotphxasuiaa, // Vector dot product of halfwords exchanged, add, signed by unsigned integer and accumulate
18421PPC_zvdotphauian, // Vector dot product of halfwords, add, unsigned integer and accumulate negative
18422PPC_zvdotphxauian, // Vector dot product of halfwords exchanged, add, unsigned integer and accumulate negative
18423PPC_zvdotphasian, // Vector dot product of halfwords, add, signed integer and accumulate negative
18424PPC_zvdotphxasian, // Vector dot product of halfwords exchanged, add, signed integer and accumulate negative
18425PPC_zvdotphasuian, // Vector dot product of halfwords, add, signed by unsigned integer and accumulate negative
18426PPC_zvdotphxasuian, // Vector dot product of halfwords exchanged, add, signed by unsigned integer and accumulate negative
18427PPC_zvdotphauis, // Vector dot product of halfwords, add, unsigned integer, with saturate
18428PPC_zvdotphxauis, // Vector dot product of halfwords exchanged, add, unsigned integer, with saturate
18429PPC_zvdotphasis, // Vector dot product of halfwords, add, signed integer, with saturate
18430PPC_zvdotphxasis, // Vector dot product of halfwords exchanged, add, signed integer, with saturate
18431PPC_zvdotphasuis, // Vector dot product of halfwords, add, signed by unsigned integer, with saturate
18432PPC_zvdotphxasuis, // Vector dot product of halfwords exchanged, add, signed by unsigned integer, with saturate
18433PPC_zvdotphauiaas, // Vector dot product of halfwords, add, unsigned integer and accumulate with saturate
18434PPC_zvdotphxauiaas, // Vector dot product of halfwords exchanged, add, unsigned integer and accumulate with saturate
18435PPC_zvdotphasiaas, // Vector dot product of halfwords, add, signed integer and accumulate with saturate
18436PPC_zvdotphxasiaas, // Vector dot product of halfwords exchanged, add, signed integer and accumulate with saturate
18437PPC_zvdotphasuiaas, // Vector dot product of halfwords, add, signed by unsigned integer and accumulate with saturate
18438PPC_zvdotphxasuiaas, // Vector dot product of halfwords exchanged, add, signed by unsigned integer and accumulate with saturate
18439PPC_zvdotphauians, // Vector dot product of halfwords, add, unsigned integer and accumulate negative with saturate
18440PPC_zvdotphxauians, // Vector dot product of halfwords exchanged, add, unsigned integer and accumulate negative with saturate
18441PPC_zvdotphasians, // Vector dot product of halfwords, add, signed integer and accumulate negative with saturate
18442PPC_zvdotphxasians, // Vector dot product of halfwords exchanged, add, signed integer and accumulate negative with saturate
18443PPC_zvdotphasuians, // Vector dot product of halfwords, add, signed by unsigned integer and accumulate negative with saturate
18444PPC_zvdotphxasuians, // Vector dot product of halfwords exchanged, add, signed by unsigned integer and accumulate negative with saturate
18445PPC_zvdotphssfs, // Vector dot product of halfwords, subtract, signed fractional, with saturate
18446PPC_zvdotphssfrs, // Vector dot product of halfwords, subtract, signed fractional with round, with saturate
18447PPC_zvdotphssfaas, // Vector dot product of halfwords, subtract, signed fractional, and accumulate with saturate
18448PPC_zvdotphssfans, // Vector dot product of halfwords, subtract, signed fractional, and accumulate negative with saturate
18449PPC_zvdotphssfraas, // Vector dot product of halfwords, subtract, signed fractional with round, and accumulate with saturate
18450PPC_zvdotphssfrans, // Vector dot product of halfwords, subtract, signed fractional with round, and accumulate negative with saturate
18451PPC_zvdotphsui, // Vector dot product of halfwords, subtract, unsigned integer
18452PPC_zvdotphssi, // Vector dot product of halfwords, subtract, signed integer
18453PPC_zvdotphssui, // Vector dot product of halfwords, subtract, signed by unsigned integer
18454PPC_zvdotphsuiaa, // Vector dot product of halfwords, subtract, unsigned integer and accumulate
18455PPC_zvdotphssiaa, // Vector dot product of halfwords, subtract, signed integer and accumulate
18456PPC_zvdotphssuiaa, // Vector dot product of halfwords, subtract, signed by unsigned integer and accumulate
18457PPC_zvdotphsuian, // Vector dot product of halfwords, subtract, unsigned integer and accumulate negative
18458PPC_zvdotphssian, // Vector dot product of halfwords, subtract, signed integer and accumulate negative
18459PPC_zvdotphssuian, // Vector dot product of halfwords, subtract, signed by unsigned integer and accumulate negative
18460PPC_zvdotphsuis, // Vector dot product of halfwords, subtract, unsigned integer, with saturate
18461PPC_zvdotphssis, // Vector dot product of halfwords, subtract, signed integer, with saturate
18462PPC_zvdotphssuis, // Vector dot product of halfwords, subtract, signed by unsigned integer, with saturate
18463PPC_zvdotphsuiaas, // Vector dot product of halfwords, subtract, unsigned integer and accumulate with saturate
18464PPC_zvdotphssiaas, // Vector dot product of halfwords, subtract, signed integer and accumulate with saturate
18465PPC_zvdotphssuiaas, // Vector dot product of halfwords, subtract, signed by unsigned integer and accumulate with saturate
18466PPC_zvdotphsuians, // Vector dot product of halfwords, subtract, unsigned integer and accumulate negative with saturate
18467PPC_zvdotphssians, // Vector dot product of halfwords, subtract, signed integer and accumulate negative with saturate
18468PPC_zvdotphssuians, // Vector dot product of halfwords, subtract, signed by unsigned integer and accumulate negative with saturate
18469PPC_zvdotphgwasmf, // Vector dot product of halfwords, guarded to word, add, signed modulo fractional
18470PPC_zvdotphxgwasmf, // Vector dot product of halfwords exchanged, guarded to word, add, signed modulo fractional
18471PPC_zvdotphgwasmfr, // Vector dot product of halfwords, guarded to word, add, signed modulo fractional with round
18472PPC_zvdotphxgwasmfr, // Vector dot product of halfwords exchanged, guarded to word, add, signed modulo fractional with round
18473PPC_zvdotphgwasmfaa, // Vector dot product of halfwords, guarded to word, add, signed modulo fractional, and accumulate
18474PPC_zvdotphxgwasmfaa, // Vector dot product of halfwords exchanged, guarded to word, add, signed modulo fractional, and accumulate
18475PPC_zvdotphgwasmfan, // Vector dot product of halfwords, guarded to word, add, signed modulo fractional, and accumulate negative
18476PPC_zvdotphxgwasmfan, // Vector dot product of halfwords exchanged, guarded to word, add, signed modulo fractional, and accumulate negative
18477PPC_zvdotphgwasmfraa, // Vector dot product of halfwords, guarded to word, add, signed modulo fractional with round, and accumulate
18478PPC_zvdotphxgwasmfraa,// Vector dot product of halfwords exchanged, guarded to word, add, signed modulo fractional with round, and accumulate
18479PPC_zvdotphgwasmfran, // Vector dot product of halfwords, guarded to word, add, signed modulo fractional with round, and accumulate negative
18480PPC_zvdotphxgwasmfran,// Vector dot product of halfwords exchanged, guarded to word, add, signed modulo fractional with round, and accumulate negative
18481PPC_zvdotphgwssmf, // Vector dot product of halfwords, guarded to word, subtract, signed modulo fractional
18482PPC_zvdotphgwssmfr, // Vector dot product of halfwords, guarded to word, subtract, signed modulo fractional with round
18483PPC_zvdotphgwssmfaa, // Vector dot product of halfwords, guarded to word, subtract, signed modulo fractional, and accumulate
18484PPC_zvdotphgwssmfan, // Vector dot product of halfwords, guarded to word, subtract, signed modulo fractional, and accumulate negative
18485PPC_zvdotphgwssmfraa, // Vector dot product of halfwords, guarded to word, subtract, signed modulo fractional with round, and accumulate
18486PPC_zvdotphgwssmfran, // Vector dot product of halfwords, guarded to word, subtract, signed modulo fractional with round, and accumulate negative
18487
18488PPC_msgclru, // Message Clear Ultravisor
18489PPC_msgsndu, // Message Send Ultravisor
18490PPC_urfid, // Ultravisor Return From Interrupt Doubleword
18491
18492// Power ISA Version 3.1 Prefixed Instructions
18493PPC_paddi, // Prefixed Add Immediate
18494PPC_plbz, // Prefixed Load Byte and Zero
18495PPC_pld, // Prefixed Load Doubleword
18496PPC_plfd, // Prefixed Load Floating-Point Double
18497PPC_plfs, // Prefixed Load Floating-Point Single
18498PPC_plha, // Prefixed Load Halfword Algebraic
18499PPC_plhz, // Prefixed Load Halfword and Zero
18500PPC_plq, // Prefixed Load Quadword
18501PPC_plwa, // Prefixed Load Word Algebraic
18502PPC_plwz, // Prefixed Load Word and Zero
18503PPC_plxsd, // Prefixed Load VSX Scalar Doubleword
18504PPC_plxssp, // Prefixed Load VSX Scalar Single-Precision
18505PPC_plxv, // Prefixed Load VSX Vector
18506PPC_plxvp, // Prefixed Load VSX Vector Paired
18507PPC_pmxvbf16ger2, // Prefixed Masked VSX Vector bfloat16 GER (Rank-2 Update)
18508PPC_pmxvbf16ger2nn, // Prefixed Masked VSX Vector bfloat16 GER (Rank-2 Update) Negative multiply, Negative accumulate
18509PPC_pmxvbf16ger2np, // Prefixed Masked VSX Vector bfloat16 GER (Rank-2 Update) Negative multiply, Positive accumulate
18510PPC_pmxvbf16ger2pn, // Prefixed Masked VSX Vector bfloat16 GER (Rank-2 Update) Positive multiply, Negative accumulate
18511PPC_pmxvbf16ger2pp, // Prefixed Masked VSX Vector bfloat16 GER (Rank-2 Update) Positive multiply, Positive accumulate
18512PPC_pmxvf16ger2, // Prefixed Masked VSX Vector 16-bit Floating-Point GER (rank-2 update)
18513PPC_pmxvf16ger2nn, // Prefixed Masked VSX Vector 16-bit Floating-Point GER (rank-2 update) Negative multiply, Negative accumulate
18514PPC_pmxvf16ger2np, // Prefixed Masked VSX Vector 16-bit Floating-Point GER (rank-2 update) Negative multiply, Positive accumulate
18515PPC_pmxvf16ger2pn, // Prefixed Masked VSX Vector 16-bit Floating-Point GER (rank-2 update) Positive multiply, Negative accumulate
18516PPC_pmxvf16ger2pp, // Prefixed Masked VSX Vector 16-bit Floating-Point GER (rank-2 update) Positive multiply, Positive accumulate
18517PPC_pmxvf32ger, // Prefixed Masked VSX Vector 32-bit Floating-Point GER (rank-1 update)
18518PPC_pmxvf32gernn, // Prefixed Masked VSX Vector 32-bit Floating-Point GER (rank-1 update) Negative multiply, Negative accumulate
18519PPC_pmxvf32gernp, // Prefixed Masked VSX Vector 32-bit Floating-Point GER (rank-1 update) Negative multiply, Positive accumulate
18520PPC_pmxvf32gerpn, // Prefixed Masked VSX Vector 32-bit Floating-Point GER (rank-1 update) Positive multiply, Negative accumulate
18521PPC_pmxvf32gerpp, // Prefixed Masked VSX Vector 32-bit Floating-Point GER (rank-1 update) Positive multiply, Positive accumulate
18522PPC_pmxvf64ger, // Prefixed Masked VSX Vector 64-bit Floating-Point GER (rank-1 update)
18523PPC_pmxvf64gernn, // Prefixed Masked VSX Vector 64-bit Floating-Point GER (rank-1 update) Negative multiply, Negative accumulate
18524PPC_pmxvf64gernp, // Prefixed Masked VSX Vector 64-bit Floating-Point GER (rank-1 update) Negative multiply, Positive accumulate
18525PPC_pmxvf64gerpn, // Prefixed Masked VSX Vector 64-bit Floating-Point GER (rank-1 update) Positive multiply, Negative accumulate
18526PPC_pmxvf64gerpp, // Prefixed Masked VSX Vector 64-bit Floating-Point GER (rank-1 update) Positive multiply, Positive accumulate
18527PPC_pmxvi16ger2, // Prefixed Masked VSX Vector 16-bit Signed Integer GER (rank-2 update)
18528PPC_pmxvi16ger2pp, // Prefixed Masked VSX Vector 16-bit Signed Integer GER (rank-2 update) Positive multiply, Positive accumulate
18529PPC_pmxvi16ger2s, // Prefixed Masked VSX Vector 16-bit Signed Integer GER (rank-2 update) with Saturation
18530PPC_pmxvi16ger2spp, // Prefixed Masked VSX Vector 16-bit Signed Integer GER (rank-2 update) with Saturation Positive multiply, Positive accumulate
18531PPC_pmxvi4ger8, // Prefixed Masked VSX Vector 4-bit Signed Integer GER (rank-8 update)
18532PPC_pmxvi4ger8pp, // Prefixed Masked VSX Vector 4-bit Signed Integer GER (rank-8 update) Positive multiply, Positive accumulate
18533PPC_pmxvi8ger4, // Prefixed Masked VSX Vector 8-bit Signed/Unsigned Integer GER (rank-4 update)
18534PPC_pmxvi8ger4pp, // Prefixed Masked VSX Vector 8-bit Signed/Unsigned Integer GER (rank-4 update) Positive multiply, Positive accumulate
18535PPC_pmxvi8ger4spp, // Prefixed Masked VSX Vector 8-bit Signed/Unsigned Integer GER (rank-4 update) with Saturate Positive multiply, Positive accumulate
18536PPC_pnop, // Prefixed Nop
18537PPC_pstb, // Prefixed Store Byte
18538PPC_pstd, // Prefixed Store Doubleword
18539PPC_pstfd, // Prefixed Store Floating-Point Double
18540PPC_pstfs, // Prefixed Store Floating-Point Single
18541PPC_psth, // Prefixed Store Halfword
18542PPC_pstq, // Prefixed Store Quadword
18543PPC_pstw, // Prefixed Store Word
18544PPC_pstxsd, // Prefixed Store VSX Scalar Doubleword
18545PPC_pstxssp, // Prefixed Store VSX Scalar Single-Precision
18546PPC_pstxv, // Prefixed Store VSX Vector
18547PPC_pstxvp, // Prefixed Store VSX Vector Paired
18548
18549// Power ISA Version 3.1 Word Instructions
18550PPC_brd, // Byte-Reverse Doubleword
18551PPC_brh, // Byte-Reverse Halfword
18552PPC_brw, // Byte-Reverse Word
18553PPC_cfuged, // Centrifuge Doubleword
18554PPC_cntlzdm, // Count Leading Zeros Doubleword under bit Mask
18555PPC_cnttzdm, // Count Trailing Zeros Doubleword under bit Mask
18556PPC_dcffixqq, // DFP Convert From Fixed Quadword Quad
18557PPC_dctfixqq, // DFP Convert To Fixed Quadword Quad
18558PPC_lxvkq, // Load VSX Vector Special Value Quadword
18559PPC_lxvp, // Load VSX Vector Paired
18560PPC_lxvpx, // Load VSX Vector Paired Indexed
18561PPC_lxvrbx, // Load VSX Vector Rightmost Byte Indexed
18562PPC_lxvrdx, // Load VSX Vector Rightmost Doubleword Indexed
18563PPC_lxvrhx, // Load VSX Vector Rightmost Halfword Indexed
18564PPC_lxvrwx, // Load VSX Vector Rightmost Word Indexed
18565PPC_mtvsrbm, // Move to VSR Byte Mask
18566PPC_mtvsrbmi, // Move To VSR Byte Mask Immediate
18567PPC_mtvsrdm, // Move to VSR Doubleword Mask
18568PPC_mtvsrhm, // Move to VSR Halfword Mask
18569PPC_mtvsrqm, // Move to VSR Quadword Mask
18570PPC_mtvsrwm, // Move to VSR Word Mask
18571PPC_pdepd, // Parallel Bits Deposit Doubleword
18572PPC_pextd, // Parallel Bits Extract Doubleword
18573PPC_setbc, // Set Boolean Condition
18574PPC_setbcr, // Set Boolean Condition Reverse
18575PPC_setnbc, // Set Negative Boolean Condition
18576PPC_setnbcr, // Set Negative Boolean Condition Reverse
18577PPC_stxvp, // Store VSX Vector Paired
18578PPC_stxvpx, // Store VSX Vector Paired Indexed
18579PPC_stxvrbx, // Store VSX Vector Rightmost Byte Indexed
18580PPC_stxvrdx, // Store VSX Vector Rightmost Doubleword Indexed
18581PPC_stxvrhx, // Store VSX Vector Rightmost Halfword Indexed
18582PPC_stxvrwx, // Store VSX Vector Rightmost Word Indexed
18583PPC_vcfuged, // Vector Centrifuge Doubleword
18584PPC_vclrlb, // Vector Clear Leftmost Bytes
18585PPC_vclrrb, // Vector Clear Rightmost Bytes
18586PPC_vclzdm, // Vector Count Leading Zeros Doubleword under bit Mask
18587PPC_vcmpequq, // Vector Compare Equal Quadword
18588PPC_vcmpgtsq, // Vector Compare Greater Than Signed Quadword
18589PPC_vcmpgtuq, // Vector Compare Greater Than Unsigned Quadword
18590PPC_vcmpsq, // Vector Compare Signed Quadword
18591PPC_vcmpuq, // Vector Compare Unsigned Quadword
18592PPC_vcntmbb, // Vector Count Mask Bits Byte
18593PPC_vcntmbd, // Vector Count Mask Bits Doubleword
18594PPC_vcntmbh, // Vector Count Mask Bits Halfword
18595PPC_vcntmbw, // Vector Count Mask Bits Word
18596PPC_vctzdm, // Vector Count Trailing Zeros Doubleword under bit Mask
18597PPC_vdivesd, // Vector Divide Extended Signed Doubleword
18598PPC_vdivesq, // Vector Divide Extended Signed Quadword
18599PPC_vdivesw, // Vector Divide Extended Signed Word
18600PPC_vdiveud, // Vector Divide Extended Unsigned Doubleword
18601PPC_vdiveuq, // Vector Divide Extended Unsigned Quadword
18602PPC_vdiveuw, // Vector Divide Extended Unsigned Word
18603PPC_vdivsd, // Vector Divide Signed Doubleword
18604PPC_vdivsq, // Vector Divide Signed Quadword
18605PPC_vdivsw, // Vector Divide Signed Word
18606PPC_vdivud, // Vector Divide Unsigned Doubleword
18607PPC_vdivuq, // Vector Divide Unsigned Quadword
18608PPC_vdivuw, // Vector Divide Unsigned Word
18609PPC_vexpandbm, // Vector Expand Byte Mask
18610PPC_vexpanddm, // Vector Expand Doubleword Mask
18611PPC_vexpandhm, // Vector Expand Halfword Mask
18612PPC_vexpandqm, // Vector Expand Quadword Mask
18613PPC_vexpandwm, // Vector Expand Word Mask
18614PPC_vextddvlx, // Vector Extract Double Doubleword to VSR using GPR-specified Left-Index
18615PPC_vextddvrx, // Vector Extract Double Doubleword to VSR using GPR-specified Right-Index
18616PPC_vextdubvlx, // Vector Extract Double Unsigned Byte to VSR using GPR-specified Left-Index
18617PPC_vextdubvrx, // Vector Extract Double Unsigned Byte to VSR using GPR-specified Right-Index
18618PPC_vextduhvlx, // Vector Extract Double Unsigned Halfword to VSR using GPR-specified Left-Index
18619PPC_vextduhvrx, // Vector Extract Double Unsigned Halfword to VSR using GPR-specified Right-Index
18620PPC_vextduwvlx, // Vector Extract Double Unsigned Word to VSR using GPR-specified Left-Index
18621PPC_vextduwvrx, // Vector Extract Double Unsigned Word to VSR using GPR-specified Right-Index
18622PPC_vextractbm, // Vector Extract Byte Mask
18623PPC_vextractdm, // Vector Extract Doubleword Mask
18624PPC_vextracthm, // Vector Extract Halfword Mask
18625PPC_vextractqm, // Vector Extract Quadword Mask
18626PPC_vextractwm, // Vector Extract Word Mask
18627PPC_vextsd2q, // Vector Extend Sign Doubleword to Quadword
18628PPC_vgnb, // Vector Gather every Nth Bit
18629PPC_vinsblx, // Vector Insert Byte from GPR using GPR-specified Left-Index
18630PPC_vinsbrx, // Vector Insert Byte from GPR using GPR-specified Right-Index
18631PPC_vinsbvlx, // Vector Insert Byte from VSR using GPR-specified Left-Index
18632PPC_vinsbvrx, // Vector Insert Byte from VSR using GPR-specified Right-Index
18633PPC_vinsd, // Vector Insert Doubleword from GPR using immediate-specified index
18634PPC_vinsdlx, // Vector Insert Doubleword from GPR using GPR-specified Left-Index
18635PPC_vinsdrx, // Vector Insert Doubleword from GPR using GPR-specified Right-Index
18636PPC_vinshlx, // Vector Insert Halfword from GPR using GPR-specified Left-Index
18637PPC_vinshrx, // Vector Insert Halfword from GPR using GPR-specified Right-Index
18638PPC_vinshvlx, // Vector Insert Halfword from VSR using GPR-specified Left-Index
18639PPC_vinshvrx, // Vector Insert Halfword from VSR using GPR-specified Right-Index
18640PPC_vinsw, // Vector Insert Word from GPR using immediate-specified index
18641PPC_vinswlx, // Vector Insert Word from GPR using GPR-specified Left-Index
18642PPC_vinswrx, // Vector Insert Word from GPR using GPR-specified Right-Index
18643PPC_vinswvlx, // Vector Insert Word from VSR using GPR-specified Left-Index
18644PPC_vinswvrx, // Vector Insert Word from VSR using GPR-specified Left-Index
18645PPC_vmodsd, // Vector Modulo Signed Doubleword
18646PPC_vmodsq, // Vector Modulo Signed Quadword
18647PPC_vmodsw, // Vector Modulo Signed Word
18648PPC_vmodud, // Vector Modulo Unsigned Doubleword
18649PPC_vmoduq, // Vector Modulo Unsigned Quadword
18650PPC_vmoduw, // Vector Modulo Unsigned Word
18651PPC_vmsumcud, // Vector Multiply-Sum & write Carry-out Unsigned Doubleword
18652PPC_vmulesd, // Vector Multiply Even Signed Doubleword
18653PPC_vmuleud, // Vector Multiply Even Unsigned Doubleword
18654PPC_vmulhsd, // Vector Multiply High Signed Doubleword
18655PPC_vmulhsw, // Vector Multiply High Signed Word
18656PPC_vmulhud, // Vector Multiply High Unsigned Doubleword
18657PPC_vmulhuw, // Vector Multiply High Unsigned Word
18658PPC_vmulld, // Vector Multiply Low Doubleword
18659PPC_vmulosd, // Vector Multiply Odd Signed Doubleword
18660PPC_vmuloud, // Vector Multiply Odd Unsigned Doubleword
18661PPC_vpdepd, // Vector Parallel Bits Deposit Doubleword
18662PPC_vpextd, // Vector Parallel Bits Extract Doubleword
18663PPC_vrlq, // Vector Rotate Left Quadword
18664PPC_vrlqmi, // Vector Rotate Left Quadword then Mask Insert
18665PPC_vrlqnm, // Vector Rotate Left Quadword then AND with Mask
18666PPC_vsldbi, // Vector Shift Left Double by Bit Immediate
18667PPC_vslq, // Vector Shift Left Quadword
18668PPC_vsraq, // Vector Shift Right Algebraic Quadword
18669PPC_vsrdbi, // Vector Shift Right Double by Bit Immediate
18670PPC_vsrq, // Vector Shift Right Quadword
18671PPC_vstribl, // Vector String Isolate Byte Left-justified
18672PPC_vstribr, // Vector String Isolate Byte Right-justified
18673PPC_vstrihl, // Vector String Isolate Halfword Left-justified
18674PPC_vstrihr, // Vector String Isolate Halfword Right-justified
18675PPC_xscmpeqqp, // VSX Scalar Compare Equal Quad-Precision
18676PPC_xscmpgeqp, // VSX Scalar Compare Greater Than or Equal Quad-Precision
18677PPC_xscmpgtqp, // VSX Scalar Compare Greater Than Quad-Precision
18678PPC_xscvqpsqz, // VSX Scalar Convert with round to zero Quad-Precision to Signed Quadword
18679PPC_xscvqpuqz, // VSX Scalar Convert with round to zero Quad-Precision to Unsigned Quadword
18680PPC_xscvsqqp, // VSX Scalar Convert with round Signed Quadword to Quad-Precision
18681PPC_xscvuqqp, // VSX Scalar Convert with round Unsigned Quadword to Quad-Precision
18682PPC_xsmaxcqp, // VSX Scalar Maximum Type-C Quad-Precision
18683PPC_xsmincqp, // VSX Scalar Minimum Type-C Quad-Precision
18684PPC_xvbf16ger2, // VSX Vector bfloat16 GER (Rank-2 Update)
18685PPC_xvbf16ger2nn, // VSX Vector bfloat16 GER (Rank-2 Update) Negative multiply, Negative accumulate
18686PPC_xvbf16ger2np, // VSX Vector bfloat16 GER (Rank-2 Update) Negative multiply, Positive accumulate
18687PPC_xvbf16ger2pn, // VSX Vector bfloat16 GER (Rank-2 Update) Positive multiply, Negative accumulate
18688PPC_xvbf16ger2pp, // VSX Vector bfloat16 GER (Rank-2 Update) Positive multiply, Positive accumulate
18689PPC_xvcvbf16spn, // VSX Vector Convert bfloat16 to Single-Precision format Non-signaling (renamed from xvcvbf16sp)
18690PPC_xvcvspbf16, // VSX Vector Convert with round Single-Precision to bfloat16 format
18691PPC_xvf16ger2, // VSX Vector 16-bit Floating-Point GER (rank-2 update)
18692PPC_xvf16ger2nn, // VSX Vector 16-bit Floating-Point GER (rank-2 update) Negative multiply, Negative accumulate
18693PPC_xvf16ger2np, // VSX Vector 16-bit Floating-Point GER (rank-2 update) Negative multiply, Positive accumulate
18694PPC_xvf16ger2pn, // VSX Vector 16-bit Floating-Point GER (rank-2 update) Positive multiply, Negative accumulate
18695PPC_xvf16ger2pp, // VSX Vector 16-bit Floating-Point GER (rank-2 update) Positive multiply, Positive accumulate
18696PPC_xvf32ger, // VSX Vector 32-bit Floating-Point GER (rank-1 update)
18697PPC_xvf32gernn, // VSX Vector 32-bit Floating-Point GER (rank-1 update) Negative multiply, Negative accumulate
18698PPC_xvf32gernp, // VSX Vector 32-bit Floating-Point GER (rank-1 update) Negative multiply, Positive accumulate
18699PPC_xvf32gerpn, // VSX Vector 32-bit Floating-Point GER (rank-1 update) Positive multiply, Negative accumulate
18700PPC_xvf32gerpp, // VSX Vector 32-bit Floating-Point GER (rank-1 update) Positive multiply, Positive accumulate
18701PPC_xvf64ger, // VSX Vector 64-bit Floating-Point GER (rank-1 update)
18702PPC_xvf64gernn, // VSX Vector 64-bit Floating-Point GER (rank-1 update) Negative multiply, Negative accumulate
18703PPC_xvf64gernp, // VSX Vector 64-bit Floating-Point GER (rank-1 update) Negative multiply, Positive accumulate
18704PPC_xvf64gerpn, // VSX Vector 64-bit Floating-Point GER (rank-1 update) Positive multiply, Negative accumulate
18705PPC_xvf64gerpp, // VSX Vector 64-bit Floating-Point GER (rank-1 update) Positive multiply, Positive accumulate
18706PPC_xvi16ger2, // VSX Vector 16-bit Signed Integer GER (rank-2 update)
18707PPC_xvi16ger2pp, // VSX Vector 16-bit Signed Integer GER (rank-2 update) Positive multiply, Positive accumulate
18708PPC_xvi16ger2s, // VSX Vector 16-bit Signed Integer GER (rank-2 update) with Saturation
18709PPC_xvi16ger2spp, // VSX Vector 16-bit Signed Integer GER (rank-2 update) with Saturation Positive multiply, Positive accumulate
18710PPC_xvi4ger8, // VSX Vector 4-bit Signed Integer GER (rank-8 update)
18711PPC_xvi4ger8pp, // VSX Vector 4-bit Signed Integer GER (rank-8 update) Positive multiply, Positive accumulate
18712PPC_xvi8ger4, // VSX Vector 8-bit Signed/Unsigned Integer GER (rank-4 update)
18713PPC_xvi8ger4pp, // VSX Vector 8-bit Signed/Unsigned Integer GER (rank-4 update) Positive multiply, Positive accumulate
18714PPC_xvi8ger4spp, // VSX Vector 8-bit Signed/Unsigned Integer GER (rank-4 update) with Saturate Positive multiply, Positive accumulate
18715PPC_xvtlsbb, // VSX Vector Test Least-Significant Bit by Byte
18716PPC_xxblendvb, // VSX Vector Blend Variable Byte
18717PPC_xxblendvd, // VSX Vector Blend Variable Doubleword
18718PPC_xxblendvh, // VSX Vector Blend Variable Halfword
18719PPC_xxblendvw, // VSX Vector Blend Variable Word
18720PPC_xxeval, // VSX Vector Evaluate
18721PPC_xxgenpcvbm, // VSX Vector Generate PCV from Byte Mask
18722PPC_xxgenpcvdm, // VSX Vector Generate PCV from Doubleword Mask
18723PPC_xxgenpcvhm, // VSX Vector Generate PCV from Halfword Mask
18724PPC_xxgenpcvwm, // VSX Vector Generate PCV from Word Mask
18725PPC_xxmfacc, // VSX Move From Accumulator
18726PPC_xxmtacc, // VSX Move To Accumulator
18727PPC_xxpermx, // VSX Vector Permute Extended
18728PPC_xxsetaccz, // VSX Set Accumulator to Zero
18729PPC_xxsplti32dx, // VSX Vector Splat Immediate32 Doubleword Indexed
18730PPC_xxspltidp, // VSX Vector Splat Immediate Double-Precision
18731PPC_xxspltiw, // VSX Vector Splat Immediate Word
18732
18734};
18735
18736/*
18737* Interactive disassembler (IDA).
18738* Copyright (c) 1990-2025 Hex-Rays
18739* ALL RIGHTS RESERVED.
18740*
18741*/
18742
18743
18744
18745//----------------------------------------------------------------------
18746
18747
18749{
18751
18752 NEC850_BREAKPOINT, // undefined instruction
18753 NEC850_XORI, // Exclusive Or Immediate
18754 NEC850_XOR, // Exclusive OR
18755 NEC850_TST1, // Test bit
18756 NEC850_TST, // Test
18757 NEC850_TRAP, // Software trap
18758 NEC850_SUBR, // Substract reverse
18759 NEC850_SUB, // Substract
18760 NEC850_STSR, // Store Contents of System Register
18761 NEC850_ST_B, // Store byte
18762 NEC850_ST_H, // Store half-word
18763 NEC850_ST_W, // Store word
18764 NEC850_SST_B, // Store byte (use EP)
18765 NEC850_SST_H, // Store half-word (use EP)
18766 NEC850_SST_W, // Store word (use EP)
18767 NEC850_SLD_B, // Load byte (use EP)
18768 NEC850_SLD_H, // Load half-word (use EP)
18769 NEC850_SLD_W, // Load word (use EP)
18770 NEC850_SHR, // Shift Logical Right
18771 NEC850_SHL, // Shift Logical Left
18772 NEC850_SET1, // Set Bit
18773 NEC850_SETF, // Set register to 1 if condition is satisfied
18774 NEC850_SATSUBR, // Saturated Subtract Reverse
18775 NEC850_SATSUBI, // Saturated Subtract Immediate
18776 NEC850_SATSUB, // Saturated Subtract
18777 NEC850_SATADD, // Saturated Add
18778 NEC850_SAR, // Shift Arithmetic Right
18779 NEC850_RETI, // Return from Trap or Interrupt
18780 NEC850_ORI, // OR immediate
18782 NEC850_NOT1, // Not Bit
18784 NEC850_NOP, // No Operation
18785 NEC850_MULHI, // Multiply Half-Word Immediate
18786 NEC850_MULH, // Multiply Half-Word
18787 NEC850_MOVHI, // Move High Half-Word
18788 NEC850_MOVEA, // Move Effective Address
18789 NEC850_MOV, // Move
18790 NEC850_LDSR, // Load to system register
18791 NEC850_LD_B, // Load byte
18792 NEC850_LD_H, // Load half-word
18793 NEC850_LD_W, // Load word
18794 NEC850_JR, // Jump Relative
18795 NEC850_JMP, // Jump Register
18796 NEC850_JARL, // Jump and Register Link
18798 NEC850_EI, // Enable interrupt
18799 NEC850_DIVH, // Divide Half-Word
18800 NEC850_DI, // Disable Interrupt
18801 NEC850_CMP, // Compare
18802 NEC850_CLR1, // Clear bit
18803 NEC850_BV, // Branch if overflow
18804 NEC850_BL, // Branch if less
18805 NEC850_BZ, // Branch if zero
18806 NEC850_BNH, // Branch if not higher
18807 NEC850_BN, // Branch if negative
18808 NEC850_BR, // Branch if always
18809 NEC850_BLT, // Branch if less than (signed)
18810 NEC850_BLE, // Branch if less than or equal (signed)
18811 NEC850_BNV, // Branch if no overflow
18812 NEC850_BNC, // Branch if no carry
18813 NEC850_BNZ, // Branch if not zero
18814 NEC850_BH, // Branch if higher than
18815 NEC850_BP, // Branch if positive
18816 NEC850_BSA, // Branch if saturated
18817 NEC850_BGE, // Branch if greater than or equal (signed)
18818 NEC850_BGT, // Branch if greater than (signed)
18819 NEC850_ANDI, // And immediate
18821 NEC850_ADDI, // Add Immediate
18823
18824 //
18825 // V850E/E1/ES
18826 //
18827 NEC850_SWITCH, // Jump with table look up
18828 NEC850_ZXB, // Zero-extend byte
18829 NEC850_SXB, // Sign-extend byte
18830 NEC850_ZXH, // Zero-extend halfword
18831 NEC850_SXH, // Sign-extend halfword
18832 NEC850_DISPOSE_r0, // Function dispose
18833 NEC850_DISPOSE_r, // Function dispose
18834 NEC850_CALLT, // Call with table look up
18835 NEC850_DBTRAP, // Debug trap
18836 NEC850_DBRET, // Return from debug trap or interrupt
18837 NEC850_CTRET, // Return from CALLT
18838
18839 NEC850_SASF, // Shift and set flag condition
18840
18841 NEC850_PREPARE_sp, // Function prepare
18842 NEC850_PREPARE_i, // Function prepare
18843
18844 NEC850_MUL, // Multiply word
18845 NEC850_MULU, // Multiply word unsigned
18846
18847 NEC850_DIVH_r3, // Divide halfword
18848 NEC850_DIVHU, // Divide halfword unsigned
18849 NEC850_DIV, // Divide word
18850 NEC850_DIVU, // Divide word unsigned
18851
18852 NEC850_BSW, // Byte swap word
18853 NEC850_BSH, // Byte swap halfword
18854 NEC850_HSW, // Halfword swap word
18855
18856 NEC850_CMOV, // Conditional move
18857
18858 NEC850_SLD_BU, // Short format load byte unsigned
18859 NEC850_SLD_HU, // Short format load halfword unsigned
18860 NEC850_LD_BU, // load byte unsigned
18861 NEC850_LD_HU, // load halfword unsigned
18862
18863 //
18864 // V850E2
18865 //
18866 NEC850_ADF, // Add on condition flag
18867
18868 NEC850_HSH, // Halfword swap halfword
18869 NEC850_MAC, // Multiply and add word
18870 NEC850_MACU, // Multiply and add word unsigned
18871
18872 NEC850_SBF, // Subtract on condition flag
18873
18874 NEC850_SCH0L, // Search zero from left
18875 NEC850_SCH0R, // Search zero from right
18876 NEC850_SCH1L, // Search one from left
18877 NEC850_SCH1R, // Search one from right
18878
18879 //
18880 // V850E2M
18881 //
18882 NEC850_CAXI, // Compare and exchange for interlock
18883 NEC850_DIVQ, // Divide word quickly
18884 NEC850_DIVQU, // Divide word unsigned quickly
18885 NEC850_EIRET, // Return from EI level exception
18886 NEC850_FERET, // Return from FE level exception
18887 NEC850_FETRAP, // FE-level Trap
18888 NEC850_RMTRAP, // Runtime monitor trap
18889 NEC850_RIE, // Reserved instruction exception
18890 NEC850_SYNCE, // Synchronize exceptions
18891 NEC850_SYNCM, // Synchronize memory
18892 NEC850_SYNCP, // Synchronize pipeline
18893 NEC850_SYSCALL, // System call
18894
18895 // floating point (E1F only)
18896 NEC850_CVT_SW, // Real to integer conversion
18897 NEC850_TRNC_SW, // Real to integer conversion
18898 NEC850_CVT_WS, // Integer to real conversion
18899 NEC850_LDFC, // Load to Floating Controls
18900 NEC850_LDFF, // Load to Floating Flags
18901 NEC850_STFC, // Store Floating Controls
18902 NEC850_STFF, // Store Floating Flags
18903 NEC850_TRFF, // Transfer Floating Flags
18904
18905 // floating point (E2M)
18906
18907 NEC850_ABSF_D, // Floating-point Absolute Value (Double)
18908 NEC850_ABSF_S, // Floating-point Absolute Value (Single)
18909 NEC850_ADDF_D, // Floating-point Add (Double)
18910 NEC850_ADDF_S, // Floating-point Add (Single)
18911 NEC850_DIVF_D, // Floating-point Divide (Double)
18912 NEC850_DIVF_S, // Floating-point Divide (Single)
18913 NEC850_MAXF_D, // Floating-point Maximum (Double)
18914 NEC850_MAXF_S, // Floating-point Maximum (Single)
18915 NEC850_MINF_D, // Floating-point Minimum (Double)
18916 NEC850_MINF_S, // Floating-point Minimum (Single)
18917 NEC850_MULF_D, // Floating-point Multiply (Double)
18918 NEC850_MULF_S, // Floating-point Multiply (Single)
18919 NEC850_NEGF_D, // Floating-point Negate (Double)
18920 NEC850_NEGF_S, // Floating-point Negate (Single)
18921 NEC850_RECIPF_D, // Reciprocal of a floating-point value (Double)
18922 NEC850_RECIPF_S, // Reciprocal of a floating-point value (Single
18923
18924 NEC850_RSQRTF_D, // Reciprocal of the square root of a floating-point value (Double)
18925 NEC850_RSQRTF_S, // Reciprocal of the square root of a floating-point value (Single)
18926 NEC850_SQRTF_D, // Floating-point Square Root (Double)
18927 NEC850_SQRTF_S, // Floating-point Square Root (Single)
18928 NEC850_SUBF_D, // Floating-point Subtract (Double)
18929 NEC850_SUBF_S, // Floating-point Subtract (Single)
18930 NEC850_MADDF_S, // Floating-point Multiply-Add (Single)
18931 NEC850_MSUBF_S, // Floating-point Multiply-Subtract (Single)
18932 NEC850_NMADDF_S, // Floating-point Negate Multiply-Add (Single)
18933 NEC850_NMSUBF_S, // Floating-point Negate Multiply-Subtract (Single)
18934
18935 NEC850_CEILF_DL, // Floating-point Truncate to Long Fixed-point Format, rounded toward +inf (Double)
18936 NEC850_CEILF_DW, // Floating-point Truncate to Single Fixed-point Format, rounded toward +inf (Double)
18937 NEC850_CEILF_SL, // Floating-point Truncate to Long Fixed-point Format, rounded toward +inf (Single)
18938 NEC850_CEILF_SW, // Floating-point Truncate to Single Fixed-point Format, rounded toward +inf (Single)
18939 NEC850_CEILF_DUL, // Floating-point Truncate to Unsigned Long, rounded toward +inf (Double)
18940 NEC850_CEILF_DUW, // Floating-point Truncate to Unsigned Word, rounded toward +inf (Double)
18941 NEC850_CEILF_SUL, // Floating-point Truncate to Unsigned Long, rounded toward +inf (Single)
18942 NEC850_CEILF_SUW, // Floating-point Truncate to Unsigned Word, rounded toward +inf (Single)
18943 NEC850_CVTF_DL, // Floating-point Convert to Long Fixed-point Format (Double)
18944 NEC850_CVTF_DS, // Floating-point Convert to Single Floating-point Format (Double)
18945 NEC850_CVTF_DUL, // Floating-point Convert Double to Unsigned-Long (Double)
18946 NEC850_CVTF_DUW, // Floating-point Convert Double to Unsigned-Word (Double)
18947 NEC850_CVTF_DW, // Floating-point Convert to Single Fixed-point Format (Double)
18948 NEC850_CVTF_LD, // Floating-point Convert to Single Floating-point Format (Double)
18949 NEC850_CVTF_LS, // Floating-point Convert to Single Floating-point Format (Single)
18950 NEC850_CVTF_SD, // Floating-point Convert to Double Floating-point Format (Double)
18951 NEC850_CVTF_SL, // Floating-point Convert to Long Fixed-point Format (Single)
18952 NEC850_CVTF_SUL, // Floating-point Convert Single to Unsigned-Long (Single)
18953 NEC850_CVTF_SUW, // Floating-point Convert Single to Unsigned-Word (Single)
18954 NEC850_CVTF_SW, // Floating-point Convert to Single Fixed-point Format (Single)
18955 NEC850_CVTF_ULD, // Floating-point Convert Unsigned-Long to Double (Double)
18956 NEC850_CVTF_ULS, // Floating-point Convert Unsigned-Long to Single (Single)
18957 NEC850_CVTF_UWD, // Floating-point Convert Unsigned-Word to Double (Double)
18958 NEC850_CVTF_UWS, // Floating-point Convert Unsigned-Word to Single (Single)
18959 NEC850_CVTF_WD, // Floating-point Convert to Single Floating-point Format (Double)
18960 NEC850_CVTF_WS, // Floating-point Convert to Single Floating-point Format (Single)
18961 NEC850_FLOORF_DL, // Floating-point Truncate to Long Fixed-point Format, rounded toward -inf (Double)
18962 NEC850_FLOORF_DW, // Floating-point Truncate to Single Fixed-point Format, rounded toward -inf (Double)
18963 NEC850_FLOORF_SL, // Floating-point Truncate to Long Fixed-point Format, rounded toward -inf (Single)
18964 NEC850_FLOORF_SW, // Floating-point Truncate to Single Fixed-point Format, rounded toward -inf (Single)
18965 NEC850_FLOORF_DUL, // Floating-point Truncate to Unsigned Long, rounded toward -inf (Double)
18966 NEC850_FLOORF_DUW, // Floating-point Truncate to Unsigned Word, rounded toward -inf (Double)
18967 NEC850_FLOORF_SUL, // Floating-point Truncate to Unsigned Long, rounded toward -inf (Single)
18968 NEC850_FLOORF_SUW, // Floating-point Truncate to Unsigned Word, rounded toward -inf (Single)
18969 NEC850_TRNCF_DL, // Floating-point Truncate to Long Fixed-point Format, rounded to zero (Double)
18970 NEC850_TRNCF_DUL, // Floating-point Truncate Double to Unsigned-Long (Double)
18971 NEC850_TRNCF_DUW, // Floating-point Truncate Double to Unsigned-Word (Double)
18972 NEC850_TRNCF_DW, // Floating-point Truncate to Single Fixed-point Format, rounded to zero (Double)
18973 NEC850_TRNCF_SL, // Floating-point Truncate to Long Fixed-point Format, rounded to zero (Single)
18974 NEC850_TRNCF_SUL, // Floating-point Truncate Single to Unsigned-Long (Single)
18975 NEC850_TRNCF_SUW, // Floating-point Truncate Single to Unsigned-Word (Single)
18976 NEC850_TRNCF_SW, // Floating-point Truncate to Single Fixed-point Format, rounded to zero (Single)
18977 NEC850_CMPF_S, // Compares floating-point values (Single)
18978 NEC850_CMPF_D, // Compares floating-point values (Double)
18979 NEC850_CMOVF_S, // Floating-point conditional move (Single)
18980 NEC850_CMOVF_D, // Floating-point conditional move (Double)
18981 NEC850_TRFSR, // Transfers specified CC bit to Zero flag in PSW (Single)
18982
18983 //
18984 // RH850
18985 //
18986 NEC850_SYNCI, // Synchronize instruction pipeline
18987 NEC850_SNOOZE, // Snooze
18988 NEC850_BINS, // Bitfield Insert
18989 NEC850_ROTL, // Rotate Left
18991 NEC850_LD_DW, // Load Double Word
18992 NEC850_ST_DW, // Store Double Word
18993 NEC850_LDL_W, // Load Linked
18994 NEC850_STC_W, // Store Conditional
18995 NEC850_CLL, // Clear Load Link
18996 NEC850_CACHE, // Cache operation
18997 NEC850_PREF, // Prefetch
18998 NEC850_PUSHSP, // Push registers to Stack
18999 NEC850_POPSP, // Pop registers from Stack
19000
19001 // new RH850 FP instructions
19002 NEC850_CVTF_HS, // Floating-point Convert Half to Single (Single)
19003 NEC850_CVTF_SH, // Floating-point Convert Single to Half (Single)
19004 NEC850_FMAF_S, // Floating-point Fused-Multiply-add (Single)
19005 NEC850_FMSF_S, // Floating-point Fused-Multiply-subtract (Single)
19006 NEC850_FNMAF_S, // Floating-point Fused-Negate-Multiply-add (Single)
19007 NEC850_FNMSF_S, // Floating-point Fused-Negate-Multiply-subtract (Single)
19008
19009 // debug instructions
19010 NEC850_DBPUSH, // Output registers as software trace data
19011 NEC850_DBCP, // Output current PC value as software trace data
19012 NEC850_DBTAG, // Output immediate value as software trace data
19013 NEC850_DBHVTRAP, // Debug hypervisor trap
19014
19015 // virtualization instructions
19016 NEC850_EST, // Enable Single Thread mode
19017 NEC850_DST, // Disable Single Thread mode
19018 NEC850_HVTRAP, // Debug hypervisor trap
19019 NEC850_HVCALL, // Hypervisor call
19020 NEC850_LDVC_SR, // Load to virtual machine context (SR)
19021 NEC850_STVC_SR, // Store contents of virtual machine context (SR)
19022 NEC850_LDTC_GR, // Load to thread context (GR)
19023 NEC850_STTC_GR, // Store contents of thread context (GR)
19024 NEC850_LDTC_PC, // Load to thread context (PC)
19025 NEC850_STTC_PC, // Store contents of thread context (PC)
19026 NEC850_LDTC_SR, // Load to thread context (SR)
19027 NEC850_STTC_SR, // Store contents of thread context (SR)
19028 NEC850_LDTC_VR, // Load to thread context (VR)
19029 NEC850_STTC_VR, // Store contents of thread context (VR)
19030
19031 // TLB instructions
19032 NEC850_TLBAI, // TLB ASID Invalidate
19033 NEC850_TLBR, // TLB Read
19034 NEC850_TLBS, // TLB Search
19035 NEC850_TLBVI, // TLB VA Invalidate
19036 NEC850_TLBW, // TLB Write
19037
19038 // RH850 rounding instructions
19039 NEC850_ROUNDF_DL, // Floating-point Convert Double to Long, round to nearest (Double)
19040 NEC850_ROUNDF_DW, // Floating-point Convert Double to Word, round to nearest (Double)
19041 NEC850_ROUNDF_DUL, // Floating-point Convert Double to Unsigned-Long, round to nearest (Double)
19042 NEC850_ROUNDF_DUW, // Floating-point Convert Double to Unsigned-Word, round to nearest (Double)
19043 NEC850_ROUNDF_SL, // Floating-point Convert Single to Long, round to nearest (Single)
19044 NEC850_ROUNDF_SW, // Floating-point Convert Single to Word, round to nearest (Single)
19045 NEC850_ROUNDF_SUL, // Floating-point Convert Single to Unsigned-Long, round to nearest (Single)
19046 NEC850_ROUNDF_SUW, // Floating-point Convert Single to Unsigned-Word, round to nearest (Single)
19047
19048 NEC850_LDM_MP, // Load Multiple MPU entries from memory
19049 NEC850_STM_MP, // Store Multiple MPU entries to memory
19050
19051 NEC850_CLIP_B, // Signed data conversion from word to byte with saturation
19052 NEC850_CLIP_BU, // Unsigned data conversion from word to byte with saturation
19053 NEC850_CLIP_H, // Signed data conversion from word to halfword with saturation
19054 NEC850_CLIP_HU, // Unsigned data conversion from word to halfword with saturation
19055
19056 NEC850_LDL_BU, // Load to start atomic byte data manipulation
19057 NEC850_LDL_HU, // Load to start atomic halfword data manipulation
19058
19059 NEC850_RESBANK, // Restore from register bank
19060
19061 NEC850_STC_B, // Store conditional byte
19062 NEC850_STC_H, // Store conditional halfword
19063
19064 // RH850 SIMD instructions
19065 NEC850_VAND, // Vector and
19066 NEC850_VOR, // Vector or
19067 NEC850_VXOR, // Vector xor
19068 NEC850_VNOT, // Vector not
19069
19070 NEC850_VSAR_H, // Vector shift arithmetic right halfword
19071 NEC850_VSAR_W, // Vector shift arithmetic right word
19072 NEC850_VSAR_DW, // Vector shift arithmetic right double-word
19073 NEC850_VSHR_H, // Vector shift logical right halfword
19074 NEC850_VSHR_W, // Vector shift logical right word
19075 NEC850_VSHR_DW, // Vector shift logical right double-word
19076 NEC850_VSHL_H, // Vector shift logical left halfword
19077 NEC850_VSHL_W, // Vector shift logical left word
19078 NEC850_VSHL_DW, // Vector shift logical left double-word
19079
19080 NEC850_VCONCAT_B, // Concatenate vector byte
19081 NEC850_VITLV_H, // Interleave halfword
19082 NEC850_VITLV_W, // Interleave word
19083 NEC850_VITLVHW_H, // Interleave halfword(halfword to word)
19084 NEC850_VITLVWH_H, // Interleave halfword(word to halfword)
19085 NEC850_VSHUFL_B, // Shuffle byte
19086 NEC850_VBSWAP_DW, // Swap double - word
19087 NEC850_VBSWAP_H, // Swap halfword
19088 NEC850_VBSWAP_W, // Swap word
19089
19090 NEC850_DUP_H, // Duplicate halfword
19091 NEC850_DUP_W, // Duplicate word
19092 NEC850_MOV_H, // Move register (halfword)
19093 NEC850_MOV_W, // Move register (word)
19094 NEC850_MOV_DW, // Move register (double word)
19095
19096 NEC850_VLD_B, // Vector Load byte
19097 NEC850_VLD_B_FMT3, // Vector Load byte (3rd instruction format)
19098 NEC850_VLD_B_FMT4, // Vector Load byte (4th instruction format)
19099
19100 NEC850_VLD_H, // Vector Load halfword
19101 NEC850_VLD_H_FMT4, // Vector Load halfword (4th instruction format)
19102
19103 NEC850_VLD_W, // Vector Load word
19104 NEC850_VLD_W_FMT4, // Vector Load word (4th instruction format)
19105
19106 NEC850_VLD_DW, // Vector Load double - word
19107 NEC850_VLD_DW_FMT3, // Vector Load double - word (3rd instruction format)
19108 NEC850_VLD_DW_FMT4, // Vector Load double - word (4th instruction format)
19109 NEC850_VLD_DW_FMT5, // Vector Load double - word (5th instruction format)
19110
19111 NEC850_VST_B, // Vector Store byte
19112 NEC850_VST_B_FMT4, // Vector Store byte (4th instruction format)
19113
19114 NEC850_VST_H, // Vector Store halfword
19115 NEC850_VST_H_FMT_4_5, // Vector Store halfword (4th/5th instruction format)
19116
19117 NEC850_VST_W, // Vector Store word
19118 NEC850_VST_W_FMT_4_5, // Vector Store word (4th/5th instruction format)
19119
19120 NEC850_VST_DW, // Vector Store double - word
19121 NEC850_VST_DW_FMT_4_5, // Vector Store double - word (4th/5th instruction format)
19122 NEC850_VST_DW_FMT6, // Vector Store double - word (6th instruction format)
19123
19124 NEC850_VCMOV, // Vector conditional move
19125 NEC850_MODADD, // Modulo Add
19126
19127 NEC850_VADD_H, // Vector add halfword
19128 NEC850_VADD_W, // Vector add word
19129 NEC850_VADD_DW, // Vector add double - word
19130 NEC850_VSUB_H, // Vector subtract halfword
19131 NEC850_VSUB_W, // Vector subtract word
19132 NEC850_VSUB_DW, // Vector subtract double - word
19133 NEC850_VADDSAT_H, // Vector add halfword with saturation
19134 NEC850_VADDSAT_W, // Vector add word with saturation
19135 NEC850_VSUBSAT_H, // Vector subtract halfword with saturation
19136 NEC850_VSUBSAT_W, // Vector subtract word with saturation
19137 NEC850_VADDS_H, // Vector add halfword with scaling
19138 NEC850_VADDS_W, // Vector add word with scaling
19139 NEC850_VSUBS_H, // Vector subtract halfword with scaling
19140 NEC850_VSUBS_W, // Vector subtract word with scaling
19141
19142 NEC850_VMUL_H, // Vector multiply halfword
19143 NEC850_VMUL_W, // Vector multiply word
19144 NEC850_VMULT_H, // Vector multiply halfword with truncation
19145 NEC850_VMULT_W, // Vector multiply word with truncation
19146 NEC850_VMULCX_H, // Vector multiply halfword with complex number
19147 NEC850_VMULCX_W, // Vector multiply word with complex number
19148
19149 NEC850_VCMPEQ_H, // Vector compare equal halfword
19150 NEC850_VCMPEQ_W, // Vector compare equal word
19151 NEC850_VCMPLT_H, // Vector compare less-than halfword
19152 NEC850_VCMPLT_W, // Vector compare less-than word
19153 NEC850_VCMPLE_H, // Vector compare less-than-equal halfword
19154 NEC850_VCMPLE_W, // Vector compare less-than-equal word
19155 NEC850_VCMPNE_H, // Vector compare not-equal halfword
19156 NEC850_VCMPNE_W, // Vector compare not-equal word
19157
19158 NEC850_VABS_H, // Vector absolute halfword
19159 NEC850_VABS_W, // Vector absolute word
19160
19161 NEC850_VNEG_H, // Vector negate halfword
19162 NEC850_VNEG_W, // Vector negate word
19163
19164 NEC850_VMAXGT_H, // Vector maximum greater-than halfword
19165 NEC850_VMAXGE_H, // Vector maximum greater-than-equal halfword
19166 NEC850_VMINLT_H, // Vector minimum less-than halfword
19167 NEC850_VMINLE_H, // Vector minimum less-than-equal halfword
19168 NEC850_VMAXGT_W, // Vector maximum greater-than word
19169 NEC850_VMAXGE_W, // Vector maximum greater-than-equal word
19170 NEC850_VMINLT_W, // Vector minimum less-than word
19171 NEC850_VMINLE_W, // Vector minimum less-than-equal word
19172
19173 NEC850_VMADSAT_H, // Vector multiply halfword and add with saturation
19174 NEC850_VMADSAT_W, // Vector multiply word and add with saturation
19175 NEC850_VMADRN_H, // Vector multiply halfword and add with rounding
19176 NEC850_VMADRN_W, // Vector multiply word and add with rounding
19177
19178 NEC850_VMSUM_H, // Vector multiply halfword and sum
19179 NEC850_VMSUM_W, // Vector multiply word and sum
19180
19181 NEC850_VMSUMAD_H, // Vector multiply halfword and sum and add to vector register
19182 NEC850_VMSUMAD_W, // Vector multiply word and sum and add to vector register
19183 NEC850_VMSUMADRE_H, // Vector multiply halfword and sum and add to vector register for real part result of complex number calculation
19184 NEC850_VMSUMADRE_W, // Vector multiply word and sum and add to vector register for real part result of complex number calculation
19185 NEC850_VMSUMADIM_H, // Vector multiply halfword and sum and add to vector register for imaginary part result of complex number calculation
19186 NEC850_VMSUMADIM_W, // Vector multiply word and sum and add to vector register for imaginary part result of complex number calculation
19187 NEC850_VMSUMADRN_H, // Vector multiply halfword and sum and add to vector register with rounding
19188 NEC850_VBIQ_H, // Vector multiply halfword for biquad calculation
19189
19190 NEC850_PKUI8I16, // Pack vector unsigned integer byte to vector signed integer halfword
19191 NEC850_PKI16I32, // Pack vector signed integer halfword to vector signed integer word
19192 NEC850_PKQ15Q31, // Pack vector Q15 fractional halfword to vector Q31 fractional word
19193 NEC850_PKI16UI8, // Pack vector signed integer halfword to vector unsigned integer byte
19194 NEC850_PKI32I16, // Pack vector signed integer word to vector signed integer halfword
19195 NEC850_PKQ31Q15, // Pack vector Q31 fractional word to vector Q15 fractional halfword
19196 NEC850_PKQ30Q31, // Pack Q31 fractional double-word to vector Q31 fractional halfword
19197 NEC850_PKI64I32, // Pack signed integer double-word to vector signed integer word
19198 NEC850_CNVQ15Q30, // Convert from Q15 fractional halfword to Q30 fractional double-word
19199 NEC850_CNVQ31Q62, // Convert from Q31 fractional word to Q62 fractional double-word
19200 NEC850_CNVQ30Q15, // Convert from Q30 fractional double-word to Q15 fractional halfword
19201 NEC850_CNVQ62Q31, // Convert from Q62 fractional double-word to Q31 fractional word
19202
19203 NEC850_EXPQ31, // Extract exponent of Q31 fractional word
19204 NEC850_VCALCH, // Vector calculate with halfword
19205 NEC850_VCALCW, // Vector calculate with word
19206
19207 NEC850_MOVV_W4, // Move vector register to vector register
19208
19209 NEC850_FLPV_S4, // Floating-point SIMD Flip (single)
19210 NEC850_SHFLV_W4, // Vector Shuffle
19211
19212 NEC850_LDV_DW, // Load Vector (Double-Word)
19213 NEC850_LDV_QW, // Load Vector (Quad-Word)
19214 NEC850_LDV_W, // Load Vector (Word)
19215 NEC850_LDVZ_H4, // Load Vector at Even Halfword field
19216
19217 NEC850_STV_DW, // Store Vector (Double-Word)
19218 NEC850_STV_QW, // Store Vector (Quad-Word)
19219 NEC850_STV_W, // Store Vector (Word)
19220 NEC850_STVZ_H4, // Store Vector at Even Halfword field
19221
19222 NEC850_CMOVF_W4, // Conditional move of vector register (Single precision)
19223 NEC850_TRFSRV_W4, // Transfers compare result to PSW
19224
19225 NEC850_ABSF_S4, // Floating-point SIMD Absolute (single)
19226 NEC850_ADDF_S4, // Floating-point SIMD Add (single)
19227 NEC850_DIVF_S4, // Floating-point SIMD Divide (single)
19228 NEC850_MAXF_S4, // Floating-point SIMD Maximum (single)
19229 NEC850_MINF_S4, // Floating-point SIMD Minimum (single)
19230 NEC850_MULF_S4, // Floating-point SIMD Multiply (single)
19231 NEC850_NEGF_S4, // Floating-point SIMD Negative (single)
19232 NEC850_RECIPF_S4, // Floating-point SIMD Reciprocal (single)
19233 NEC850_RSQRTF_S4, // Floating-point SIMD Reciprocal Square-Root (single)
19234 NEC850_SQRTF_S4, // Floating-point SIMD Square-Root (single)
19235 NEC850_SUBF_S4, // Floating-point SIMD Subtract (single)
19236
19237 NEC850_FMAF_S4, // Floating-point SIMD Fused-Multiply-Add (Single)
19238 NEC850_FMSF_S4, // Floating-point SIMD Fused-Multiply-Subtract (Single)
19239 NEC850_FNMAF_S4, // Floating-point SIMD Fused-Negative-Multiply-Add (Single)
19240 NEC850_FNMSF_S4, // Floating-point SIMD Fused-Negative-Multiply-Subtract (Single)
19241
19242 NEC850_ADDSUBF_S4, // Floating-point SIMD Add/Subtract (single)
19243 NEC850_ADDSUBNF_S4, // Floating-point SIMD Add/Subtract Negative (single)
19244 NEC850_SUBADDF_S4, // Floating-point SIMD Subtract/Add (single)
19245 NEC850_SUBADDNF_S4, // Floating-point SIMD Subtract/Add Negative (single)
19246
19247 NEC850_ADDXF_S4, // Floating-point SIMD Add Exchange (single)
19248 NEC850_MULXF_S4, // Floating-point SIMD Multiply Exchange (single)
19249 NEC850_SUBXF_S4, // Floating-point SIMD Subtract Exchange (single)
19250
19251 NEC850_ADDSUBNXF_S4, // Floating-point SIMD Add/Subtract Negative Exchange (single)
19252 NEC850_ADDSUBXF_S4, // Floating-point SIMD Add/Subtract Exchange (single)
19253 NEC850_SUBADDNXF_S4, // Floating-point SIMD Subtract/Add Negative Exchange (single)
19254 NEC850_SUBADDXF_S4, // Floating-point SIMD Subtract/Add Exchange (single)
19255
19256 NEC850_ADDRF_S4, // Floating-point SIMD Add Reduction (single)
19257 NEC850_MAXRF_S4, // Floating-point SIMD Maximum Reduction (single)
19258 NEC850_MINRF_S4, // Floating-point SIMD Minimum Reduction (single)
19259 NEC850_MULRF_S4, // Floating-point SIMD Multiply Reduction (single)
19260 NEC850_SUBRF_S4, // Floating-point SIMD Subtract Reduction (single)
19261
19262 NEC850_CEILF_SUW4, // Floating-point SIMD Convert Single to Unsigned Word, round toward positive (single)
19263 NEC850_CEILF_SW4, // Floating-point SIMD Convert Single to Word, round toward positive (single)
19264 NEC850_CVTF_HS4, // Floating-point SIMD Convert Half to Single (single)
19265 NEC850_CVTF_SH4, // Floating-point SIMD Convert Single to Half (single)
19266 NEC850_CVTF_SUW4, // Floating-point SIMD Convert Single to Unsigned Word (single)
19267 NEC850_CVTF_SW4, // Floating-point SIMD Convert Single to Word (single)
19268 NEC850_CVTF_UWS4, // Floating-point SIMD Convert Unsigned Word to Single (single)
19269 NEC850_CVTF_WS4, // Floating-point SIMD Convert Word to Single (single)
19270 NEC850_FLOORF_SUW4, // Floating-point SIMD Convert Single to Unsigned Word, round toward negative (single)
19271 NEC850_FLOORF_SW4, // Floating-point SIMD Convert Single to Word, round toward negative (single)
19272 NEC850_ROUNDF_SUW4, // Floating-point SIMD Convert Single to Unsigned Word, round to nearest (single)
19273 NEC850_ROUNDF_SW4, // Floating-point SIMD Convert Single to Word, round to nearest (single)
19274 NEC850_TRNCF_SUW4, // Floating-point SIMD Convert Single to Unsigned Word, round toward zero (single)
19275 NEC850_TRNCF_SW4, // Floating-point SIMD Convert Single to Word, round toward zero (single)
19276
19277 NEC850_CMPF_S4, // Floating-point SIMD Comparison (single)
19278
19280};
19281
19282/*
19283 * Tricore Disassembly Module
19284 * Version 1.0
19285 * Copyright (c) 2000 by Juergen Krumm
19286 * ALL RIGHTS RESERVED
19287 *
19288 *
19289 */
19290
19291
19292
19293enum
19294{
19295 TRICORE_null = 0, // Unknown Operation
19677
19678 // new v1.6 instructions
19693
19694 // new v1.6.1 instructions
19695 TRICORE_crc32, // Calculate CRC32
19696 TRICORE_wait, // Suspend execution until the next enabled interrupt or asynchronous trap event
19697 TRICORE_cmpswap_w, // Compare and swap
19698 TRICORE_swapmsk_w, // Swap under mask
19699
19700 // new v1.6.2 instructions
19701 TRICORE_crc32_b, // CRC32 for big endian data
19702 TRICORE_crc32l_w, // CRC32 for little endian data
19703 TRICORE_crcn, // Arbitrary width and polynomial CRC calculation
19704 TRICORE_shuffle, // Reorder bytes within word
19705 TRICORE_popcnt_w, // Count number of bits set in word
19706 TRICORE_lha, // Load high bits of address value
19707 TRICORE_ftohp, // Single Precision to Half Precision
19708 TRICORE_hptof, // Half Precision to Single Precision
19709
19710 // new v1.8 instructions
19711 TRICORE_rfh, // Return from hypervisor
19712 TRICORE_lsync, // Synchronize local data
19713 TRICORE_trapinv, // Trap Invalid Opcode
19714 TRICORE_hvcall, // Hypervisor call
19715 TRICORE_ltodf, // Long integer to double
19716 TRICORE_ftodf, // Single precision to double precision
19717 TRICORE_utodf, // Unsigned to double
19718 TRICORE_ultodf, // Unsigned long integer to double
19719 TRICORE_itodf, // Integer to double
19720 TRICORE_dftoin, // Double to integer, round to nearest
19721 TRICORE_dftoi, // Double to integer
19722 TRICORE_dftoul, // Double to unsigned long
19723 TRICORE_dftol, // Double to long integer
19724 TRICORE_dftof, // Double precision to single precision
19725 TRICORE_dftou, // Double to unsigned
19726 TRICORE_dftolz, // Double to long integer, round towards zero
19727 TRICORE_dftouz, // Double to unsigned, round towards zero
19728 TRICORE_dftoulz, // Double to unsigned long integer, round towards zero
19729 TRICORE_dftoiz, // Double to integer, round towards zero
19730 TRICORE_ftoin, // Float to integer, round to nearest
19731 TRICORE_cachea_i_vm, // Cache address, invalidate virtual machine entry
19732 TRICORE_cachea_w_vm, // Cache address, writeback virtual machine entry
19733 TRICORE_cachea_wi_vm, // Cache address, writeback and invalidate virtual machine entry
19734 TRICORE_cachei_i_vm, // Cache index, invalidate virtual machine entry
19735 TRICORE_cachei_w_vm, // Cache index, writeback virtual machine entry
19736 TRICORE_cachei_wi_vm, // Cache index, writeback and invalidate virtual machine entry
19737 TRICORE_mfdcr, // Move from core register pair
19738 TRICORE_mtdcr, // Move to core register pair
19739 TRICORE_cmp_df, // Compare double
19740 TRICORE_div_df, // Divide double
19741 TRICORE_mul_df, // Multiply double
19742 TRICORE_abs_df, // Absolute value double
19743 TRICORE_sub_df, // Subtract double
19744 TRICORE_add_df, // Add double
19745 TRICORE_max_df, // Maximum value double
19746 TRICORE_madd_df, // Multiply add double
19747 TRICORE_msub_df, // Multiply subtract double
19748 TRICORE_min_df, // Minimum value double
19749 TRICORE_neg_df, // Negate value double
19750 TRICORE_max_f, // Maximum value float
19751 TRICORE_neg_f, // Negate value float
19752 TRICORE_abs_f, // Absolute value float
19753 TRICORE_min_f, // minimum value double
19754 TRICORE_ld_dd, // Load double double word
19755 TRICORE_st_dd, // Store double double word
19756 TRICORE_div64_u, // Divide 64-bit unsigned long
19757 TRICORE_div64, // Divide 64-bit long
19758 TRICORE_rem64, // Remainder 64-bit long
19759 TRICORE_rem64_u, // Remainder 64-bit unsigned long
19760 TRICORE_mulp_b, // Packed carry-less multiplication
19761 TRICORE_qseed_df, // Inverse square root seed
19762 TRICORE_jri, // Jump relative indirect
19763 TRICORE_calli16, // Call Indirect
19764
19766};
19767
19768
19769/*
19770 * Interactive disassembler (IDA).
19771 * Copyright (c) 1990-2025 Hex-Rays
19772 * ALL RIGHTS RESERVED.
19773 *
19774 */
19775
19776
19777
19778enum
19779{
19780
19781 ARC_null = 0, // Unknown Operation
19782
19783 ARC_ld, // Load
19784 ARC_lr, // Load from auxiliary register
19785 ARC_st, // Store
19786 ARC_sr, // Store to auxiliary register
19788 ARC_flag, // Set flags
19789 ARC_asr, // Arithmetic shift right
19790 ARC_lsr, // Logical shift right
19791 ARC_sexb, // Sign extend byte
19792 ARC_sexw, // Sign extend word
19794 ARC_extb, // Zero extend byte
19795 ARC_extw, // Zero extend word
19797 ARC_ror, // Rotate right
19798 ARC_rrc, // Rotate right through carry
19799 ARC_b, // Branch
19800 ARC_bl, // Branch and link
19801 ARC_lp, // Zero-overhead loop setup
19802 ARC_j, // Jump
19803 ARC_jl, // Jump and link
19804 ARC_add, // Add
19805 ARC_adc, // Add with carry
19806 ARC_sub, // Subtract
19807 ARC_sbc, // Subtract with carry
19808 ARC_and, // Logical bitwise AND
19809 ARC_or, // Logical bitwise OR
19810 ARC_bic, // Logical bitwise AND with invert
19811 ARC_xor, // Logical bitwise exclusive-OR
19812
19813 // pseudo instructions
19814 ARC_mov, // Move
19815 ARC_nop, // No operation
19816 ARC_lsl, // Logical shift left
19817 ARC_rlc, // Rotate left through carry
19818
19819 // arc7
19820 ARC_brk, // Breakpoint
19821 ARC_sleep, // Sleep until interrupt or restart
19822
19823 // arc8
19824 ARC_swi, // Software interrupt
19825
19826 // extra optional instrutions
19827 ARC_asl, // Arithmetic shift left
19828 ARC_mul64, // Signed 32x32 multiply
19829 ARC_mulu64, // Unsigned 32x32 multiply
19830 ARC_max, // Maximum of two signed integers
19831 ARC_min, // Minimum of two signed integers
19832 ARC_swap, // Exchange upper and lower 16 bits
19833 ARC_norm, // Normalize (find-first-bit)
19834
19835 // ARCompact instructions
19836 ARC_bbit0, // Branch if bit cleared to 0
19837 ARC_bbit1, // Branch if bit set to 1
19838 ARC_br, // Branch on compare
19839 ARC_pop, // Restore register value from stack
19840 ARC_push, // Store register value on stack
19841
19842 ARC_abs, // Absolute value
19843 ARC_add1, // Add with left shift by 1 bit
19844 ARC_add2, // Add with left shift by 2 bits
19845 ARC_add3, // Add with left shift by 3 bits
19846 ARC_bclr, // Clear specified bit (to 0)
19847 ARC_bmsk, // Bit Mask
19848 ARC_bset, // Set specified bit (to 1)
19849 ARC_btst, // Test value of specified bit
19850 ARC_bxor, // Bit XOR
19851 ARC_cmp, // Compare
19852 ARC_ex, // Atomic Exchange
19853 ARC_mpy, // Signed 32x32 multiply (low)
19854 ARC_mpyh, // Signed 32x32 multiply (high)
19856 ARC_mpyhu, // Unsigned 32x32 multiply (high)
19858 ARC_mpyu, // Unsigned 32x32 multiply (low)
19859 ARC_neg, // Negate
19860 ARC_not, // Logical bit inversion
19861 ARC_rcmp, // Reverse Compare
19862 ARC_rsub, // Reverse Subtraction
19863 ARC_rtie, // Return from Interrupt/Exception
19864 ARC_sub1, // Subtract with left shift by 1 bit
19865 ARC_sub2, // Subtract with left shift by 2 bits
19866 ARC_sub3, // Subtract with left shift by 3 bits
19867 ARC_sync, // Synchronize
19868 ARC_trap, // Raise an exception
19869 ARC_tst, // Test
19870 ARC_unimp, // Unimplemented instruction
19871
19872 ARC_abss, // Absolute and saturate
19873 ARC_abssw, // Absolute and saturate of word
19875 ARC_adds, // Add and saturate
19876 ARC_addsdw, // Add and saturate dual word
19877 ARC_asls, // Arithmetic shift left and saturate
19878 ARC_asrs, // Arithmetic shift right and saturate
19879 ARC_divaw, // Division assist
19880 ARC_negs, // Negate and saturate
19881 ARC_negsw, // Negate and saturate of word
19883 ARC_normw, // Normalize to 16 bits
19885 ARC_rnd16, // Round to word
19887 ARC_sat16, // Saturate to word
19889 ARC_subs, // Subtract and saturate
19890 ARC_subsdw, // Subtract and saturate dual word
19891
19892 // mac d16
19900
19901 // 32x16 MUL/MAC
19912
19913 // Major 6 compact insns
19949
19950 // ARCv2 only major 4 instructions
19951 ARC_mpyw, // Signed 16x16 multiply
19952 ARC_mpyuw, // Unsigned 16x16 multiply
19953 ARC_bi, // Branch indexed
19954 ARC_bih, // Branch indexed half-word
19955 ARC_ldi, // Load indexed
19956 ARC_aex, // Exchange with auxiliary register
19957 ARC_bmskn, // Bit mask negated
19958 ARC_seteq, // Set if equal
19959 ARC_setne, // Set if not equal
19960 ARC_setlt, // Set if less than
19961 ARC_setge, // Set if greater or equal
19962 ARC_setlo, // Set if lower than
19963 ARC_seths, // Set if higher or same
19964 ARC_setle, // Set if less than or equal
19965 ARC_setgt, // Set if greater than
19966
19967 ARC_rol, // Rotate left
19968 ARC_llock, // Load locked
19969 ARC_scond, // Store conditional
19970
19971 ARC_seti, // Set interrupt enable and priority level
19972 ARC_clri, // Cler and get interrupt enable and priority level
19973
19974 // ARCv2 compact prolog / epilog instructions
19975 ARC_enter, // Function prologue sequence
19976 ARC_leave, // Function epilogue sequence
19977
19978 // ARCv2 32-bit extension major 5 DOP instructions
19979 ARC_div, // Signed integer divsion
19980 ARC_divu, // Unsigned integer divsion
19981 ARC_rem, // Signed integer remainder
19982 ARC_remu, // Unsigned integer remainder
19983 ARC_asrsr, // Shift right rounding and saturating
19984 ARC_valgn2h, // Two-way 16-bit vector align
19985 ARC_setacc, // Set the accumulator
19986 ARC_mac, // Signed 32x32 multiply accumulate
19987 ARC_macu, // Unsigned 32x32 multiply accumulate
19988 ARC_dmpyh, // Sum of dual signed 16x16 multiplication
19989 ARC_dmpyhu, // Sum of dual unsigned 16x16 multiplication
19990 ARC_dmach, // Dual signed 16x16 multiply accumulate
19991 ARC_dmachu, // Dual unsigned 16x16 multiply accumulate
19992 ARC_vadd2h, // Dual 16-bit addition
19993 ARC_vadds2h, // Dual 16-bit saturating addition
19994 ARC_vsub2h, // Dual 16-bit subtraction
19995 ARC_vsubs2h, // Dual 16-bit saturating subtraction
19996 ARC_vaddsub2h, // Dual 16-bit addition/subtraction
19997 ARC_vaddsubs2h, // Dual 16-bit saturating addition/subtraction
19998 ARC_vsubadd2h, // Dual 16-bit subtraction/addition
19999 ARC_vsubadds2h, // Dual 16-bit saturating subtraction/addition
20000 ARC_mpyd, // Signed 32x32 multiply (wide)
20001 ARC_mpydu, // Unsigned 32x32 multiply (wide)
20002 ARC_macd, // Signed 32x32 multiply accumulate (wide)
20003 ARC_macdu, // Unsigned 32x32 multiply accumulate (wide)
20004 ARC_vmpy2h, // Dual signed 16x16 multiply (wide)
20005 ARC_vmpy2hf, // Dual 16x16 saturating fractional multiply
20006 ARC_vmpy2hu, // Dual unsigned 16x16 multiply (wide)
20007 ARC_vmpy2hfr, // Dual 16x16 saturating rounded fractional multiply
20008 ARC_vmac2h, // Dual signed 16x16 multiply (wide)
20009 ARC_vmac2hf, // Dual 16x16 saturating fractional multiply
20010 ARC_vmac2hu, // Dual unsigned 16x16 multiply (wide)
20011 ARC_vmac2hfr, // Dual 16x16 saturating rounded fractional multiply
20012 ARC_vmpy2hwf, // Dual 16x16 saturating fractional multiply (wide)
20013 ARC_vasl2h, // Dual 16-bit arithmetic shift left
20014 ARC_vasls2h, // Dual 16-bit saturating arithmetic shift left
20015 ARC_vasr2h, // Dual 16-bit arithmetic shift right
20016 ARC_vasrs2h, // Dual 16-bit saturating arithmetic shift right
20017 ARC_vlsr2h, // Dual 16-bit logical shift right
20018 ARC_vasrsr2h, // Dual 16-bit saturating rounded arithmetic shift right
20019 ARC_vadd4b, // Quad 8-bit addition
20020 ARC_vmax2h, // Dual 16-bit maximum
20021 ARC_vsub4b, // Quad 8-bit subtraction
20022 ARC_vmin2h, // Dual 16-bit minimum
20023 ARC_adcs, // Signed saturating addition with carry in
20024 ARC_sbcs, // Signed saturating subtraction with carry in
20025 ARC_dmpyhwf, // Fractional saturating sum of dual 16x16 signed fractional multiply
20026 ARC_vpack2hl, // Compose lower 16-bits
20027 ARC_vpack2hm, // Compose upper 16-bits
20028 ARC_dmpyhf, // Saturating sum of dual 16x16 signed fractional multiply
20029 ARC_dmpyhfr, // Saturating rounded sum of dual 16x16 signed fractional multiply
20030 ARC_dmachf, // Saturating sum of dual 16x16 signed fractional multiply accumulate
20031 ARC_dmachfr, // Saturating rounded sum of dual 16x16 signed fractional multiply accumulate
20032 ARC_vperm, // Byte permutation with zero or sign extension
20033 ARC_bspush, // Bitstream push
20034
20035 // ARCv2 32-bit extension major 5 SOP instructions
20036 ARC_swape, // Swap byte ordering
20037 ARC_lsl16, // Logical shift left by 16 bits
20038 ARC_lsr16, // Logical shift right by 16 bits
20039 ARC_asr16, // Arithmetic shift right by 16 bits
20040 ARC_asr8, // Arithmetic shift right by 8 bits
20041 ARC_lsr8, // Logical shift right by 8 bits
20042 ARC_lsl8, // Logical shift left by 8 bits
20043 ARC_rol8, // Rotate left by 8 bits
20044 ARC_ror8, // Rotate right by 8 bits
20045 ARC_ffs, // Find first set bit
20046 ARC_fls, // Find last set bit
20047
20048 ARC_getacc, // Get accumulator
20049 ARC_normacc, // Normalize accumulator
20050 ARC_satf, // Saturate according to flags
20051 ARC_vpack2hbl, // Pack lower bytes into lower 16 bits
20052 ARC_vpack2hbm, // Pack upper bytes into upper 16 bits
20053 ARC_vpack2hblf, // Pack upper bytes into lower 16 bits
20054 ARC_vpack2hbmf, // Pack lower bytes into upper 16 bits
20055 ARC_vext2bhlf, // Pack lower 2 bytes into upper byte of 16 bits each
20056 ARC_vext2bhmf, // Pack upper 2 bytes into upper byte of 16 bits each
20057 ARC_vrep2hl, // Repeat lower 16 bits
20058 ARC_vrep2hm, // Repeat upper 16 bits
20059 ARC_vext2bhl, // Pack lower 2 bytes into zero extended 16 bits
20060 ARC_vext2bhm, // Pack upper 2 bytes into zero extended 16 bits
20061 ARC_vsext2bhl, // Pack lower 2 bytes into sign extended 16 bits
20062 ARC_vsext2bhm, // Pack upper 2 bytes into sign extended 16 bits
20063 ARC_vabs2h, // Dual 16-bit absolute value
20064 ARC_vabss2h, // Dual saturating 16-bit absolute value
20065 ARC_vneg2h, // Dual 16-bit negation
20066 ARC_vnegs2h, // Dual saturating 16-bit negation
20067 ARC_vnorm2h, // Dual 16-bit normalization
20068 ARC_bspeek, // Bitstream peek
20069 ARC_bspop, // Bitstream pop
20070 ARC_sqrt, // Integer square root
20071 ARC_sqrtf, // Fractional square root
20072
20073 // ARCv2 32-bit extension major 5 ZOP instructions
20074 ARC_aslacc, // Arithmetic shift of accumulator
20075 ARC_aslsacc, // Saturating arithmetic shift of accumulator
20076 ARC_flagacc, // Copy accumulator flags to status32 register
20077 ARC_modif, // Update address pointer
20078
20079 // ARCv2 32-bit extension major 6 DOP instructions
20080 ARC_cmpyhnfr, // Fractional 16+16 bit complex saturating rounded unshifted multiply
20081 ARC_cmpyhfr, // Fractional 16+16 bit complex saturating rounded multiply
20082 ARC_cmpychfr, // Fractional 16+16 bit complex saturating rounded conjugated multiply
20083 ARC_vmsub2hf, // Dual 16x16 saturating fractional multiply subtract
20084 ARC_vmsub2hfr, // Dual 16x16 saturating rounded fractional multiply subtract
20085 ARC_cmpychnfr, // Fractional 16+16 bit complex saturating rounded unshifted conjugated multiply
20086 ARC_cmachnfr, // Fractional 16+16 bit complex saturating rounded unshifted multiply accumulate
20087 ARC_cmachfr, // Fractional 16+16 bit complex saturating rounded unshifted accumulate
20088 ARC_cmacchnfr, // Fractional 16+16 bit complex saturating rounded conjugated multiply accumulate
20089 ARC_cmacchfr, // Fractional 16+16 bit complex saturating rounded unshifted conjugated multiply accumulate
20090 ARC_mpyf, // Signed 32-bit fractional saturating multiply
20091 ARC_mpyfr, // Signed 32-bit fractional saturating rounded multiply
20092 ARC_macf, // Signed 32-bit fractional saturating multiply accumulate
20093 ARC_macfr, // Signed 32-bit fractional saturating rounded multiply accumulate
20094 ARC_msubf, // Signed 32-bit fractional saturating multiply subtract
20095 ARC_msubfr, // Signed 32-bit fractional saturating rounded multiply subtract
20096 ARC_divf, // Signed 32-bit fractional division
20097 ARC_vmac2hnfr, // Dual signed 16-bit fractional saturating rounded multiply accumulate
20098 ARC_vmsub2hnfr, // Dual signed 16-bit fractional saturating rounded multiply subtract
20099 ARC_mpydf, // Signed 32-bit fractional multiply (wide)
20100 ARC_macdf, // Signed 32-bit fractional multiply accumulate (wide)
20101 ARC_msubwhfl, // Signed 32 x 16 (lower) fractional saturating multiply subtract
20102 ARC_msubdf, // Signed 32-bit fractional multiply subtract (wide)
20103 ARC_dmpyhbl, // Dual 16x8 signed multiply with lower two bytes
20104 ARC_dmpyhbm, // Dual 16x8 signed multiply with upper two bytes
20105 ARC_dmachbl, // Dual 16x8 signed multiply accumulate with lower two bytes
20106 ARC_dmachbm, // Dual 16x8 signed multiply accumulate with upper two bytes
20107 ARC_msubwhflr, // Signed 32 x 16 (lower) fractional saturating rounded multiply subtract
20108 ARC_cmpyhfmr, // Fractional 16+16 bit complex x 16bit real (upper) saturating rounded multiply
20109 ARC_cbflyhf0r, // Fractional 16+16 bit complex FFT butterfly, first half
20110 ARC_mpywhl, // Signed 32 x 16 (lower) multiply
20111 ARC_macwhl, // Signed 32 x 16 (lower) multiply accumulate
20112 ARC_mpywhul, // Unsigned 32 x 16 (lower) multiply
20113 ARC_macwhul, // Unsigned 32 x 16 (lower) multiply accumulate
20114 ARC_mpywhfm, // Signed 32 x 16 (upper) fractional saturating multiply
20115 ARC_mpywhfmr, // Signed 32 x 16 (upper) fractional saturating rounded multiply
20116 ARC_macwhfm, // Signed 32 x 16 (upper) fractional saturating multiply accumulate
20117 ARC_macwhfmr, // Signed 32 x 16 (upper) fractional saturating rounded multiply accumulate
20118 ARC_mpywhfl, // Signed 32 x 16 (lower) fractional saturating multiply
20119 ARC_mpywhflr, // Signed 32 x 16 (lower) fractional saturating rounded multiply
20120 ARC_macwhfl, // Signed 32 x 16 (lower) fractional saturating multiply accumulate
20121 ARC_macwhflr, // Signed 32 x 16 (lower) fractional saturating rounded multiply accumulate
20122 ARC_macwhkl, // Signed 32 x 16 (lower) 16-bit shifted multiply accumulate
20123 ARC_macwhkul, // Unsigned 32 x 16 (lower) 16-bit shifted multiply accumulate
20124 ARC_mpywhkl, // Signed 32 x 16 (lower) 16-bit shifted multiply
20125 ARC_mpywhkul, // Unsigned 32 x 16 (lower) 16-bit shifted multiply
20126 ARC_msubwhfm, // Signed 32 x 16 (upper) fractional saturating multiply subtract
20127 ARC_msubwhfmr, // Signed 32 x 16 (upper) fractional saturating rounded multiply subtract
20128
20129 // ARCv2 32-bit extension major 6 SOP instructions
20130 ARC_cbflyhf1r, // Fractional 16+16 bit complex FFT butterfly, second half
20131
20132 // ARCv2 FPU instructions
20133 ARC_fscmp, // Single precision floating point compare
20134 ARC_fscmpf, // Single precision floating point compare (IEEE 754 flag generation)
20135 ARC_fsmadd, // Single precision floating point fused multiply add
20136 ARC_fsmsub, // Single precision floating point fused multiply subtract
20137 ARC_fsdiv, // Single precision floating point division
20138 ARC_fcvt32, // Single precision floating point / integer conversion
20139 ARC_fssqrt, // Single precision floating point square root
20140
20141 // ARCv2 jump / execute indexed instructions
20142 ARC_jli, // Jump and link indexed
20143 ARC_ei, // Execute indexed
20144
20145 ARC_kflag, // Set kernel flags
20146 ARC_wevt, // Enter sleep state
20147
20149};
20150
20151/*
20152 * Interactive disassembler (IDA).
20153 * Copyright (c) 1990-2025 Hex-Rays
20154 * ALL RIGHTS RESERVED.
20155 *
20156 */
20157
20158
20159
20160enum
20161{
20162
20163TMS28_null = 0, // Unknown Operation
20164
20326// TODO below is WIP
20327// Floating Point Unit (FPU)
20367
20368// Floating Point Unit (FPU64)
20395
20396// Viterbi, Complex Math and CRC Unit (VCU)
20439
20440// Cyclic Redundancy Check (VCRC)
20452
20453// C28 Viterbi, Complex Math and CRC Unit-II (VCU-II)
20498
20499// Fast Integer Division Unit (FINTDIV)
20517
20518// Trigonometric Math Unit (TMU)
20529
20531
20532};
20533
20534
20535
20536enum
20537{
20538UNSP_null = 0, // Unknown Operation
20539
20540// ALU
20542UNSP_adc, // Add with Carry
20543UNSP_sub, // Subtract
20544UNSP_sbc, // Subtract with Carry
20545UNSP_cmp, // Compare
20546UNSP_cmpc, // Compare with Carry?
20547UNSP_neg, // Negate
20548UNSP_negc, // Negate with Carry?
20549UNSP_xor, // Exclusive-OR
20554UNSP_store, // Store
20555
20556UNSP_add_s, // Add (Simple)
20557UNSP_adc_s, // Add with Carry (Simple)
20558UNSP_sub_s, // Subtract (Simple)
20559UNSP_sbc_s, // Subtract with Carry (Simple)
20560UNSP_cmp_s, // Compare (Simple)
20561UNSP_cmpc_s, // Compare with Carry? (Simple)
20562UNSP_neg_s, // Negate (Simple)
20563UNSP_negc_s, // Negate with Carry? (Simple)
20564UNSP_xor_s, // Exclusive-OR (Simple)
20565UNSP_load_s, // Load (Simple)
20566UNSP_or_s, // OR (Simple)
20567UNSP_and_s, // AND (Simple)
20568UNSP_test_s, // Test (Simple)
20569UNSP_store_s, // Store (Simple)
20570
20571
20572// Misc
20573UNSP_retf, // Return Function
20574UNSP_reti, // Return Interrupt
20575UNSP_pop, // Pop from Stack
20576UNSP_push, // Push to Stack
20578UNSP_goto, // Goto (far jump)
20580UNSP_exp, // Effective Exponent
20581
20582// Jump
20583UNSP_jb, // Jump if Below (unsigned) [jcc, jnae]
20584UNSP_jae, // Jump if Above or Equal (unsigned) [jcs, jnb]
20585UNSP_jge, // Jump if Greater or Equal (signed) [jsc, jnl]
20586UNSP_jl, // Jump if Less (signed) [jss, jnge]
20587UNSP_jne, // Jump if Not Equal [jnz]
20588UNSP_je, // Jump if Equal [jz]
20589UNSP_jpl, // Jump if Positive
20590UNSP_jmi, // Jump if Negative
20591UNSP_jbe, // Jump if Below or Equal (unsigned) [jna]
20592UNSP_ja, // Jump if Above (unsigned) [jnbe]
20593UNSP_jle, // Jump if Less or Equal (signed) [jng]
20594UNSP_jg, // Jump if Greater (signed) [jnle]
20595UNSP_jvc, // Jump if Not Overflow
20596UNSP_jvs, // Jump if Overflow
20597UNSP_jmp, // Jump
20598
20599// Multiplication/Division
20600UNSP_mulss, // Multiply Signed * Signed
20601UNSP_mulus, // Multiply Unsigned * Signed
20602UNSP_muluu, // Multiply Unsigned * Unsigned
20603UNSP_divs, // Divide (Sign)
20604UNSP_divq, // Divide (Quotient)
20605
20606// Interrupt
20607UNSP_int1, // Interrupt flags
20608UNSP_int2, // Interrupt flags
20609UNSP_fir_mov, // FIR_MOV setting
20610UNSP_fraction, // FRACTION setting
20611UNSP_irq, // IRQ setting
20612UNSP_secbank, // SECBANK setting
20613UNSP_fiq, // FIQ setting
20614UNSP_irqnest, // IRQNEST setting
20615UNSP_break, // BREAK
20616
20617// Shift
20618UNSP_asr, // Arithmetic shift right
20619UNSP_asror, // Arithmetic shift right OR
20620UNSP_lsl, // Logical shift left
20621UNSP_lslor, // Logical shift left OR
20622UNSP_lsr, // Logical shift right
20623UNSP_lsror, // Logical shift right OR
20624UNSP_rol, // Rotate left
20625UNSP_ror, // Rotate right
20626
20627// Bitops
20628UNSP_tstb, // Test bit
20629UNSP_setb, // Set bit
20630UNSP_clrb, // Clear bit
20631UNSP_invb, // Invert bit
20632
20634 };
20635
20636/*
20637 * Dalvik opcode enumeration.
20638 */
20639
20640
20641enum
20642{
20645
20655
20660
20665
20677
20680
20683
20685
20688
20692
20699
20705
20718
20733
20748
20763
20769
20775
20797
20809
20821
20832
20844
20856
20867
20869 DALVIK_RSUB_INT, // no _LIT16 suffix for this
20876
20888
20894
20899
20900 // The "breakpoint" instruction is special, in that it should never
20901 // be seen by anything but the debug interpreter. During debugging
20902 // it takes the place of an arbitrary opcode, which means operations
20903 // like "tell me the opcode width so I can find the next instruction"
20904 // aren't possible. (This is correctable, but probably not useful.)
20906
20908
20911
20920
20928
20929 // dex-file format 038
20934
20935 // dex-file format 039
20938
20940};
20941
20942/* this file was entirely generated by gen_opc.py */
20943enum
20944{
20946 s39_a, // add (32)
20947 s39_ad, // add normalized (long HFP)
20948 s39_adb, // add (long BFP)
20949 s39_adbr, // add (long BFP)
20950 s39_adr, // add normalized (long HFP)
20951 s39_adtr, // add (long DFP)
20952 s39_adtra, // add (long DFP)
20953 s39_ae, // add normalized (short HFP)
20954 s39_aeb, // add (short BFP)
20955 s39_aebr, // add (short BFP)
20956 s39_aer, // add normalized (short HFP)
20957 s39_afi, // add immediate (32)
20958 s39_ag, // add (64)
20959 s39_agf, // add (64 <- 32)
20960 s39_agfi, // add immediate (64 <- 32)
20961 s39_agfr, // add (64 <- 32)
20962 s39_agh, // add halfword (64 <- 16)
20963 s39_aghi, // add halfword immediate (64 <- 16)
20964 s39_aghik, // add immediate (64 <- 16)
20965 s39_agr, // add (64)
20966 s39_agrk, // add (64)
20967 s39_agsi, // add immediate (64 <- 8)
20968 s39_ah, // add halfword (32 <- 16)
20969 s39_ahhhr, // add high (32)
20970 s39_ahhlr, // add high (32)
20971 s39_ahi, // add halfword immediate (32 <- 16)
20972 s39_ahik, // add immediate (32 <- 16)
20973 s39_ahy, // add halfword (32 <- 16)
20974 s39_aih, // add immediate high (32)
20975 s39_al, // add logical (32)
20976 s39_alc, // add logical with carry (32)
20977 s39_alcg, // add logical with carry (64)
20978 s39_alcgr, // add logical with carry (64)
20979 s39_alcr, // add logical with carry (32)
20980 s39_alfi, // add logical immediate (32)
20981 s39_alg, // add logical (64)
20982 s39_algf, // add logical (64 <- 32)
20983 s39_algfi, // add logical immediate (64 <- 32)
20984 s39_algfr, // add logical (64 <- 32)
20985 s39_alghsik, // add logical with signed immediate (64 <- 16)
20986 s39_algr, // add logical (64)
20987 s39_algrk, // add logical (64)
20988 s39_algsi, // add logical with signed immediate (64 <- 8)
20989 s39_alhhhr, // add logical high (32)
20990 s39_alhhlr, // add logical high (32)
20991 s39_alhsik, // add logical with signed immediate (32 <- 16)
20992 s39_alr, // add logical (32)
20993 s39_alrk, // add logical (32)
20994 s39_alsi, // add logical with signed immediate (32 <- 8)
20995 s39_alsih, // add logical with signed immediate high (32)
20996 s39_alsihn, // add logical with signed immediate high (32)
20997 s39_aly, // add logical (32)
20998 s39_ap, // add decimal
20999 s39_ar, // add (32)
21000 s39_ark, // add (32)
21001 s39_asi, // add immediate (32 <- 8)
21002 s39_au, // add unnormalized (short HFP)
21003 s39_aur, // add unnormalized (short HFP)
21004 s39_aw, // add unnormalized (long HFP)
21005 s39_awr, // add unnormalized (long HFP)
21006 s39_axbr, // add (extended BFP)
21007 s39_axr, // add normalized (extended HFP)
21008 s39_axtr, // add (extended DFP)
21009 s39_axtra, // add (extended DFP)
21010 s39_ay, // add (32)
21011 s39_b, // unconditional branch
21012 s39_bo, // branch on condition, jump on overflow / if ones
21013 s39_bh, // branch on condition, jump on A high
21014 s39_bnle, // branch on condition, jump on not low or equal
21015 s39_bl, // branch on condition, jump on A low
21016 s39_bnhe, // branch on condition, jump on not high or equal
21017 s39_blh, // branch on condition, jump on low or high
21018 s39_bne, // branch on condition, jump on A not equal B
21019 s39_be, // branch on condition, jump on A equal B
21020 s39_bnlh, // branch on condition, jump on not low or high
21021 s39_bhe, // branch on condition, jump on high or equal
21022 s39_bnl, // branch on condition, jump on A not low
21023 s39_ble, // branch on condition, jump on low or equal
21024 s39_bnh, // branch on condition, jump on A not high
21025 s39_bno, // branch on condition, jump on not overflow / if not ones
21026 s39_bor, // branch on condition, jump on overflow / if ones
21027 s39_bhr, // branch on condition, jump on A high
21028 s39_bnler, // branch on condition, jump on not low or equal
21029 s39_blr, // branch on condition, jump on A low
21030 s39_bnher, // branch on condition, jump on not high or equal
21031 s39_blhr, // branch on condition, jump on low or high
21032 s39_bner, // branch on condition, jump on A not equal B
21033 s39_ber, // branch on condition, jump on A equal B
21034 s39_bnlhr, // branch on condition, jump on not low or high
21035 s39_bher, // branch on condition, jump on high or equal
21036 s39_bnlr, // branch on condition, jump on A not low
21037 s39_bler, // branch on condition, jump on low or equal
21038 s39_bnhr, // branch on condition, jump on A not high
21039 s39_bnor, // branch on condition, jump on not overflow / if not ones
21040 s39_bakr, // branch and stack
21041 s39_bal, // branch and link
21042 s39_balr, // branch and link
21043 s39_bas, // branch and save
21044 s39_basr, // branch and save
21045 s39_bassm, // branch and save and set mode
21046 s39_bc, // branch on condition
21047 s39_bcr, // branch on condition
21048 s39_bct, // branch on count (32)
21049 s39_bctg, // branch on count (64)
21050 s39_bctgr, // branch on count (64)
21051 s39_bctr, // branch on count (32)
21052 s39_bi, // unconditional indirect branch
21053 s39_bio, // branch indirect on condition, jump on overflow / if ones
21054 s39_bih, // branch indirect on condition, jump on A high
21055 s39_binle, // branch indirect on condition, jump on not low or equal
21056 s39_bil, // branch indirect on condition, jump on A low
21057 s39_binhe, // branch indirect on condition, jump on not high or equal
21058 s39_bilh, // branch indirect on condition, jump on low or high
21059 s39_bine, // branch indirect on condition, jump on A not equal B
21060 s39_bie, // branch indirect on condition, jump on A equal B
21061 s39_binlh, // branch indirect on condition, jump on not low or high
21062 s39_bihe, // branch indirect on condition, jump on high or equal
21063 s39_binl, // branch indirect on condition, jump on A not low
21064 s39_bile, // branch indirect on condition, jump on low or equal
21065 s39_binh, // branch indirect on condition, jump on A not high
21066 s39_bino, // branch indirect on condition, jump on not overflow / if not ones
21067 s39_bic, // branch indirect on condition
21068 s39_bpp, // branch prediction preload
21069 s39_bprp, // branch prediction relative preload
21070 s39_br, // unconditional branch
21071 s39_bras, // branch relative and save
21072 s39_brasl, // branch relative and save long
21073 s39_brc, // branch relative on condition
21074 s39_brcl, // branch relative on condition long
21075 s39_brct, // branch relative on count (32)
21076 s39_brctg, // branch relative on count (64)
21077 s39_brcth, // branch relative on count high (32)
21078 s39_brxh, // branch relative on index high (32)
21079 s39_brxhg, // branch relative on index high (64)
21080 s39_brxle, // branch relative on index low or equal (32)
21081 s39_brxlg, // branch relative on index low or equal (64)
21082 s39_bsa, // branch and set authority
21083 s39_bsg, // branch in subspace group
21084 s39_bsm, // branch and set mode
21085 s39_bxh, // branch on index high (32)
21086 s39_bxhg, // branch on index high (64)
21087 s39_bxle, // branch on index low or equal (32)
21088 s39_bxleg, // branch on index low or equal (64)
21089 s39_c, // compare (32)
21090 s39_cd, // compare (long HFP)
21091 s39_cdb, // compare (long BFP)
21092 s39_cdbr, // compare (long BFP)
21093 s39_cdfbr, // convert from fixed (32 to long BFP)
21094 s39_cdfbra, // convert from fixed (32 to long BFP)
21095 s39_cdfr, // convert from fixed (32 to long HFP)
21096 s39_cdftr, // convert from fixed (32 to long DFP)
21097 s39_cdgbr, // convert from fixed (64 to long BFP)
21098 s39_cdgbra, // convert from fixed (64 to long BFP)
21099 s39_cdgr, // convert from fixed (64 to long HFP)
21100 s39_cdgtr, // convert from fixed (64 to long DFP)
21101 s39_cdgtra, // convert from fixed (64 to long DFP)
21102 s39_cdlfbr, // convert from logical (32 to long BFP)
21103 s39_cdlftr, // convert from logical (32 to long DFP)
21104 s39_cdlgbr, // convert from logical (64 to long BFP)
21105 s39_cdlgtr, // convert from logical (64 to long DFP)
21106 s39_cdpt, // convert from packed (to long DFP)
21107 s39_cdr, // compare (long HFP)
21108 s39_cds, // compare double and swap (32)
21109 s39_cdsg, // compare double and swap (64)
21110 s39_cdstr, // convert from signed packed (64 to long DFP)
21111 s39_cdsy, // compare double and swap (32)
21112 s39_cdtr, // compare (long DFP)
21113 s39_cdutr, // convert from unsigned packed (64 to long DFP)
21114 s39_cdzt, // convert from zoned (to long DFP)
21115 s39_ce, // compare (short HFP)
21116 s39_ceb, // compare (short BFP)
21117 s39_cebr, // compare (short BFP)
21118 s39_cedtr, // compare biased exponent (long DFP)
21119 s39_cefbr, // convert from fixed (32 to short BFP)
21120 s39_cefbra, // convert from fixed (32 to short BFP)
21121 s39_cefr, // convert from fixed (32 to short HFP)
21122 s39_cegbr, // convert from fixed (64 to short BFP)
21123 s39_cegbra, // convert from fixed (64 to short BFP)
21124 s39_cegr, // convert from fixed (64 to short HFP)
21125 s39_celfbr, // convert from logical (32 to short BFP)
21126 s39_celgbr, // convert from logical (64 to short BFP)
21127 s39_cer, // compare (short HFP)
21128 s39_cextr, // compare biased exponent (extended DFP)
21129 s39_cfc, // compare and form codeword
21130 s39_cfdbr, // convert to fixed (long BFP to 32)
21131 s39_cfdbra, // convert to fixed (long BFP to 32)
21132 s39_cfdr, // convert to fixed (long HFP to 32)
21133 s39_cfdtr, // convert to fixed (long DFP to 32)
21134 s39_cfebr, // convert to fixed (short BFP to 32)
21135 s39_cfebra, // convert to fixed (short BFP to 32)
21136 s39_cfer, // convert to fixed (short HFP to 32)
21137 s39_cfi, // compare immediate (32)
21138 s39_cfxbr, // convert to fixed (extended BFP to 32)
21139 s39_cfxbra, // convert to fixed (extended BFP to 32)
21140 s39_cfxr, // convert to fixed (extended HFP to 32)
21141 s39_cfxtr, // convert to fixed (extended DFP to 32)
21142 s39_cg, // compare (64)
21143 s39_cgdbr, // convert to fixed (long BFP to 64)
21144 s39_cgdbra, // convert to fixed (long BFP to 64)
21145 s39_cgdr, // convert to fixed (long HFP to 64)
21146 s39_cgdtr, // convert to fixed (long DFP to 64)
21147 s39_cgdtra, // convert to fixed (long DFP to 64)
21148 s39_cgebr, // convert to fixed (short BFP to 64)
21149 s39_cgebra, // convert to fixed (short BFP to 64)
21150 s39_cger, // convert to fixed (short HFP to 64)
21151 s39_cgf, // compare (64 <- 32)
21152 s39_cgfi, // compare immediate (64 <- 32)
21153 s39_cgfr, // compare (64 <- 32)
21154 s39_cgfrl, // compare relative long (64 <- 32)
21155 s39_cgh, // compare halfword (64 <- 16)
21156 s39_cghi, // compare halfword immediate (64 <- 16)
21157 s39_cghrl, // compare halfword relative long (64 <- 16)
21158 s39_cghsi, // compare halfword immediate (64 <- 16)
21159 s39_cgib, // compare immediate and branch (64 <- 8)
21160 s39_cgibh, // compare immediate and branch (64 <- 8), jump on A high
21161 s39_cgibnhe, // compare immediate and branch (64 <- 8), jump on not high or equal
21162 s39_cgiblh, // compare immediate and branch (64 <- 8), jump on low or high
21163 s39_cgibnlh, // compare immediate and branch (64 <- 8), jump on not low or high
21164 s39_cgibnl, // compare immediate and branch (64 <- 8), jump on A not low
21165 s39_cgible, // compare immediate and branch (64 <- 8), jump on low or equal
21166 s39_cgij, // compare immediate and branch relative (64 <- 8)
21167 s39_cgijh, // compare immediate and branch relative (64 <- 8), jump on A high
21168 s39_cgijnhe, // compare immediate and branch relative (64 <- 8), jump on not high or equal
21169 s39_cgijlh, // compare immediate and branch relative (64 <- 8), jump on low or high
21170 s39_cgijnlh, // compare immediate and branch relative (64 <- 8), jump on not low or high
21171 s39_cgijnl, // compare immediate and branch relative (64 <- 8), jump on A not low
21172 s39_cgijle, // compare immediate and branch relative (64 <- 8), jump on low or equal
21173 s39_cgit, // compare immediate and trap (64 <- 16)
21174 s39_cgith, // compare immediate and trap (64 <- 16), jump on A high
21175 s39_cgitnhe, // compare immediate and trap (64 <- 16), jump on not high or equal
21176 s39_cgitlh, // compare immediate and trap (64 <- 16), jump on low or high
21177 s39_cgitnlh, // compare immediate and trap (64 <- 16), jump on not low or high
21178 s39_cgitnl, // compare immediate and trap (64 <- 16), jump on A not low
21179 s39_cgitle, // compare immediate and trap (64 <- 16), jump on low or equal
21180 s39_cgr, // compare (64)
21181 s39_cgrb, // compare and branch (64)
21182 s39_cgrbh, // compare and branch (64), jump on A high
21183 s39_cgrbnhe, // compare and branch (64), jump on not high or equal
21184 s39_cgrblh, // compare and branch (64), jump on low or high
21185 s39_cgrbnlh, // compare and branch (64), jump on not low or high
21186 s39_cgrbnl, // compare and branch (64), jump on A not low
21187 s39_cgrble, // compare and branch (64), jump on low or equal
21188 s39_cgrj, // compare and branch relative (64)
21189 s39_cgrjh, // compare and branch relative (64), jump on A high
21190 s39_cgrjnhe, // compare and branch relative (64), jump on not high or equal
21191 s39_cgrjlh, // compare and branch relative (64), jump on low or high
21192 s39_cgrjnlh, // compare and branch relative (64), jump on not low or high
21193 s39_cgrjnl, // compare and branch relative (64), jump on A not low
21194 s39_cgrjle, // compare and branch relative (64), jump on low or equal
21195 s39_cgrl, // compare relative long (64)
21196 s39_cgrt, // compare and trap (64)
21197 s39_cgrth, // compare and trap (64), jump on A high
21198 s39_cgrtnhe, // compare and trap (64), jump on not high or equal
21199 s39_cgrtlh, // compare and trap (64), jump on low or high
21200 s39_cgrtnlh, // compare and trap (64), jump on not low or high
21201 s39_cgrtnl, // compare and trap (64), jump on A not low
21202 s39_cgrtle, // compare and trap (64), jump on low or equal
21203 s39_cgxbr, // convert to fixed (extended BFP to 64)
21204 s39_cgxbra, // convert to fixed (extended BFP to 64)
21205 s39_cgxr, // convert to fixed (extended HFP to 64)
21206 s39_cgxtr, // convert to fixed (extended DFP to 64)
21207 s39_cgxtra, // convert to fixed (extended DFP to 64)
21208 s39_ch, // compare halfword (32 <- 16)
21209 s39_chf, // compare high (32)
21210 s39_chhr, // compare high (32)
21211 s39_chhsi, // compare halfword immediate (16 <- 16)
21212 s39_chi, // compare halfword immediate (32 <- 16)
21213 s39_chlr, // compare high (32)
21214 s39_chrl, // compare halfword relative long (32 <- 16)
21215 s39_chsi, // compare halfword immediate (32 <- 16)
21216 s39_chy, // compare halfword (32 <- 16)
21217 s39_cib, // comapre immediate and branch (32 <- 8)
21218 s39_cibh, // comapre immediate and branch (32 <- 8), jump on A high
21219 s39_cibnhe, // comapre immediate and branch (32 <- 8), jump on not high or equal
21220 s39_ciblh, // comapre immediate and branch (32 <- 8), jump on low or high
21221 s39_cibnlh, // comapre immediate and branch (32 <- 8), jump on not low or high
21222 s39_cibnl, // comapre immediate and branch (32 <- 8), jump on A not low
21223 s39_cible, // comapre immediate and branch (32 <- 8), jump on low or equal
21224 s39_cih, // compare immediate high (32)
21225 s39_cij, // compare immediate and branch relative (32 <- 8)
21226 s39_cijh, // compare immediate and branch relative (32 <- 8), jump on A high
21227 s39_cijnhe, // compare immediate and branch relative (32 <- 8), jump on not high or equal
21228 s39_cijlh, // compare immediate and branch relative (32 <- 8), jump on low or high
21229 s39_cijnlh, // compare immediate and branch relative (32 <- 8), jump on not low or high
21230 s39_cijnl, // compare immediate and branch relative (32 <- 8), jump on A not low
21231 s39_cijle, // compare immediate and branch relative (32 <- 8), jump on low or equal
21232 s39_cit, // compare immediate and trap (32 <- 16)
21233 s39_cith, // compare immediate and trap (32 <- 16), jump on A high
21234 s39_citnhe, // compare immediate and trap (32 <- 16), jump on not high or equal
21235 s39_citlh, // compare immediate and trap (32 <- 16), jump on low or high
21236 s39_citnlh, // compare immediate and trap (32 <- 16), jump on not low or high
21237 s39_citnl, // compare immediate and trap (32 <- 16), jump on A not low
21238 s39_citle, // compare immediate and trap (32 <- 16), jump on low or equal
21239 s39_cksm, // checksum
21240 s39_cl, // compare logical (32)
21241 s39_clc, // compare logical (character)
21242 s39_clcl, // compare logical long
21243 s39_clcle, // compare logical long extended
21244 s39_clclu, // compare logical long unicode
21245 s39_clfdbr, // convert to logical (long BFP to 32)
21246 s39_clfdtr, // convert to logical (long DFP to 32)
21247 s39_clfebr, // convert to logical (short BFP to 32)
21248 s39_clfhsi, // compare logical immediate (32 <- 16)
21249 s39_clfi, // compare logical immediate (32)
21250 s39_clfit, // compare logical immediate and trap (32 <- 16)
21251 s39_clfith, // compare logical immediate and trap (32 <- 16), jump on A high
21252 s39_clfitnhe, // compare logical immediate and trap (32 <- 16), jump on not high or equal
21253 s39_clfitlh, // compare logical immediate and trap (32 <- 16), jump on low or high
21254 s39_clfitnlh, // compare logical immediate and trap (32 <- 16), jump on not low or high
21255 s39_clfitnl, // compare logical immediate and trap (32 <- 16), jump on A not low
21256 s39_clfitle, // compare logical immediate and trap (32 <- 16), jump on low or equal
21257 s39_clfxbr, // convert to logical (extended BFP to 32)
21258 s39_clfxtr, // convert to logical (extended DFP to 32)
21259 s39_clg, // compare logical (64)
21260 s39_clgdbr, // convert to logical (long BFP to 64)
21261 s39_clgdtr, // convert to logical (long DFP to 64)
21262 s39_clgebr, // convert to logical (short BFP to 64)
21263 s39_clgf, // compare logical (64 <- 32)
21264 s39_clgfi, // compare logical immediate (64 <- 32)
21265 s39_clgfr, // compare logical (64 <- 32)
21266 s39_clgfrl, // compare logical relative long (64 <- 32)
21267 s39_clghrl, // compare logical relative long (64 <- 16)
21268 s39_clghsi, // compare logical relative long (64 <- 16)
21269 s39_clgib, // compare logical immediate and branch (64 <- 8)
21270 s39_clgibh, // compare logical immediate and branch (64 <- 8), jump on A high
21271 s39_clgibnhe, // compare logical immediate and branch (64 <- 8), jump on not high or equal
21272 s39_clgiblh, // compare logical immediate and branch (64 <- 8), jump on low or high
21273 s39_clgibnlh, // compare logical immediate and branch (64 <- 8), jump on not low or high
21274 s39_clgibnl, // compare logical immediate and branch (64 <- 8), jump on A not low
21275 s39_clgible, // compare logical immediate and branch (64 <- 8), jump on low or equal
21276 s39_clgij, // compare logical immediate and branch relative (64 <- 8)
21277 s39_clgijh, // compare logical immediate and branch relative (64 <- 8), jump on A high
21278 s39_clgijnhe, // compare logical immediate and branch relative (64 <- 8), jump on not high or equal
21279 s39_clgijlh, // compare logical immediate and branch relative (64 <- 8), jump on low or high
21280 s39_clgijnlh, // compare logical immediate and branch relative (64 <- 8), jump on not low or high
21281 s39_clgijnl, // compare logical immediate and branch relative (64 <- 8), jump on A not low
21282 s39_clgijle, // compare logical immediate and branch relative (64 <- 8), jump on low or equal
21283 s39_clgit, // compare logical immedate and trap (64 <- 16)
21284 s39_clgith, // compare logical immedate and trap (64 <- 16), jump on A high
21285 s39_clgitnhe, // compare logical immedate and trap (64 <- 16), jump on not high or equal
21286 s39_clgitlh, // compare logical immedate and trap (64 <- 16), jump on low or high
21287 s39_clgitnlh, // compare logical immedate and trap (64 <- 16), jump on not low or high
21288 s39_clgitnl, // compare logical immedate and trap (64 <- 16), jump on A not low
21289 s39_clgitle, // compare logical immedate and trap (64 <- 16), jump on low or equal
21290 s39_clgr, // compare logical (64)
21291 s39_clgrb, // compare logical and branch (64)
21292 s39_clgrbh, // compare logical and branch (64), jump on A high
21293 s39_clgrbnhe, // compare logical and branch (64), jump on not high or equal
21294 s39_clgrblh, // compare logical and branch (64), jump on low or high
21295 s39_clgrbnlh, // compare logical and branch (64), jump on not low or high
21296 s39_clgrbnl, // compare logical and branch (64), jump on A not low
21297 s39_clgrble, // compare logical and branch (64), jump on low or equal
21298 s39_clgrj, // compare logical and branch relative (64)
21299 s39_clgrjh, // compare logical and branch relative (64), jump on A high
21300 s39_clgrjnhe, // compare logical and branch relative (64), jump on not high or equal
21301 s39_clgrjlh, // compare logical and branch relative (64), jump on low or high
21302 s39_clgrjnlh, // compare logical and branch relative (64), jump on not low or high
21303 s39_clgrjnl, // compare logical and branch relative (64), jump on A not low
21304 s39_clgrjle, // compare logical and branch relative (64), jump on low or equal
21305 s39_clgrl, // compare logical relative long (64)
21306 s39_clgrt, // compare logical and trap (64)
21307 s39_clgrth, // compare logical and trap (64), jump on A high
21308 s39_clgrtnhe, // compare logical and trap (64), jump on not high or equal
21309 s39_clgrtlh, // compare logical and trap (64), jump on low or high
21310 s39_clgrtnlh, // compare logical and trap (64), jump on not low or high
21311 s39_clgrtnl, // compare logical and trap (64), jump on A not low
21312 s39_clgrtle, // compare logical and trap (64), jump on low or equal
21313 s39_clgt, // compare logical and trap (64)
21314 s39_clgth, // compare logical and trap (64), jump on A high
21315 s39_clgtnhe, // compare logical and trap (64), jump on not high or equal
21316 s39_clgtlh, // compare logical and trap (64), jump on low or high
21317 s39_clgtnlh, // compare logical and trap (64), jump on not low or high
21318 s39_clgtnl, // compare logical and trap (64), jump on A not low
21319 s39_clgtle, // compare logical and trap (64), jump on low or equal
21320 s39_clgxbr, // convert to logical (extended BFP to 64)
21321 s39_clgxtr, // convert to logical (extended DFP to 64)
21322 s39_clhf, // compare logical high (32)
21323 s39_clhhr, // compare logical high (32)
21324 s39_clhhsi, // compare logical immediate (16 <- 16)
21325 s39_clhlr, // compare logical high (32)
21326 s39_clhrl, // compare logical relative long (32 <- 16)
21327 s39_cli, // compare logical (immediate)
21328 s39_clib, // compare logical immediate and branch (32 <- 8)
21329 s39_clibh, // compare logical immediate and branch (32 <- 8), jump on A high
21330 s39_clibnhe, // compare logical immediate and branch (32 <- 8), jump on not high or equal
21331 s39_cliblh, // compare logical immediate and branch (32 <- 8), jump on low or high
21332 s39_clibnlh, // compare logical immediate and branch (32 <- 8), jump on not low or high
21333 s39_clibnl, // compare logical immediate and branch (32 <- 8), jump on A not low
21334 s39_clible, // compare logical immediate and branch (32 <- 8), jump on low or equal
21335 s39_clih, // compare logical immediate high (32)
21336 s39_clij, // compare logical immediate and branch relative (32 <- 8)
21337 s39_clijh, // compare logical immediate and branch relative (32 <- 8), jump on A high
21338 s39_clijnhe, // compare logical immediate and branch relative (32 <- 8), jump on not high or equal
21339 s39_clijlh, // compare logical immediate and branch relative (32 <- 8), jump on low or high
21340 s39_clijnlh, // compare logical immediate and branch relative (32 <- 8), jump on not low or high
21341 s39_clijnl, // compare logical immediate and branch relative (32 <- 8), jump on A not low
21342 s39_clijle, // compare logical immediate and branch relative (32 <- 8), jump on low or equal
21343 s39_cliy, // compare logical (immediate)
21344 s39_clm, // compare logical character under mask (low)
21345 s39_clmh, // compare logical character under mask (high)
21346 s39_clmy, // compare logical (32)
21347 s39_clr, // compare logical (32)
21348 s39_clrb, // compare logical and branch (32)
21349 s39_clrbh, // compare logical and branch (32), jump on A high
21350 s39_clrbnhe, // compare logical and branch (32), jump on not high or equal
21351 s39_clrblh, // compare logical and branch (32), jump on low or high
21352 s39_clrbnlh, // compare logical and branch (32), jump on not low or high
21353 s39_clrbnl, // compare logical and branch (32), jump on A not low
21354 s39_clrble, // compare logical and branch (32), jump on low or equal
21355 s39_clrj, // compare logical and branch relative (32)
21356 s39_clrjh, // compare logical and branch relative (32), jump on A high
21357 s39_clrjnhe, // compare logical and branch relative (32), jump on not high or equal
21358 s39_clrjlh, // compare logical and branch relative (32), jump on low or high
21359 s39_clrjnlh, // compare logical and branch relative (32), jump on not low or high
21360 s39_clrjnl, // compare logical and branch relative (32), jump on A not low
21361 s39_clrjle, // compare logical and branch relative (32), jump on low or equal
21362 s39_clrl, // compare logical relative long (32)
21363 s39_clrt, // compare logical and trap (32)
21364 s39_clrth, // compare logical and trap (32), jump on A high
21365 s39_clrtnhe, // compare logical and trap (32), jump on not high or equal
21366 s39_clrtlh, // compare logical and trap (32), jump on low or high
21367 s39_clrtnlh, // compare logical and trap (32), jump on not low or high
21368 s39_clrtnl, // compare logical and trap (32), jump on A not low
21369 s39_clrtle, // compare logical and trap (32), jump on low or equal
21370 s39_clst, // compare logical string
21371 s39_clt, // compare logical and trap (32)
21372 s39_clth, // compare logical and trap (32), jump on A high
21373 s39_cltnhe, // compare logical and trap (32), jump on not high or equal
21374 s39_cltlh, // compare logical and trap (32), jump on low or high
21375 s39_cltnlh, // compare logical and trap (32), jump on not low or high
21376 s39_cltnl, // compare logical and trap (32), jump on A not low
21377 s39_cltle, // compare logical and trap (32), jump on low or equal
21378 s39_cly, // compare logical (32)
21379 s39_cmpsc, // compression call
21380 s39_cp, // compare decimal
21381 s39_cpdt, // convert to packed (from long DFP)
21382 s39_cpsdr, // copy sign (long)
21383 s39_cpxt, // convert to packed (from extended DFP)
21384 s39_cpya, // copy access
21385 s39_cr, // compare (32)
21386 s39_crb, // compare and branch (32)
21387 s39_crbh, // compare and branch (32), jump on A high
21388 s39_crbnhe, // compare and branch (32), jump on not high or equal
21389 s39_crblh, // compare and branch (32), jump on low or high
21390 s39_crbnlh, // compare and branch (32), jump on not low or high
21391 s39_crbnl, // compare and branch (32), jump on A not low
21392 s39_crble, // compare and branch (32), jump on low or equal
21393 s39_crdte, // compare and replace DAT table entry
21394 s39_crj, // compare and branch relative (32)
21395 s39_crjh, // compare and branch relative (32), jump on A high
21396 s39_crjnhe, // compare and branch relative (32), jump on not high or equal
21397 s39_crjlh, // compare and branch relative (32), jump on low or high
21398 s39_crjnlh, // compare and branch relative (32), jump on not low or high
21399 s39_crjnl, // compare and branch relative (32), jump on A not low
21400 s39_crjle, // compare and branch relative (32), jump on low or equal
21401 s39_crl, // compare relative long (32)
21402 s39_crt, // compare and trap (32)
21403 s39_crth, // compare and trap (32), jump on A high
21404 s39_crtnhe, // compare and trap (32), jump on not high or equal
21405 s39_crtlh, // compare and trap (32), jump on low or high
21406 s39_crtnlh, // compare and trap (32), jump on not low or high
21407 s39_crtnl, // compare and trap (32), jump on A not low
21408 s39_crtle, // compare and trap (32), jump on low or equal
21409 s39_cs, // compare and swap (32)
21410 s39_csch, // clear subchannel
21411 s39_csdtr, // convert to signed packed (long DFP to 64)
21412 s39_csg, // compare and swap (64)
21413 s39_csp, // compare and swap and purge (32)
21414 s39_cspg, // compare and swap and purge (64)
21415 s39_csst, // compare and swap and store
21416 s39_csxtr, // convert to signed packed (extended DFP to 128)
21417 s39_csy, // compare and swap (32)
21418 s39_cu12, // convert utf-8 to utf-16
21419 s39_cu14, // convert utf-8 to utf-32
21420 s39_cu21, // convert utf-16 to utf-8
21421 s39_cu24, // convert utf-16 to utf-32
21422 s39_cu41, // convert utf-32 to utf-8
21423 s39_cu42, // convert utf-32 to utf-16
21424 s39_cudtr, // convert to unsigned packed (long DFP to 64)
21425 s39_cuse, // compare until substring equal
21426 s39_cutfu, // convert utf-8 to unicode
21427 s39_cuutf, // convert unicode to utf-8
21428 s39_cuxtr, // convert to unsigned packed (extended DFP to 128)
21429 s39_cvb, // convert to binary (32)
21430 s39_cvbg, // convert to binary (64)
21431 s39_cvby, // convert to binary (32)
21432 s39_cvd, // convert to decimal (32)
21433 s39_cvdg, // convert to decimal (64)
21434 s39_cvdy, // convert to decimal (32)
21435 s39_cxbr, // compare (extended BFP)
21436 s39_cxfbr, // convert from fixed (32 to extended BFP)
21437 s39_cxfbra, // convert from fixed (32 to extended BFP)
21438 s39_cxfr, // convert from fixed (32 to extended HFP)
21439 s39_cxftr, // convert from fixed (32 to extended DFP)
21440 s39_cxgbr, // convert from fixed (64 to extended BFP)
21441 s39_cxgbra, // convert from fixed (64 to extended BFP)
21442 s39_cxgr, // convert from fixed (64 to extended HFP)
21443 s39_cxgtr, // convert from fixed (64 to extended DFP)
21444 s39_cxgtra, // convert from fixed (64 to extended DFP)
21445 s39_cxlfbr, // convert from logical (32 to extended BFP)
21446 s39_cxlftr, // convert from logical (32 to extended DFP)
21447 s39_cxlgbr, // convert from logical (64 to extended BFP)
21448 s39_cxlgtr, // convert from logical (64 to extended DFP)
21449 s39_cxpt, // convert from packed (to extended DFP)
21450 s39_cxr, // compare (extended HFP)
21451 s39_cxstr, // convert from singed packed (128 to extended DFP)
21452 s39_cxtr, // compare (extended DFP)
21453 s39_cxutr, // convert from unsigned packed (128 to extended DFP)
21454 s39_cxzt, // convert from zoned (to extended DFP)
21455 s39_cy, // compare (32)
21456 s39_czdt, // convert to zoned (from long DFP)
21457 s39_czxt, // convert to zoned (from extended DFP)
21458 s39_d, // divide (32 <- 64)
21459 s39_dd, // divide (long HFP)
21460 s39_ddb, // divide (long BFP)
21461 s39_ddbr, // divide (long BFP)
21462 s39_ddr, // divide (long HFP)
21463 s39_ddtr, // divide (long DFP)
21464 s39_ddtra, // divide (long DFP)
21465 s39_de, // divide (short HFP)
21466 s39_deb, // divide (short BFP)
21467 s39_debr, // divide (short BFP)
21468 s39_der, // divide (short HFP)
21470 s39_diag, // diagnose
21471 s39_didbr, // divide to integer (long BFP)
21472 s39_diebr, // divide to integer (short BFP)
21473 s39_dl, // divide logical (32 <- 64)
21474 s39_dlg, // divide logical (64 <- 128)
21475 s39_dlgr, // divide logical (64 <- 128)
21476 s39_dlr, // divide logical (32 <- 64)
21477 s39_dp, // divide decimal
21478 s39_dr, // divide (32 <- 64)
21479 s39_dsg, // divide single (64)
21480 s39_dsgf, // divide single (64 <- 32)
21481 s39_dsgfr, // divide single (64 <- 32)
21482 s39_dsgr, // divide single (64)
21483 s39_dxbr, // divide (extended BFP)
21484 s39_dxr, // divide (extended HFP)
21485 s39_dxtr, // divide (extended DFP)
21486 s39_dxtra, // divide (extended DFP)
21487 s39_ear, // extract access
21488 s39_ecag, // extract cache attribute
21489 s39_ecctr, // extract cpu counter
21490 s39_ecpga, // extract coprocessor-group address
21491 s39_ectg, // extract cpu time
21492 s39_ed, // edit
21493 s39_edmk, // edit and mark
21494 s39_eedtr, // extract biased exponent (long DFP to 64)
21495 s39_eextr, // extract biased exponent (extended DFP to 64)
21496 s39_efpc, // extract fpc
21497 s39_epair, // extract primary ASN and instance
21498 s39_epar, // extract primary ASN
21499 s39_epctr, // extract peripheral counter
21500 s39_epsw, // extract psw
21501 s39_ereg, // extract stacked registers (32)
21502 s39_eregg, // extract stacked registers (64)
21503 s39_esair, // extract secondary ASN and instance
21504 s39_esar, // extract secondary ASN
21505 s39_esdtr, // extract significance (long DFP to 64)
21506 s39_esea, // extract and set extended authority
21507 s39_esta, // extract stacked state
21508 s39_esxtr, // extract significance (extended DFP to 64)
21509 s39_etnd, // extract transaction nesting depth
21510 s39_ex, // execute
21511 s39_exrl, // execute relative long
21512 s39_fidbr, // load fp integer (long BFP)
21513 s39_fidbra, // load fp integer (long BFP)
21514 s39_fidr, // load fp integer (long HFP)
21515 s39_fidtr, // load fp integer (long DFP)
21516 s39_fiebr, // load fp integer (short BFP)
21517 s39_fiebra, // load fp integer (short BFP)
21518 s39_fier, // load fp integer (short HFP)
21519 s39_fixbr, // load fp integer (extended BFP)
21520 s39_fixbra, // load fp integer (extended BFP)
21521 s39_fixr, // load fp integer (extended HFP)
21522 s39_fixtr, // load fp integer (extended DFP)
21523 s39_flogr, // find leftmost one
21524 s39_hdr, // halve (long HFP)
21525 s39_her, // halve (short HFP)
21526 s39_hsch, // halt subchannel
21527 s39_iac, // insert address space control
21528 s39_ic, // insert character
21529 s39_icm, // insert characters under mask (low)
21530 s39_icmh, // insert characters under mask (high)
21531 s39_icmy, // insert characters under mask (low)
21532 s39_icy, // insert character
21533 s39_idte, // invalidate dat table entry
21534 s39_iedtr, // insert biased exponent (64 to long DFP)
21535 s39_iextr, // insert biased exponent (64 to extended DFP)
21536 s39_iihf, // insert immediate (high)
21537 s39_iihh, // inset immediate (high high)
21538 s39_iihl, // insert immediate (high low)
21539 s39_iilf, // insert immediate (low)
21540 s39_iilh, // insert immediate (low high)
21541 s39_iill, // insert immediate (low low)
21542 s39_ipk, // insert PSW key
21543 s39_ipm, // insert program mask
21544 s39_ipte, // invalidate page table entry
21545 s39_irbm, // insert reference bits multiple
21546 s39_iske, // insert storage key extended
21547 s39_ivsk, // insert virtual storage key
21548 s39_j, // unconditional jump
21549 s39_jo, // conditional jump, jump on overflow / if ones
21550 s39_jh, // conditional jump, jump on A high
21551 s39_jnle, // conditional jump, jump on not low or equal
21552 s39_jl, // conditional jump, jump on A low
21553 s39_jnhe, // conditional jump, jump on not high or equal
21554 s39_jlh, // conditional jump, jump on low or high
21555 s39_jne, // conditional jump, jump on A not equal B
21556 s39_je, // conditional jump, jump on A equal B
21557 s39_jnlh, // conditional jump, jump on not low or high
21558 s39_jhe, // conditional jump, jump on high or equal
21559 s39_jnl, // conditional jump, jump on A not low
21560 s39_jle, // conditional jump, jump on low or equal
21561 s39_jnh, // conditional jump, jump on A not high
21562 s39_jno, // conditional jump, jump on not overflow / if not ones
21563 s39_jg, // unconditional jump long
21564 s39_jgo, // conditional jump long, jump on overflow / if ones
21565 s39_jgh, // conditional jump long, jump on A high
21566 s39_jgnle, // conditional jump long, jump on not low or equal
21567 s39_jgl, // conditional jump long, jump on A low
21568 s39_jgnhe, // conditional jump long, jump on not high or equal
21569 s39_jglh, // conditional jump long, jump on low or high
21570 s39_jgne, // conditional jump long, jump on A not equal B
21571 s39_jge, // conditional jump long, jump on A equal B
21572 s39_jgnlh, // conditional jump long, jump on not low or high
21573 s39_jghe, // conditional jump long, jump on high or equal
21574 s39_jgnl, // conditional jump long, jump on A not low
21575 s39_jgle, // conditional jump long, jump on low or equal
21576 s39_jgnh, // conditional jump long, jump on A not high
21577 s39_jgno, // conditional jump long, jump on not overflow / if not ones
21578 s39_kdb, // compare and signal (long BFP)
21579 s39_kdbr, // compare and signal (long BFP)
21581 s39_kdtr, // compare and signal (long DFP)
21582 s39_keb, // compare and signal (short BFP)
21583 s39_kebr, // compare and signal (short BFP)
21584 s39_kimd, // compute intermediate message digest
21585 s39_klmd, // compute last message digest
21586 s39_km, // cipher message
21587 s39_kma, // cipher message with authentication
21588 s39_kmac, // compute message with authentication
21589 s39_kmc, // cipher message with chaining
21590 s39_kmctr, // cipher message with counter
21591 s39_kmf, // cipher message with cipher feedback
21592 s39_kmo, // cipher message with output feedback
21593 s39_kxbr, // compare and signal (extended BFP)
21594 s39_kxtr, // compare and signal (extended DFP)
21595 s39_l, // load (32)
21596 s39_la, // load address
21597 s39_laa, // load and add (32)
21598 s39_laag, // load and add (64)
21599 s39_laal, // load and add logical (32)
21600 s39_laalg, // load and add logical (64)
21601 s39_lae, // load address extended
21602 s39_laey, // load address extended
21603 s39_lam, // load access multiple
21604 s39_lamy, // load access multiple
21605 s39_lan, // load and and (32)
21606 s39_lang, // load and and (64)
21607 s39_lao, // load and or (32)
21608 s39_laog, // load and or (64)
21609 s39_larl, // load address relative long
21610 s39_lasp, // load address space parameters
21611 s39_lat, // load and trap (32L <- 32)
21612 s39_lax, // load and exclusive or (32)
21613 s39_laxg, // load and exclusive or (64)
21614 s39_lay, // load address
21615 s39_lb, // load byte (32 <- 8)
21616 s39_lbh, // load byte high (32 <- 8)
21617 s39_lbr, // load byte (32 <- 8)
21618 s39_lcbb, // load count to block boundary
21619 s39_lcctl, // load cpu-counter-set controls
21620 s39_lcdbr, // load complement (long BFP)
21621 s39_lcdfr, // load complement (long)
21622 s39_lcdr, // load complement (long HFP)
21623 s39_lcebr, // load complement (short BFP)
21624 s39_lcer, // load complement (short HFP)
21625 s39_lcgfr, // load complement (64 <- 32)
21626 s39_lcgr, // load complement (64)
21627 s39_lcr, // load complement (32)
21628 s39_lctl, // load control (32)
21629 s39_lctlg, // load control (64)
21630 s39_lcxbr, // load complement (extended BFP)
21631 s39_lcxr, // load complement (extended HFP)
21632 s39_ld, // load (long)
21633 s39_lde, // load lengthened (short to long HFP)
21634 s39_ldeb, // load lengthened (short to long BFP)
21635 s39_ldebr, // load lengthened (short to long BFP)
21636 s39_lder, // load lengthened (short to long HFP)
21637 s39_ldetr, // load lengthened (short to long DFP)
21638 s39_ldgr, // load fpr from gr (64 to long)
21639 s39_ldr, // load (long)
21641 s39_ldxbr, // load rounded (extended to long BFP)
21642 s39_ldxbra, // load rounded (extended to long BFP)
21643 s39_ldxr, // load rounded (extended to long HFP)
21644 s39_ldxtr, // load rounded (extended to long HFP)
21645 s39_ldy, // load (long)
21646 s39_le, // load (short)
21647 s39_ledbr, // load rounded (long to short BFP)
21648 s39_ledbra, // load rounded (long to short BFP)
21649 s39_ledr, // load rounded (long to short HFP)
21650 s39_ledtr, // load rounded (long to short DFP)
21651 s39_ler, // load short
21653 s39_lexbr, // load rounded (extended to short BFP)
21654 s39_lexbra, // load rounded (extended to short BFP)
21655 s39_lexr, // load rounded (extended to short HFP)
21656 s39_ley, // load (short)
21657 s39_lfas, // load fpc and signal
21658 s39_lfh, // load high (32)
21659 s39_lfhat, // load high and trap (32h <- 32)
21660 s39_lfpc, // load fpc
21661 s39_lg, // load (64)
21662 s39_lgat, // load and trap (64)
21663 s39_lgb, // load byte (64 <- 8)
21664 s39_lgbr, // load byte (64 <- 8)
21665 s39_lgdr, // load gr from fpr (long to 64)
21666 s39_lgf, // load (64 <- 32)
21667 s39_lgfi, // load immediate (64 <- 32)
21668 s39_lgfr, // load (64 <- 32)
21669 s39_lgfrl, // load relative long (64 <- 32)
21670 s39_lgg, // load guarded (64)
21671 s39_lgh, // load halfword (64 <- 16)
21672 s39_lghi, // load halfword immediate (64 <- 16)
21673 s39_lghr, // load halfword (64 <- 16)
21674 s39_lghrl, // load halfword relative long (64 <- 16)
21675 s39_lgr, // load (64)
21676 s39_lgrl, // load relative long (64)
21677 s39_lgsc, // load guarded storage controls
21678 s39_lh, // load halfword (32 <- 16)
21679 s39_lhh, // load halfword high (32 <- 16)
21680 s39_lhi, // load halfword immediate (32) <- 16
21681 s39_lhr, // load halfword (32 <- 16)
21682 s39_lhrl, // load halfword relative long (32 <- 16)
21683 s39_lhy, // load halfword (32 <- 16)
21684 s39_llc, // load logical character (32 <- 8)
21685 s39_llch, // load logical character high (32 <- 8)
21686 s39_llcr, // load logical character (32 <- 8)
21687 s39_llgc, // load logical character (64 <- 8)
21688 s39_llgcr, // load logical character (64 <- 8)
21689 s39_llgf, // load logical (64 <- 32)
21690 s39_llgfat, // load logical and trap (64 <- 32)
21691 s39_llgfr, // load logical (64 <- 32)
21692 s39_llgfrl, // load logical relative long (64 <- 32)
21693 s39_llgfsg, // load logical and shift guarded (64 <- 32)
21694 s39_llgh, // load logical halfword (64 <- 16)
21695 s39_llghr, // load logical halfword (64 <- 16)
21696 s39_llghrl, // load logical halfword relative long (64 <- 16)
21697 s39_llgt, // load logical thirty one bits (64 <- 31)
21698 s39_llgtat, // load logical thirty one bits and trap (64 <- 31)
21699 s39_llgtr, // load logical thirty one bits (64 <- 31)
21700 s39_llh, // load logical halfword (32 <- 16)
21701 s39_llhh, // load logical halfword high (32 <- 16)
21702 s39_llhr, // load logical halfword (32 <- 16)
21703 s39_llhrl, // load logical halfword relative long (32 <- 16)
21704 s39_llihf, // load logical immediate (high)
21705 s39_llihh, // load logical immediate (high high)
21706 s39_llihl, // load logical immediate (high low)
21707 s39_llilf, // load logical immediate (low)
21708 s39_llilh, // load logical immediate (low high)
21709 s39_llill, // load logical immediate (low low)
21710 s39_llzrgf, // load logical and zero rightmost byte (64 <- 32)
21711 s39_lm, // load multiple (32)
21712 s39_lmd, // load multiple disjoint (64 <- 32& 32)
21713 s39_lmg, // load multiple (64)
21714 s39_lmh, // load multiple high (32)
21715 s39_lmy, // load multiple high (32)
21716 s39_lndbr, // load negative (long BFP)
21717 s39_lndfr, // load negative (long)
21718 s39_lndr, // load negative (long HFP)
21719 s39_lnebr, // load negative (short BFP)
21720 s39_lner, // load negative (short HFP)
21721 s39_lngfr, // load negative (64 <- 32)
21722 s39_lngr, // load negative (64)
21723 s39_lnr, // load negative (32)
21724 s39_lnxbr, // load negative (extended BFP)
21725 s39_lnxr, // load negative (extended HFP)
21726 s39_loc, // load on condition (32)
21727 s39_loco, // load on condition (32), jump on overflow / if ones
21728 s39_loch, // load on condition (32), jump on A high
21729 s39_locnle, // load on condition (32), jump on not low or equal
21730 s39_locl, // load on condition (32), jump on A low
21731 s39_locnhe, // load on condition (32), jump on not high or equal
21732 s39_loclh, // load on condition (32), jump on low or high
21733 s39_locne, // load on condition (32), jump on A not equal B
21734 s39_loce, // load on condition (32), jump on A equal B
21735 s39_locnlh, // load on condition (32), jump on not low or high
21736 s39_loche, // load on condition (32), jump on high or equal
21737 s39_locnl, // load on condition (32), jump on A not low
21738 s39_locle, // load on condition (32), jump on low or equal
21739 s39_locnh, // load on condition (32), jump on A not high
21740 s39_locno, // load on condition (32), jump on not overflow / if not ones
21741 s39_locfh, // load high on condition (32)
21742 s39_locfho, // load high on condition (32), jump on overflow / if ones
21743 s39_locfhh, // load high on condition (32), jump on A high
21744 s39_locfhnle, // load high on condition (32), jump on not low or equal
21745 s39_locfhl, // load high on condition (32), jump on A low
21746 s39_locfhnhe, // load high on condition (32), jump on not high or equal
21747 s39_locfhlh, // load high on condition (32), jump on low or high
21748 s39_locfhne, // load high on condition (32), jump on A not equal B
21749 s39_locfhe, // load high on condition (32), jump on A equal B
21750 s39_locfhnlh, // load high on condition (32), jump on not low or high
21751 s39_locfhhe, // load high on condition (32), jump on high or equal
21752 s39_locfhnl, // load high on condition (32), jump on A not low
21753 s39_locfhle, // load high on condition (32), jump on low or equal
21754 s39_locfhnh, // load high on condition (32), jump on A not high
21755 s39_locfhno, // load high on condition (32), jump on not overflow / if not ones
21756 s39_locfhr, // load high on condition (32)
21757 s39_locfhro, // load high on condition (32), jump on overflow / if ones
21758 s39_locfhrh, // load high on condition (32), jump on A high
21759 s39_locfhrnle, // load high on condition (32), jump on not low or equal
21760 s39_locfhrl, // load high on condition (32), jump on A low
21761 s39_locfhrnhe, // load high on condition (32), jump on not high or equal
21762 s39_locfhrlh, // load high on condition (32), jump on low or high
21763 s39_locfhrne, // load high on condition (32), jump on A not equal B
21764 s39_locfhre, // load high on condition (32), jump on A equal B
21765 s39_locfhrnlh, // load high on condition (32), jump on not low or high
21766 s39_locfhrhe, // load high on condition (32), jump on high or equal
21767 s39_locfhrnl, // load high on condition (32), jump on A not low
21768 s39_locfhrle, // load high on condition (32), jump on low or equal
21769 s39_locfhrnh, // load high on condition (32), jump on A not high
21770 s39_locfhrno, // load high on condition (32), jump on not overflow / if not ones
21771 s39_locg, // load on condition (64)
21772 s39_locgo, // load on condition (64), jump on overflow / if ones
21773 s39_locgh, // load on condition (64), jump on A high
21774 s39_locgnle, // load on condition (64), jump on not low or equal
21775 s39_locgl, // load on condition (64), jump on A low
21776 s39_locgnhe, // load on condition (64), jump on not high or equal
21777 s39_locglh, // load on condition (64), jump on low or high
21778 s39_locgne, // load on condition (64), jump on A not equal B
21779 s39_locge, // load on condition (64), jump on A equal B
21780 s39_locgnlh, // load on condition (64), jump on not low or high
21781 s39_locghe, // load on condition (64), jump on high or equal
21782 s39_locgnl, // load on condition (64), jump on A not low
21783 s39_locgle, // load on condition (64), jump on low or equal
21784 s39_locgnh, // load on condition (64), jump on A not high
21785 s39_locgno, // load on condition (64), jump on not overflow / if not ones
21786 s39_locghi, // load halfword immediate on condition (64 <- 16)
21787 s39_locghio, // load halfword immediate on condition (64 <- 16), jump on overflow / if ones
21788 s39_locghih, // load halfword immediate on condition (64 <- 16), jump on A high
21789 s39_locghinle, // load halfword immediate on condition (64 <- 16), jump on not low or equal
21790 s39_locghil, // load halfword immediate on condition (64 <- 16), jump on A low
21791 s39_locghinhe, // load halfword immediate on condition (64 <- 16), jump on not high or equal
21792 s39_locghilh, // load halfword immediate on condition (64 <- 16), jump on low or high
21793 s39_locghine, // load halfword immediate on condition (64 <- 16), jump on A not equal B
21794 s39_locghie, // load halfword immediate on condition (64 <- 16), jump on A equal B
21795 s39_locghinlh, // load halfword immediate on condition (64 <- 16), jump on not low or high
21796 s39_locghihe, // load halfword immediate on condition (64 <- 16), jump on high or equal
21797 s39_locghinl, // load halfword immediate on condition (64 <- 16), jump on A not low
21798 s39_locghile, // load halfword immediate on condition (64 <- 16), jump on low or equal
21799 s39_locghinh, // load halfword immediate on condition (64 <- 16), jump on A not high
21800 s39_locghino, // load halfword immediate on condition (64 <- 16), jump on not overflow / if not ones
21801 s39_locgr, // load on condition (64)
21802 s39_locgro, // load on condition (64), jump on overflow / if ones
21803 s39_locgrh, // load on condition (64), jump on A high
21804 s39_locgrnle, // load on condition (64), jump on not low or equal
21805 s39_locgrl, // load on condition (64), jump on A low
21806 s39_locgrnhe, // load on condition (64), jump on not high or equal
21807 s39_locgrlh, // load on condition (64), jump on low or high
21808 s39_locgrne, // load on condition (64), jump on A not equal B
21809 s39_locgre, // load on condition (64), jump on A equal B
21810 s39_locgrnlh, // load on condition (64), jump on not low or high
21811 s39_locgrhe, // load on condition (64), jump on high or equal
21812 s39_locgrnl, // load on condition (64), jump on A not low
21813 s39_locgrle, // load on condition (64), jump on low or equal
21814 s39_locgrnh, // load on condition (64), jump on A not high
21815 s39_locgrno, // load on condition (64), jump on not overflow / if not ones
21816 s39_lochhi, // load halfword high immediate on condition (32 <- 16)
21817 s39_lochhio, // load halfword high immediate on condition (32 <- 16), jump on overflow / if ones
21818 s39_lochhih, // load halfword high immediate on condition (32 <- 16), jump on A high
21819 s39_lochhinle, // load halfword high immediate on condition (32 <- 16), jump on not low or equal
21820 s39_lochhil, // load halfword high immediate on condition (32 <- 16), jump on A low
21821 s39_lochhinhe, // load halfword high immediate on condition (32 <- 16), jump on not high or equal
21822 s39_lochhilh, // load halfword high immediate on condition (32 <- 16), jump on low or high
21823 s39_lochhine, // load halfword high immediate on condition (32 <- 16), jump on A not equal B
21824 s39_lochhie, // load halfword high immediate on condition (32 <- 16), jump on A equal B
21825 s39_lochhinlh, // load halfword high immediate on condition (32 <- 16), jump on not low or high
21826 s39_lochhihe, // load halfword high immediate on condition (32 <- 16), jump on high or equal
21827 s39_lochhinl, // load halfword high immediate on condition (32 <- 16), jump on A not low
21828 s39_lochhile, // load halfword high immediate on condition (32 <- 16), jump on low or equal
21829 s39_lochhinh, // load halfword high immediate on condition (32 <- 16), jump on A not high
21830 s39_lochhino, // load halfword high immediate on condition (32 <- 16), jump on not overflow / if not ones
21831 s39_lochi, // load halfword immediate on condition (32 <- 16)
21832 s39_lochio, // load halfword immediate on condition (32 <- 16), jump on overflow / if ones
21833 s39_lochih, // load halfword immediate on condition (32 <- 16), jump on A high
21834 s39_lochinle, // load halfword immediate on condition (32 <- 16), jump on not low or equal
21835 s39_lochil, // load halfword immediate on condition (32 <- 16), jump on A low
21836 s39_lochinhe, // load halfword immediate on condition (32 <- 16), jump on not high or equal
21837 s39_lochilh, // load halfword immediate on condition (32 <- 16), jump on low or high
21838 s39_lochine, // load halfword immediate on condition (32 <- 16), jump on A not equal B
21839 s39_lochie, // load halfword immediate on condition (32 <- 16), jump on A equal B
21840 s39_lochinlh, // load halfword immediate on condition (32 <- 16), jump on not low or high
21841 s39_lochihe, // load halfword immediate on condition (32 <- 16), jump on high or equal
21842 s39_lochinl, // load halfword immediate on condition (32 <- 16), jump on A not low
21843 s39_lochile, // load halfword immediate on condition (32 <- 16), jump on low or equal
21844 s39_lochinh, // load halfword immediate on condition (32 <- 16), jump on A not high
21845 s39_lochino, // load halfword immediate on condition (32 <- 16), jump on not overflow / if not ones
21846 s39_locr, // load on condition (32)
21847 s39_locro, // load on condition (32), jump on overflow / if ones
21848 s39_locrh, // load on condition (32), jump on A high
21849 s39_locrnle, // load on condition (32), jump on not low or equal
21850 s39_locrl, // load on condition (32), jump on A low
21851 s39_locrnhe, // load on condition (32), jump on not high or equal
21852 s39_locrlh, // load on condition (32), jump on low or high
21853 s39_locrne, // load on condition (32), jump on A not equal B
21854 s39_locre, // load on condition (32), jump on A equal B
21855 s39_locrnlh, // load on condition (32), jump on not low or high
21856 s39_locrhe, // load on condition (32), jump on high or equal
21857 s39_locrnl, // load on condition (32), jump on A not low
21858 s39_locrle, // load on condition (32), jump on low or equal
21859 s39_locrnh, // load on condition (32), jump on A not high
21860 s39_locrno, // load on condition (32), jump on not overflow / if not ones
21861 s39_lpctl, // load peripheral-counter-set controls
21862 s39_lpd, // load pair disjoint (32)
21863 s39_lpdbr, // load positive (long BFP)
21864 s39_lpdfr, // load positive (long)
21865 s39_lpdg, // load pair disjoint (64)
21866 s39_lpdr, // load positive (long HFP)
21867 s39_lpebr, // load positive (short BFP)
21868 s39_lper, // load positive (short HFP)
21869 s39_lpgfr, // load positive (64 <- 32)
21870 s39_lpgr, // load positive (64)
21871 s39_lpp, // load program parameter
21872 s39_lpq, // load pair from quadword (64&64 <- 128)
21873 s39_lpr, // load positive (32)
21874 s39_lpsw, // load PSW
21875 s39_lpswe, // load psw extended
21876 s39_lptea, // load page-table-entry address
21877 s39_lpxbr, // load positive (extended BFP)
21878 s39_lpxr, // load positive (extended HFP)
21879 s39_lr, // load (32)
21880 s39_lra, // load real address (32)
21881 s39_lrag, // load real address (64)
21882 s39_lray, // load real address (32)
21883 s39_lrdr, // load rounded (extended to long HFP)
21884 s39_lrer, // load rounded (long to short HFP)
21885 s39_lrl, // load relative long (32)
21886 s39_lrv, // load reversed (32)
21887 s39_lrvg, // load reversed (64)
21888 s39_lrvgr, // load reversed (64)
21889 s39_lrvh, // load reversed (16)
21890 s39_lrvr, // load reversed (32)
21891 s39_lsctl, // load sampling controls
21892 s39_lt, // load and test (32)
21893 s39_ltdbr, // load and test (long BFP)
21894 s39_ltdr, // load and test (long HFP)
21895 s39_ltdtr, // load and test (long DFP)
21896 s39_ltebr, // load and test (short BFP)
21897 s39_lter, // load and test (short HFP)
21898 s39_ltg, // load and test (64)
21899 s39_ltgf, // load and test (64 <- 32)
21900 s39_ltgfr, // load and test (64 <- 32)
21901 s39_ltgr, // load and test (64)
21902 s39_ltr, // load and test (32)
21903 s39_ltxbr, // load and test (extended BFP)
21904 s39_ltxr, // load and test (extended HFP)
21905 s39_ltxtr, // load and test (extended DFP)
21906 s39_lura, // load using real address (32)
21907 s39_lurag, // load using real address (64)
21908 s39_lxd, // load lengthened (long to extended HFP)
21909 s39_lxdb, // load lengthened (long to extended BFP)
21910 s39_lxdbr, // load lengthened (long to extended BFP)
21911 s39_lxdr, // load lengthened (long to extended HFP)
21912 s39_lxdtr, // load lengthened (long to extended DFP)
21913 s39_lxe, // load lengthened (short to extended HFP)
21914 s39_lxeb, // load lengthened (short to extended BFP)
21915 s39_lxebr, // load lengthened (short to extended BFP)
21916 s39_lxer, // load lengthened (short to extended HFP)
21917 s39_lxr, // load (extended)
21918 s39_ly, // load (32)
21919 s39_lzdr, // load zero (long)
21920 s39_lzer, // load zero (short)
21921 s39_lzrf, // load and zero rightmost byte (32)
21922 s39_lzrg, // load and zero rightmost byte (64)
21923 s39_lzxr, // load zero (extended)
21924 s39_m, // multiply (64 <- 32)
21925 s39_mad, // multiply and add (long HFP)
21926 s39_madb, // multiply and add (long BFP)
21927 s39_madbr, // multiply and add (long BFP)
21928 s39_madr, // multiply and add (long HFP)
21929 s39_mae, // multiply and add (short HFP)
21930 s39_maeb, // multiply and add (short BFP)
21931 s39_maebr, // multiply and add (short BFP)
21932 s39_maer, // multiply and add (short HFP)
21933 s39_may, // multiply & add unnormalized (long to extended HFP)
21934 s39_mayh, // multiply & add unnormalized (long to extended high HFP)
21935 s39_mayhr, // multiply & add unnormalized (long to extended high HFP)
21936 s39_mayl, // multiply & add unnormalized (long to extended low HFP)
21937 s39_maylr, // multiply & add unnormalized (long to extended low HFP)
21938 s39_mayr, // multiply & add unnormalized (long to extended HFP)
21939 s39_mc, // monitor call
21940 s39_md, // multiply (long HFP)
21941 s39_mdb, // multiply (long BFP)
21942 s39_mdbr, // multiply (long BFP)
21943 s39_mde, // multiply (short to long HFP)
21944 s39_mdeb, // multiply (short to long BFP)
21945 s39_mdebr, // multiply (short to long BFP)
21946 s39_mder, // multiply (short to long HFP)
21947 s39_mdr, // multiply (long HFP)
21948 s39_mdtr, // multiply (long DFP)
21949 s39_mdtra, // multiply (long DFP)
21950 s39_me, // multiply (short to long HFP)
21951 s39_mee, // multiply (short HFP)
21952 s39_meeb, // multiply (short BFP)
21953 s39_meebr, // multiply (short BFP)
21954 s39_meer, // multiply (short HFP)
21955 s39_mer, // multiply (short to long HFP)
21956 s39_mfy, // multiply (64 <- 32)
21957 s39_mg, // multiply (128 <- 64)
21958 s39_mgh, // multiply halfword (64 <- 16)
21959 s39_mghi, // multiply halfword immediate (64 <- 16)
21960 s39_mgrk, // multiply (128 <- 64)
21961 s39_mh, // multiply halfword (32 <- 16)
21962 s39_mhi, // multiply halfword immediate (32 <- 16)
21963 s39_mhy, // multiply halfword (32 <- 16)
21964 s39_ml, // multiply logical (64 <- 32)
21965 s39_mlg, // multiply logical (128 <- 64)
21966 s39_mlgr, // multiply logical (128 <- 64)
21967 s39_mlr, // multiply logical (64 <- 32)
21968 s39_mp, // multiply decimal
21969 s39_mr, // multiply (64 <- 32)
21970 s39_ms, // multiply single (32)
21971 s39_msc, // multiply single (32)
21972 s39_msch, // modify subchannel
21973 s39_msd, // multiply and subtract (long HFP)
21974 s39_msdb, // multiply and subtract (long BFP)
21975 s39_msdbr, // multiply and subtract (long BFP)
21976 s39_msdr, // multiply and subtract (long HFP)
21977 s39_mse, // multiply and subtract (short HFP)
21978 s39_mseb, // multiply and subtract (short BFP)
21979 s39_msebr, // multiply and subtract (short BFP)
21980 s39_mser, // multiply and subtract (short HFP)
21981 s39_msfi, // multiply single immediate (32)
21982 s39_msg, // multiply single (64)
21983 s39_msgc, // multiply single (64)
21984 s39_msgf, // multiply single (64 <- 32)
21985 s39_msgfi, // multiply single immediate (64 <- 32)
21986 s39_msgfr, // multiply single (64 <- 32)
21987 s39_msgr, // multiply single (64)
21988 s39_msgrkc, // multiply single (64)
21989 s39_msr, // multiply single (32)
21990 s39_msrkc, // multiply single (32)
21991 s39_msta, // modify stacked state
21992 s39_msy, // multiply single (32)
21993 s39_mvc, // move (character)
21994 s39_mvcdk, // move with destination key
21995 s39_mvcin, // move inverse
21996 s39_mvck, // move with key
21997 s39_mvcl, // move long
21998 s39_mvcle, // move long extended
21999 s39_mvclu, // move long unicode
22000 s39_mvcos, // move with optional specifications
22001 s39_mvcp, // move to primary
22003 s39_mvcs, // move to secondary
22004 s39_mvcsk, // move with source key
22005 s39_mvghi, // move (64 <- 16)
22006 s39_mvhhi, // move (16 <- 16)
22007 s39_mvhi, // move (32 <- 16)
22008 s39_mvi, // move (immediate)
22009 s39_mviy, // move (immediate)
22010 s39_mvn, // move numerics
22011 s39_mvo, // move with offset
22012 s39_mvpg, // move page
22013 s39_mvst, // move string
22014 s39_mvz, // move zones
22015 s39_mxbr, // multiply (extended BFP)
22016 s39_mxd, // multiply (long to extended HFP)
22017 s39_mxdb, // multiply (long to extended BFP)
22018 s39_mxdbr, // multiply (long to extended BFP)
22019 s39_mxdr, // multiply (long to extended HFP)
22020 s39_mxr, // multiply (extended HFP)
22021 s39_mxtr, // multiply (extended DFP)
22022 s39_mxtra, // multiply (extended DFP)
22023 s39_my, // multiply unnormalized (long to extended HFP)
22024 s39_myh, // multiply unnormalized (long to extended high HFP)
22025 s39_myhr, // multiply unnormalized (long to extended high HFP)
22026 s39_myl, // multiply unnormalized (long to extended low HFP)
22027 s39_mylr, // multiply unnormalized (long to extended low HFP)
22028 s39_myr, // multiply unnormalized (long to extended HFP)
22029 s39_n, // and (32)
22030 s39_nc, // and (character)
22033 s39_ng, // and (64)
22034 s39_ngr, // and (64)
22035 s39_ngrk, // and (64)
22036 s39_ni, // and (immediate)
22037 s39_niai, // next instruction access intent
22038 s39_nihf, // and immediate (high)
22039 s39_nihh, // and immediate (high high)
22040 s39_nihl, // and immediate (high low)
22041 s39_nilf, // and immediate (low)
22042 s39_nilh, // and immediate (low high)
22043 s39_nill, // and immediate (low low)
22044 s39_niy, // and (immediate)
22048 s39_nop, // no operation
22049 s39_nopr, // no operation
22051 s39_nr, // and (32)
22052 s39_nrk, // and (32)
22053 s39_ntstg, // nontransactional store (64)
22056 s39_ny, // and (32)
22057 s39_o, // or (32)
22058 s39_oc, // or (character)
22061 s39_og, // or (64)
22062 s39_ogr, // or (64)
22063 s39_ogrk, // or (64)
22064 s39_oi, // or (immediate)
22065 s39_oihf, // or immediate (high)
22066 s39_oihh, // or immediate (high high)
22067 s39_oihl, // or immediate (high low)
22068 s39_oilf, // or immediate (low)
22069 s39_oilh, // or immediate (low high)
22070 s39_oill, // or immediate (low low)
22071 s39_oiy, // or (immediate)
22072 s39_or, // or (32)
22073 s39_ork, // or (32)
22074 s39_oy, // or (32)
22075 s39_pack, // pack
22076 s39_palb, // purge ALB
22077 s39_pc, // program call
22078 s39_pcc, // perform cryptographic computation
22079 s39_pckmo, // perform cryptographic key management operation
22080 s39_pfd, // prefetch data
22081 s39_pfdrl, // prefetch data relative long
22082 s39_pfmf, // perform frame management function
22083 s39_pfpo, // perform floating point operation
22084 s39_pgin, // page in
22085 s39_pgout, // page out
22086 s39_pka, // pack ascii
22087 s39_pku, // pack unicode
22088 s39_plo, // perform locked operation
22089 s39_popcnt, // population count
22090 s39_ppa, // perform processor assist
22091 s39_ppno, // perform pseudorandom number operation
22092 s39_pr, // program return
22093 s39_prno, // perform pseudorandom number operation
22094 s39_pt, // program transfer
22095 s39_ptf, // perform topology function
22096 s39_ptff, // perform timing facility function
22097 s39_pti, // program transfer with instance
22098 s39_ptlb, // purge TLB
22099 s39_qadtr, // quantize (long DFP)
22100 s39_qaxtr, // quantize (extended DFP)
22101 s39_qctri, // query counter information
22102 s39_qsi, // query sampling information
22103 s39_rchp, // reset channel path
22104 s39_risbg, // rotate then insert selected bits (64)
22105 s39_risbgn, // rotate then insert selected bits (64)
22106 s39_risbhg, // rotate then insert selected bits high (64)
22107 s39_risblg, // rotate then insert selected bits low (64)
22108 s39_rll, // rotate left single logical (32)
22109 s39_rllg, // rotate left single logical (64)
22110 s39_rnsbg, // rotate then and selected bits (64)
22111 s39_rosbg, // rotate then or selected bits (64)
22112 s39_rp, // resume program
22113 s39_rrbe, // reset reference bit extended
22114 s39_rrbm, // reset reference bits multiple
22115 s39_rrdtr, // reround (long DFP)
22116 s39_rrxtr, // reround (extended DFP)
22117 s39_rsch, // resume subchannel
22118 s39_rxsbg, // rotate then exclusive or selected bits (64)
22119 s39_s, // subtract (32)
22120 s39_sac, // set address space control
22121 s39_sacf, // set address space control fast
22122 s39_sal, // set address limit
22123 s39_sam24, // set addressing mode 24
22124 s39_sam31, // set addressing mode 31
22125 s39_sam64, // set addressing mode 64
22126 s39_sar, // set access
22127 s39_scctr, // set cpu counter
22128 s39_schm, // set channel monitor
22129 s39_sck, // set clock
22130 s39_sckc, // set clock comparator
22131 s39_sckpf, // set clock programmable field
22132 s39_sd, // subtract normalized (long HFP)
22133 s39_sdb, // subtract (long BFP)
22134 s39_sdbr, // subtract (long BFP)
22135 s39_sdr, // subtract normalized (long HFP)
22136 s39_sdtr, // subtract normalized (long DFP)
22137 s39_sdtra, // subtract normalized (long DFP)
22138 s39_se, // subtract normalized (short HFP)
22139 s39_seb, // subtract (short BFP)
22140 s39_sebr, // subtract (short BFP)
22142 s39_selgro, // , jump on overflow / if ones
22143 s39_selgrh, // , jump on A high
22144 s39_selgrnle, // , jump on not low or equal
22145 s39_selgrl, // , jump on A low
22146 s39_selgrnhe, // , jump on not high or equal
22147 s39_selgrlh, // , jump on low or high
22148 s39_selgrne, // , jump on A not equal B
22149 s39_selgre, // , jump on A equal B
22150 s39_selgrnlh, // , jump on not low or high
22151 s39_selgrhe, // , jump on high or equal
22152 s39_selgrnl, // , jump on A not low
22153 s39_selgrle, // , jump on low or equal
22154 s39_selgrnh, // , jump on A not high
22155 s39_selgrno, // , jump on not overflow / if not ones
22157 s39_selhhhro, // , jump on overflow / if ones
22158 s39_selhhhrh, // , jump on A high
22159 s39_selhhhrnle, // , jump on not low or equal
22160 s39_selhhhrl, // , jump on A low
22161 s39_selhhhrnhe, // , jump on not high or equal
22162 s39_selhhhrlh, // , jump on low or high
22163 s39_selhhhrne, // , jump on A not equal B
22164 s39_selhhhre, // , jump on A equal B
22165 s39_selhhhrnlh, // , jump on not low or high
22166 s39_selhhhrhe, // , jump on high or equal
22167 s39_selhhhrnl, // , jump on A not low
22168 s39_selhhhrle, // , jump on low or equal
22169 s39_selhhhrnh, // , jump on A not high
22170 s39_selhhhrno, // , jump on not overflow / if not ones
22172 s39_selro, // , jump on overflow / if ones
22173 s39_selrh, // , jump on A high
22174 s39_selrnle, // , jump on not low or equal
22175 s39_selrl, // , jump on A low
22176 s39_selrnhe, // , jump on not high or equal
22177 s39_selrlh, // , jump on low or high
22178 s39_selrne, // , jump on A not equal B
22179 s39_selre, // , jump on A equal B
22180 s39_selrnlh, // , jump on not low or high
22181 s39_selrhe, // , jump on high or equal
22182 s39_selrnl, // , jump on A not low
22183 s39_selrle, // , jump on low or equal
22184 s39_selrnh, // , jump on A not high
22185 s39_selrno, // , jump on not overflow / if not ones
22186 s39_ser, // subtract normalized (short HFP)
22187 s39_sfasr, // set fpc and signal
22188 s39_sfpc, // set fpc
22189 s39_sg, // subtract (64)
22190 s39_sgf, // subtract (64 <- 32)
22191 s39_sgfr, // subtract (64 <- 32)
22192 s39_sgh, // sintract halfword (64 <- 16)
22193 s39_sgr, // subtract (64)
22194 s39_sgrk, // subtract (64)
22195 s39_sh, // subtract halfword (32 <- 16)
22196 s39_shhhr, // subtract high (32)
22197 s39_shhlr, // subtract high (32)
22198 s39_shy, // subtract halfword (32 <- 16)
22199 s39_sie, // start interpretive execution
22200 s39_siga, // signal adapter
22201 s39_sigp, // signal processor
22202 s39_sl, // subtract logical (32)
22203 s39_sla, // shift left single (32)
22204 s39_slag, // shift left single (64)
22205 s39_slak, // shift left single (32)
22206 s39_slb, // subtract logical with borrow (32)
22207 s39_slbg, // subtract logical with borrow (64)
22208 s39_slbgr, // subtract logical with borrow (64)
22209 s39_slbr, // subtract logical with borrow (32)
22210 s39_slda, // shift left double (64)
22211 s39_sldl, // shift left double logical (64)
22212 s39_sldt, // shift significand left (long DFP)
22213 s39_slfi, // subtract logical immediate (32)
22214 s39_slg, // subtract logical (64)
22215 s39_slgf, // subtract logical (64 <- 32)
22216 s39_slgfi, // subtract logical (64 <- 32)
22217 s39_slgfr, // subtract logical (64 <- 32)
22218 s39_slgr, // subtract logical (64)
22219 s39_slgrk, // subtract logical (64)
22220 s39_slhhhr, // subtract logical high (32)
22221 s39_slhhlr, // subtract logical high (32)
22222 s39_sll, // shift left single logical (32)
22223 s39_sllg, // shift left single logical (64)
22224 s39_sllk, // shift left single logical (32)
22225 s39_slr, // subtract logical (32)
22226 s39_slrk, // subtract logical (32)
22227 s39_slxt, // shift significand left (extended DFP)
22228 s39_sly, // subtract logical (32)
22230 s39_sp, // subtract decimal
22231 s39_spctr, // set peripheral counter
22232 s39_spka, // set PSW key from address
22233 s39_spm, // set program mask
22234 s39_spt, // set CPU timer
22235 s39_spx, // set prefix
22236 s39_sqd, // square root (long HFP)
22237 s39_sqdb, // square root (long BFP)
22238 s39_sqdbr, // square root (long BFP)
22239 s39_sqdr, // square root (long HFP)
22240 s39_sqe, // square root (short HFP)
22241 s39_sqeb, // square root (short BFP)
22242 s39_sqebr, // square root (short BFP)
22243 s39_sqer, // square root (short HFP)
22244 s39_sqxbr, // square root (extended BFP)
22245 s39_sqxr, // square root (extended HFP)
22246 s39_sr, // subtract (32)
22247 s39_sra, // shift right single (32)
22248 s39_srag, // shift right single (64)
22249 s39_srak, // shift right single (32)
22250 s39_srda, // shift right double (64)
22251 s39_srdl, // shift right double logical (64)
22252 s39_srdt, // shift significand right (long DFP)
22253 s39_srk, // subtract (32)
22254 s39_srl, // shift right single logical (32)
22255 s39_srlg, // shift right single logical (64)
22256 s39_srlk, // shift right single logical (64)
22257 s39_srnm, // set bfp rounding mode (2bit)
22258 s39_srnmb, // set bfp rounding mode (3bit)
22259 s39_srnmt, // set dfp rounding mode
22260 s39_srp, // shift and round decimal
22261 s39_srst, // search string
22262 s39_srstu, // search string unicode
22263 s39_srxt, // shift significand right (extended DFP)
22264 s39_ssair, // set secondary ASN with instance
22265 s39_ssar, // set secondary ASN
22266 s39_ssch, // start subchannel
22267 s39_sske, // set storage key extended
22268 s39_ssm, // set system mask
22269 s39_st, // store (32)
22270 s39_stam, // store access multiple
22271 s39_stamy, // store access multiple
22272 s39_stap, // store CPU address
22273 s39_stc, // store character
22274 s39_stch, // store character high (8)
22275 s39_stck, // store clock
22276 s39_stckc, // store clock comparator
22277 s39_stcke, // store clock extended
22278 s39_stckf, // store clock fast
22279 s39_stcm, // store characters under mask (low)
22280 s39_stcmh, // store characters under mask (high)
22281 s39_stcmy, // store characters under mask (low)
22282 s39_stcps, // store channel path status
22283 s39_stcrw, // store channel report word
22284 s39_stctg, // store control (64)
22285 s39_stctl, // store control (64)
22286 s39_stcy, // store character
22287 s39_std, // store (long)
22289 s39_stdy, // store (long)
22290 s39_ste, // store (short)
22292 s39_stey, // store (short)
22293 s39_stfh, // store high (32)
22294 s39_stfl, // store facility list
22295 s39_stfle, // store facility list extended
22296 s39_stfpc, // store fpc
22297 s39_stg, // store (64)
22298 s39_stgrl, // store relative long (64)
22299 s39_stgsc, // store guarded storage controls
22300 s39_sth, // store halfword (16)
22301 s39_sthh, // store halfword high (16)
22302 s39_sthrl, // store halfword relative long (16)
22303 s39_sthy, // store halfword (16)
22304 s39_stidp, // store CPU id
22305 s39_stm, // store multiple (32)
22306 s39_stmg, // store multiple (64)
22307 s39_stmh, // store multiple high (32)
22308 s39_stmy, // store multiple (32)
22309 s39_stnsm, // store then and system mask
22310 s39_stoc, // store on condition (32)
22311 s39_stoco, // store on condition (32), jump on overflow / if ones
22312 s39_stoch, // store on condition (32), jump on A high
22313 s39_stocnle, // store on condition (32), jump on not low or equal
22314 s39_stocl, // store on condition (32), jump on A low
22315 s39_stocnhe, // store on condition (32), jump on not high or equal
22316 s39_stoclh, // store on condition (32), jump on low or high
22317 s39_stocne, // store on condition (32), jump on A not equal B
22318 s39_stoce, // store on condition (32), jump on A equal B
22319 s39_stocnlh, // store on condition (32), jump on not low or high
22320 s39_stoche, // store on condition (32), jump on high or equal
22321 s39_stocnl, // store on condition (32), jump on A not low
22322 s39_stocle, // store on condition (32), jump on low or equal
22323 s39_stocnh, // store on condition (32), jump on A not high
22324 s39_stocno, // store on condition (32), jump on not overflow / if not ones
22325 s39_stocfh, // store high on condition
22326 s39_stocfho, // store high on condition, jump on overflow / if ones
22327 s39_stocfhh, // store high on condition, jump on A high
22328 s39_stocfhnle, // store high on condition, jump on not low or equal
22329 s39_stocfhl, // store high on condition, jump on A low
22330 s39_stocfhnhe, // store high on condition, jump on not high or equal
22331 s39_stocfhlh, // store high on condition, jump on low or high
22332 s39_stocfhne, // store high on condition, jump on A not equal B
22333 s39_stocfhe, // store high on condition, jump on A equal B
22334 s39_stocfhnlh, // store high on condition, jump on not low or high
22335 s39_stocfhhe, // store high on condition, jump on high or equal
22336 s39_stocfhnl, // store high on condition, jump on A not low
22337 s39_stocfhle, // store high on condition, jump on low or equal
22338 s39_stocfhnh, // store high on condition, jump on A not high
22339 s39_stocfhno, // store high on condition, jump on not overflow / if not ones
22340 s39_stocg, // store on condition (64)
22341 s39_stocgo, // store on condition (64), jump on overflow / if ones
22342 s39_stocgh, // store on condition (64), jump on A high
22343 s39_stocgnle, // store on condition (64), jump on not low or equal
22344 s39_stocgl, // store on condition (64), jump on A low
22345 s39_stocgnhe, // store on condition (64), jump on not high or equal
22346 s39_stocglh, // store on condition (64), jump on low or high
22347 s39_stocgne, // store on condition (64), jump on A not equal B
22348 s39_stocge, // store on condition (64), jump on A equal B
22349 s39_stocgnlh, // store on condition (64), jump on not low or high
22350 s39_stocghe, // store on condition (64), jump on high or equal
22351 s39_stocgnl, // store on condition (64), jump on A not low
22352 s39_stocgle, // store on condition (64), jump on low or equal
22353 s39_stocgnh, // store on condition (64), jump on A not high
22354 s39_stocgno, // store on condition (64), jump on not overflow / if not ones
22355 s39_stosm, // store then or system mask
22356 s39_stpq, // store pair to quadword
22357 s39_stpt, // store CPU timer
22358 s39_stpx, // store prefix
22359 s39_strag, // store real address
22360 s39_strl, // store relative long (32)
22361 s39_strv, // store reversed (32)
22362 s39_strvg, // store reversed (64)
22363 s39_strvh, // store reversed (16)
22364 s39_stsch, // store subchannel
22365 s39_stsi, // store system information
22366 s39_stura, // store using real address (32)
22367 s39_sturg, // store using real address (64)
22368 s39_sty, // store (32)
22369 s39_su, // subtract unnormalized (short HFP)
22370 s39_sur, // subtract unnormalized (short HFP)
22371 s39_svc, // supervisor call
22372 s39_sw, // subtract unnormalized (long HFP)
22373 s39_swr, // subtract unnormalized (long HFP)
22374 s39_sxbr, // subtract (extended BFP)
22375 s39_sxr, // subtract normalized (extended HFP)
22376 s39_sxtr, // subtract (extended DFP)
22377 s39_sxtra, // subtract (extended DFP)
22378 s39_sy, // subtract (32)
22379 s39_tabort, // transaction abort
22380 s39_tam, // test addressing mode
22381 s39_tar, // test access
22382 s39_tb, // test block
22383 s39_tbdr, // convert HFP to BFP (long)
22384 s39_tbedr, // convert HFP to BFP (long to short)
22385 s39_tbegin, // transaction begin (nonconstrained)
22386 s39_tbeginc, // transaction begin (constrained)
22387 s39_tcdb, // test data class (long BFP)
22388 s39_tceb, // test data class (short BFP)
22389 s39_tcxb, // test data class (extended BFP)
22390 s39_tdcdt, // test data class (long DFP)
22391 s39_tdcet, // test data class (short DFP)
22392 s39_tdcxt, // test data class (extended DFP)
22393 s39_tdgdt, // test data group (long DFP)
22394 s39_tdget, // test data group (short DFP)
22395 s39_tdgxt, // test data group (extended DFP)
22396 s39_tend, // transaction end
22397 s39_thder, // convert BFP to HFP (short to long)
22398 s39_thdr, // convert BFP to HFP (long)
22399 s39_tm, // test under mask
22400 s39_tmhh, // test under mask (high high)
22401 s39_tmhl, // test under mask (high low)
22402 s39_tmlh, // test under mask (low high)
22403 s39_tmll, // test under mask (low low)
22404 s39_tmy, // test under mask
22405 s39_tp, // test decimal
22406 s39_tpei, // test pending external interruption
22407 s39_tpi, // test pending interruption
22408 s39_tprot, // test protection
22409 s39_tr, // translate
22410 s39_trace, // trace (32)
22411 s39_tracg, // trace (64)
22412 s39_trap2, // trap
22413 s39_trap4, // trap
22414 s39_tre, // translate extended
22415 s39_troo, // translate one to one
22416 s39_trot, // translate one to two
22417 s39_trt, // translate and test
22418 s39_trte, // translate and test extended
22419 s39_trto, // translate two to one
22420 s39_trtr, // translate and test reverse
22421 s39_trtre, // translate and test reverse extended
22422 s39_trtt, // translate two to two
22423 s39_ts, // test and set
22424 s39_tsch, // test subchannel
22425 s39_unpk, // unpack
22426 s39_unpka, // unpack ascii
22427 s39_unpku, // unpack unicode
22428 s39_upt, // update tree
22429 s39_va, // vector add
22430 s39_vab, // vector add byte
22431 s39_vac, // vector add with carry
22432 s39_vacc, // vector add compute carry
22433 s39_vaccb, // vector add compute carry byte
22434 s39_vaccc, // vector add with carry compute carry
22435 s39_vacccq, // vector add with carry compute carry quadword
22436 s39_vaccf, // vector add compute carry word
22437 s39_vaccg, // vector add compute carry doubleword
22438 s39_vacch, // vector add compute carry halfword
22439 s39_vaccq, // vector add compute carry quadword
22440 s39_vacq, // vector add with carry quadword
22441 s39_vaf, // vector add word
22442 s39_vag, // vector add double word
22443 s39_vah, // vector add halfword
22444 s39_vap, // vector add decimal
22445 s39_vaq, // vector add quad word
22446 s39_vavg, // vector average
22447 s39_vavgb, // vector average byte
22448 s39_vavgf, // vector average word
22449 s39_vavgg, // vector average double word
22450 s39_vavgh, // vector average half word
22451 s39_vavgl, // vector average logical
22452 s39_vavglb, // vector average logical byte
22453 s39_vavglf, // vector average logical word
22454 s39_vavglg, // vector average logical double word
22455 s39_vavglh, // vector average logical half word
22456 s39_vbperm, // vector bit permute
22457 s39_vcdg, // vector fp convert from fixed 64 bit
22458 s39_vcdgb, // vector fp convert from fixed 64 bit
22459 s39_vcdlg, // vector fp convert from logical 64 bit
22460 s39_vcdlgb, // vector fp convert from logical 64 bit
22463 s39_vceq, // vector compare equal
22464 s39_vceqb, // vector compare equal byte
22465 s39_vceqbs, // vector compare equal byte
22466 s39_vceqf, // vector compare equal word
22467 s39_vceqfs, // vector compare equal word
22468 s39_vceqg, // vector compare equal double word
22469 s39_vceqgs, // vector compare equal double word
22470 s39_vceqh, // vector compare equal half word
22471 s39_vceqhs, // vector compare equal half word
22475 s39_vcgd, // vector fp convert to fixed 64 bit
22476 s39_vcgdb, // vector fp convert to fixed 64 bit
22477 s39_vch, // vector compare high
22478 s39_vchb, // vector compare high byte
22479 s39_vchbs, // vector compare high byte
22480 s39_vchf, // vector compare high word
22481 s39_vchfs, // vector compare high word
22482 s39_vchg, // vector compare high double word
22483 s39_vchgs, // vector compare high double word
22484 s39_vchh, // vector compare high half word
22485 s39_vchhs, // vector compare high half word
22486 s39_vchl, // vector compare high logical
22487 s39_vchlb, // vector compare high logical byte
22488 s39_vchlbs, // vector compare high logical byte
22489 s39_vchlf, // vector compare high logical word
22490 s39_vchlfs, // vector compare high logical word
22491 s39_vchlg, // vector compare high logical double word
22492 s39_vchlgs, // vector compare high logical double word
22493 s39_vchlh, // vector compare high logical half word
22494 s39_vchlhs, // vector compare high logical half word
22495 s39_vcksm, // vector checksum
22498 s39_vclgd, // vector fp convert to logical 64 bit
22499 s39_vclgdb, // vector fp convert to logical 64 bit
22500 s39_vclz, // vector count leading zeros
22501 s39_vclzb, // vector count leading zeros byte
22502 s39_vclzf, // vector count leading zeros word
22503 s39_vclzg, // vector count leading zeros doubleword
22504 s39_vclzh, // vector count leading zeros halfword
22505 s39_vcp, // vector compare decimal
22507 s39_vctz, // vector count trailing zeros
22508 s39_vctzb, // vector count trailing zeros byte
22509 s39_vctzf, // vector count trailing zeros word
22510 s39_vctzg, // vector count trailing zeros doubleword
22511 s39_vctzh, // vector count trailing zeros halfword
22512 s39_vcvb, // vector convert to binary
22513 s39_vcvbg, // vector convert to binary
22514 s39_vcvd, // vector convert to decimal
22515 s39_vcvdg, // vector convert to decimal
22516 s39_vdp, // vector divide decimal
22517 s39_vec, // vector element compare
22518 s39_vecb, // vector element compare byte
22519 s39_vecf, // vector element compare word
22520 s39_vecg, // vector element compare double word
22521 s39_vech, // vector element compare half word
22522 s39_vecl, // vector element compare logical
22523 s39_veclb, // vector element compare logical byte
22524 s39_veclf, // vector element compare logical word
22525 s39_veclg, // vector element compare logical double word
22526 s39_veclh, // vector element compare logical half word
22527 s39_verim, // vector element rotate and insert under mask
22528 s39_verimb, // vector element rotate and insert under mask byte
22529 s39_verimf, // vector element rotate and insert under mask word
22530 s39_verimg, // vector element rotate and insert under mask doubleword
22531 s39_verimh, // vector element rotate and insert under mask halfword
22532 s39_verll, // vector element rotate left logical
22533 s39_verllb, // vector element rotate left logical byte
22534 s39_verllf, // vector element rotate left logical word
22535 s39_verllg, // vector element rotate left logical doubleword
22536 s39_verllh, // vector element rotate left logical halfword
22537 s39_verllv, // vector element rotate left logical
22538 s39_verllvb, // vector element rotate left logical byte
22539 s39_verllvf, // vector element rotate left logical word
22540 s39_verllvg, // vector element rotate left logical doubleword
22541 s39_verllvh, // vector element rotate left logical halfword
22542 s39_vesl, // vector element shift left
22543 s39_veslb, // vector element shift left byte
22544 s39_veslf, // vector element shift left word
22545 s39_veslg, // vector element shift left doubleword
22546 s39_veslh, // vector element shift left halfword
22547 s39_veslv, // vector element shift left
22548 s39_veslvb, // vector element shift left byte
22549 s39_veslvf, // vector element shift left word
22550 s39_veslvg, // vector element shift left doubleword
22551 s39_veslvh, // vector element shift left halfword
22552 s39_vesra, // vector element shift right arithmetic
22553 s39_vesrab, // vector element shift right arithmetic byte
22554 s39_vesraf, // vector element shift right arithmetic word
22555 s39_vesrag, // vector element shift right arithmetic doubleword
22556 s39_vesrah, // vector element shift right arithmetic halfword
22557 s39_vesrav, // vector element shift right arithmetic
22558 s39_vesravb, // vector element shift right arithmetic byte
22559 s39_vesravf, // vector element shift right arithmetic word
22560 s39_vesravg, // vector element shift right arithmetic doubleword
22561 s39_vesravh, // vector element shift right arithmetic halfword
22562 s39_vesrl, // vector element shift right logical
22563 s39_vesrlb, // vector element shift right logical byte
22564 s39_vesrlf, // vector element shift right logical word
22565 s39_vesrlg, // vector element shift right logical doubleword
22566 s39_vesrlh, // vector element shift right logical halfword
22567 s39_vesrlv, // vector element shift right logical
22568 s39_vesrlvb, // vector element shift right logical byte
22569 s39_vesrlvf, // vector element shift right logical word
22570 s39_vesrlvg, // vector element shift right logical doubleword
22571 s39_vesrlvh, // vector element shift right logical halfword
22572 s39_vfa, // vector fp add
22573 s39_vfadb, // vector fp add long
22574 s39_vfae, // vector find any element equal
22575 s39_vfaeb, // vector find any element equal byte
22576 s39_vfaebs, // vector find any element equal
22577 s39_vfaef, // vector find any element equal word
22578 s39_vfaefs, // vector find any element equal
22579 s39_vfaeh, // vector find any element equal halfword
22580 s39_vfaehs, // vector find any element equal
22581 s39_vfaezb, // vector find any element equal
22582 s39_vfaezbs, // vector find any element equal
22583 s39_vfaezf, // vector find any element equal
22584 s39_vfaezfs, // vector find any element equal
22585 s39_vfaezh, // vector find any element equal
22586 s39_vfaezhs, // vector find any element equal
22587 s39_vfasb, // vector fp add short
22588 s39_vfce, // vector fp compare equal
22589 s39_vfcedb, // vector fp compare equal long
22590 s39_vfcedbs, // vector fp compare equal long
22591 s39_vfcesb, // vector fp compare equal short
22592 s39_vfcesbs, // vector fp compare equal short
22593 s39_vfch, // vector fp compare high
22594 s39_vfchdb, // vector fp compare high long
22595 s39_vfchdbs, // vector fp compare high long
22596 s39_vfche, // vector fp compare high or equal
22597 s39_vfchedb, // vector fp compare high or equal long
22598 s39_vfchedbs, // vector fp compare high or equal long
22599 s39_vfchesb, // vector fp compare high or equal short
22600 s39_vfchesbs, // vector fp compare high or equal short
22601 s39_vfchsb, // vector fp compare high short
22602 s39_vfchsbs, // vector fp compare high short
22603 s39_vfd, // vector fp divide
22604 s39_vfddb, // vector fp divide long
22605 s39_vfdsb, // vector fp divide short
22606 s39_vfee, // vector find element equal
22607 s39_vfeeb, // vector find element equal byte
22608 s39_vfeebs, // vector find element equal byte
22609 s39_vfeef, // vector find element equal word
22610 s39_vfeefs, // vector find element equal word
22611 s39_vfeeh, // vector find element equal halfword
22612 s39_vfeehs, // vector find element equal halfword
22613 s39_vfeezb, // vector find element equal byte
22614 s39_vfeezbs, // vector find element equal byte
22615 s39_vfeezf, // vector find element equal word
22616 s39_vfeezfs, // vector find element equal word
22617 s39_vfeezh, // vector find element equal halfword
22618 s39_vfeezhs, // vector find element equal halfword
22619 s39_vfene, // vector find element not equal
22620 s39_vfeneb, // vector find element not equal byte
22621 s39_vfenebs, // vector find element not equal byte
22622 s39_vfenef, // vector find element not equal word
22623 s39_vfenefs, // vector find element not equal word
22624 s39_vfeneh, // vector find element not equal halfword
22625 s39_vfenehs, // vector find element not equal halfword
22626 s39_vfenezb, // vector find element not equal byte
22627 s39_vfenezbs, // vector find element not equal byte
22628 s39_vfenezf, // vector find element not equal word
22629 s39_vfenezfs, // vector find element not equal word
22630 s39_vfenezh, // vector find element not equal halfword
22631 s39_vfenezhs, // vector find element not equal halfword
22632 s39_vfi, // vector load fp integer
22633 s39_vfidb, // vector load fp integer long
22634 s39_vfisb, // vector load fp integer short
22635 s39_vfkedb, // vector fp compare and signal equal long
22636 s39_vfkedbs, // vector fp compare and signal equal long
22637 s39_vfkesb, // vector fp compare and signal equal short
22638 s39_vfkesbs, // vector fp compare and signal equal short
22639 s39_vfkhdb, // vector fp compare and signal high long
22640 s39_vfkhdbs, // vector fp compare and signal high long
22641 s39_vfkhedb, // vector fp compare and signal high or equal long
22642 s39_vfkhedbs, // vector fp compare and signal high or equal long
22643 s39_vfkhesb, // vector fp compare and signal high or equal short
22644 s39_vfkhesbs, // vector fp compare and signal high or equal short
22645 s39_vfkhsb, // vector fp compare and signal high short
22646 s39_vfkhsbs, // vector fp compare and signal high short
22647 s39_vflcdb, // vector fp perform sign operation long
22648 s39_vflcsb, // vector fp perform sign operation short
22649 s39_vfll, // vector fp load lengthened
22650 s39_vflls, // vector fp load lengthened
22651 s39_vflndb, // vector fp perform sign operation long
22652 s39_vflnsb, // vector fp perform sign operation short
22653 s39_vflpdb, // vector fp perform sign operation long
22654 s39_vflpsb, // vector fp perform sign operation short
22655 s39_vflr, // vector fp load rounded
22656 s39_vflrd, // vector fp load rounded long
22657 s39_vfm, // vector fp multiply
22658 s39_vfma, // vector fp multiply and add
22659 s39_vfmadb, // vector fp multiply and add long
22660 s39_vfmasb, // vector fp multiply and add short
22661 s39_vfmax, // vector fp maximum
22662 s39_vfmaxdb, // vector fp maximum long
22663 s39_vfmaxsb, // vector fp maximum short
22664 s39_vfmdb, // vector fp multiply long
22665 s39_vfmin, // vector fp minimum
22666 s39_vfmindb, // vector fp minimum long
22667 s39_vfminsb, // vector fp minimum short
22668 s39_vfms, // vector fp multiply and subtract
22669 s39_vfmsb, // vector fp multiply short
22670 s39_vfmsdb, // vector fp multiply and subtract long
22671 s39_vfmssb, // vector fp multiply and subtract short
22672 s39_vfnma, // vector fp negative multiply and add
22673 s39_vfnmadb, // vector fp negative multiply and add long
22674 s39_vfnmasb, // vector fp negative multiply and add short
22675 s39_vfnms, // vector fp negative multiply and subtract
22676 s39_vfnmsdb, // vector fp negative multiply and subtract long
22677 s39_vfnmssb, // vector fp negative multiply and subtract short
22678 s39_vfpso, // vector fp perform sign operation
22679 s39_vfpsodb, // vector fp perform sign operation long
22680 s39_vfpsosb, // vector fp perform sign operation short
22681 s39_vfs, // vector fp subtract
22682 s39_vfsdb, // vector fp subtract long
22683 s39_vfsq, // vector fp square root
22684 s39_vfsqdb, // vector fp square root long
22685 s39_vfsqsb, // vector fp square root short
22686 s39_vfssb, // vector fp subtract short
22687 s39_vftci, // vector fp test data class immediate
22688 s39_vftcidb, // vector fp test data class immediate
22689 s39_vftcisb, // vector fp test data class immediate short
22690 s39_vgbm, // vector generate byte mask
22691 s39_vgef, // vector gather element (32)
22692 s39_vgeg, // vector gather element (64)
22693 s39_vgfm, // vector galois field multiply sum
22694 s39_vgfma, // vector galois field multiply sum and accumulate
22695 s39_vgfmab, // vector galois field multiply sum and accumulate byte
22696 s39_vgfmaf, // vector galois field multiply sum and accumulate word
22697 s39_vgfmag, // vector galois field multiply sum and accumulate doubleword
22698 s39_vgfmah, // vector galois field multiply sum and accumulate halfword
22699 s39_vgfmb, // vector galois field multiply sum byte
22700 s39_vgfmf, // vector galois field multiply sum word
22701 s39_vgfmg, // vector galois field multiply sum doubleword
22702 s39_vgfmh, // vector galois field multiply sum halfword
22703 s39_vgm, // vector generate mask
22704 s39_vgmb, // vector generate mask byte
22705 s39_vgmf, // vector generate mask word
22706 s39_vgmg, // vector generate mask double word
22707 s39_vgmh, // vector generate mask halfword
22708 s39_vistr, // vector isolate string
22709 s39_vistrb, // vector isolate string byte
22710 s39_vistrbs, // vector isolate string byte
22711 s39_vistrf, // vector isolate string word
22712 s39_vistrfs, // vector isolate string word
22713 s39_vistrh, // vector isolate string halfword
22714 s39_vistrhs, // vector isolate string halfword
22715 s39_vl, // vector load
22716 s39_vlbb, // vector load to block boundary
22726 s39_vlc, // vector load complement
22727 s39_vlcb, // vector load complement byte
22728 s39_vlcf, // vector load complement word
22729 s39_vlcg, // vector load complement doubleword
22730 s39_vlch, // vector load complement halfword
22731 s39_vlde, // vector fp load lengthened
22732 s39_vldeb, // vector fp load lengthened short to long
22733 s39_vleb, // vector load byte element
22737 s39_vled, // vector fp load rounded
22738 s39_vledb, // vector fp load rounded long to short
22739 s39_vlef, // vector load element (32)
22740 s39_vleg, // vector load element (64)
22741 s39_vleh, // vector load element (16)
22742 s39_vleib, // vector load element immediate (8)
22743 s39_vleif, // vector load element immediate (32)
22744 s39_vleig, // vector load element immediate (64)
22745 s39_vleih, // vector load element immediate (16)
22750 s39_vlgv, // vector load gr from vr element
22751 s39_vlgvb, // vector load gr from vr byte element
22752 s39_vlgvf, // vector load gr from vr word element
22753 s39_vlgvg, // vector load gr from vr double word element
22754 s39_vlgvh, // vector load gr from vr halfword element
22755 s39_vlip, // vector load immediate decimal
22756 s39_vll, // vector load with length
22762 s39_vllez, // vector load logical element and zero
22763 s39_vllezb, // vector load logical byte element and zero
22764 s39_vllezf, // vector load logical word element and zero
22765 s39_vllezg, // vector load logical double word element and zero
22766 s39_vllezh, // vector load logical halfword element and zero
22767 s39_vllezlf, // vector load logical word element and zero - left aligned
22768 s39_vlm, // vector load multiple
22769 s39_vlp, // vector load positive
22770 s39_vlpb, // vector load positive byte
22771 s39_vlpf, // vector load positive word
22772 s39_vlpg, // vector load positive doubleword
22773 s39_vlph, // vector load positive halfword
22774 s39_vlr, // vector load
22775 s39_vlrep, // vector load and replicate
22776 s39_vlrepb, // vector load and replicate byte elements
22777 s39_vlrepf, // vector load and replicate word elements
22778 s39_vlrepg, // vector load and replicate double word elements
22779 s39_vlreph, // vector load and replicate halfword elements
22780 s39_vlrl, // vector load rightmost with immediate length
22781 s39_vlrlr, // vector load rightmost with immediate length
22782 s39_vlvg, // vector load VR element from GR
22783 s39_vlvgb, // vector load VR byte element from GR
22784 s39_vlvgf, // vector load VR word element from GR
22785 s39_vlvgg, // vector load VR double word element from GR
22786 s39_vlvgh, // vector load VR halfword element from GR
22787 s39_vlvgp, // vector load VR from GRs disjoint
22788 s39_vmae, // vector multiply and add even
22789 s39_vmaeb, // vector multiply and add even byte
22790 s39_vmaef, // vector multiply and add even word
22791 s39_vmaeh, // vector multiply and add even halfword
22792 s39_vmah, // vector multiply and add high
22793 s39_vmahb, // vector multiply and add high byte
22794 s39_vmahf, // vector multiply and add high word
22795 s39_vmahh, // vector multiply and add high halfword
22796 s39_vmal, // vector multiply and add low
22797 s39_vmalb, // vector multiply and add low byte
22798 s39_vmale, // vector multiply and add logical even
22799 s39_vmaleb, // vector multiply and add logical even byte
22800 s39_vmalef, // vector multiply and add logical even word
22801 s39_vmaleh, // vector multiply and add logical even halfword
22802 s39_vmalf, // vector multiply and add low word
22803 s39_vmalh, // vector multiply and add logical high
22804 s39_vmalhb, // vector multiply and add logical high byte
22805 s39_vmalhf, // vector multiply and add logical high word
22806 s39_vmalhh, // vector multiply and add logical high halfword
22807 s39_vmalhw, // vector multiply and add low halfword
22808 s39_vmalo, // vector multiply and add logical odd
22809 s39_vmalob, // vector multiply and add logical odd byte
22810 s39_vmalof, // vector multiply and add logical odd word
22811 s39_vmaloh, // vector multiply and add logical odd halfword
22812 s39_vmao, // vector multiply and add odd
22813 s39_vmaob, // vector multiply and add odd byte
22814 s39_vmaof, // vector multiply and add odd word
22815 s39_vmaoh, // vector multiply and add odd halfword
22816 s39_vme, // vector multiply even
22817 s39_vmeb, // vector multiply even byte
22818 s39_vmef, // vector multiply even word
22819 s39_vmeh, // vector multiply even halfword
22820 s39_vmh, // vector multiply high
22821 s39_vmhb, // vector multiply high byte
22822 s39_vmhf, // vector multiply high word
22823 s39_vmhh, // vector multiply high halfword
22824 s39_vml, // vector multiply low
22825 s39_vmlb, // vector multiply low byte
22826 s39_vmle, // vector multiply logical even
22827 s39_vmleb, // vector multiply logical even byte
22828 s39_vmlef, // vector multiply logical even word
22829 s39_vmleh, // vector multiply logical even halfword
22830 s39_vmlf, // vector multiply low word
22831 s39_vmlh, // vector multiply logical high
22832 s39_vmlhb, // vector multiply logical high byte
22833 s39_vmlhf, // vector multiply logical high word
22834 s39_vmlhh, // vector multiply logical high halfword
22835 s39_vmlhw, // vector multiply low halfword
22836 s39_vmlo, // vector multiply logical odd
22837 s39_vmlob, // vector multiply logical odd byte
22838 s39_vmlof, // vector multiply logical odd word
22839 s39_vmloh, // vector multiply logical odd halfword
22840 s39_vmn, // vector minimum
22841 s39_vmnb, // vector minimum byte
22842 s39_vmnf, // vector minimum word
22843 s39_vmng, // vector minimum doubleword
22844 s39_vmnh, // vector minimum halfword
22845 s39_vmnl, // vector minimum logical
22846 s39_vmnlb, // vector minimum logical byte
22847 s39_vmnlf, // vector minimum logical word
22848 s39_vmnlg, // vector minimum logical doubleword
22849 s39_vmnlh, // vector minimum logical halfword
22850 s39_vmo, // vector multiply odd
22851 s39_vmob, // vector multiply odd byte
22852 s39_vmof, // vector multiply odd word
22853 s39_vmoh, // vector multiply odd halfword
22854 s39_vmp, // vector multiply decimal
22855 s39_vmrh, // vector merge high
22856 s39_vmrhb, // vector merge high byte
22857 s39_vmrhf, // vector merge high word
22858 s39_vmrhg, // vector merge high double word
22859 s39_vmrhh, // vector merge high halfword
22860 s39_vmrl, // vector merge low
22861 s39_vmrlb, // vector merge low byte
22862 s39_vmrlf, // vector merge low word
22863 s39_vmrlg, // vector merge low double word
22864 s39_vmrlh, // vector merge low halfword
22865 s39_vmsl, // vector multiply sum logical
22866 s39_vmslg, // vector multiply sum logical double word
22867 s39_vmsp, // vector multiply and shift decimal
22868 s39_vmx, // vector maximum
22869 s39_vmxb, // vector maximum byte
22870 s39_vmxf, // vector maximum word
22871 s39_vmxg, // vector maximum doubleword
22872 s39_vmxh, // vector maximum halfword
22873 s39_vmxl, // vector maximum logical
22874 s39_vmxlb, // vector maximum logical byte
22875 s39_vmxlf, // vector maximum logical word
22876 s39_vmxlg, // vector maximum logical doubleword
22877 s39_vmxlh, // vector maximum logical halfword
22878 s39_vn, // vector and
22879 s39_vnc, // vector and with complement
22880 s39_vnn, // vector nand
22881 s39_vno, // vector nor
22882 s39_vnot, // vector not
22883 s39_vnx, // vector not exclusive or
22884 s39_vo, // vector or
22885 s39_voc, // vector or with complement
22886 s39_vone, // vector set to ones
22887 s39_vpdi, // vector permute double word immediate
22888 s39_vperm, // vector permute
22889 s39_vpk, // vector pack
22890 s39_vpkf, // vector pack word
22891 s39_vpkg, // vector pack double word
22892 s39_vpkh, // vector pack halfword
22893 s39_vpkls, // vector pack logical saturate
22894 s39_vpklsf, // vector pack logical saturate word
22895 s39_vpklsfs, // vector pack logical saturate word
22896 s39_vpklsg, // vector pack logical saturate double word
22897 s39_vpklsgs, // vector pack logical saturate double word
22898 s39_vpklsh, // vector pack logical saturate halfword
22899 s39_vpklshs, // vector pack logical saturate halfword
22900 s39_vpks, // vector pack saturate
22901 s39_vpksf, // vector pack saturate word
22902 s39_vpksfs, // vector pack saturate word
22903 s39_vpksg, // vector pack saturate double word
22904 s39_vpksgs, // vector pack saturate double word
22905 s39_vpksh, // vector pack saturate halfword
22906 s39_vpkshs, // vector pack saturate halfword
22907 s39_vpkz, // vector pack zoned
22908 s39_vpopct, // vector population count
22909 s39_vpopctb, // vector population count byte
22910 s39_vpopctf, // vector population count word
22911 s39_vpopctg, // vector population count double word
22912 s39_vpopcth, // vector population count halfword
22913 s39_vpsop, // vector perform sign operation decimal
22914 s39_vrep, // vector replicate
22915 s39_vrepb, // vector replicate byte
22916 s39_vrepf, // vector replicate word
22917 s39_vrepg, // vector replicate double word
22918 s39_vreph, // vector replicate halfword
22919 s39_vrepi, // vector replicate immediate
22920 s39_vrepib, // vector replicate immediate byte
22921 s39_vrepif, // vector replicate immediate word
22922 s39_vrepig, // vector replicate immediate double word
22923 s39_vrepih, // vector replicate immediate halfword
22924 s39_vrp, // vector remainder decimal
22925 s39_vs, // vector subtract
22926 s39_vsb, // vector subtract byte
22927 s39_vsbcbi, // vector subtract with borrow compute borrow indication
22928 s39_vsbcbiq, // vector subtract with borrow compute borrow indication quadword
22929 s39_vsbi, // vector subtract with borrow indication
22930 s39_vsbiq, // vector subtract with borrow indication quadword
22931 s39_vscbi, // vector subtract compute borrow indication
22932 s39_vscbib, // vector subtract compute borrow indication byte
22933 s39_vscbif, // vector subtract compute borrow indication word
22934 s39_vscbig, // vector subtract compute borrow indication doubleword
22935 s39_vscbih, // vector subtract compute borrow indication halfword
22936 s39_vscbiq, // vector subtract compute borrow indication quadword
22937 s39_vscef, // vector scatter element (32)
22938 s39_vsceg, // vector scatter element (64)
22939 s39_vsdp, // vector shift and divide decimal
22940 s39_vseg, // vector sign extend to double word
22941 s39_vsegb, // vector sign extend byte to double word
22942 s39_vsegf, // vector sign extend word to double word
22943 s39_vsegh, // vector sign extend halfword to double word
22944 s39_vsel, // vector select
22945 s39_vsf, // vector subtract word
22946 s39_vsg, // vector subtract doubleword
22947 s39_vsh, // vector subtract halfword
22948 s39_vsl, // vector shift left
22949 s39_vslb, // vector shift left by byte
22951 s39_vsldb, // vector shift left double by byte
22952 s39_vsp, // vector subtract decimal
22953 s39_vsq, // vector subtract quadword
22954 s39_vsra, // vector shift right arithmetic
22955 s39_vsrab, // vector shift right arithmetic by byte
22957 s39_vsrl, // vector shift right logical
22958 s39_vsrlb, // vector shift right logical by byte
22959 s39_vsrp, // vector shift and round decimal
22960 s39_vst, // vector store
22966 s39_vsteb, // vector store element (8)
22970 s39_vstef, // vector store element (32)
22971 s39_vsteg, // vector store element (64)
22972 s39_vsteh, // vector store element (16)
22977 s39_vstl, // vector store with length
22978 s39_vstm, // vector store multiple
22979 s39_vstrc, // vector string range compare
22980 s39_vstrcb, // vector string range compare byte
22981 s39_vstrcbs, // vector string range compare byte
22982 s39_vstrcf, // vector string range compare word
22983 s39_vstrcfs, // vector string range compare word
22984 s39_vstrch, // vector string range compare halfword
22985 s39_vstrchs, // vector string range compare halfword
22986 s39_vstrczb, // vector string range compare byte
22987 s39_vstrczbs, // vector string range compare byte
22988 s39_vstrczf, // vector string range compare word
22989 s39_vstrczfs, // vector string range compare word
22990 s39_vstrczh, // vector string range compare halfword
22991 s39_vstrczhs, // vector string range compare halfword
22992 s39_vstrl, // vector store rightmost with length
22993 s39_vstrlr, // vector store rightmost with length
23001 s39_vsum, // vector sum across word
23002 s39_vsumb, // vector sum across word - byte elements
23003 s39_vsumg, // vector sum across doubleword
23004 s39_vsumgf, // vector sum across doubleword - word
23005 s39_vsumgh, // vector sum across doubleword - halfword
23006 s39_vsumh, // vector sum across word - halfword elements
23007 s39_vsumq, // vector sum across quadword
23008 s39_vsumqf, // vector sum across quadword - word elements
23009 s39_vsumqg, // vector sum across quadword - doubleword elements
23010 s39_vtm, // vector test under mask
23011 s39_vtp, // vector test decimal
23012 s39_vuph, // vector unpack high
23013 s39_vuphb, // vector unpack high byte
23014 s39_vuphf, // vector unpack high word
23015 s39_vuphh, // vector unpack high halfword
23016 s39_vupkz, // vector unpack zoned
23017 s39_vupl, // vector unpack low
23018 s39_vuplb, // vector unpack low byte
23019 s39_vuplf, // vector unpack low word
23020 s39_vuplh, // vector unpack logical high
23021 s39_vuplhb, // vector unpack logical high byte
23022 s39_vuplhf, // vector unpack logical high word
23023 s39_vuplhh, // vector unpack logical high halfword
23024 s39_vuplhw, // vector unpack low halfword
23025 s39_vupll, // vector unpack logical low
23026 s39_vupllb, // vector unpack logical low byte
23027 s39_vupllf, // vector unpack logical low word
23028 s39_vupllh, // vector unpack logical low halfword
23029 s39_vzero, // vector set to zero
23030 s39_wcdgb, // vector fp convert from fixed 64 bit
23031 s39_wcdlgb, // vector fp convert from logical 64 bit
23035 s39_wcgdb, // vector fp convert to fixed 64 bit
23037 s39_wclgdb, // vector fp convert to logical 64 bit
23038 s39_wfadb, // vector fp add long
23039 s39_wfasb, // scalar vector fp add scalar short
23040 s39_wfaxb, // scalar vector fp add scalar extended
23041 s39_wfc, // vector fp compare scalar
23042 s39_wfcdb, // vector fp compare scalar long
23043 s39_wfcedb, // vector fp compare equal long
23044 s39_wfcedbs, // vector fp compare equal long
23045 s39_wfcesb, // scalar vector fp compare equal scalar short
23046 s39_wfcesbs, // scalar fp compare equal scalar short
23047 s39_wfcexb, // scalar vector fp compare equal scalar extended
23048 s39_wfcexbs, // scalar vector fp compare equal scalar extended
23049 s39_wfchdb, // vector fp compare high long
23050 s39_wfchdbs, // vector fp compare high long
23051 s39_wfchedb, // vector fp compare high or equal long
23052 s39_wfchedbs, // vector fp compare high or equal long
23053 s39_wfchesb, // scalar vector fp compare high or equal scalar short
23054 s39_wfchesbs, // scalar vector fp compare high or equal scalar short
23055 s39_wfchexb, // scalar vector fp compare high or equal scalar extended
23056 s39_wfchexbs, // scalar vector fp compare high or equal scalar extended
23057 s39_wfchsb, // scalar vector fp compare high scalar short
23058 s39_wfchsbs, // scalar vector fp compare high scalar short
23059 s39_wfchxb, // scalar vector fp compare high scalar extended
23060 s39_wfchxbs, // scalar vector fp compare high scalar extended
23061 s39_wfcsb, // scalar vector fp compare scalar short
23062 s39_wfcxb, // scalar vector fp compare scalar extended
23063 s39_wfddb, // vector fp divide long
23064 s39_wfdsb, // scalar vector fp divide scalar short
23065 s39_wfdxb, // scalar vector fp divide scalar extended
23066 s39_wfidb, // vector load fp integer long
23067 s39_wfisb, // scalar vector load fp integer scalar short
23068 s39_wfixb, // scalar vector load fp integer scalar extended
23069 s39_wfk, // vector fp compare and signal scalar
23070 s39_wfkdb, // vector fp compare and signal scalar long
23071 s39_wfkedb, // vector fp compare and signal equal long
23072 s39_wfkedbs, // vector fp compare and signal equal long
23073 s39_wfkesb, // scalar vector fp compare and signal equal scalar short
23074 s39_wfkesbs, // scalar fp compare and signal equal scalar short
23075 s39_wfkexb, // scalar vector fp compare and signal equal scalar extended
23076 s39_wfkexbs, // scalar vector fp compare and signal equal scalar extended
23077 s39_wfkhdb, // vector fp compare and signal high long
23078 s39_wfkhdbs, // vector fp compare and signal high long
23079 s39_wfkhedb, // vector fp compare and signal high or equal long
23080 s39_wfkhedbs, // vector fp compare and signal high or equal long
23081 s39_wfkhesb, // scalar vector fp compare and signal high or equal scalar short
23082 s39_wfkhesbs, // scalar vector fp compare and signal high or equal scalar short
23083 s39_wfkhexb, // scalar vector fp compare and signal high or equal scalar extended
23084 s39_wfkhexbs, // scalar vector fp compare and signal high or equal scalar extended
23085 s39_wfkhsb, // scalar vector fp compare and signal high scalar short
23086 s39_wfkhsbs, // scalar vector fp compare and signal high scalar short
23087 s39_wfkhxb, // scalar vector fp compare and signal high scalar extended
23088 s39_wfkhxbs, // scalar vector fp compare and signal high scalar extended
23089 s39_wfksb, // scalar vector fp compare and signal scalar short
23090 s39_wfkxb, // scalar vector fp compare and signal scalar extended
23091 s39_wflcdb, // vector fp perform sign operation long
23092 s39_wflcsb, // scalar vector fp perform sign operation scalar short
23093 s39_wflcxb, // scalar vector fp perform sign operation scalar extended
23094 s39_wflld, // scalar vector fp load lengthened long
23095 s39_wflls, // scalar vector fp load lengthened short
23096 s39_wflndb, // vector fp perform sign operation long
23097 s39_wflnsb, // scalar vector fp perform sign operation scalar short
23098 s39_wflnxb, // scalar vector fp perform sign operation scalar extended
23099 s39_wflpdb, // vector fp perform sign operation long
23100 s39_wflpsb, // scalar vector fp perform sign operation scalar short
23101 s39_wflpxb, // scalar vector fp perform sign operation scalar extended
23102 s39_wflrd, // scalar vector fp load rounded long
23103 s39_wflrx, // scalar vector fp load rounded extended
23104 s39_wfmadb, // vector fp multiply and add long
23105 s39_wfmasb, // scalar vector fp multiply and add scalar short
23106 s39_wfmaxb, // scalar vector fp multiply and add scalar extended
23107 s39_wfmaxdb, // scalar fp maximum scalar long
23108 s39_wfmaxsb, // scalar fp maximum scalar short
23109 s39_wfmaxxb, // scalar fp maximum scalar extended
23110 s39_wfmdb, // vector fp multiply long
23111 s39_wfmindb, // scalar fp minimum scalar long
23112 s39_wfminsb, // scalar fp minimum scalar short
23113 s39_wfminxb, // scalar fp minimum scalar extended
23114 s39_wfmsb, // scalar vector fp multiply scalar short
23115 s39_wfmsdb, // vector fp multiply and subtract long
23116 s39_wfmssb, // scalar vector fp multiply and subtract scalar short
23117 s39_wfmsxb, // scalar vector fp multiply and subtract scalar extended
23118 s39_wfmxb, // scalar vector fp multiply scalar extended
23119 s39_wfnmadb, // scalar vector fp negative multiply and add scalar long
23120 s39_wfnmasb, // scalar vector fp negative multiply and add scalar short
23121 s39_wfnmaxb, // scalar vector fp negative multiply and add scalar extended
23122 s39_wfnmsdb, // scalar vector fp negative multiply and subtract scalar long
23123 s39_wfnmssb, // scalar vector fp negative multiply and subtract scalar short
23124 s39_wfnmsxb, // scalar vector fp negative multiply and subtract scalar extended
23125 s39_wfpsodb, // vector fp perform sign operation long
23126 s39_wfpsosb, // scalar vector fp perform sign operation scalar short
23127 s39_wfpsoxb, // scalar vector fp perform sign operation scalar extended
23128 s39_wfsdb, // vector fp subtract long
23129 s39_wfsqdb, // vector fp square root long
23130 s39_wfsqsb, // scalar vector fp square root scalar short
23131 s39_wfsqxb, // scalar vector fp square root scalar extended
23132 s39_wfssb, // scalar vector fp subtract scalar short
23133 s39_wfsxb, // scalar vector fp subtract scalar extended
23134 s39_wftcidb, // vector fp test data class immediate
23135 s39_wftcisb, // scalar vector fp test data class immediate scalar short
23136 s39_wftcixb, // scalar vector fp test data class immediate scalar extended
23137 s39_wldeb, // vector fp load lengthened short to long
23138 s39_wledb, // vector fp load rounded long to short
23139 s39_x, // exclusive or (32)
23140 s39_xc, // exclusive or (character)
23141 s39_xg, // exclusive or (64)
23142 s39_xgr, // exclusive or (64)
23143 s39_xgrk, // exclusive or (64)
23144 s39_xi, // exclusive or (immediate)
23145 s39_xihf, // exclusive or immediate (high)
23146 s39_xilf, // exclusive or immediate (low)
23147 s39_xiy, // exclusive or immediate (immediate)
23148 s39_xr, // exclusive or (32)
23149 s39_xrk, // exclusive or (32)
23150 s39_xsch, // cancel subchannel
23151 s39_xy, // exclusive or with long offset
23152 s39_zap, // zero and add
23153 s39_vx, // vector exclusive or
23155};
23156
23157/*
23158 * Interactive disassembler (IDA).
23159 * Copyright (c) 1990-2025 Hex-Rays
23160 * ALL RIGHTS RESERVED.
23161 *
23162 * Risc-V module
23163 *
23164 */
23165
23166
23167
23168enum
23169{
23170 RISCV_null = 0, // Unknown Operation
23171
23172 // Set 32 bits
23173 // I(nteger) extension
23174 RISCV_lui, // Load Upper Immediate
23175 RISCV_auipc, // Add Upper Immediate to pc
23176 RISCV_jal, // Jump and link
23177 RISCV_jalr, // Jump register rs1 & write pc +2 in rs1
23178 RISCV_beq, // Branch on equal
23179 RISCV_bne, // Branch not equal
23180 RISCV_blt, // Branch less than
23181 RISCV_bge, // Branch greater or equal
23182 RISCV_bltu, // Branch less than unsigned
23183 RISCV_bgeu, // Branch greater or equal unsigned
23184 RISCV_lb, // Load byte
23185 RISCV_lh, // Load halfword
23186 RISCV_lw, // Load word
23187 RISCV_lbu, // Load byte unsigned
23188 RISCV_lhu, // Load halfword unsigned
23189 RISCV_sb, // Store byte
23190 RISCV_sh, // Store halfword
23191 RISCV_sw, // Store word
23192 RISCV_addi, // Add immediate
23193 RISCV_slti, // Set less than immediate
23194 RISCV_sltiu, // Set less than immediate unsigned
23195 RISCV_xori, // Xor immediate
23196 RISCV_ori, // Or immediate
23197 RISCV_andi, // And Immediate
23198 RISCV_slli, // Shift left logical immediate
23199 RISCV_srli, // Shift right logical immediate
23200 RISCV_srai, // Shift right arithmetical immediate
23201 RISCV_add, // Add integer
23202 RISCV_sub, // Substract integer
23203 RISCV_sll, // Shift left logical
23204 RISCV_slt, // Set Less Than
23205 RISCV_sltu, // Set Less Than unsigned
23206 RISCV_xor, // eXclusive Or
23207 RISCV_srl, // Shift right logical
23208 RISCV_sra, // Shift right arithmetical
23211 RISCV_fence, // Fence
23212 RISCV_ecall, // Ecall
23213 RISCV_ebreak, // Ebreak
23214 RISCV_uret, // User lvl return
23215 RISCV_sret, // Supervisor lvl return
23216 RISCV_mret, // Machine lvl return
23217 RISCV_wfi, // Wait for interrupt
23218 RISCV_sfence, // Supervisor fence
23219 RISCV_hfenceb, // Hypervisor fence b
23220 RISCV_hfenceg, // Hypervisor fence g
23221 // Set 64 bits
23222 // Integer extension
23223 RISCV_lwu, // Load word unsigned
23224 RISCV_ld, // Load double
23225 RISCV_sd, // Store double
23226 RISCV_addiw, // Add immediate word
23227 RISCV_slliw, // Shift left logical immediate word
23228 RISCV_srliw, // Shift right logical immediate word
23229 RISCV_sraiw, // Shift right arithmetical immediate word
23230 RISCV_addw, // Add integer word
23231 RISCV_subw, // Substract integer word
23232 RISCV_sllw, // Shift left logical word
23233 RISCV_sltw, // Set Less Than word
23234 RISCV_srlw, // Shift right logical word
23235 RISCV_sraw, // Shift right arithmetical word
23236 // Zifencei Standard extension
23237 RISCV_fencei, // Fence immediate
23238 // Zicsr Standard extension
23239 RISCV_csrrw, // Atomic Read Write CSR
23240 RISCV_csrrs, // Atomic Read and Set bit CSR
23241 RISCV_csrrc, // Atomic Read and clear bit CSR
23242 RISCV_csrrwi, // Atomic Read Write CSR immediate
23243 RISCV_csrrsi, // Atomic Read and Set bit CSR immediate
23244 RISCV_csrrci, // Atomic Read and clear bit CSR immediate
23245 // M(ultiplication and divison for integer) extension
23246 RISCV_mul, // Multiplication
23247 RISCV_mulh, // Multiplication half (signed signed)
23248 RISCV_mulhsu, // Multiplication half (signed unsigned)
23249 RISCV_mulhu, // Multiplication half (unsigned unsigned)
23250 RISCV_div, // Division
23251 RISCV_divu, // Division unsigned
23252 RISCV_rem, // Remainder of div
23253 RISCV_remu, // Remainder of div unsigned
23254 // 64b M(ultiplication and divison for integer) extension
23255 RISCV_mulw, // Multiplication word
23256 RISCV_divw, // Division word
23257 RISCV_divuw, // Division unsigned word
23258 RISCV_remw, // Remainder of div word
23259 RISCV_remuw, // Remainder of div unsigned word
23260 // A(tomic) operation standtard extension
23261 RISCV_lr, // Load reserved
23262 RISCV_sc, // Store conditional
23263 RISCV_amoswap, // Atomic memory operation swap
23264 RISCV_amoadd, // Atomic memory operation add
23265 RISCV_amoxor, // Atomic memory operation xop
23266 RISCV_amoand, // Atomic memory operation and
23267 RISCV_amoor, // Atomic memory operation or
23268 RISCV_amomin, // Atomic memory operation min
23269 RISCV_amomax, // Atomic memory operation max
23270 RISCV_amominu, // Atomic memory operation min unsigned
23271 RISCV_amomaxu, // Atomic memory operation max unsigned
23272 // Zacas extension
23273 RISCV_amocas, // Atomic compare and swap
23274 // simple precision F(loat) instruction extension
23275 RISCV_flw, // Load word (32b)
23276 RISCV_fsw, // Store word (32b)
23277 RISCV_fmadd, // Multiply then add
23278 RISCV_fmsub, // Multiply then substract
23279 RISCV_fnmsub, // Multiply then negate then substract
23280 RISCV_fnmadd, // Multiply then negate then add
23281 RISCV_fadd, // Float addition
23282 RISCV_fsub, // Float substraction
23283 RISCV_fmul, // Float multiplication
23284 RISCV_fdiv, // Float division
23285 RISCV_fsqrt, // Float square root
23286 RISCV_fsgnj, // Float sign injection
23287 RISCV_fsgnjn, // Float sign injection negate
23288 RISCV_fsgnjx, // Float sign injection xor between operands
23289 RISCV_fmin, // Float minimum
23290 RISCV_fmax, // Float maximum
23291 RISCV_fcvtf2f, // F2F conve
23292 RISCV_fcvtf2i, // F2I conve
23293 RISCV_fcvti2f, // I2F conve
23295 RISCV_feq, // Float equal
23296 RISCV_flt, // Float less than
23297 RISCV_fle, // Float less or equal than
23298 RISCV_fclass, // Classify the float
23299 // 64b simple precision F(loat) instruction extension
23300 // D(ouble) precision float instruction extension
23301 RISCV_fld, // Load double (64b)
23302 RISCV_fsd, // Store double (64b)
23303 // 64b D(ouble) precision float instruction
23304 // Q(uadruple) precision float instruction extension
23305 RISCV_flq, // Load quadruple (128b)
23306 RISCV_fsq, // Store quadruple (128b)
23307 // 64b Q(uadruple) precision float extension
23308 // pseudo insn
23309 RISCV_nop, // No operation
23310 RISCV_li, // Load Immediate
23311 RISCV_mv, // Copy register
23312 RISCV_not, // One's complement
23313 RISCV_neg, // Two's complement
23314 RISCV_negw, // Two's complement word
23315 RISCV_sext, // Sign extend word
23316 RISCV_seqz, // Set if = zero
23317 RISCV_snez, // Set if != zero
23318 RISCV_sltz, // Set if < zero
23319 RISCV_sgtz, // Set if > zero
23320 RISCV_fabs, // Float absolute value
23321 RISCV_fneg, // Float negate
23322 RISCV_beqz, // Branch == 0
23323 RISCV_bnez, // Branch != 0
23324 RISCV_blez, // Branch <= 0
23325 RISCV_bgez, // Branch >= 0
23326 RISCV_bltz, // Branch < 0
23327 RISCV_bgtz, // Branch > 0
23328 RISCV_j, // Jump
23329 RISCV_jr, // Jump register
23330 RISCV_ret, // Return
23331 RISCV_rdinstret, // Read instructions-retired counter
23332 RISCV_rdcycle, // Read cycle counter
23333 RISCV_rdtime, // Read real-time clock
23334 RISCV_rdinstreth, // Read instructions-retired counter Upper 32 bits
23335 RISCV_rdcycleh, // Read cycle counter Upper 32 bits
23336 RISCV_rdtimeh, // Read real-time clock Upper 32 bits
23337 RISCV_csrr, // Read CSR
23338 RISCV_csrw, // Write CSR
23339 RISCV_csrs, // Set bit CSR
23340 RISCV_csrc, // Clear bit
23341 RISCV_csrwi, // Write CSR immediate
23342 RISCV_csrsi, // Set bit CSR immediate
23343 RISCV_csrci, // Clear bit CSR immediate
23344 RISCV_frcsr, // Read FP control/status register
23345 RISCV_fscsr, // Write/Swap FP control/status register
23346 RISCV_frrm, // Read FP rounding mode
23347 RISCV_fsrm, // Write/Swap FP rounding mode
23348 RISCV_frflags, // Read FP exception flags
23349 RISCV_fsflags, // Write/Swap FP exception flags
23350 // Macro
23351 RISCV_la, // Load Address macro
23352 RISCV_call, // Call macro
23353 RISCV_tail, // Tail macro
23354 RISCV_jump, // Jump macro
23355 // Vector extension
23356 RISCV_vsetvl, // Set vector length rd = new vl, rs1 = AVL, rs2 = new vtype value
23357 RISCV_vsetvli, // Set vector length vtype immediate
23358 RISCV_vsetivli, // Set vector length avl immediate and vtype immediate
23359 RISCV_vl, // Vector load
23360 RISCV_vs, // Vector store
23361 // Vector extention op I(nteger)
23362 RISCV_vadd, // Vector add
23363 RISCV_vsub, // Vector sub
23364 RISCV_vrsub, // Vector reverse substract
23365 RISCV_vminu, // Vector unsigned minimum
23366 RISCV_vmin, // Vector signed minimum
23367 RISCV_vmaxu, // Vector unsigned maximum
23368 RISCV_vmax, // Vector signed maximum
23369 RISCV_vand, // Vector bitwise logical and
23370 RISCV_vor, // Vector bitwise logical or
23371 RISCV_vxor, // Vector bitwise logical xor
23372 RISCV_vrgather, // Vector register gather
23373 RISCV_vslideup, // Vector slide up
23374 RISCV_vrgatherei16, // Vector register gather
23375 RISCV_vslidedown, // Vector slide down
23376 RISCV_vadc, // Vector produce sum with carry
23377 RISCV_vmadc, // Vector produce carry out in mask register format
23378 RISCV_vsbc, // Vector produce difference with borrow
23379 RISCV_vmsbc, // Vector produce borrow out in mask register format
23380 RISCV_vmerge, // Vector integer merge
23381 RISCV_vmv, // Vector integer move
23382 RISCV_vmseq, // Vector set if equal
23383 RISCV_vmsne, // Vector set if not equal
23384 RISCV_vmsltu, // Vector set if less than, unsigned
23385 RISCV_vmslt, // Vector set if less than, signed
23386 RISCV_vmsleu, // Vector set if less than or equal, unsigned
23387 RISCV_vmsle, // Vector set if less than or equal, signed
23388 RISCV_vmsgtu, // Vector set if greater than, unsigned
23389 RISCV_vmsgt, // Vector set if greater than, signed
23390 RISCV_vsaddu, // Vector saturating adds of unsigned integers
23391 RISCV_vsadd, // Vector saturating adds of signed integers
23392 RISCV_vssubu, // Vector saturating subtract of unsigned integers
23393 RISCV_vssub, // Vector saturating subtract of signed integers
23394 RISCV_vsll, // Vector bit shift left logical
23395 RISCV_vsmul, // Vector signed saturating and rounding fractional multiply
23396 RISCV_vmvr, // Vector whole register move <nbr> reg
23397 RISCV_vsrl, // Vector bit shift right logical
23398 RISCV_vsra, // Vector bit shift right arithmetic
23399 RISCV_vssrl, // Vector scaling shift right logical
23400 RISCV_vssra, // Vector scaling shift right arithmetic
23401 RISCV_vnsrl, // Vector narrowing shift right logical, SEW = (2*SEW) >> SEW
23402 RISCV_vnsra, // Vector narrowing shift right arithmetic, SEW = (2*SEW) >> SEW
23403 RISCV_vnclipu, // Vector narrowing unsigned clip
23404 RISCV_vnclip, // Vector narrowing signed clip
23405 RISCV_vwredsumu, // Vector unsigned sum reduction into double-width accumulator
23406 RISCV_vwredsum, // Vector signed sum reduction into double-width accumulator
23407 // Vector extention op M(ultiplication and divison for integer)
23408 RISCV_vredsum, // Vector single-width reduction sum
23409 RISCV_vredand, // Vector single-width reduction and
23410 RISCV_vredor, // Vector single-width reduction or
23411 RISCV_vredxor, // Vector single-width reduction xor
23412 RISCV_vredminu, // Vector single-width reduction min unsigned
23413 RISCV_vredmin, // Vector single-width reduction min
23414 RISCV_vredmaxu, // Vector single-width reduction max unsigned
23415 RISCV_vredmax, // Vector single-width reduction max
23416 RISCV_vaaddu, // Vector averaging adds of unsigned integers
23417 RISCV_vaadd, // Vector averaging adds of signed integers
23418 RISCV_vasubu, // Vector averaging subtract of unsigned integers
23419 RISCV_vasub, // Vector averaging subtract of signed integers
23420 RISCV_vslide1up, // Vector integer slide one element up
23421 RISCV_vslide1down, // Vector integer slide one element down
23422 RISCV_vcpop, // Vector count population in mask
23423 RISCV_vfirst, // Vector find-first-set mask bit
23424 RISCV_vmvi, // Vector integer scalar move
23425 RISCV_vzext, // Vector zero extend
23426 RISCV_vsext, // Vector sign extend
23427 RISCV_vmsbf, // Vector Vector set-before-first mask bit
23428 RISCV_vmsof, // Vector Vector set-only-first mask bit
23429 RISCV_vmsif, // Vector Vector set-including-first mask bit
23430 RISCV_viota, // Vector Vector iota
23431 RISCV_vid, // Vector Vector element index
23432 RISCV_vcompress, // Vector compress
23433 RISCV_vmandn, // Vector mask-register not(vs2.mask[i] and vs1.mask[i])
23434 RISCV_vmand, // Vector mask-register (vs2.mask[i] and vs1.mask[i])
23435 RISCV_vmor, // Vector mask-register (vs2.mask[i] or vs1.mask[i])
23436 RISCV_vmxor, // Vector mask-register (vs2.mask[i] xor vs1.mask[i])
23437 RISCV_vmorn, // Vector mask-register not(vs2.mask[i] or vs1.mask[i])
23438 RISCV_vmnand, // Vector mask-register not(vs2.mask[i] and vs1.mask[i])
23439 RISCV_vmnor, // Vector mask-register not(vs2.mask[i] or vs1.mask[i])
23440 RISCV_vmxnor, // Vector mask-register not(vs2.mask[i] xor vs1.mask[i])
23441 RISCV_vdivu, // Vector unsigned divide
23442 RISCV_vdiv, // Vector signed divide
23443 RISCV_vremu, // Vector unsigned remainder
23444 RISCV_vrem, // Vector signed remainder
23445 RISCV_vmulhu, // Vector unsigned multiply, returning high bits of product
23446 RISCV_vmul, // Vector signed multiply, returning low bits of product
23447 RISCV_vmulhsu, // Vector signed-unsigned multiply, returning high bits of product
23448 RISCV_vmulh, // Vector signed multiply, returning high bits of product
23449 RISCV_vmadd, // Vector integer multiply-add, overwrite multiplicand
23450 RISCV_vnmsub, // Vector integer multiply-sub, overwrite multiplicand
23451 RISCV_vmacc, // Vector integer multiply-add, overwrite addend
23452 RISCV_vnmsac, // Vector integer multiply-sub, overwrite minuend
23453 RISCV_vwaddu, // Vector widening unsigned integer add , 2*SEW = SEW +/- SEW
23454 RISCV_vwadd, // Vector widening signed integer add , 2*SEW = SEW +/- SEW
23455 RISCV_vwsubu, // Vector widening unsigned integer substract , 2*SEW = SEW +/- SEW
23456 RISCV_vwsub, // Vector widening signed integer substract , 2*SEW = SEW +/- SEW
23457 RISCV_vwadduw, // Vector widening unsigned integer add , 2*SEW = 2*SEW +/- SEW
23458 RISCV_vwaddw, // Vector widening signed integer add , 2*SEW = 2*SEW +/- SEW
23459 RISCV_vwsubuw, // Vector widening unsigned integer substract , 2*SEW = 2*SEW +/- SEW
23460 RISCV_vwsubw, // Vector widening signed integer substract , 2*SEW = 2*SEW +/- SEW
23461 RISCV_vwmulu, // Vector widening unsigned-integer multiply
23462 RISCV_vwmulsu, // Vector widening signed(vs2)-unsigned integer multiply
23463 RISCV_vwmul, // Vector widening signed-integer multiply
23464 RISCV_vwmaccu, // Vector widening unsigned-integer multiply-add, overwrite addend
23465 RISCV_vwmacc, // Vector widening signed-integer multiply-add, overwrite addend
23466 RISCV_vwmaccus, // Vector widening unsigned-signed-integer multiply-add, overwrite addend
23467 RISCV_vwmaccsu, // Vector widening signed-unsigned-integer multiply-add, overwrite addend
23468 // Vector extention op F(loat)
23469 RISCV_vfadd, // Vector floating-point add
23470 RISCV_vfredusum, // Vector fp simple-width reductions unordered sum
23471 RISCV_vfsub, // Vector floating-point subtract
23472 RISCV_vfredosum, // Vector fp simple-width reductions ordered sum
23473 RISCV_vfmin, // Vector floating-point minimum
23474 RISCV_vfredmin, // Vector fp simple-width reductions minimum value
23475 RISCV_vfmax, // Vector floating-point maximum
23476 RISCV_vfredmax, // Vector fp simple-width reductions maximum value
23477 RISCV_vfsgnj, // Vector sign injection
23478 RISCV_vfsgnjn, // Vector sign injection negated
23479 RISCV_vfsgnjx, // Vector sign injection xor
23480 RISCV_vfslide1up, // Vector fp slide one element up
23481 RISCV_vfslide1down, // Vector fp slide one element down
23482 RISCV_vfmov, // Vector floating-point scalar move
23483 RISCV_vfcvt, // Vector convert float to integer / integer to float
23484 RISCV_vfwcvt, // Vector convert single width float/integer to double-width integer/float
23485 RISCV_vfncvt, // Vector convert double-width float/integer to single width float/integer
23486 RISCV_vfsqrt, // Vector floating-point square root
23487 RISCV_vfrsqrt7, // Vector floating-point reciprocal square-root estimate to 7 bits
23488 RISCV_vfrec7, // Vector floating-point reciprocal estimate to 7 bits
23489 RISCV_vfclass, // Vector classification of float
23490 RISCV_vfmerge, // Vector floating-point merge
23491 RISCV_vfmv, // Vector floating-point move
23492 RISCV_vmfeq, // Vector fp compare equal
23493 RISCV_vmfle, // Vector fp compare less than or equal
23494 RISCV_vmflt, // Vector fp compare less than
23495 RISCV_vmfne, // Vector fp compare not equal
23496 RISCV_vmfgt, // Vector fp compare greater than
23497 RISCV_vmfge, // Vector fp compare greater than or equal
23498 RISCV_vfdiv, // Vector floating-point divide
23499 RISCV_vfrdiv, // Vector floating-point reverse divide
23500 RISCV_vfmul, // Vector floating-point multiply
23501 RISCV_vfrsub, // Vector floating-point reverse subtract
23502 RISCV_vfmadd, // Vector fp multiply-add, overwrites multiplicand
23503 RISCV_vfnmadd, // Vector fp negate-(multiply-add), overwrites multiplicand
23504 RISCV_vfmsub, // Vector fp multiply-sub, overwrites multiplicand
23505 RISCV_vfnmsub, // Vector fp negate-(multiply-sub), overwrites multiplicand
23506 RISCV_vfmacc, // Vector fp multiply-accumulate, overwrites addend
23507 RISCV_vfnmacc, // Vector fp negate-(multiply-accumulate), overwrites subtrahend
23508 RISCV_vfmsac, // Vector fp multiply-subtract-accumulator, overwrites subtrahend
23509 RISCV_vfnmsac, // Vector fp negate-(multiply-subtract-accumulator), overwrites minuend
23510 RISCV_vfwadd, // Vector widening fp add 2*SEW = SEW +/- SEW
23511 RISCV_vfwredusum, // Vector fp widened reduction unordered sum
23512 RISCV_vfwsub, // Vector widening fp substract 2*SEW = SEW +/- SEW
23513 RISCV_vfwredosum, // Vector fp widened reduction ordered sum
23514 RISCV_vfwaddw, // Vector widening fp add 2*SEW = 2*SEW +/- SEW
23515 RISCV_vfwsubw, // Vector widening fp substract 2*SEW = 2*SEW +/- SEW
23516 RISCV_vfwmul, // Vector widening floating-point multiply
23517 RISCV_vfwmacc, // Vector fp widening multiply-accumulate, overwrites addend
23518 RISCV_vfwnmacc, // Vector fp widening negate-(multiply-accumulate), overwrites addend
23519 RISCV_vfwmsac, // Vector fp widening multiply-subtract-accumulator, overwrites addend
23520 RISCV_vfwnmsac, // Vector fp widening negate-(multiply-subtract-accumulator), overwrites addend
23521 // Pseudo vector instruction
23522 RISCV_vneg, // Vector negate
23523 RISCV_vwcvt, // Vector double width signed
23524 RISCV_vwcvtu, // Vector double width unsigned
23525 RISCV_vnot, // Vector not
23526 RISCV_vncvt, // Vector half width
23527 RISCV_vfneg, // Vector floating point negate
23528 RISCV_vfabs, // Vector floating point absolute
23529 RISCV_vmmv, // Vector copy mask register
23530 RISCV_vmclr, // Vector clear mask register
23531 RISCV_vmset, // Vector set mask register
23532 RISCV_vmnot, // Vector invert bits
23533 // Bits manipulations instructions
23534 RISCV_andn, // And with inverted operand rs2
23535 RISCV_bclr, // Single-bit clear (register)
23536 RISCV_bclri, // Single-bit clear (immediate)
23537 RISCV_bext, // Single-bit extract (register)
23538 RISCV_bexti, // Single-bit extract (immediate)
23539 RISCV_binv, // Single-bit invert (register)
23540 RISCV_binvi, // Single-bit invert (immediate)
23541 RISCV_bset, // Single-bit set (register)
23542 RISCV_bseti, // Single-bit set (immediate)
23543 RISCV_clmul, // Carry-less multiply (low-part)
23544 RISCV_clmulh, // Carry-less multiply (high-part)
23545 RISCV_clmulr, // Carry-less multiply (reversed)
23546 RISCV_clz, // Count leading zero bits
23547 RISCV_clzw, // Count leading zero bits in word
23548 RISCV_cpop, // Count set bits
23549 RISCV_cpopw, // Count set bits in word
23550 RISCV_ctz, // Count trailing zeros
23551 RISCV_ctzw, // Count trainling zeros ni word
23552 RISCV_max, // Maximum signed
23553 RISCV_maxu, // Maximum unsigned
23554 RISCV_min, // Minimum signed
23555 RISCV_minu, // Minimum unsigned
23556 RISCV_orc, // Bitwise OR-Combine
23557 RISCV_orn, // Or with inverted operand rs2
23558 RISCV_rev8, // Byte-reverse register
23559 RISCV_rol, // Rotate left (Register)
23560 RISCV_rolw, // Rotate Left Word (Register)
23561 RISCV_ror, // Rotate right
23562 RISCV_rori, // Rotate right immediate
23563 RISCV_roriw, // Rotate Right Word by Immediate
23564 RISCV_rorw, // Rotate Right Word (Register)
23565 RISCV_sh1add, // Shift left by 1 and add
23566 RISCV_sh2add, // Shift left by 2 and add
23567 RISCV_sh3add, // Shift left by 3 and add
23568 RISCV_xnor, // Exclusive nor
23569 RISCV_zext, // Zero-extend halfword
23570 // H(alf) precision float instruction extension
23571 RISCV_flh, // Load floating point half-precision (16 bits)
23572 RISCV_fsh, // Store floating point half-precision (16 bits)
23573 // Hypervisor virtual-machine instructions
23574 RISCV_hl, // Load hypervisor mode
23575 RISCV_hs, // Store hypervisor mode
23576 // Svinval Fine-Grained Address-Translation Cache Invalidation
23577 RISCV_sinval, // invalidates address-translation cache
23578 RISCV_sfencefg, // fine grained supervisor fence
23579 RISCV_hinval, // invalidates address-translation cache in hypervisor mode
23580 // Pause hint
23581 RISCV_pause, // Pause
23582 // Cache management operation
23583 RISCV_cbo, // cache base operation
23584 RISCV_prefetch, // prefetch address hint
23585 // Legacy instructions
23586 RISCV_sfencevm, // Supervisor memory-management fence (spec 1.9.1, 2016)
23587 // Cryptography extension
23588 RISCV_aes, // AES encryption decryption
23589 RISCV_aes64im, // inverse MixColumns step of the AES Block Cipher
23590 RISCV_aes64ks1i, // KeySchedule operation for the AES Block cipher involving the SBox operation
23591 RISCV_aes64ks2, // KeySchedule operation for the AES Block cipher
23592 RISCV_brev8, // Reverse the bits in each byte of a source register
23593 RISCV_pack, // Pack the low halves of rs1 and rs2 into rd
23594 RISCV_packh, // Pack the low bytes of rs1 and rs2 into rd
23595 RISCV_packw, // Pack the low bytes of rs1 and rs2 into rd
23596 RISCV_sha256, // transformation for SHA2-256 hash function
23597 RISCV_sha512, // transformation for SHA2-512 hash function
23598 RISCV_sm3, // transformation for SM3 hash function
23599 RISCV_sm4, // Acceleration operations for the SM4 block cipher
23600 RISCV_unzip, // Place odd and even bits of the source word into upper/lower halves of the destination
23601 RISCV_xperm4, // Nibble-wise lookup of indicies into a vector
23602 RISCV_xperm8, // Byte-wise lookup of indicies into a vector in registers
23603 RISCV_zip, // Place upper/lower halves of the source register into odd/even bits of the destination respectivley
23604 // Zwars extension
23605 RISCV_wrsnto, // Wait on reservation with no timeout
23606 RISCV_wrssto, // Wait on reservation with short timeout
23607 // T-head extension
23608 RISCV_thdcachecall, // Clean all D-cache
23609 RISCV_thdcacheciall, // Clean & invalidate all D-cache
23610 RISCV_thdcacheiall, // Invalidate all D-cache
23611 RISCV_thdcachecpa, // Clean D-cache at PA
23612 RISCV_thdcachecipa, // Clean and invalidate D-cache at PA
23613 RISCV_thdcacheipa, // Invalidate D-cache at PA
23614 RISCV_thdcachecva, // Clean D-cache at VA
23615 RISCV_thdcacheciva, // Clean and invalidate D-cache at VA
23616 RISCV_thdcacheiva, // Invalidate D-cache at VA
23617 RISCV_thdcachecsw, // Clean D-cache by set/way
23618 RISCV_thdcachecisw, // Clean & invalidate D-cache by set/way
23619 RISCV_thdcacheisw, // Invalidate D-cache by set/way
23620 RISCV_thdcachecpal1, // Clean L1 D-cache at PA
23621 RISCV_thdcachecval1, // Clean L1 D-cache at VA
23622 RISCV_thicacheiall, // Invalidate all I-cache
23623 RISCV_thicacheialls, // Invalidate all I-cache on all harts
23624 RISCV_thicacheipa, // Invalidate I-cache at PA
23625 RISCV_thicacheiva, // Invalidate I-cache at VA
23626 RISCV_thl2cachecall, // Clean all L2 cache
23627 RISCV_thl2cacheciall, // Clean & invalidate all L2 cache
23628 RISCV_thl2cacheiall, // Invalidate all L2 cache
23629 RISCV_thsfencevmas, // Invalidate TLB (page table cache) on all harts via broadcasting
23630 RISCV_thsync, // Ensures that preceding instructions retire earlier and subsequent instructions retire later
23631 RISCV_thsyncs, // Ensures that preceding instructions retire earlier and subsequent instructions retire later
23632 RISCV_thsynci, // Ensures that preceding instructions retire earlier and subsequent instructions retire later
23633 RISCV_thsyncis, // Ensures that preceding instructions retire earlier and subsequent instructions retire later
23634 RISCV_thaddsl, // Add a shifted operand to a second operand
23635 RISCV_thsrri, // Rotate Right (by Immediate)
23636 RISCV_thsrriw, // Rotate Right Word (by Immediate)
23637 RISCV_thext, // Extract and sign-extend bits
23638 RISCV_thextu, // Extract and zero-extend bits
23639 RISCV_thff0, // Find first '0'-bit
23640 RISCV_thff1, // Find first '1'-bit
23641 RISCV_threv, // Reverse the byte order
23642 RISCV_threvw, // Reverse the byte order of a word operand
23643 RISCV_thtstnbz, // Test for NUL bytes
23644 RISCV_thtst, // Tests if a single bit is set
23645 RISCV_thmveqz, // Move if equal zero
23646 RISCV_thmvnez, // Move if not equal zero
23647 RISCV_thlbia, // Load indexed byte, increment address after loading
23648 RISCV_thlbib, // Load indexed byte, increment address before loading
23649 RISCV_thlbuia, // Load indexed unsigned byte, increment address after loading
23650 RISCV_thlbuib, // Load indexed unsigned byte, increment address before loading
23651 RISCV_thlhia, // Load indexed half-word, increment address after loading
23652 RISCV_thlhib, // Load indexed half-word, increment address before loading
23653 RISCV_thlhuia, // Load indexed unsigned half-word, increment address after loading
23654 RISCV_thlhuib, // Load indexed unsigned half-word, increment address before loading
23655 RISCV_thlwia, // Load indexed word, increment address after loading
23656 RISCV_thlwib, // Load indexed word, increment address before loading
23657 RISCV_thlwuia, // Load indexed unsigned word, increment address after loading
23658 RISCV_thlwuib, // Load indexed unsigned word, increment address before loading
23659 RISCV_thldia, // Load indexed double-word, increment address after loading
23660 RISCV_thldib, // Load indexed double-word, increment address before loading
23661 RISCV_thsbia, // Store indexed byte, increment address after loading
23662 RISCV_thsbib, // Store indexed byte, increment address before loading
23663 RISCV_thshia, // Store indexed half-word, increment address after loading
23664 RISCV_thshib, // Store indexed half-word, increment address before loading
23665 RISCV_thswia, // Store indexed word, increment address after loading
23666 RISCV_thswib, // Store indexed word, increment address before loading
23667 RISCV_thsdia, // Store indexed double-word, increment address after loading
23668 RISCV_thsdib, // Store indexed double-word, increment address before loading
23669 RISCV_thlrb, // Load indexed byte
23670 RISCV_thlrbu, // Load indexed unsigned byte
23671 RISCV_thlrh, // Load indexed half-word
23672 RISCV_thlrhu, // Load indexed unsigned half-word
23673 RISCV_thlrw, // Load indexed word
23674 RISCV_thlrwu, // Load indexed unsigned word
23675 RISCV_thlrd, // Load indexed word
23676 RISCV_thsrb, // Store indexed byte
23677 RISCV_thsrh, // Store indexed half-word
23678 RISCV_thsrw, // Store indexed word
23679 RISCV_thsrd, // Store indexed double-word
23680 RISCV_thlurb, // Load unsigned indexed byte
23681 RISCV_thlurbu, // Load unsigned indexed unsigned byte
23682 RISCV_thlurh, // Load unsigned indexed half-word
23683 RISCV_thlurhu, // Load unsigned indexed unsigned half-word
23684 RISCV_thlurw, // Load unsigned indexed word
23685 RISCV_thlurwu, // Load unsigned indexed unsigned word
23686 RISCV_thlurd, // Load unsigned indexed double-word
23687 RISCV_thsurb, // Store unsigned indexed byte
23688 RISCV_thsurh, // Store unsigned indexed half-word
23689 RISCV_thsurw, // Store unsigned indexed word
23690 RISCV_thsurd, // Store unsigned indexed double-word
23691 RISCV_thldd, // Load two 64-bit values from memory into two GPRs
23692 RISCV_thlwd, // Load two signed 32-bit values from memory into two GPRs
23693 RISCV_thlwud, // Load two unsigned 32-bit values from memory into two GPRs
23694 RISCV_thsdd, // Store two 64-bit values to memory from two GPRs
23695 RISCV_thswd, // Store two 32-bit values to memory from two GPRs
23696 RISCV_thflrd, // Load indexed double-precision floating point value
23697 RISCV_thflrw, // Load indexed single-precision floating point value
23698 RISCV_thflurd, // Load unsigned indexed double-precision floating point value
23699 RISCV_thflurw, // Load unsigned indexed single-precision floating point value
23700 RISCV_thfsrd, // Store indexed double-precision floating point value
23701 RISCV_thfsrw, // Store indexed single-precision floating point value
23702 RISCV_thfsurd, // Store unsigned indexed double-precision floating point value
23703 RISCV_thfsurw, // Store unsigned indexed single-precision floating point value
23704 RISCV_thmula, // Compute multiply-add result of double-word operands
23705 RISCV_thmulah, // Compute multiply-add result of half-word operands
23706 RISCV_thmulaw, // Compute multiply-add result of word operands
23707 RISCV_thmuls, // Compute multiply-subtract result of double-word operands
23708 RISCV_thmulsh, // Compute multiply-subtract result of half-word operands
23709 RISCV_thmulsw, // Compute multiply-subtract result of word operands
23710 RISCV_thfmv, // R/W double-precision floating-point high-bit data
23711 RISCV_thipush, // Pushes register context on the interrupt stack
23712 RISCV_thipop, // Pop register context from the interrupt stack
23713 RISCV_thandn, // And with inverted operand rs2 (undocumented)
23714 RISCV_thorn, // Or with inverted operand rs2 (undocumented)
23715 RISCV_thxorn, // Exclusive nor (undocumented)
23716 RISCV_thpackl, // Pack some bytes of rs1 and rs2 into rd (undocumented)
23717 RISCV_thpackh, // Pack the low bytes of rs1 and rs2 into rd (undocumented)
23718 RISCV_thpackhl, // Pack some bytes of rs1 and rs2 into rd (undocumented)
23719 RISCV_thvmaqa, // Four signed 8-bit multiply with 32-bit add
23720 RISCV_thvmaqau, // Four unsigned 8-bit multiply with 32-bit add
23721 RISCV_thvmaqasu, // Four signed-unsigned 8-bit multiply with 32-bit add
23722 RISCV_thvmaqaus, // Four unsigned-signed 8-bit multiply with 32-bit add
23723 RISCV_thvpmaqa, // Similar to vmaqa, presumably involving packed values (undocumented)
23724 RISCV_thvpmaqau, // Similar to vmaqau, presumably involving packed values (undocumented)
23725 RISCV_thvpmaqaus, // Similar to vmaqaus, presumably involving packed values (undocumented)
23726 RISCV_thvpmaqasu, // Similar to vmaqasu, presumably involving packed values (undocumented)
23727 RISCV_thvpnclip, // Similar to vnclip, presumably involving packed values (undocumented)
23728 RISCV_thvpnclipu, // Similar to vnclipu, presumably involving packed values (undocumented)
23729 RISCV_thvpwadd, // Similar to vadd, presumably involving packed values (undocumented)
23730 RISCV_thvpwaddu, // Similar to vaddu, presumably involving packed values (undocumented)
23731
23732 // Pseudo-instruction containing info about unimplemented instructions, such as length
23733 RISCV_unk, // Unsupported instruction
23734
23736};
23737
23738/*
23739 * Interactive disassembler (IDA).
23740 * Renesas Electronics RL78 module
23741 *
23742 */
23743
23744
23745
23746enum
23747{
23748 RL78_null = 0, // Unknown Operation
23749 RL78_subw, // Subtract Word - Word Data Subtraction
23750 RL78_movw, // Move Word - Word Data Transfer
23751 RL78_call, // Call - Subroutine Call
23752 RL78_clrw, // Clear Word - Word Data Clear
23753 RL78_addw, // Add Word - Word Data Addition
23754 RL78_ret, // Return - Return from Subroutine
23755 RL78_sel, // Select Register Bank
23756 RL78_push, // Push
23757 RL78_onew, // One Word - Word Data 0001 Set
23758 RL78_incw, // Increment Word - Word Data Increment
23759 RL78_cmpw, // Compare Word - Word Data Comparison
23760 RL78_bnz, // Branch if Not Zero
23761 RL78_clrb, // Clear byte - Byte Data Clear
23762 RL78_and, // And - Logical Product of Byte Data
23763 RL78_or, // Or - Logical Sum of Byte Data
23764 RL78_br, // Branch - Unconditional Branch
23765 RL78_pop, // Pop
23766 RL78_cmp, // Compare - Byte Data Comparison
23767 RL78_decw, // Decrement Word - Word Data Decrement
23768 RL78_inc, // Increment - Byte Data Increment
23769 RL78_bz, // Branch if Zero
23770 RL78_sknz, // Skip if not Z - Skip with Zero Flag (Z = 0)
23771 RL78_sknh, // Skip if not Higher than - Skip with numeric value comparison ((Z \/ CY) = 1)
23772 RL78_skh, // Skip if Higher than - Skip with numeric value comparison ((Z \/ CY) = 0)
23773 RL78_xor1, // Exclusive Or Single Bit - 1 Bit Data Exclusive Logical Sum
23774 RL78_or1, // Or Single Bit - 1 Bit Data Logical Sum
23775 RL78_and1, // And Single Bit - 1 Bit Data Logical Product
23776 RL78_mov1, // Move Single Bit - 1 Bit Data Transfer
23777 RL78_clr1, // Clear Single Bit (Carry Flag) - 1 Bit Data Clear
23778 RL78_set1, // Set Single Bit (Carry Flag) - 1 Bit Data Set
23779 RL78_not1, // Not Single Bit (Carry Flag) - 1 Bit Data Logical Negation
23780 RL78_skc, // Skip if CY - Skip with Carry Flag (CY = 1)
23781 RL78_sknc, // Skip if not CY - Skip with Carry Flag (CY = 0)
23782 RL78_skz, // Skip if Z - Skip with Zero Flag (Z = 1)
23783 RL78_mov, // Move - Byte Data Transfer
23784 RL78_btclr, // Branch if True and Clear - Conditional Branch and Clear by Bit Test (Byte Data Bit =1)
23785 RL78_bt, // Branch if True - Conditional Branch by Bit Test (Byte Data Bit = 1)
23786 RL78_bf, // Branch if False - Conditional Branch by Bit Test (Byte Data Bit = 0)
23787 RL78_shl, // Shift Left - Logical Shift to the Left
23788 RL78_shr, // Shift Right - Logical Shift to the Right
23789 RL78_sar, // Shift Arithmetic Right - Arithmetic Shift to the Right
23790 RL78_shlw, // Shift Left Word - Logical Shift to the Left
23791 RL78_shrw, // Shift Right Word - Logical Shift to the Right
23792 RL78_sarw, // Shift Arithmetic Right Word - Arithmetic Shift to the Right
23793 RL78_bc, // Branch if Carry - Conditional Branch with Carry Flag (CY = 1)
23794 RL78_bnc, // Branch if Not Carry - Conditional Branch with Carry Flag (CY = 0)
23795 RL78_bh, // Branch if Higher than - Conditional branch by numeric value comparison ((Z \/ CY) = 0)
23796 RL78_bnh, // Branch if Not Higher than - Conditional branch by numeric value comparison ((Z \/ CY) = 1)
23797 RL78_add, // Add - Byte Data Addition
23798 RL78_addc, // Add with Carry - Addition of Byte Data with Carry
23799 RL78_sub, // Subtract - Byte Data Subtraction
23800 RL78_subc, // Subtract with Carry -Subtraction of Byte Data with Carry
23801 RL78_xor, // Exclusive Or - Exclusive Logical Sum of Byte Data
23802 RL78_xch, // Exchange - Byte Data Transfer
23803 RL78_dec, // Decrement - Byte Data Decrement
23804 RL78_rolwc, // Rotate Left word with Carry - Word Data Rotation to the Left with Carry
23805 RL78_xchw, // Exchange Word - Word Data Transfer
23806 RL78_cmps, // Compare - Byte Data Comparison
23807 RL78_movs, // Move and change PSW - Byte Data Transfer and PSW Change
23808 RL78_halt, // Halt - HALT Mode Set
23809 RL78_cmp0, // Compare 00H - Byte Data Zero Comparison
23810 RL78_mulu, // Multiply Unsigned - Unsigned Multiplication of Data
23811 RL78_oneb, // One byte - Byte Data 01H Set
23812 RL78_ror, // Rotate Right - Byte Data Rotation to the Right
23813 RL78_rol, // Rotate Left - Byte Data Rotation to the Left
23814 RL78_rorc, // Rotate Right with Carry - Byte Data Rotation to the Right with Carry
23815 RL78_rolc, // Rotate Left with Carry - Byte Data Rotation to the Left with Carry
23816 RL78_brk, // Break - Software Vectored Interrupt
23817 RL78_retb, // Return from Break - Return from Software Vectored Interrupt
23818 RL78_reti, // Return from Interrupt - Return from Interrupt Vectored Interrupt
23819 RL78_stop, // Stop - Stop Mode Set
23820 RL78_nop, // No Operation
23821 RL78_callt, // Call Table - Subroutine Call (Refer to the Call Table)
23822 // S3-core
23823 RL78_mulhu, // Multiply Unsigned - Unsigned Multiplication of Data
23824 RL78_mulh, // Multiply Signed - Signed Multiplication of Data
23825 RL78_divhu, // 16-bit Divide Unsigned - Unsigned Division of Data
23826 RL78_divwu, // 32-bit Divide Unsigned - Unsigned Division of Data
23827 RL78_machu, // Multiply and Accumulate Unsigned - Unsigned Multiplication and Accumulation of Data
23828 RL78_mach, // Multiply and Accumulate Signed - Signed Multiplication and Accumulation of Data
23829
23831};
23832
23833/*
23834 * Interactive disassembler (IDA).
23835 * RX module
23836 *
23837 */
23838
23839
23840
23841enum
23842{
23843 RX_null = 0, // Unknown Operation
23844
23845 RX_abs, // Absolute value
23846 RX_adc, // Addition with carry
23847 RX_add, // Addition without carry
23848 RX_and, // Logical AND
23849 RX_bra, // Unconditional relative branch
23850 RX_brk, // Unconditional trap
23851 RX_bclr, // Clearing a bit
23852 RX_bfmov, // Transferring bit-fields
23853 RX_bfmovz, // Transferring a bit-field and setting the other bits at the destination to zero
23854 RX_beq, // Relative conditional branch, Equal to
23855 RX_bne, // Relative conditional branch, Not equal to
23856 RX_bgeu, // Relative conditional branch, Equal to or greater than
23857 RX_bltu, // Relative conditional branch, Less than
23858 RX_bgtu, // Relative conditional branch, Greater than
23859 RX_bleu, // Relative conditional branch, Equal to or less than
23860 RX_bpz, // Relative conditional branch, Positive or zero
23861 RX_bn, // Relative conditional branch, Negative
23862 RX_bge, // Relative conditional branch, Equal to or greater than as signed integer
23863 RX_blt, // Relative conditional branch, Less than as signed integer
23864 RX_bgt, // Relative conditional branch, Greater than as signed integer
23865 RX_ble, // Relative conditional branch, Equal to or less than as signed integer
23866 RX_bo, // Relative conditional branch, O flag is 1
23867 RX_bno, // Relative conditional branch, O flag is 0
23868
23869 RX_bmeq, // Conditional bit transfer, Equal to
23870 RX_bmne, // Conditional bit transfer, Not equal to
23871 RX_bmgeu, // Conditional bit transfer, Equal to or greater than
23872 RX_bmltu, // Conditional bit transfer, Less than
23873 RX_bmgtu, // Conditional bit transfer, Greater than
23874 RX_bmleu, // Conditional bit transfer, Equal to or less than
23875 RX_bmpz, // Conditional bit transfer, Positive or zero
23876 RX_bmn, // Conditional bit transfer, Negative
23877 RX_bmge, // Conditional bit transfer, Equal to or greater than as signed integer
23878 RX_bmlt, // Conditional bit transfer, Less than as signed integer
23879 RX_bmgt, // Conditional bit transfer, Greater than as signed integer
23880 RX_bmle, // Conditional bit transfer, Equal to or less than as signed integer
23881 RX_bmo, // Conditional bit transfer, O flag is 1
23882 RX_bmno, // Conditional bit transfer, O flag is 0
23883
23884 RX_bnot, // Inverting a bit
23885 RX_bset, // Setting a bit
23886 RX_bsr, // Relative subroutine branch
23887 RX_btst, // Testing a bit
23888 RX_clrpsw, // Clear a flag or bit in the PSW
23889 RX_cmp, // Comparison
23890 RX_div, // Signed division
23891 RX_divu, // Unsigned division
23892 RX_emaca, // Extend multiply-accumulate to the accumulator
23893 RX_emsba, // Extended multiply-subtract to the accumulator
23894 RX_emula, // Extended multiply to the accumulator
23895 RX_emul, // Signed multiplication
23896 RX_emulu, // Unsigned multiplication
23897 RX_fadd, // Single-precision floating-point addition
23898 RX_fcmp, // Single-precision floating-point comparison
23899 RX_fdiv, // Single-precision floating-point division
23900 RX_fmul, // Single-precision floating-point multiplication
23901 RX_fsqrt, // Single-precision floating-point square root
23902 RX_fsub, // Single-precision floating-point subtraction
23903 RX_ftoi, // Single-precision floating-point number to signed integer conversion
23904 RX_ftou, // Single-precision floating-point number to unsigned integer conversion
23905 RX_int, // Software interrupt
23906 RX_itof, // Signed integer to single-precision floating-point number conversion
23907 RX_jmp, // Unconditional jump
23908 RX_jsr, // Jump to a subroutine
23909 RX_machi, // Multiply-Accumulate the upper word
23910 RX_maclo, // Multiply-Accumulate the lower word
23911 RX_maclh, // Multiply-Accumulate the lower word and upper word
23912 RX_max, // Selecting the highest value
23913 RX_min, // Selecting the lowest value
23914 RX_mov, // Transferring data
23915 RX_movco, // Storing with LI flag clear
23916 RX_movli, // Loading with LI flag set
23917 RX_movu, // Transfer unsigned data
23918 RX_msbhi, // Multiply-Subtract the upper word
23919 RX_msblo, // Multiply-Subtract the lower word
23920 RX_msblh, // Multiply-Subtract the lower word and upper word
23921 RX_mul, // Multiplication
23922 RX_mulhi, // Multiply the upper word
23923 RX_mullo, // Multiply the lower word
23924 RX_mullh, // Multiply the lower word and upper word
23925 RX_mvfachi, // Move the upper longword from accumulator
23926 RX_mvfaclo, // Move the lower longword from the accumulator
23927 RX_mvfacmi, // Move the middle-order longword from the accumulator
23928 RX_mvfacgu, // Move the guard longword from the accumulator
23929 RX_mvfc, // Transfer from a control register
23930 RX_mvtacgu, // Move the guard longword to the accumulator
23931 RX_mvtachi, // Move the upper longword to the accumulator
23932 RX_mvtaclo, // Move the lower longword to the accumulator
23933 RX_mvtc, // Transfer to a control register
23934 RX_mvtipl, // Interrupt priority level setting
23935 RX_neg, // Negation
23936 RX_nop, // No operation
23937 RX_not, // Bitwise negation
23938 RX_or, // Logical OR
23939 RX_pop, // Restoring data from stack to register
23940 RX_popc, // Restoring a control register
23941 RX_popm, // Restoring multiple registers from the stack
23942 RX_push, // Saving data on the stack
23943 RX_pushc, // Saving a control register
23944 RX_pushm, // Saving multiple registers
23945 RX_racl, // Round the accumulator longword
23946 RX_rdacl, // Round the accumulator longword
23947 RX_racw, // Round the accumulator word
23948 RX_rdacw, // Round the accumulator word
23949 RX_revl, // Endian conversion
23950 RX_revw, // Endian conversion
23951 RX_rmpa, // Multiply-and-accumulate operation
23952 RX_rolc, // Rotation with carry to left
23953 RX_rorc, // Rotation with carry to right
23954 RX_rotl, // Rotation to left
23955 RX_rotr, // Rotation to right
23956 RX_round, // Conversion from single-precision floating-point number to signed integer
23957 RX_rstr, // Collective restoration of register values
23958 RX_rte, // Return from the exception
23959 RX_rtfi, // Return from the fast interrupt
23960 RX_rts, // Returning from a subroutine
23961 RX_rtsd, // Releasing stack frame and returning from subroutine
23962 RX_sat, // Saturation of signed 32-bit data
23963 RX_satr, // Saturation of signed 64-bit data for RMPA
23964 RX_save, // Collective saving of register values
23965 RX_sbb, // Subtraction with borrow
23966
23967 RX_sceq, // Condition setting, Equal to
23968 RX_scne, // Condition setting, Not equal to
23969 RX_scgeu, // Condition setting, Equal to or greater than
23970 RX_scltu, // Condition setting, Less than
23971 RX_scgtu, // Condition setting, Greater than
23972 RX_scleu, // Condition setting, Equal to or less than
23973 RX_scpz, // Condition setting, Positive or zero
23974 RX_scn, // Condition setting, Negative
23975 RX_scge, // Condition setting, Equal to or greater than as signed integer
23976 RX_sclt, // Condition setting, Less than as signed integer
23977 RX_scgt, // Condition setting, Greater than as signed integer
23978 RX_scle, // Condition setting, Equal to or less than as signed integer
23979 RX_sco, // Condition setting, O flag is 1
23980 RX_scno, // Condition setting, O flag is 0
23981
23982 RX_scmpu, // String comparison
23983 RX_setpsw, // Setting a flag or bit in the PSW
23984 RX_shar, // Arithmetic shift to the right
23985 RX_shll, // Logical and arithmetic shift to the left
23986 RX_shlr, // Logical shift to the right
23987 RX_smovb, // Transferring a string backward
23988 RX_smovf, // Transferring a string forward
23989 RX_smovu, // Transferring a string
23990 RX_sstr, // Storing a string
23991 RX_stnz, // Transfer with condition (Z == 0)
23992 RX_stz, // Transfer with condition (Z == 1)
23993 RX_sub, // Subtraction without borrow
23994 RX_suntil, // Searching for a string
23995 RX_swhile, // Searching for a string
23996 RX_tst, // Logical test
23997 RX_utof, // Unsigned integer to single-precision floating-point number conversion
23998 RX_wait, // Waiting
23999 RX_xchg, // Exchanging values
24000 RX_xor, // Logical Exclusive OR
24001 // double instructions
24002 RX_dabs, // Double-precision floating-point absolute value
24003 RX_dadd, // Double-precision floating-point addition without carry
24004 RX_dcmpun, // Double-precision floating-point comparison, This condition is for detecting cases where classification of order based on the comparison is impossible.
24005 RX_dcmpeq, // Double-precision floating-point comparison, This condition is for detecting that src2 is equal to src.
24006 RX_dcmplt, // Double-precision floating-point comparison, This condition is for detecting that src2 is less than src.
24007 RX_dcmple, // Double-precision floating-point comparison, This condition is for detecting that src2 is less than or equal to src.
24008 RX_ddiv, // Double-precision floating-point division
24009 RX_dmov, // Double-precision floating-point transferring data
24010 RX_dmul, // Double-precision floating-point multiplication
24011 RX_dneg, // Double-precision floating-point negate
24012 RX_dpopm, // Restoring multiple double-precision floating-point registers
24013 RX_dpushm, // Saving multiple double-precision floating-point registers
24014 RX_dround, // Conversion from double-precision floating-point number to signed integer
24015 RX_dsqrt, // Double-precision floating-point square root
24016 RX_dsub, // Double-precision floating-point subtraction
24017 RX_dtof, // Double-precision floating-point number to single-precision floating-point number conversion
24018 RX_dtoi, // Double-precision floating-point number to signed integer conversion
24019 RX_dtou, // Double-precision floating-point number to unsigned integer conversion
24020 RX_ftod, // Single-precision floating-point number to double-precision floating-point number conversion
24021 RX_itod, // Signed integer to double-precision floating-point number conversion
24022 RX_mvfdc, // Transfer from double-precision floating-point control register
24023 RX_mvfdr, // Transfer from double-precision floating-point comparison result register
24024 RX_mvtdc, // Transfer to double-precision floating-point control register
24025 RX_utod, // Unsigned integer to double-precision floating-point number conversion
24027};
24028
24029/*
24030 * Interactive disassembler (IDA).
24031 * Tensilica Xtensa module
24032 *
24033 */
24034
24035
24036//------------------------------------------------------------------------
24037
24038
24039enum
24040{
24041 XTENSA_null = 0, // Unknown Operation
24042
24043 XTENSA_abs, // Absolute value
24044 XTENSA_add, // Add two registers
24045 XTENSA_addi, // Add signed constant to register
24046 XTENSA_addmi, // Add a register and a shifted 8-bit immediate
24047 XTENSA_addx2, // Add register to register shifted by 1
24048 XTENSA_addx4, // Add register to register shifted by 2
24049 XTENSA_addx8, // Add register to register shifted by 3
24050 XTENSA_and, // Bitwise logical AND
24051 XTENSA_ball, // Branch if all of masked bits set
24052 XTENSA_bany, // Branch if any of masked bits set
24053 XTENSA_bbc, // Branch if bit clear
24054 XTENSA_bbs, // Branch if bit set
24055 XTENSA_bbci, // Branch if bit clear immediate
24056 XTENSA_bbsi, // Branch if bit set immediate
24057 XTENSA_beq, // Branch if equal
24058 XTENSA_beqi, // Branch if equal immediate
24059 XTENSA_beqz, // Branch if equal to zero
24060 XTENSA_bge, // Branch if greater than or equal
24061 XTENSA_bgei, // Branch if one register is greater than or equal to an encoded constant
24062 XTENSA_bgeu, // Branch if greater than or equal unsigned
24063 XTENSA_bgeui, // Branch if greater than or equal unsigned immediate
24064 XTENSA_bgez, // Branch if greater than or equal to zero
24065 XTENSA_blt, // Branch if less than
24066 XTENSA_blti, // Branch if less than immediate
24067 XTENSA_bltu, // Branch if less than Unsigned
24068 XTENSA_bltui, // Branch if less than unsigned immediate
24069 XTENSA_bltz, // Branch if less than zero
24070 XTENSA_bnall, // Branch if not all of masked bits set
24071 XTENSA_bnone, // Branch if none of masked bits set (All Clear)
24072 XTENSA_bne, // Branch if not equal
24073 XTENSA_bnei, // Branch if not equal immediate
24074 XTENSA_bnez, // Branch if not equal to zero
24075 XTENSA_break, // Breakpoint
24076 XTENSA_call0, // Call subroutine, PC-relative
24077 XTENSA_call4, // Call subroutine, PC-relative, rotate window by 4
24078 XTENSA_call8, // Call subroutine, PC-relative, rotate window by 8
24079 XTENSA_call12, // Call subroutine, PC-relative, rotate window by 12
24080 XTENSA_callx0, // Call subroutine register specified location
24081 XTENSA_callx4, // Call Register, Rotate Window by 4
24082 XTENSA_callx8, // Call Register, Rotate Window by 8
24083 XTENSA_callx12, // Call Register, Rotate Window by 12
24084 XTENSA_dsync, // Load/store synchronize
24085 XTENSA_entry, // Subroutine entry
24086 XTENSA_esync, // Register value synchronize
24087 XTENSA_excw, // Exception Wait
24088 XTENSA_extui, // Extract field specified by immediates from a register
24089 XTENSA_extw, // Wait for any possible external ordering requirement
24090 XTENSA_isync, // Instruction fetch synchronize
24091 // XTENSA_ill, // Illegal instruction executed
24092 XTENSA_j, // Jump to PC plus offset
24093 XTENSA_jx, // Jump to register specified location
24095 XTENSA_loopgtz, // Loop if Greater Than Zero
24096 XTENSA_loopnez, // Loop if Not-Equal Zero
24097 XTENSA_lsi, // Load single-precision immediate
24098 XTENSA_lsx, // Load single-precision indexed
24099 XTENSA_l8ui, // Load zero extended byte
24100 XTENSA_l16si, // 16-bit signed load (8-bit shifted offset)
24101 XTENSA_l16ui, // 16-bit unsigned load (8-bit shifted offset)
24102 XTENSA_l32i, // 32-bit load (8-bit shifted offset)
24103 XTENSA_l32r, // 32-bit load PC-relative (16-bit negative word offset)
24104 XTENSA_max, // Maximum Value Signed
24105 XTENSA_maxu, // Maximum Value Unsigned
24106 XTENSA_memw, // Wait for any possible memory ordering requirement
24107 XTENSA_min, // Minimum Value Signed
24108 XTENSA_minu, // Minimum Value Unsigned
24109 XTENSA_mov, // Move a 32-bit register to a register
24110 XTENSA_moveqz, // Conditional move if zero
24111 XTENSA_movgez, // Conditional move if greater than or equal to zero
24112 XTENSA_movi, // Move a 12-bit immediate to a register
24113 XTENSA_movltz, // Conditional move if less than zero
24114 XTENSA_movnez, // Conditional move if non-zero
24115 XTENSA_mul16s, // Signed 16-bit multiplication
24116 XTENSA_mul16u, // Unsigned 16-bit multiplication
24117 XTENSA_mull, // Multiply low
24118 XTENSA_neg, // Negate
24119 XTENSA_nsa, // Normalization shift amount signed
24120 XTENSA_nsau, // Normalization shift amount unsigned
24121 XTENSA_nop, // No operation
24122 XTENSA_or, // Bitwise logical OR
24123 XTENSA_ret, // Return
24124 XTENSA_retw, // Windowed Return
24125 XTENSA_rfe, // Returns from the KernelExceptionVector exception
24126 XTENSA_rfi, // Return from high-priority interrupt
24127 XTENSA_rsil, // Read and set interrupt level
24128 XTENSA_rsr, // Read Special Register
24129 XTENSA_rsync, // Wait for dispatch related changes to resolve
24130 XTENSA_s8i, // 8-bit store (8-bit offset)
24131 XTENSA_s16i, // 16-bit store (8-bit shifted offset)
24132 XTENSA_s32i, // Store 32-bit quantity
24133 XTENSA_s32ri, // Store 32-bit release
24134 XTENSA_sext, // Sign Extend
24135 XTENSA_sll, // Shift left logical
24136 XTENSA_slli, // Shift left logical by SAR/immediate
24137 XTENSA_sra, // Shift right arithmetic
24138 XTENSA_srai, // Shift right arithmetic immediate by 0..31 bit positions
24139 XTENSA_src, // Shift right combined
24140 XTENSA_srl, // Shift right logical
24141 XTENSA_srli, // Shift right logical immediate by 0..15 bit positions
24142 XTENSA_ssa8b, // Set shift amount register (SAR) for big-endian byte align
24143 XTENSA_ssa8l, // Set shift amount register (SAR) for little-endian byte align
24144 XTENSA_ssai, // Set shift amount register (SAR) immediate
24145 XTENSA_ssl, // Set shift amount register (SAR) for shift left logica
24146 XTENSA_ssr, // Set shift amount register (SAR) for shift right logical
24147 XTENSA_sub, // Subtract two registers
24148 XTENSA_subx2, // Subtract register from register shifted by 1
24149 XTENSA_subx4, // Subtract register from register shifted by 2
24150 XTENSA_subx8, // Subtract register from register shifted by 3
24151 XTENSA_waiti, // Wait for interrupt
24152 XTENSA_wdtlb, // Write data TLB
24153 XTENSA_witlb, // Write instruction TLB
24154 XTENSA_wsr, // Write Special Register
24155 XTENSA_xor, // Bitwise logical exclusive OR
24156 XTENSA_xsr, // Exchange Special Register
24157
24158 // narrow
24159 XTENSA_ill, // Illegal instruction executed
24160
24161 // macro
24162 XTENSA_andi, // Bitwise logical AND with immediate
24163 XTENSA_ori, // Bitwise logical OR with immediate
24164// XTENSA_bbci_l, // Branch if Bit Clear Immediate LE (no need to implement - module will always show mbbci anyway)
24165// XTENSA_bbsi_l, // Branch if Bit Set Immediate LE (no need to implement - module will always show mbbsi anyway)
24166// XTENSA_j_l, // Unconditional Jump Long (no need to implement - module will always show j or jx anyway)
24167// XTENSA_mov, // Move - Macro for "or"
24168// XTENSA_moveqz_d, // Move Double if Equal to Zero - Macro for "moveqz.s"
24169// XTENSA_movf_d, // Move Double if False - Macro for "movf.s"
24170// XTENSA_movgez_d, // Move Double if Greater Than or Equal to Zero - Macro for "movgez.s"
24171// XTENSA_movltz_d, // Move Double if Less Than Zero - Macro for "movltz.s"
24172// XTENSA_movnez_d, // Move Double if Not Equal to Zero - Macro for "movnez.s"
24173// XTENSA_movt_d, // Move Double if True - Macro for "movt.s"
24174
24175 // other
24176// XTENSA_const16, // CONST16-Shift In 16-bit Constant - unspecified/custom
24177 XTENSA_rur, // Read User Register
24178 XTENSA_wur, // Write User Register
24179
24180 // core
24181 XTENSA_fsync, // Fetch Synchronize
24182 XTENSA_rer, // Read External Register
24183 XTENSA_s32nb, // Store 32-bit Non-Buffered
24184 XTENSA_salt, // Set AR if Less Than
24185 XTENSA_saltu, // Set AR if Less Than Unsigned
24186 XTENSA_wer, // Write External Register
24187
24188 // block prefetch
24189 XTENSA_dhi_b, // Block Data Cache Hit Invalidate
24190 XTENSA_dhwb_b, // Block Data Cache Hit Writeback
24191 XTENSA_dhwbi_b, // Block Data Cache Hit Writeback Inv
24192 XTENSA_dpfm_b, // Block Data Cache Prefetch and Modify
24193 XTENSA_dpfm_bf, // Block Data Cache Prefetch/Modify First
24194 XTENSA_dpfr_b, // Block Data Cache Prefetch for Read
24195 XTENSA_dpfr_bf, // Block Data Cache Prefetch for Read First
24196 XTENSA_dpfw_b, // Block Data Cache Prefetch for Write
24197 XTENSA_dpfw_bf, // Block Data Cache Prefetch for Write First
24198
24199 // boolean
24200 XTENSA_all4, // All 4 Booleans True
24201 XTENSA_all8, // All 8 Booleans True
24202 XTENSA_andb, // Boolean And
24203 XTENSA_andbc, // Boolean And with Complement
24204 XTENSA_any4, // Any 4 Booleans True
24205 XTENSA_any8, // Any 8 Booleans True
24206 XTENSA_bf, // Branch if False
24207 XTENSA_bt, // Branch if True
24208 XTENSA_movf, // Move if False
24209 XTENSA_movt, // Move if True
24210 XTENSA_orb, // Boolean Or
24211 XTENSA_orbc, // Boolean Or with Complement
24212 XTENSA_xorb, // Boolean Exclusive Or
24213
24214 // conditional
24215 XTENSA_s32c1i, // Store 32-bit Compare Conditional
24216
24217 // data cache
24218 XTENSA_dci, // Data Cache Coherent Hit Invalidate
24219 XTENSA_dcwb, // Data Cache Coherent Hit Writeback
24220 XTENSA_dcwbi, // Data Cache Coherent Hit WB Invalidate
24221 XTENSA_dhi, // Data Cache Hit Invalidate
24222 XTENSA_dhu, // Data Cache Hit Unlock
24223 XTENSA_dhwb, // Data Cache Hit Writeback
24224 XTENSA_dhwbi, // Data Cache Hit Writeback Invalidate
24225 XTENSA_dii, // Data Cache Index Invalidate
24226 XTENSA_diu, // Data Cache Index Unlock
24227 XTENSA_diwb, // Data Cache Index Write Back
24228 XTENSA_diwbi, // Data Cache Index Write Back Invalidate
24229 XTENSA_diwbui_p, // Data Cache Empty
24230 XTENSA_dpfl, // Data Cache Prefetch and Lock
24231 XTENSA_dpfr, // Data Cache Prefetch for Read
24232 XTENSA_dpfro, // Data Cache Prefetch for Read Once
24233 XTENSA_dpfw, // Data Cache Prefetch for Write
24234 XTENSA_dpfwo, // Data Cache Prefetch for Write Once
24235 XTENSA_ldct, // Load Data Cache Tag
24236 XTENSA_ldcw, // Load Data Cache Word
24237 XTENSA_sdct, // Store Data Cache Tag
24238 XTENSA_sdcw, // Store Data Cache Word
24239
24240 // debug
24241 XTENSA_lddr32_p, // Load to DDR Register
24242 XTENSA_rfdd, // Return from Debug and Dispatch
24243 XTENSA_rfdo, // Return from Debug Operation
24244 XTENSA_sddr32_p, // Store from DDR Register
24245
24246 // deposit bits option
24247 XTENSA_depbits, // Deposit Bits - same encoding as "add.s"
24248
24249 // exception
24250 XTENSA_rfde, // Return from Double Exception
24251 XTENSA_rfue, // Return from User-Mode Exception
24252 XTENSA_syscall, // System Call
24253
24254 // exclusive
24255 XTENSA_clrex, // Clear Exclusive
24256 XTENSA_getex, // Get Exclusive Result
24257 XTENSA_l32ex, // Load 32-bit Exclusive
24258 XTENSA_s32ex, // Store 32-bit Exclusive
24259
24260 // floating point
24261 XTENSA_abs_d, // Absolute Value Double
24262 XTENSA_abs_s, // Absolute Value Single
24263 XTENSA_add_d, // Add Double
24264 XTENSA_add_s, // Add Single - same encoding as "depbits"
24265 XTENSA_addexp_d, // Add Exponent Double
24266 XTENSA_addexp_s, // Add Exponent Single
24267 XTENSA_addexpm_d, // Add Exponent from Mantissa Double
24268 XTENSA_addexpm_s, // Add Exponent from Mantissa Single
24269 XTENSA_ceil_d, // Ceiling Double to Fixed
24270 XTENSA_ceil_s, // Ceiling Single to Fixed
24271 XTENSA_const_d, // Constant Double
24272 XTENSA_const_s, // Constant Single
24273 XTENSA_cvtd_s, // Convert Single to Double
24274 XTENSA_cvts_d, // Convert Double to Single
24275 XTENSA_div0_d, // Divide Begin Double
24276 XTENSA_div0_s, // Divide Begin Single
24277 XTENSA_divn_d, // Divide Final Double
24278 XTENSA_divn_s, // Divide Final Single
24279 XTENSA_float_d, // Convert Fixed to Double
24280 XTENSA_float_s, // Convert Fixed to Single
24281 XTENSA_floor_d, // Floor Double to Fixed
24282 XTENSA_floor_s, // Floor Single to Fixed
24283 XTENSA_ldi, // Load Double Immediate
24284 XTENSA_ldip, // Load Double Immediate Post-Increment
24285 XTENSA_ldx, // Load Double Indexed
24286 XTENSA_ldxp, // Load Double Indexed Post-Increment
24287 XTENSA_lsip, // Load Single Immediate Post-Increment - newer version of lsiu
24288 XTENSA_lsiu, // Load Single Immediate with Update - fp2000 version of lsip
24289 XTENSA_lsxp, // Load Single Indexed Post-Increment - newer version of lsxu
24290 XTENSA_lsxu, // Load Single Indexed with Update - fp2000 version of lsxp
24291 XTENSA_madd_d, // Multiply and Add Double
24292 XTENSA_madd_s, // Multiply and Add Single
24293 XTENSA_maddn_d, // Multiply and Add Double Round Nearest
24294 XTENSA_maddn_s, // Multiply and Add Single Round Nearest
24295 XTENSA_mkdadj_d, // Make Divide Adjust Double
24296 XTENSA_mkdadj_s, // Make Divide Adjust Single
24297 XTENSA_mksadj_d, // Make Square Root Adjust Double
24298 XTENSA_mksadj_s, // Make Square Root Adjust Single
24299 XTENSA_mov_d, // Move Double
24300 XTENSA_mov_s, // Move Single
24301 XTENSA_moveqz_s, // Move Single if Equal to Zero
24302 XTENSA_movf_s, // Move Single if False
24303 XTENSA_movgez_s, // Move Single if Greater Than or Equal to Zero
24304 XTENSA_movltz_s, // Move Single if Less Than Zero
24305 XTENSA_movnez_s, // Move Single if Not Equal to Zero
24306 XTENSA_movt_s, // Move Single if True
24307 XTENSA_msub_d, // Multiply and Subtract Double
24308 XTENSA_msub_s, // Multiply and Subtract Single
24309 XTENSA_mul_d, // Multiply Double
24310 XTENSA_mul_s, // Multiply Single
24311 XTENSA_neg_d, // Negate Double
24312 XTENSA_neg_s, // Negate Single
24313 XTENSA_nexp01_d, // Narrow Exponent Range Double
24314 XTENSA_nexp01_s, // Narrow Exponent Range Single
24315 XTENSA_oeq_d, // Compare Double Equal
24316 XTENSA_oeq_s, // Compare Single Equal
24317 XTENSA_ole_d, // Compare Double Ordered and Less Than or Equal
24318 XTENSA_ole_s, // Compare Single Ordered and Less Than or Equal
24319 XTENSA_olt_d, // Compare Double Ordered and Less Than
24320 XTENSA_olt_s, // Compare Single Ordered and Less Than
24321 XTENSA_recip0_d, // Reciprocal Begin Double
24322 XTENSA_recip0_s, // Reciprocal Begin Single
24323 XTENSA_rfr, // Move FR to AR
24324 XTENSA_rfrd, // Move FR to AR Upper
24325 XTENSA_round_d, // Round Double to Fixed
24326 XTENSA_round_s, // Round Single to Fixed
24327 XTENSA_rsqrt0_d, // Reciprocal Sqrt Begin Double
24328 XTENSA_rsqrt0_s, // Reciprocal Sqrt Begin Single
24329 XTENSA_sdi, // Store Double Immediate
24330 XTENSA_sdip, // Store Double Immediate Post-Increment
24331 XTENSA_sdx, // Store Double Indexed
24332 XTENSA_sdxp, // Store Double Indexed Post-Increment
24333 XTENSA_sqrt0_d, // Sqrt Begin Double
24334 XTENSA_sqrt0_s, // Sqrt Begin Single
24335 XTENSA_ssi, // Store Single Immediate
24336 XTENSA_ssip, // Store Single Immediate Post-Increment - newer version of ssiu
24337 XTENSA_ssiu, // Store Single Immediate with Update - fp2000 version of ssip
24338 XTENSA_ssx, // Store Single Indexed
24339 XTENSA_ssxp, // Store Single Indexed Post-Increment - newer version of ssxu
24340 XTENSA_ssxu, // Store Single Indexed with Update - fp2000 version of ssxp
24341 XTENSA_sub_d, // Subtract Double
24342 XTENSA_sub_s, // Subtract Single
24343 XTENSA_trunc_d, // Truncate Double to Fixed
24344 XTENSA_trunc_s, // Truncate Single to Fixed
24345 XTENSA_ueq_d, // Compare Double Unordered or Equal
24346 XTENSA_ueq_s, // Compare Single Unordered or Equal
24347 XTENSA_ufloat_d, // Convert Unsigned Fixed to Double
24348 XTENSA_ufloat_s, // Convert Unsigned Fixed to Single
24349 XTENSA_ule_d, // Compare Double Unord or Less Than or Equal
24350 XTENSA_ule_s, // Compare Single Unord or Less Than or Equal
24351 XTENSA_ult_d, // Compare Double Unordered or Less Than
24352 XTENSA_ult_s, // Compare Single Unordered or Less Than
24353 XTENSA_un_d, // Compare Double Unordered
24354 XTENSA_un_s, // Compare Single Unordered
24355 XTENSA_utrunc_d, // Truncate Double to Fixed Unsigned
24356 XTENSA_utrunc_s, // Truncate Single to Fixed Unsigned
24357 XTENSA_wfr, // Move AR to FR
24358 XTENSA_wfrd, // Move AR to FR Double
24359
24360 // instruction cache
24361 XTENSA_ihi, // Instruction Cache Hit Invalidate
24362 XTENSA_ihu, // Instruction Cache Hit Unlock
24363 XTENSA_iii, // Instruction Cache Index Invalidate
24364 XTENSA_iiu, // Instruction Cache Index Unlock
24365 XTENSA_ipf, // Instruction Cache Prefetch
24366 XTENSA_ipfl, // Instruction Cache Prefetch and Lock
24367 XTENSA_lict, // Load Instruction Cache Tag
24368 XTENSA_licw, // Load Instruction Cache Word
24369 XTENSA_sict, // Store Instruction Cache Tag
24370 XTENSA_sicw, // Store Instruction Cache Word
24371
24372 // int32
24373 XTENSA_mulsh, // Multiply Signed High
24374 XTENSA_muluh, // Multiply Unsigned High
24375 XTENSA_quos, // Quotient Signed
24376 XTENSA_quou, // Quotient Unsigned
24377 XTENSA_rems, // Remainder Signed
24378 XTENSA_remu, // Remainder Unsigned
24379
24380 // mac16
24381 XTENSA_lddec, // Load with Autodecrement
24382 XTENSA_ldinc, // Load with Autoincrement
24383 XTENSA_mul_aa, // Signed Multiply
24384 XTENSA_mul_ad, // Signed Multiply
24385 XTENSA_mul_da, // Signed Multiply
24386 XTENSA_mul_dd, // Signed Multiply
24387 XTENSA_mula_aa, // Signed Multiply/Accumulate
24388 XTENSA_mula_ad, // Signed Multiply/Accumulate
24389 XTENSA_mula_da, // Signed Multiply/Accumulate
24390 XTENSA_mula_da_lddec,// Signed Multiply/Accumulate, Ld/Autodec
24391 XTENSA_mula_da_ldinc,// Signed Multiply/Accumulate, Ld/Autoinc
24392 XTENSA_mula_dd, // Signed Multiply/Accumulate
24393 XTENSA_mula_dd_lddec,// Signed Multiply/Accumulate, Ld/Autodec
24394 XTENSA_mula_dd_ldinc,// Signed Multiply/Accumulate, Ld/Autoinc
24395 XTENSA_muls_aa, // Signed Multiply/Subtract
24396 XTENSA_muls_ad, // Signed Multiply/Subtract
24397 XTENSA_muls_da, // Signed Multiply/Subtract
24398 XTENSA_muls_dd, // Signed Multiply/Subtract
24399 XTENSA_umul_aa, // Unsigned Multiply
24400
24401 // memory ecc
24402 XTENSA_rfme, // Return from Memory Error
24403
24404 // misc
24405 XTENSA_clamps, // Signed Clamp
24406
24407 // multiprocessor
24408 XTENSA_l32ai, // Load 32-bit Aquire
24409
24410 // region
24411 XTENSA_idtlb, // Invalidate Data TLB Entry
24412 XTENSA_iitlb, // Invalidate Instruction TLB Entry
24413 XTENSA_pdtlb, // Probe Data TLB
24414 XTENSA_pitlb, // Probe Intruction TLB
24415 XTENSA_pptlb, // Probe Protection TLB - same encoding as "pdtlb"
24416 XTENSA_rdtlb0, // Read Data TLB Entry Virtual
24417 XTENSA_rdtlb1, // Read Data TLB Entry Translation
24418 XTENSA_ritlb0, // Read Instruction TLB Entry Virtual
24419 XTENSA_ritlb1, // Read Instruction TLB Entry Translation
24420 XTENSA_rptlb0, // Read Protection TLB Entry Address - same encoding as "rdtlb0"
24421 XTENSA_rptlb1, // Read Protection TLB Entry Info - same encoding as "rdtlb1"
24422 XTENSA_wptlb, // Write Protection TLB Entry - same encoding as "wdtlb"
24423
24424 // sim
24425 XTENSA_simcall, // Simulator Call
24426
24427 // windowed
24428 XTENSA_l32e, // Load 32-bit for Window Exceptions
24429 XTENSA_movsp, // Move to Stack Pointer
24430 XTENSA_rfwo, // Return from Window Overflow
24431 XTENSA_rfwu, // Return from Window Underflow
24432 XTENSA_rotw, // Rotate Window
24433 XTENSA_s32e, // Store 32-bit for Window Exceptions
24434
24435 // reserved - these are undocumented in the main docs
24436 // but exist in some GNU binutils implementations.
24437 // they might be custom to some specific implementation of xtensa
24438 // but as long as they dont conflict with anything else we can include support for them
24446
24447 // These seem to be part of the AE (Audio Extension?) instruction set.
24448 // Looking at output of "AE" objdump bruteforce there are about 120 AE instructions.
24449 // I didn't find public docs on the AE instructions so won't try to guess them all.
24450 XTENSA_ae2_rur, // Read User Register (AE2 version)
24451 XTENSA_ae2_wur, // Write User Register (AE2 version)
24452 XTENSA_ae_rur, // Read User Register (AE version)
24453 XTENSA_ae_wur, // Write User Register (AE version)
24454
24455 // These seem to be part of the DSP instruction set.
24456 // Looking at output of DSP objdump bruteforce there are about 180 DSP instructions.
24457 // I didn't find public docs on the DSP instructions so won't try to guess them all.
24458// XTENSA_lac_il, // ?
24459// XTENSA_sac2x32, // ?
24460// XTENSA_sac32_r, // ?
24461
24463};
24464
@ TMS6_shru
Definition allins.hpp:5500
@ TMS6_unpkh2
Definition allins.hpp:5757
@ TMS6_intdp
Definition allins.hpp:5582
@ TMS6_spkernelr
Definition allins.hpp:5650
@ TMS6_absdp
Definition allins.hpp:5525
@ TMS6_addah
Definition allins.hpp:5448
@ TMS6_dadd2
Definition allins.hpp:5688
@ TMS6_intsp
Definition allins.hpp:5584
@ TMS6_rcpsp
Definition allins.hpp:5625
@ TMS6_xormpy
Definition allins.hpp:5673
@ TMS6_land
Definition allins.hpp:5747
@ TMS6_saddsu2
Definition allins.hpp:5632
@ TMS6_cmatmpy
Definition allins.hpp:5679
@ TMS6_swe
Definition allins.hpp:5669
@ TMS6_spmask
Definition allins.hpp:5654
@ TMS6_mpylh
Definition allins.hpp:5481
@ TMS6_sshvr
Definition allins.hpp:5658
@ TMS6_cmpyr1
Definition allins.hpp:5557
@ TMS6_mpyid
Definition allins.hpp:5603
@ TMS6_dpack2
Definition allins.hpp:5575
@ TMS6_subsp
Definition allins.hpp:5666
@ TMS6_mpyihr
Definition allins.hpp:5605
@ TMS6_fadddp
Definition allins.hpp:5742
@ TMS6_shl2
Definition allins.hpp:5755
@ TMS6_mpyil
Definition allins.hpp:5606
@ TMS6_dintspu
Definition allins.hpp:5706
@ TMS6_sub
Definition allins.hpp:5512
@ TMS6_stb
Definition allins.hpp:5507
@ TMS6_cmplt
Definition allins.hpp:5458
@ TMS6_crot90
Definition allins.hpp:5685
@ TMS6_deal
Definition allins.hpp:5563
@ TMS6_cmpgtsp
Definition allins.hpp:5549
@ TMS6_dssub
Definition allins.hpp:5735
@ TMS6_smpy2
Definition allins.hpp:5643
@ TMS6_stdw
Definition allins.hpp:5660
@ TMS6_add4
Definition allins.hpp:5527
@ TMS6_fsubsp
Definition allins.hpp:5746
@ TMS6_swap2
Definition allins.hpp:5667
@ TMS6_sub4
Definition allins.hpp:5663
@ TMS6_mpyus4
Definition allins.hpp:5615
@ TMS6_cmpy
Definition allins.hpp:5555
@ TMS6_shlmb
Definition allins.hpp:5639
@ TMS6_addu
Definition allins.hpp:5446
@ TMS6_dmpy2
Definition allins.hpp:5711
@ TMS6_cmpysp
Definition allins.hpp:5684
@ TMS6_fsubdp
Definition allins.hpp:5745
@ TMS6_dspacku4
Definition allins.hpp:5732
@ TMS6_dpackh2
Definition allins.hpp:5717
@ TMS6_mv
Definition allins.hpp:5485
@ TMS6_sadd
Definition allins.hpp:5495
@ TMS6_stndw
Definition allins.hpp:5661
@ TMS6_dcmpgtu4
Definition allins.hpp:5700
@ TMS6_dshru2
Definition allins.hpp:5730
@ TMS6_smpy32
Definition allins.hpp:5644
@ TMS6_cmplt2
Definition allins.hpp:5551
@ TMS6_rint
Definition allins.hpp:5626
@ TMS6_dmpysp
Definition allins.hpp:5712
@ TMS6_mpyhus
Definition allins.hpp:5475
@ TMS6_stw
Definition allins.hpp:5511
@ TMS6_mpysu
Definition allins.hpp:5472
@ TMS6_unpkhu4
Definition allins.hpp:5671
@ TMS6_dmpysu4
Definition allins.hpp:5713
@ TMS6_bnop
Definition allins.hpp:5540
@ TMS6_mpyih
Definition allins.hpp:5604
@ TMS6_dotprus2
Definition allins.hpp:5571
@ TMS6_dotprsu2
Definition allins.hpp:5570
@ TMS6_addkpc
Definition allins.hpp:5530
@ TMS6_rcpdp
Definition allins.hpp:5624
@ TMS6_bitr
Definition allins.hpp:5539
@ TMS6_mpy2
Definition allins.hpp:5593
@ TMS6_mpyhslu
Definition allins.hpp:5480
@ TMS6_ccmatmpyr1
Definition allins.hpp:5680
@ TMS6_dsubsp
Definition allins.hpp:5739
@ TMS6_addad
Definition allins.hpp:5528
@ TMS6_abs2
Definition allins.hpp:5524
@ TMS6_packh4
Definition allins.hpp:5620
@ TMS6_dshru
Definition allins.hpp:5729
@ TMS6_stbu
Definition allins.hpp:5508
@ TMS6_shfl
Definition allins.hpp:5637
@ TMS6_cmpltdp
Definition allins.hpp:5552
@ TMS6_mpysu4
Definition allins.hpp:5613
@ TMS6_mpyi
Definition allins.hpp:5602
@ TMS6_mvk
Definition allins.hpp:5487
@ TMS6_abssp
Definition allins.hpp:5526
@ TMS6_add
Definition allins.hpp:5445
@ TMS6_dcmpy
Definition allins.hpp:5701
@ TMS6_mpy2ir
Definition allins.hpp:5594
@ TMS6_mpysp
Definition allins.hpp:5610
@ TMS6_add2
Definition allins.hpp:5451
@ TMS6_spdp
Definition allins.hpp:5647
@ TMS6_mpyu4
Definition allins.hpp:5614
@ TMS6_cmpeqdp
Definition allins.hpp:5545
@ TMS6_dsmpy2
Definition allins.hpp:5731
@ TMS6_cmpeq4
Definition allins.hpp:5544
@ TMS6_dadd
Definition allins.hpp:5687
@ TMS6_ssub
Definition allins.hpp:5506
@ TMS6_zero
Definition allins.hpp:5520
@ TMS6_cmatmpyr1
Definition allins.hpp:5683
@ TMS6_smpyh
Definition allins.hpp:5504
@ TMS6_dpackl2
Definition allins.hpp:5720
@ TMS6_packh2
Definition allins.hpp:5619
@ TMS6_bpos
Definition allins.hpp:5541
@ TMS6_abs
Definition allins.hpp:5444
@ TMS6_min2
Definition allins.hpp:5591
@ TMS6_mpyhuls
Definition allins.hpp:5479
@ TMS6_daddsp
Definition allins.hpp:5689
@ TMS6_gmpy4
Definition allins.hpp:5581
@ TMS6_dspint
Definition allins.hpp:5733
@ TMS6_cmpltu4
Definition allins.hpp:5554
@ TMS6_mpyu
Definition allins.hpp:5470
@ TMS6_ldnw
Definition allins.hpp:5588
@ TMS6_ddotpl2r
Definition allins.hpp:5562
@ TMS6_sploopw
Definition allins.hpp:5653
@ TMS6_mpylir
Definition allins.hpp:5609
@ TMS6_sshvl
Definition allins.hpp:5657
@ TMS6_mpyu2
Definition allins.hpp:5751
@ TMS6_davg2
Definition allins.hpp:5691
@ TMS6_saddsub
Definition allins.hpp:5633
@ TMS6_null
Definition allins.hpp:5443
@ TMS6_sthu
Definition allins.hpp:5510
@ TMS6_maxu4
Definition allins.hpp:5590
@ TMS6_ldh
Definition allins.hpp:5465
@ TMS6_rpack2
Definition allins.hpp:5628
@ TMS6_dshl
Definition allins.hpp:5725
@ TMS6_unpklu4
Definition allins.hpp:5672
@ TMS6_cmpgt
Definition allins.hpp:5456
@ TMS6_spacku4
Definition allins.hpp:5646
@ TMS6_intdpu
Definition allins.hpp:5583
@ TMS6_mpysp2dp
Definition allins.hpp:5611
@ TMS6_sth
Definition allins.hpp:5509
@ TMS6_rsqrdp
Definition allins.hpp:5629
@ TMS6_mpy32su
Definition allins.hpp:5596
@ TMS6_dcmpgt2
Definition allins.hpp:5699
@ TMS6_adddp
Definition allins.hpp:5529
@ TMS6_addsp
Definition allins.hpp:5531
@ TMS6_bdec
Definition allins.hpp:5537
@ TMS6_neg
Definition allins.hpp:5490
@ TMS6_dccmpyr1
Definition allins.hpp:5696
@ TMS6_davgnr2
Definition allins.hpp:5692
@ TMS6_qsmpy32r1
Definition allins.hpp:5754
@ TMS6_cmpeqsp
Definition allins.hpp:5546
@ TMS6_b
Definition allins.hpp:5453
@ TMS6_dmpyu4
Definition allins.hpp:5715
@ TMS6_dpsp
Definition allins.hpp:5578
@ TMS6_mpydp
Definition allins.hpp:5599
@ TMS6_and
Definition allins.hpp:5452
@ TMS6_stnw
Definition allins.hpp:5662
@ TMS6_andn
Definition allins.hpp:5534
@ TMS6_dshl2
Definition allins.hpp:5726
@ TMS6_addaw
Definition allins.hpp:5449
@ TMS6_mpy32
Definition allins.hpp:5595
@ TMS6_mpyilr
Definition allins.hpp:5607
@ TMS6_rsqrsp
Definition allins.hpp:5630
@ TMS6_ccmatmpy
Definition allins.hpp:5682
@ TMS6_sshl
Definition allins.hpp:5505
@ TMS6_dptrunc
Definition allins.hpp:5579
@ TMS6_sadd2
Definition allins.hpp:5631
@ TMS6_shrmb
Definition allins.hpp:5641
@ TMS6_subc
Definition allins.hpp:5517
@ TMS6_callp
Definition allins.hpp:5542
@ TMS6_dotpu4
Definition allins.hpp:5573
@ TMS6_mpylshu
Definition allins.hpp:5484
@ TMS6_swap4
Definition allins.hpp:5668
@ TMS6_cmpeq2
Definition allins.hpp:5543
@ TMS6_davgu4
Definition allins.hpp:5694
@ TMS6_dotpnrsu2
Definition allins.hpp:5568
@ TMS6_dcmpeq2
Definition allins.hpp:5697
@ TMS6_bitc4
Definition allins.hpp:5538
@ TMS6_sat
Definition allins.hpp:5496
@ TMS6_nop
Definition allins.hpp:5491
@ TMS6_packhl2
Definition allins.hpp:5621
@ TMS6_cmpltu
Definition allins.hpp:5459
@ TMS6_dcmpyr1
Definition allins.hpp:5702
@ TMS6_dshr2
Definition allins.hpp:5728
@ TMS6_smpyhl
Definition allins.hpp:5502
@ TMS6_mvkh
Definition allins.hpp:5488
@ TMS6_dsub
Definition allins.hpp:5737
@ TMS6_shr
Definition allins.hpp:5499
@ TMS6_shru2
Definition allins.hpp:5642
@ TMS6_dshr
Definition allins.hpp:5727
@ TMS6_mfence
Definition allins.hpp:5750
@ TMS6_cmpgtdp
Definition allins.hpp:5548
@ TMS6_subah
Definition allins.hpp:5515
@ TMS6_dmaxu4
Definition allins.hpp:5708
@ TMS6_sub2
Definition allins.hpp:5518
@ TMS6_last
Definition allins.hpp:5761
@ TMS6_mpyhir
Definition allins.hpp:5601
@ TMS6_mpyhsu
Definition allins.hpp:5476
@ TMS6_dccmpy
Definition allins.hpp:5695
@ TMS6_cmpgt2
Definition allins.hpp:5547
@ TMS6_ldndw
Definition allins.hpp:5587
@ TMS6_mpyhi
Definition allins.hpp:5600
@ TMS6_dmv
Definition allins.hpp:5565
@ TMS6_cmpltsp
Definition allins.hpp:5553
@ TMS6_davgnru4
Definition allins.hpp:5693
@ TMS6_dmvd
Definition allins.hpp:5716
@ TMS6_max2
Definition allins.hpp:5589
@ TMS6_dspinth
Definition allins.hpp:5734
@ TMS6_set
Definition allins.hpp:5497
@ TMS6_dxpnd4
Definition allins.hpp:5741
@ TMS6_packl4
Definition allins.hpp:5622
@ TMS6_spmaskr
Definition allins.hpp:5655
@ TMS6_dotpsu4
Definition allins.hpp:5572
@ TMS6_or
Definition allins.hpp:5494
@ TMS6_dmin2
Definition allins.hpp:5709
@ TMS6_cmpeq
Definition allins.hpp:5455
@ TMS6_mpyhl
Definition allins.hpp:5477
@ TMS6_not
Definition allins.hpp:5493
@ TMS6_idle
Definition allins.hpp:5462
@ TMS6_ext
Definition allins.hpp:5460
@ TMS6_mpyspdp
Definition allins.hpp:5612
@ TMS6_mpyhu
Definition allins.hpp:5474
@ TMS6_dmpyu2
Definition allins.hpp:5714
@ TMS6_minu4
Definition allins.hpp:5592
@ TMS6_subu
Definition allins.hpp:5513
@ TMS6_ldbu
Definition allins.hpp:5464
@ TMS6_dapys2
Definition allins.hpp:5690
@ TMS6_ccmpy32r1
Definition allins.hpp:5681
@ TMS6_dsadd
Definition allins.hpp:5723
@ TMS6_mpyli
Definition allins.hpp:5608
@ TMS6_mpyluhs
Definition allins.hpp:5483
@ TMS6_swenr
Definition allins.hpp:5670
@ TMS6_packlh2
Definition allins.hpp:5623
@ TMS6_extu
Definition allins.hpp:5461
@ TMS6_dmax2
Definition allins.hpp:5707
@ TMS6_dotpus4
Definition allins.hpp:5574
@ TMS6_dcmpeq4
Definition allins.hpp:5698
@ TMS6_dcrot90
Definition allins.hpp:5704
@ TMS6_spack2
Definition allins.hpp:5645
@ TMS6_shl
Definition allins.hpp:5498
@ TMS6_landn
Definition allins.hpp:5748
@ TMS6_unpkbu4
Definition allins.hpp:5756
@ TMS6_qmpy32
Definition allins.hpp:5752
@ TMS6_mpy32us
Definition allins.hpp:5598
@ TMS6_shr2
Definition allins.hpp:5640
@ TMS6_mpylhu
Definition allins.hpp:5482
@ TMS6_fmpydp
Definition allins.hpp:5744
@ TMS6_ddotph2r
Definition allins.hpp:5560
@ TMS6_mvklh
Definition allins.hpp:5489
@ TMS6_smpylh
Definition allins.hpp:5503
@ TMS6_ddotpl2
Definition allins.hpp:5561
@ TMS6_avg2
Definition allins.hpp:5535
@ TMS6_smpy
Definition allins.hpp:5501
@ TMS6_ssub2
Definition allins.hpp:5659
@ TMS6_dinthspu
Definition allins.hpp:5705
@ TMS6_faddsp
Definition allins.hpp:5743
@ TMS6_spint
Definition allins.hpp:5648
@ TMS6_saddus2
Definition allins.hpp:5636
@ TMS6_dint
Definition allins.hpp:5564
@ TMS6_subdp
Definition allins.hpp:5665
@ TMS6_mpyus
Definition allins.hpp:5471
@ TMS6_dssub2
Definition allins.hpp:5736
@ TMS6_dpackx2
Definition allins.hpp:5576
@ TMS6_intspu
Definition allins.hpp:5585
@ TMS6_dsadd2
Definition allins.hpp:5724
@ TMS6_avgu4
Definition allins.hpp:5536
@ TMS6_ldhu
Definition allins.hpp:5466
@ TMS6_mvd
Definition allins.hpp:5616
@ TMS6_addsub2
Definition allins.hpp:5533
@ TMS6_dsub2
Definition allins.hpp:5738
@ TMS6_ddotp4
Definition allins.hpp:5558
@ TMS6_mpyhlu
Definition allins.hpp:5478
@ TMS6_dpackh4
Definition allins.hpp:5718
@ TMS6_dpackhl2
Definition allins.hpp:5719
@ TMS6_mpy
Definition allins.hpp:5469
@ TMS6_norm
Definition allins.hpp:5492
@ TMS6_dxpnd2
Definition allins.hpp:5740
@ TMS6_gmpy
Definition allins.hpp:5580
@ TMS6_dotpn2
Definition allins.hpp:5567
@ TMS6_clr
Definition allins.hpp:5454
@ TMS6_rotl
Definition allins.hpp:5627
@ TMS6_pack2
Definition allins.hpp:5618
@ TMS6_dpint
Definition allins.hpp:5577
@ TMS6_mpyh
Definition allins.hpp:5473
@ TMS6_mpy32u
Definition allins.hpp:5597
@ TMS6_sploop
Definition allins.hpp:5651
@ TMS6_cmpgtu4
Definition allins.hpp:5550
@ TMS6_dotp2
Definition allins.hpp:5566
@ TMS6_addk
Definition allins.hpp:5450
@ TMS6_subaw
Definition allins.hpp:5516
@ TMS6_mvkl
Definition allins.hpp:5617
@ TMS6_saddsub2
Definition allins.hpp:5634
@ TMS6_subabs4
Definition allins.hpp:5664
@ TMS6_dminu4
Definition allins.hpp:5710
@ TMS6_lor
Definition allins.hpp:5749
@ TMS6_mvc
Definition allins.hpp:5486
@ TMS6_shfl3
Definition allins.hpp:5638
@ TMS6_lddw
Definition allins.hpp:5586
@ TMS6_saddu4
Definition allins.hpp:5635
@ TMS6_xpnd4
Definition allins.hpp:5675
@ TMS6_addab
Definition allins.hpp:5447
@ TMS6_xor
Definition allins.hpp:5519
@ TMS6_unpkhu2
Definition allins.hpp:5758
@ TMS6_qmpysp
Definition allins.hpp:5753
@ TMS6_dpacklh2
Definition allins.hpp:5722
@ TMS6_sploopd
Definition allins.hpp:5652
@ TMS6_ldb
Definition allins.hpp:5463
@ TMS6_lmbd
Definition allins.hpp:5468
@ TMS6_cmpyr
Definition allins.hpp:5556
@ TMS6_spkernel
Definition allins.hpp:5649
@ TMS6_sptrunc
Definition allins.hpp:5656
@ TMS6_addsub
Definition allins.hpp:5532
@ TMS6_cmpgtu
Definition allins.hpp:5457
@ TMS6_fphead
Definition allins.hpp:5760
@ TMS6_crot270
Definition allins.hpp:5686
@ TMS6_subab
Definition allins.hpp:5514
@ TMS6_ldw
Definition allins.hpp:5467
@ TMS6_dotpnrus2
Definition allins.hpp:5569
@ TMS6_dpackl4
Definition allins.hpp:5721
@ TMS6_ddotph2
Definition allins.hpp:5559
@ TMS6_dcrot270
Definition allins.hpp:5703
@ TMS6_xpnd2
Definition allins.hpp:5674
@ m7900_adcd
Definition allins.hpp:13511
@ m7900_stp
Definition allins.hpp:13731
@ m7900_bleu
Definition allins.hpp:13552
@ m7900_sep
Definition allins.hpp:13723
@ m7900_mvp
Definition allins.hpp:13655
@ m7900_mpys
Definition allins.hpp:13652
@ m7900_ply
Definition allins.hpp:13691
@ m7900_exts
Definition allins.hpp:13615
@ m7900_tds
Definition allins.hpp:13763
@ m7900_tby
Definition allins.hpp:13758
@ m7900_adcb
Definition allins.hpp:13510
@ m7900_bmi
Definition allins.hpp:13554
@ m7900_ble
Definition allins.hpp:13551
@ m7900_subb
Definition allins.hpp:13736
@ m7900_tbs
Definition allins.hpp:13756
@ m7900_pea
Definition allins.hpp:13668
@ m7900_movmb
Definition allins.hpp:13647
@ m7900_blt
Definition allins.hpp:13553
@ m7900_phy
Definition allins.hpp:13682
@ m7900_bra
Definition allins.hpp:13557
@ m7900_dey
Definition allins.hpp:13602
@ m7900_cmpm
Definition allins.hpp:13591
@ m7900_movm
Definition allins.hpp:13646
@ m7900_subs
Definition allins.hpp:13741
@ m7900_oramd
Definition allins.hpp:13666
@ m7900_bne
Definition allins.hpp:13555
@ m7900_addy
Definition allins.hpp:13522
@ m7900_ror
Definition allins.hpp:13704
@ m7900_eorm
Definition allins.hpp:13611
@ m7900_clp
Definition allins.hpp:13577
@ m7900_inc
Definition allins.hpp:13620
@ m7900_jmp
Definition allins.hpp:13624
@ m7900_stab
Definition allins.hpp:13727
@ m7900_clry
Definition allins.hpp:13584
@ m7900_asrn
Definition allins.hpp:13537
@ m7900_extzd
Definition allins.hpp:13618
@ m7900_dybne
Definition allins.hpp:13607
@ m7900_andb
Definition allins.hpp:13525
@ m7900_addd
Definition allins.hpp:13516
@ m7900_rtl
Definition allins.hpp:13709
@ m7900_dex
Definition allins.hpp:13601
@ m7900_addmb
Definition allins.hpp:13518
@ m7900_cmpb
Definition allins.hpp:13589
@ m7900_ldab
Definition allins.hpp:13632
@ m7900_andmd
Definition allins.hpp:13529
@ m7900_clrmb
Definition allins.hpp:13582
@ m7900_phdn
Definition allins.hpp:13674
@ m7900_addx
Definition allins.hpp:13521
@ m7900_xab
Definition allins.hpp:13780
@ m7900_cbne
Definition allins.hpp:13571
@ m7900_rol
Definition allins.hpp:13699
@ m7900_jsrl
Definition allins.hpp:13628
@ m7900_tay
Definition allins.hpp:13752
@ m7900_clrb
Definition allins.hpp:13580
@ m7900_jmpl
Definition allins.hpp:13625
@ m7900_stad
Definition allins.hpp:13728
@ m7900_suby
Definition allins.hpp:13743
@ m7900_rorn
Definition allins.hpp:13705
@ m7900_phldn
Definition allins.hpp:13677
@ m7900_asrdn
Definition allins.hpp:13538
@ m7900_ora
Definition allins.hpp:13662
@ m7900_bgtu
Definition allins.hpp:13550
@ m7900_pht
Definition allins.hpp:13680
@ m7900_andm
Definition allins.hpp:13527
@ m7900_eormd
Definition allins.hpp:13613
@ m7900_cbneb
Definition allins.hpp:13572
@ m7900_addm
Definition allins.hpp:13517
@ m7900_bvc
Definition allins.hpp:13566
@ m7900_ldy
Definition allins.hpp:13639
@ m7900_cmp
Definition allins.hpp:13588
@ m7900_andmb
Definition allins.hpp:13528
@ m7900_tsb
Definition allins.hpp:13767
@ m7900_clv
Definition allins.hpp:13586
@ m7900_tya
Definition allins.hpp:13774
@ m7900_plx
Definition allins.hpp:13690
@ m7900_txb
Definition allins.hpp:13771
@ m7900_sbcd
Definition allins.hpp:13717
@ m7900_oramb
Definition allins.hpp:13665
@ m7900_asldn
Definition allins.hpp:13533
@ m7900_subd
Definition allins.hpp:13737
@ m7900_bss
Definition allins.hpp:13564
@ m7900_adc
Definition allins.hpp:13509
@ m7900_clr
Definition allins.hpp:13579
@ m7900_tdbn
Definition allins.hpp:13761
@ m7900_pldn
Definition allins.hpp:13687
@ m7900_bpl
Definition allins.hpp:13556
@ m7900_lsrdn
Definition allins.hpp:13644
@ m7900_bgt
Definition allins.hpp:13549
@ m7900_phg
Definition allins.hpp:13675
@ m7900_addb
Definition allins.hpp:13515
@ m7900_tsd
Definition allins.hpp:13768
@ m7900_addmd
Definition allins.hpp:13519
@ m7900_cbeq
Definition allins.hpp:13569
@ m7900_lda
Definition allins.hpp:13631
@ m7900_bsc
Definition allins.hpp:13562
@ m7900_phd
Definition allins.hpp:13673
@ m7900_iny
Definition allins.hpp:13622
@ m7900_bbsb
Definition allins.hpp:13543
@ m7900_php
Definition allins.hpp:13679
@ m7900_bbcb
Definition allins.hpp:13541
@ m7900_cpy
Definition allins.hpp:13596
@ m7900_eor
Definition allins.hpp:13609
@ m7900_pld
Definition allins.hpp:13686
@ m7900_clrm
Definition allins.hpp:13581
@ m7900_sbcb
Definition allins.hpp:13716
@ m7900_extz
Definition allins.hpp:13617
@ m7900_bvs
Definition allins.hpp:13567
@ m7900_pei
Definition allins.hpp:13669
@ m7900_rla
Definition allins.hpp:13696
@ m7900_negd
Definition allins.hpp:13658
@ m7900_divs
Definition allins.hpp:13605
@ m7900_cpx
Definition allins.hpp:13595
@ m7900_asln
Definition allins.hpp:13532
@ m7900_per
Definition allins.hpp:13670
@ m7900_clc
Definition allins.hpp:13574
@ m7900_txy
Definition allins.hpp:13773
@ m7900_txs
Definition allins.hpp:13772
@ m7900_stx
Definition allins.hpp:13732
@ m7900_ldx
Definition allins.hpp:13637
@ m7900_eormb
Definition allins.hpp:13612
@ m7900_oram
Definition allins.hpp:13664
@ m7900_subm
Definition allins.hpp:13738
@ m7900_dxbne
Definition allins.hpp:13606
@ m7900_plp
Definition allins.hpp:13688
@ m7900_brk
Definition allins.hpp:13560
@ m7900_ldad
Definition allins.hpp:13633
@ m7900_rordn
Definition allins.hpp:13706
@ m7900_movr
Definition allins.hpp:13648
@ m7900_cbeqb
Definition allins.hpp:13570
@ m7900_subx
Definition allins.hpp:13742
@ m7900_submd
Definition allins.hpp:13740
@ m7900_txa
Definition allins.hpp:13770
@ m7900_sub
Definition allins.hpp:13735
@ m7900_sta
Definition allins.hpp:13726
@ m7900_div
Definition allins.hpp:13604
@ m7900_tax
Definition allins.hpp:13751
@ m7900_rti
Definition allins.hpp:13708
@ m7900_and
Definition allins.hpp:13524
@ m7900_wit
Definition allins.hpp:13778
@ m7900_rts
Definition allins.hpp:13711
@ m7900_debne
Definition allins.hpp:13598
@ m7900_tadn
Definition allins.hpp:13747
@ m7900_clm
Definition allins.hpp:13576
@ m7900_asl
Definition allins.hpp:13531
@ m7900_pha
Definition allins.hpp:13671
@ m7900_movrb
Definition allins.hpp:13649
@ m7900_psh
Definition allins.hpp:13693
@ m7900_phx
Definition allins.hpp:13681
@ m7900_jsr
Definition allins.hpp:13627
@ m7900_tbx
Definition allins.hpp:13757
@ m7900_rtld
Definition allins.hpp:13710
@ m7900_sem
Definition allins.hpp:13722
@ m7900_lsrn
Definition allins.hpp:13643
@ m7900_cli
Definition allins.hpp:13575
@ m7900_ldyb
Definition allins.hpp:13640
@ m7900_plb
Definition allins.hpp:13685
@ m7900_cmpd
Definition allins.hpp:13590
@ m7900_beq
Definition allins.hpp:13547
@ m7900_sbc
Definition allins.hpp:13715
@ m7900_roldn
Definition allins.hpp:13702
@ m7900_mvn
Definition allins.hpp:13654
@ m7900_eorb
Definition allins.hpp:13610
@ m7900_orab
Definition allins.hpp:13663
@ m7900_add
Definition allins.hpp:13513
@ m7900_abs
Definition allins.hpp:13506
@ m7900_bge
Definition allins.hpp:13548
@ m7900_bcc
Definition allins.hpp:13545
@ m7900_dec
Definition allins.hpp:13600
@ m7900_extsd
Definition allins.hpp:13616
@ m7900_bbs
Definition allins.hpp:13542
@ m7900_ldt
Definition allins.hpp:13636
@ m7900_asr
Definition allins.hpp:13536
@ m7900_tbdn
Definition allins.hpp:13754
@ m7900_ldxb
Definition allins.hpp:13638
@ m7900_null
Definition allins.hpp:13503
@ m7900_rtsdn
Definition allins.hpp:13712
@ m7900_rmpa
Definition allins.hpp:13697
@ m7900_plt
Definition allins.hpp:13689
@ m7900_bcs
Definition allins.hpp:13546
@ m7900_neg
Definition allins.hpp:13657
@ m7900_pul
Definition allins.hpp:13694
@ m7900_tyx
Definition allins.hpp:13776
@ m7900_lsr
Definition allins.hpp:13642
@ m7900_adds
Definition allins.hpp:13520
@ m7900_nop
Definition allins.hpp:13660
@ m7900_tsx
Definition allins.hpp:13769
@ m7900_absd
Definition allins.hpp:13507
@ m7900_roln
Definition allins.hpp:13700
@ m7900_bsr
Definition allins.hpp:13563
@ m7900_bbc
Definition allins.hpp:13540
@ m7900_cmpmd
Definition allins.hpp:13593
@ m7900_submb
Definition allins.hpp:13739
@ m7900_sei
Definition allins.hpp:13721
@ m7900_phb
Definition allins.hpp:13672
@ m7900_bral
Definition allins.hpp:13558
@ m7900_cmpmb
Definition allins.hpp:13592
@ m7900_sty
Definition allins.hpp:13733
@ m7900_inx
Definition allins.hpp:13621
@ m7900_tas
Definition allins.hpp:13750
@ m7900_tsa
Definition allins.hpp:13766
@ m7900_tyb
Definition allins.hpp:13775
@ m7900_pla
Definition allins.hpp:13684
@ m7900_lddn
Definition allins.hpp:13634
@ m7900_sec
Definition allins.hpp:13720
@ m7900_tdan
Definition allins.hpp:13760
@ m7900_last
Definition allins.hpp:13782
@ m7900_mpy
Definition allins.hpp:13651
@ m7900_clrx
Definition allins.hpp:13583
@ RISCV_thsrw
Definition allins.hpp:23678
@ RISCV_vfmadd
Definition allins.hpp:23502
@ RISCV_blt
Definition allins.hpp:23180
@ RISCV_vfredmax
Definition allins.hpp:23476
@ RISCV_vnsra
Definition allins.hpp:23402
@ RISCV_vfmsub
Definition allins.hpp:23504
@ RISCV_flw
Definition allins.hpp:23275
@ RISCV_nop
Definition allins.hpp:23309
@ RISCV_thff1
Definition allins.hpp:23640
@ RISCV_cpopw
Definition allins.hpp:23549
@ RISCV_vwmulu
Definition allins.hpp:23461
@ RISCV_thlurbu
Definition allins.hpp:23681
@ RISCV_bnez
Definition allins.hpp:23323
@ RISCV_divuw
Definition allins.hpp:23257
@ RISCV_sra
Definition allins.hpp:23208
@ RISCV_vfnmsac
Definition allins.hpp:23509
@ RISCV_vslideup
Definition allins.hpp:23373
@ RISCV_vmfge
Definition allins.hpp:23497
@ RISCV_thvpnclipu
Definition allins.hpp:23728
@ RISCV_vmax
Definition allins.hpp:23368
@ RISCV_addw
Definition allins.hpp:23230
@ RISCV_ret
Definition allins.hpp:23330
@ RISCV_vmnor
Definition allins.hpp:23439
@ RISCV_amomaxu
Definition allins.hpp:23271
@ RISCV_thmvnez
Definition allins.hpp:23646
@ RISCV_thlwd
Definition allins.hpp:23692
@ RISCV_vslide1down
Definition allins.hpp:23421
@ RISCV_vfwmacc
Definition allins.hpp:23517
@ RISCV_thsrb
Definition allins.hpp:23676
@ RISCV_sinval
Definition allins.hpp:23577
@ RISCV_lwu
Definition allins.hpp:23223
@ RISCV_thdcacheciva
Definition allins.hpp:23615
@ RISCV_vmvr
Definition allins.hpp:23396
@ RISCV_sfencefg
Definition allins.hpp:23578
@ RISCV_srli
Definition allins.hpp:23199
@ RISCV_bne
Definition allins.hpp:23179
@ RISCV_vs
Definition allins.hpp:23360
@ RISCV_fcvtf2i
Definition allins.hpp:23292
@ RISCV_vmacc
Definition allins.hpp:23451
@ RISCV_csrr
Definition allins.hpp:23337
@ RISCV_vredmaxu
Definition allins.hpp:23414
@ RISCV_thsdib
Definition allins.hpp:23668
@ RISCV_vmulh
Definition allins.hpp:23448
@ RISCV_sm4
Definition allins.hpp:23599
@ RISCV_thvpwaddu
Definition allins.hpp:23730
@ RISCV_vfwnmsac
Definition allins.hpp:23520
@ RISCV_sh3add
Definition allins.hpp:23567
@ RISCV_amoor
Definition allins.hpp:23267
@ RISCV_orn
Definition allins.hpp:23557
@ RISCV_vmsif
Definition allins.hpp:23429
@ RISCV_vsext
Definition allins.hpp:23426
@ RISCV_vmsof
Definition allins.hpp:23428
@ RISCV_fdiv
Definition allins.hpp:23284
@ RISCV_vmsgtu
Definition allins.hpp:23388
@ RISCV_vmflt
Definition allins.hpp:23494
@ RISCV_vredmax
Definition allins.hpp:23415
@ RISCV_vsll
Definition allins.hpp:23394
@ RISCV_flq
Definition allins.hpp:23305
@ RISCV_vncvt
Definition allins.hpp:23526
@ RISCV_xori
Definition allins.hpp:23195
@ RISCV_vmadc
Definition allins.hpp:23377
@ RISCV_thlurhu
Definition allins.hpp:23683
@ RISCV_vmclr
Definition allins.hpp:23530
@ RISCV_li
Definition allins.hpp:23310
@ RISCV_vfslide1down
Definition allins.hpp:23481
@ RISCV_vwadduw
Definition allins.hpp:23457
@ RISCV_unzip
Definition allins.hpp:23600
@ RISCV_vfmax
Definition allins.hpp:23475
@ RISCV_thlurwu
Definition allins.hpp:23685
@ RISCV_vsmul
Definition allins.hpp:23395
@ RISCV_thlhib
Definition allins.hpp:23652
@ RISCV_thlurb
Definition allins.hpp:23680
@ RISCV_rdtime
Definition allins.hpp:23333
@ RISCV_fsflags
Definition allins.hpp:23349
@ RISCV_ecall
Definition allins.hpp:23212
@ RISCV_thmulsw
Definition allins.hpp:23709
@ RISCV_vwsubw
Definition allins.hpp:23460
@ RISCV_thdcachecpal1
Definition allins.hpp:23620
@ RISCV_fsqrt
Definition allins.hpp:23285
@ RISCV_viota
Definition allins.hpp:23430
@ RISCV_ori
Definition allins.hpp:23196
@ RISCV_vfsqrt
Definition allins.hpp:23486
@ RISCV_sltu
Definition allins.hpp:23205
@ RISCV_bseti
Definition allins.hpp:23542
@ RISCV_thsurh
Definition allins.hpp:23688
@ RISCV_remw
Definition allins.hpp:23258
@ RISCV_vsra
Definition allins.hpp:23398
@ RISCV_vzext
Definition allins.hpp:23425
@ RISCV_vmsleu
Definition allins.hpp:23386
@ RISCV_vnclipu
Definition allins.hpp:23403
@ RISCV_flt
Definition allins.hpp:23296
@ RISCV_clzw
Definition allins.hpp:23547
@ RISCV_packw
Definition allins.hpp:23595
@ RISCV_slti
Definition allins.hpp:23193
@ RISCV_bge
Definition allins.hpp:23181
@ RISCV_vmand
Definition allins.hpp:23434
@ RISCV_auipc
Definition allins.hpp:23175
@ RISCV_pack
Definition allins.hpp:23593
@ RISCV_thvpwadd
Definition allins.hpp:23729
@ RISCV_uret
Definition allins.hpp:23214
@ RISCV_pause
Definition allins.hpp:23581
@ RISCV_mulhu
Definition allins.hpp:23249
@ RISCV_thtst
Definition allins.hpp:23644
@ RISCV_aes64ks2
Definition allins.hpp:23591
@ RISCV_vasub
Definition allins.hpp:23419
@ RISCV_binvi
Definition allins.hpp:23540
@ RISCV_thvmaqasu
Definition allins.hpp:23721
@ RISCV_vfsgnj
Definition allins.hpp:23477
@ RISCV_vsetvli
Definition allins.hpp:23357
@ RISCV_negw
Definition allins.hpp:23314
@ RISCV_vwmaccus
Definition allins.hpp:23466
@ RISCV_vmorn
Definition allins.hpp:23437
@ RISCV_vmfne
Definition allins.hpp:23495
@ RISCV_vmsbf
Definition allins.hpp:23427
@ RISCV_frflags
Definition allins.hpp:23348
@ RISCV_vfredosum
Definition allins.hpp:23472
@ RISCV_vmulhu
Definition allins.hpp:23445
@ RISCV_lb
Definition allins.hpp:23184
@ RISCV_thlbuib
Definition allins.hpp:23650
@ RISCV_slli
Definition allins.hpp:23198
@ RISCV_clmulh
Definition allins.hpp:23544
@ RISCV_thflurd
Definition allins.hpp:23698
@ RISCV_frcsr
Definition allins.hpp:23344
@ RISCV_vfsgnjx
Definition allins.hpp:23479
@ RISCV_sb
Definition allins.hpp:23189
@ RISCV_thlbia
Definition allins.hpp:23647
@ RISCV_thfsrw
Definition allins.hpp:23701
@ RISCV_vmv
Definition allins.hpp:23381
@ RISCV_vfslide1up
Definition allins.hpp:23480
@ RISCV_vmsle
Definition allins.hpp:23387
@ RISCV_mulhsu
Definition allins.hpp:23248
@ RISCV_rdtimeh
Definition allins.hpp:23336
@ RISCV_clmulr
Definition allins.hpp:23545
@ RISCV_zip
Definition allins.hpp:23603
@ RISCV_thaddsl
Definition allins.hpp:23634
@ RISCV_cbo
Definition allins.hpp:23583
@ RISCV_vaadd
Definition allins.hpp:23417
@ RISCV_thlbib
Definition allins.hpp:23648
@ RISCV_lw
Definition allins.hpp:23186
@ RISCV_xor
Definition allins.hpp:23206
@ RISCV_vmaxu
Definition allins.hpp:23367
@ RISCV_vmin
Definition allins.hpp:23366
@ RISCV_lhu
Definition allins.hpp:23188
@ RISCV_vmandn
Definition allins.hpp:23433
@ RISCV_fmsub
Definition allins.hpp:23278
@ RISCV_unk
Definition allins.hpp:23733
@ RISCV_bltz
Definition allins.hpp:23326
@ RISCV_thvpmaqasu
Definition allins.hpp:23726
@ RISCV_thandn
Definition allins.hpp:23713
@ RISCV_vmfle
Definition allins.hpp:23493
@ RISCV_thlrd
Definition allins.hpp:23675
@ RISCV_vfredmin
Definition allins.hpp:23474
@ RISCV_fcvtf2f
Definition allins.hpp:23291
@ RISCV_vfwmsac
Definition allins.hpp:23519
@ RISCV_thlrb
Definition allins.hpp:23669
@ RISCV_sext
Definition allins.hpp:23315
@ RISCV_vnot
Definition allins.hpp:23525
@ RISCV_andn
Definition allins.hpp:23534
@ RISCV_lh
Definition allins.hpp:23185
@ RISCV_vfabs
Definition allins.hpp:23528
@ RISCV_vredxor
Definition allins.hpp:23411
@ RISCV_vasubu
Definition allins.hpp:23418
@ RISCV_vand
Definition allins.hpp:23369
@ RISCV_bclr
Definition allins.hpp:23535
@ RISCV_thfmv
Definition allins.hpp:23710
@ RISCV_subw
Definition allins.hpp:23231
@ RISCV_thlrbu
Definition allins.hpp:23670
@ RISCV_csrsi
Definition allins.hpp:23342
@ RISCV_bgtz
Definition allins.hpp:23327
@ RISCV_min
Definition allins.hpp:23554
@ RISCV_vfmsac
Definition allins.hpp:23508
@ RISCV_thdcachecisw
Definition allins.hpp:23618
@ RISCV_vrgatherei16
Definition allins.hpp:23374
@ RISCV_thlurw
Definition allins.hpp:23684
@ RISCV_not
Definition allins.hpp:23312
@ RISCV_vsbc
Definition allins.hpp:23378
@ RISCV_vid
Definition allins.hpp:23431
@ RISCV_thsbia
Definition allins.hpp:23661
@ RISCV_rdinstreth
Definition allins.hpp:23334
@ RISCV_vwmaccu
Definition allins.hpp:23464
@ RISCV_thtstnbz
Definition allins.hpp:23643
@ RISCV_vmerge
Definition allins.hpp:23380
@ RISCV_vrsub
Definition allins.hpp:23364
@ RISCV_fadd
Definition allins.hpp:23281
@ RISCV_vfmacc
Definition allins.hpp:23506
@ RISCV_orc
Definition allins.hpp:23556
@ RISCV_hfenceg
Definition allins.hpp:23220
@ RISCV_fmul
Definition allins.hpp:23283
@ RISCV_vmseq
Definition allins.hpp:23382
@ RISCV_vfwmul
Definition allins.hpp:23516
@ RISCV_tail
Definition allins.hpp:23353
@ RISCV_vwmacc
Definition allins.hpp:23465
@ RISCV_thflurw
Definition allins.hpp:23699
@ RISCV_vwsubu
Definition allins.hpp:23455
@ RISCV_fld
Definition allins.hpp:23301
@ RISCV_remuw
Definition allins.hpp:23259
@ RISCV_vfdiv
Definition allins.hpp:23498
@ RISCV_minu
Definition allins.hpp:23555
@ RISCV_vnclip
Definition allins.hpp:23404
@ RISCV_thflrw
Definition allins.hpp:23697
@ RISCV_thshia
Definition allins.hpp:23663
@ RISCV_sraiw
Definition allins.hpp:23229
@ RISCV_clmul
Definition allins.hpp:23543
@ RISCV_thfsurd
Definition allins.hpp:23702
@ RISCV_last
Definition allins.hpp:23735
@ RISCV_fsrm
Definition allins.hpp:23347
@ RISCV_vdiv
Definition allins.hpp:23442
@ RISCV_thswib
Definition allins.hpp:23666
@ RISCV_thlhia
Definition allins.hpp:23651
@ RISCV_vfncvt
Definition allins.hpp:23485
@ RISCV_thsrri
Definition allins.hpp:23635
@ RISCV_slt
Definition allins.hpp:23204
@ RISCV_ld
Definition allins.hpp:23224
@ RISCV_vmsgt
Definition allins.hpp:23389
@ RISCV_rori
Definition allins.hpp:23562
@ RISCV_thl2cacheiall
Definition allins.hpp:23628
@ RISCV_vredminu
Definition allins.hpp:23412
@ RISCV_thpackh
Definition allins.hpp:23717
@ RISCV_vsaddu
Definition allins.hpp:23390
@ RISCV_fence
Definition allins.hpp:23211
@ RISCV_vaaddu
Definition allins.hpp:23416
@ RISCV_null
Definition allins.hpp:23170
@ RISCV_cpop
Definition allins.hpp:23548
@ RISCV_maxu
Definition allins.hpp:23553
@ RISCV_la
Definition allins.hpp:23351
@ RISCV_hinval
Definition allins.hpp:23579
@ RISCV_vmulhsu
Definition allins.hpp:23447
@ RISCV_sd
Definition allins.hpp:23225
@ RISCV_thdcachecva
Definition allins.hpp:23614
@ RISCV_fsh
Definition allins.hpp:23572
@ RISCV_thlrwu
Definition allins.hpp:23674
@ RISCV_vmul
Definition allins.hpp:23446
@ RISCV_lui
Definition allins.hpp:23174
@ RISCV_vfsgnjn
Definition allins.hpp:23478
@ RISCV_mret
Definition allins.hpp:23216
@ RISCV_thlwib
Definition allins.hpp:23656
@ RISCV_sha256
Definition allins.hpp:23596
@ RISCV_amoxor
Definition allins.hpp:23265
@ RISCV_thdcachecsw
Definition allins.hpp:23617
@ RISCV_thlwuib
Definition allins.hpp:23658
@ RISCV_thlhuia
Definition allins.hpp:23653
@ RISCV_thmula
Definition allins.hpp:23704
@ RISCV_fsgnj
Definition allins.hpp:23286
@ RISCV_vwadd
Definition allins.hpp:23454
@ RISCV_clz
Definition allins.hpp:23546
@ RISCV_zext
Definition allins.hpp:23569
@ RISCV_bgeu
Definition allins.hpp:23183
@ RISCV_div
Definition allins.hpp:23250
@ RISCV_rdcycle
Definition allins.hpp:23332
@ RISCV_vfnmacc
Definition allins.hpp:23507
@ RISCV_vminu
Definition allins.hpp:23365
@ RISCV_wrssto
Definition allins.hpp:23606
@ RISCV_vwcvtu
Definition allins.hpp:23524
@ RISCV_fneg
Definition allins.hpp:23321
@ RISCV_sraw
Definition allins.hpp:23235
@ RISCV_thvpmaqa
Definition allins.hpp:23723
@ RISCV_vfmov
Definition allins.hpp:23482
@ RISCV_thsrd
Definition allins.hpp:23679
@ RISCV_fcvti2f
Definition allins.hpp:23293
@ RISCV_vfwadd
Definition allins.hpp:23510
@ RISCV_hfenceb
Definition allins.hpp:23219
@ RISCV_csrs
Definition allins.hpp:23339
@ RISCV_call
Definition allins.hpp:23352
@ RISCV_ctz
Definition allins.hpp:23550
@ RISCV_prefetch
Definition allins.hpp:23584
@ RISCV_hs
Definition allins.hpp:23575
@ RISCV_jump
Definition allins.hpp:23354
@ RISCV_srliw
Definition allins.hpp:23228
@ RISCV_thsync
Definition allins.hpp:23630
@ RISCV_fclass
Definition allins.hpp:23298
@ RISCV_threvw
Definition allins.hpp:23642
@ RISCV_vwmul
Definition allins.hpp:23463
@ RISCV_thlrhu
Definition allins.hpp:23672
@ RISCV_sltiu
Definition allins.hpp:23194
@ RISCV_snez
Definition allins.hpp:23317
@ RISCV_rol
Definition allins.hpp:23559
@ RISCV_ebreak
Definition allins.hpp:23213
@ RISCV_fsq
Definition allins.hpp:23306
@ RISCV_jr
Definition allins.hpp:23329
@ RISCV_vwredsum
Definition allins.hpp:23406
@ RISCV_sm3
Definition allins.hpp:23598
@ RISCV_thsurw
Definition allins.hpp:23689
@ RISCV_vremu
Definition allins.hpp:23443
@ RISCV_vredor
Definition allins.hpp:23410
@ RISCV_thldia
Definition allins.hpp:23659
@ RISCV_vwaddw
Definition allins.hpp:23458
@ RISCV_thdcacheisw
Definition allins.hpp:23619
@ RISCV_vmxor
Definition allins.hpp:23436
@ RISCV_vfrsqrt7
Definition allins.hpp:23487
@ RISCV_vrem
Definition allins.hpp:23444
@ RISCV_vnsrl
Definition allins.hpp:23401
@ RISCV_thlurd
Definition allins.hpp:23686
@ RISCV_thlrw
Definition allins.hpp:23673
@ RISCV_lr
Definition allins.hpp:23261
@ RISCV_sgtz
Definition allins.hpp:23319
@ RISCV_thfsrd
Definition allins.hpp:23700
@ RISCV_vfrec7
Definition allins.hpp:23488
@ RISCV_sh
Definition allins.hpp:23190
@ RISCV_vfwredusum
Definition allins.hpp:23511
@ RISCV_rdcycleh
Definition allins.hpp:23335
@ RISCV_vredand
Definition allins.hpp:23409
@ RISCV_sh1add
Definition allins.hpp:23565
@ RISCV_thdcacheiall
Definition allins.hpp:23610
@ RISCV_vfmerge
Definition allins.hpp:23490
@ RISCV_thlwud
Definition allins.hpp:23693
@ RISCV_vmsbc
Definition allins.hpp:23379
@ RISCV_thvpmaqaus
Definition allins.hpp:23725
@ RISCV_thicacheiva
Definition allins.hpp:23625
@ RISCV_bltu
Definition allins.hpp:23182
@ RISCV_mulw
Definition allins.hpp:23255
@ RISCV_thdcachecipa
Definition allins.hpp:23612
@ RISCV_rem
Definition allins.hpp:23252
@ RISCV_mv
Definition allins.hpp:23311
@ RISCV_vfmin
Definition allins.hpp:23473
@ RISCV_vadd
Definition allins.hpp:23362
@ RISCV_fabs
Definition allins.hpp:23320
@ RISCV_vfredusum
Definition allins.hpp:23470
@ RISCV_vmsltu
Definition allins.hpp:23384
@ RISCV_aes64im
Definition allins.hpp:23589
@ RISCV_thlwuia
Definition allins.hpp:23657
@ RISCV_vmnot
Definition allins.hpp:23532
@ RISCV_vfwredosum
Definition allins.hpp:23513
@ RISCV_fencei
Definition allins.hpp:23237
@ RISCV_thsynci
Definition allins.hpp:23632
@ RISCV_thldib
Definition allins.hpp:23660
@ RISCV_vwredsumu
Definition allins.hpp:23405
@ RISCV_vsub
Definition allins.hpp:23363
@ RISCV_vfsub
Definition allins.hpp:23471
@ RISCV_seqz
Definition allins.hpp:23316
@ RISCV_amoswap
Definition allins.hpp:23263
@ RISCV_aes
Definition allins.hpp:23588
@ RISCV_sltz
Definition allins.hpp:23318
@ RISCV_srlw
Definition allins.hpp:23234
@ RISCV_thsfencevmas
Definition allins.hpp:23629
@ RISCV_slliw
Definition allins.hpp:23227
@ RISCV_thdcacheiva
Definition allins.hpp:23616
@ RISCV_wrsnto
Definition allins.hpp:23605
@ RISCV_beq
Definition allins.hpp:23178
@ RISCV_fsw
Definition allins.hpp:23276
@ RISCV_fle
Definition allins.hpp:23297
@ RISCV_rorw
Definition allins.hpp:23564
@ RISCV_vfclass
Definition allins.hpp:23489
@ RISCV_thl2cacheciall
Definition allins.hpp:23627
@ RISCV_divu
Definition allins.hpp:23251
@ RISCV_fnmsub
Definition allins.hpp:23279
@ RISCV_vmset
Definition allins.hpp:23531
@ RISCV_thdcacheciall
Definition allins.hpp:23609
@ RISCV_thsurb
Definition allins.hpp:23687
@ RISCV_thpackhl
Definition allins.hpp:23718
@ RISCV_vsetvl
Definition allins.hpp:23356
@ RISCV_thflrd
Definition allins.hpp:23696
@ RISCV_vsrl
Definition allins.hpp:23397
@ RISCV_bclri
Definition allins.hpp:23536
@ RISCV_thsrh
Definition allins.hpp:23677
@ RISCV_amominu
Definition allins.hpp:23270
@ RISCV_thsyncis
Definition allins.hpp:23633
@ RISCV_max
Definition allins.hpp:23552
@ RISCV_vwsubuw
Definition allins.hpp:23459
@ RISCV_vslide1up
Definition allins.hpp:23420
@ RISCV_vssra
Definition allins.hpp:23400
@ RISCV_sll
Definition allins.hpp:23203
@ RISCV_neg
Definition allins.hpp:23313
@ RISCV_xperm8
Definition allins.hpp:23602
@ RISCV_sfence
Definition allins.hpp:23218
@ RISCV_hl
Definition allins.hpp:23574
@ RISCV_fsub
Definition allins.hpp:23282
@ RISCV_thldd
Definition allins.hpp:23691
@ RISCV_rolw
Definition allins.hpp:23560
@ RISCV_vredsum
Definition allins.hpp:23408
@ RISCV_lbu
Definition allins.hpp:23187
@ RISCV_fsgnjx
Definition allins.hpp:23288
@ RISCV_vmxnor
Definition allins.hpp:23440
@ RISCV_csrrsi
Definition allins.hpp:23243
@ RISCV_vsetivli
Definition allins.hpp:23358
@ RISCV_vfadd
Definition allins.hpp:23469
@ RISCV_vssubu
Definition allins.hpp:23392
@ RISCV_thff0
Definition allins.hpp:23639
@ RISCV_thorn
Definition allins.hpp:23714
@ RISCV_vmor
Definition allins.hpp:23435
@ RISCV_vmvi
Definition allins.hpp:23424
@ RISCV_amoand
Definition allins.hpp:23266
@ RISCV_vnmsac
Definition allins.hpp:23452
@ RISCV_mul
Definition allins.hpp:23246
@ RISCV_thsdia
Definition allins.hpp:23667
@ RISCV_divw
Definition allins.hpp:23256
@ RISCV_srl
Definition allins.hpp:23207
@ RISCV_thvmaqaus
Definition allins.hpp:23722
@ RISCV_sha512
Definition allins.hpp:23597
@ RISCV_thsurd
Definition allins.hpp:23690
@ RISCV_bext
Definition allins.hpp:23537
@ RISCV_srai
Definition allins.hpp:23200
@ RISCV_vfnmadd
Definition allins.hpp:23503
@ RISCV_mulh
Definition allins.hpp:23247
@ RISCV_sllw
Definition allins.hpp:23232
@ RISCV_thpackl
Definition allins.hpp:23716
@ RISCV_thipop
Definition allins.hpp:23712
@ RISCV_thvpmaqau
Definition allins.hpp:23724
@ RISCV_csrrwi
Definition allins.hpp:23242
@ RISCV_thdcachecall
Definition allins.hpp:23608
@ RISCV_vxor
Definition allins.hpp:23371
@ RISCV_csrrc
Definition allins.hpp:23241
@ RISCV_csrc
Definition allins.hpp:23340
@ RISCV_thicacheipa
Definition allins.hpp:23624
@ RISCV_sh2add
Definition allins.hpp:23566
@ RISCV_csrrci
Definition allins.hpp:23244
@ RISCV_vadc
Definition allins.hpp:23376
@ RISCV_binv
Definition allins.hpp:23539
@ RISCV_thext
Definition allins.hpp:23637
@ RISCV_csrci
Definition allins.hpp:23343
@ RISCV_vslidedown
Definition allins.hpp:23375
@ RISCV_add
Definition allins.hpp:23201
@ RISCV_jal
Definition allins.hpp:23176
@ RISCV_remu
Definition allins.hpp:23253
@ RISCV_vfmul
Definition allins.hpp:23500
@ RISCV_thdcachecval1
Definition allins.hpp:23621
@ RISCV_amoadd
Definition allins.hpp:23264
@ RISCV_fmadd
Definition allins.hpp:23277
@ RISCV_fscsr
Definition allins.hpp:23345
@ RISCV_thvmaqau
Definition allins.hpp:23720
@ RISCV_thmuls
Definition allins.hpp:23707
@ RISCV_thvmaqa
Definition allins.hpp:23719
@ RISCV_threv
Definition allins.hpp:23641
@ RISCV_vl
Definition allins.hpp:23359
@ RISCV_roriw
Definition allins.hpp:23563
@ RISCV_vfrdiv
Definition allins.hpp:23499
@ RISCV_vredmin
Definition allins.hpp:23413
@ RISCV_vmslt
Definition allins.hpp:23385
@ RISCV_thmulsh
Definition allins.hpp:23708
@ RISCV_vfwsubw
Definition allins.hpp:23515
@ RISCV_amomax
Definition allins.hpp:23269
@ RISCV_packh
Definition allins.hpp:23594
@ RISCV_thmveqz
Definition allins.hpp:23645
@ RISCV_vfirst
Definition allins.hpp:23423
@ RISCV_vmadd
Definition allins.hpp:23449
@ RISCV_vfneg
Definition allins.hpp:23527
@ RISCV_thlhuib
Definition allins.hpp:23654
@ RISCV_sc
Definition allins.hpp:23262
@ RISCV_or
Definition allins.hpp:23209
@ RISCV_thlwia
Definition allins.hpp:23655
@ RISCV_fsd
Definition allins.hpp:23302
@ RISCV_thl2cachecall
Definition allins.hpp:23626
@ RISCV_sfencevm
Definition allins.hpp:23586
@ RISCV_thlurh
Definition allins.hpp:23682
@ RISCV_sret
Definition allins.hpp:23215
@ RISCV_thicacheialls
Definition allins.hpp:23623
@ RISCV_thipush
Definition allins.hpp:23711
@ RISCV_vwsub
Definition allins.hpp:23456
@ RISCV_thlrh
Definition allins.hpp:23671
@ RISCV_vor
Definition allins.hpp:23370
@ RISCV_ctzw
Definition allins.hpp:23551
@ RISCV_vneg
Definition allins.hpp:23522
@ RISCV_thicacheiall
Definition allins.hpp:23622
@ RISCV_csrw
Definition allins.hpp:23338
@ RISCV_amomin
Definition allins.hpp:23268
@ RISCV_thswia
Definition allins.hpp:23665
@ RISCV_jalr
Definition allins.hpp:23177
@ RISCV_thsrriw
Definition allins.hpp:23636
@ RISCV_thxorn
Definition allins.hpp:23715
@ RISCV_vdivu
Definition allins.hpp:23441
@ RISCV_sw
Definition allins.hpp:23191
@ RISCV_thvpnclip
Definition allins.hpp:23727
@ RISCV_vfrsub
Definition allins.hpp:23501
@ RISCV_rdinstret
Definition allins.hpp:23331
@ RISCV_vwmaccsu
Definition allins.hpp:23467
@ RISCV_blez
Definition allins.hpp:23324
@ RISCV_csrrw
Definition allins.hpp:23239
@ RISCV_xperm4
Definition allins.hpp:23601
@ RISCV_feq
Definition allins.hpp:23295
@ RISCV_bgez
Definition allins.hpp:23325
@ RISCV_thsdd
Definition allins.hpp:23694
@ RISCV_bexti
Definition allins.hpp:23538
@ RISCV_thshib
Definition allins.hpp:23664
@ RISCV_rev8
Definition allins.hpp:23558
@ RISCV_thlbuia
Definition allins.hpp:23649
@ RISCV_vfwaddw
Definition allins.hpp:23514
@ RISCV_vwaddu
Definition allins.hpp:23453
@ RISCV_sub
Definition allins.hpp:23202
@ RISCV_thdcacheipa
Definition allins.hpp:23613
@ RISCV_vfnmsub
Definition allins.hpp:23505
@ RISCV_thfsurw
Definition allins.hpp:23703
@ RISCV_sltw
Definition allins.hpp:23233
@ RISCV_vfcvt
Definition allins.hpp:23483
@ RISCV_vmfeq
Definition allins.hpp:23492
@ RISCV_vmmv
Definition allins.hpp:23529
@ RISCV_frrm
Definition allins.hpp:23346
@ RISCV_vmsne
Definition allins.hpp:23383
@ RISCV_amocas
Definition allins.hpp:23273
@ RISCV_vfwsub
Definition allins.hpp:23512
@ RISCV_vnmsub
Definition allins.hpp:23450
@ RISCV_vmfgt
Definition allins.hpp:23496
@ RISCV_fmv
Definition allins.hpp:23294
@ RISCV_thsyncs
Definition allins.hpp:23631
@ RISCV_vfmv
Definition allins.hpp:23491
@ RISCV_fmin
Definition allins.hpp:23289
@ RISCV_vrgather
Definition allins.hpp:23372
@ RISCV_thmulah
Definition allins.hpp:23705
@ RISCV_brev8
Definition allins.hpp:23592
@ RISCV_flh
Definition allins.hpp:23571
@ RISCV_fmax
Definition allins.hpp:23290
@ RISCV_vssrl
Definition allins.hpp:23399
@ RISCV_addiw
Definition allins.hpp:23226
@ RISCV_csrwi
Definition allins.hpp:23341
@ RISCV_vfwnmacc
Definition allins.hpp:23518
@ RISCV_thswd
Definition allins.hpp:23695
@ RISCV_thdcachecpa
Definition allins.hpp:23611
@ RISCV_thextu
Definition allins.hpp:23638
@ RISCV_csrrs
Definition allins.hpp:23240
@ RISCV_ror
Definition allins.hpp:23561
@ RISCV_wfi
Definition allins.hpp:23217
@ RISCV_fsgnjn
Definition allins.hpp:23287
@ RISCV_j
Definition allins.hpp:23328
@ RISCV_beqz
Definition allins.hpp:23322
@ RISCV_andi
Definition allins.hpp:23197
@ RISCV_thmulaw
Definition allins.hpp:23706
@ RISCV_vwcvt
Definition allins.hpp:23523
@ RISCV_vfwcvt
Definition allins.hpp:23484
@ RISCV_vcpop
Definition allins.hpp:23422
@ RISCV_vmnand
Definition allins.hpp:23438
@ RISCV_vssub
Definition allins.hpp:23393
@ RISCV_aes64ks1i
Definition allins.hpp:23590
@ RISCV_bset
Definition allins.hpp:23541
@ RISCV_vwmulsu
Definition allins.hpp:23462
@ RISCV_fnmadd
Definition allins.hpp:23280
@ RISCV_and
Definition allins.hpp:23210
@ RISCV_addi
Definition allins.hpp:23192
@ RISCV_thsbib
Definition allins.hpp:23662
@ RISCV_vcompress
Definition allins.hpp:23432
@ RISCV_vsadd
Definition allins.hpp:23391
@ RISCV_xnor
Definition allins.hpp:23568
@ PIC_xorwf
Definition allins.hpp:8355
@ PIC_setf2
Definition allins.hpp:8442
@ PIC_addwf3
Definition allins.hpp:8418
@ PIC_xorlw
Definition allins.hpp:8379
@ PIC_movwf
Definition allins.hpp:8349
@ PIC_clrc
Definition allins.hpp:8392
@ PIC_sleep
Definition allins.hpp:8377
@ PIC_iorwf
Definition allins.hpp:8347
@ PIC_cpfsgt2
Definition allins.hpp:8424
@ PIC_setz
Definition allins.hpp:8397
@ PIC_skpdc
Definition allins.hpp:8399
@ PIC_skpc
Definition allins.hpp:8398
@ PIC_retfie1
Definition allins.hpp:8479
@ PIC_bsf3
Definition allins.hpp:8453
@ PIC_tblwt0m
Definition allins.hpp:8505
@ PIC_decf3
Definition allins.hpp:8426
@ PIC_btg3
Definition allins.hpp:8456
@ PIC_clrwdt
Definition allins.hpp:8370
@ PIC_clrw
Definition allins.hpp:8341
@ PIC_tblwtp0
Definition allins.hpp:8506
@ PIC_rlf
Definition allins.hpp:8351
@ PIC_movf
Definition allins.hpp:8348
@ PIC_bndc
Definition allins.hpp:8407
@ PIC_retlw
Definition allins.hpp:8375
@ PIC_addcf
Definition allins.hpp:8410
@ PIC_subwfb3
Definition allins.hpp:8445
@ PIC_decfsz
Definition allins.hpp:8344
@ PIC_tblwt0
Definition allins.hpp:8503
@ PIC_bdc
Definition allins.hpp:8405
@ PIC_subcf
Definition allins.hpp:8412
@ PIC_asrf
Definition allins.hpp:8514
@ PIC_bnn1
Definition allins.hpp:8463
@ PIC_tblrd0m
Definition allins.hpp:8501
@ PIC_subfwb3
Definition allins.hpp:8443
@ PIC_tstfsz2
Definition allins.hpp:8447
@ PIC_clrdc
Definition allins.hpp:8393
@ PIC_lslf
Definition allins.hpp:8515
@ PIC_rrcf3
Definition allins.hpp:8440
@ PIC_nop
Definition allins.hpp:8350
@ PIC_negf2
Definition allins.hpp:8437
@ PIC_bcf3
Definition allins.hpp:8452
@ PIC_bnz1
Definition allins.hpp:8465
@ PIC_btfss3
Definition allins.hpp:8455
@ PIC_andwf
Definition allins.hpp:8339
@ PIC_bnz
Definition allins.hpp:8408
@ PIC_return
Definition allins.hpp:8376
@ PIC_iorwf3
Definition allins.hpp:8432
@ PIC_moviw
Definition allins.hpp:8522
@ PIC_swapf
Definition allins.hpp:8354
@ PIC_goto
Definition allins.hpp:8371
@ PIC_daw0
Definition allins.hpp:8471
@ PIC_clrf
Definition allins.hpp:8340
@ PIC_bsf
Definition allins.hpp:8360
@ PIC_rlncf3
Definition allins.hpp:8439
@ PIC_pop0
Definition allins.hpp:8475
@ PIC_tstf
Definition allins.hpp:8389
@ PIC_option
Definition allins.hpp:8383
@ PIC_comf3
Definition allins.hpp:8422
@ PIC_addwfc
Definition allins.hpp:8510
@ PIC_setc
Definition allins.hpp:8395
@ PIC_subwf3
Definition allins.hpp:8444
@ PIC_incfsz3
Definition allins.hpp:8430
@ PIC_addfsr
Definition allins.hpp:8513
@ PIC_incf
Definition allins.hpp:8345
@ PIC_bra
Definition allins.hpp:8518
@ PIC_rrf
Definition allins.hpp:8352
@ PIC_skpnc
Definition allins.hpp:8400
@ PIC_skpnz
Definition allins.hpp:8402
@ PIC_bnc
Definition allins.hpp:8406
@ PIC_movfw
Definition allins.hpp:8388
@ PIC_bz
Definition allins.hpp:8409
@ PIC_rlcf3
Definition allins.hpp:8438
@ PIC_movlp
Definition allins.hpp:8511
@ PIC_movlb
Definition allins.hpp:8512
@ PIC_iorlw
Definition allins.hpp:8372
@ PIC_incfsz
Definition allins.hpp:8346
@ PIC_addwf
Definition allins.hpp:8338
@ PIC_skpndc
Definition allins.hpp:8401
@ PIC_last
Definition allins.hpp:8525
@ PIC_dcfsnz3
Definition allins.hpp:8428
@ PIC_clrf2
Definition allins.hpp:8421
@ PIC_lsrf
Definition allins.hpp:8516
@ PIC_bz1
Definition allins.hpp:8468
@ PIC_movlb1
Definition allins.hpp:8490
@ PIC_btfsc3
Definition allins.hpp:8454
@ PIC_setdc
Definition allins.hpp:8396
@ PIC_cpfslt2
Definition allins.hpp:8425
@ PIC_tblwt0p
Definition allins.hpp:8504
@ PIC_bn1
Definition allins.hpp:8461
@ PIC_lfsr2
Definition allins.hpp:8489
@ PIC_subwf
Definition allins.hpp:8353
@ PIC_bc
Definition allins.hpp:8404
@ PIC_movff2
Definition allins.hpp:8434
@ PIC_bcf
Definition allins.hpp:8359
@ PIC_infsnz3
Definition allins.hpp:8431
@ PIC_cpfseq2
Definition allins.hpp:8423
@ PIC_b
Definition allins.hpp:8391
@ PIC_tblrd0p
Definition allins.hpp:8500
@ PIC_mullw1
Definition allins.hpp:8492
@ PIC_skpz
Definition allins.hpp:8403
@ PIC_movwi
Definition allins.hpp:8523
@ PIC_decfsz3
Definition allins.hpp:8427
@ PIC_movlw
Definition allins.hpp:8373
@ PIC_retfie
Definition allins.hpp:8374
@ PIC_null
Definition allins.hpp:8334
@ PIC_comf
Definition allins.hpp:8342
@ PIC_reset
Definition allins.hpp:8521
@ PIC_movf3
Definition allins.hpp:8433
@ PIC_andlw
Definition allins.hpp:8368
@ PIC_addwfc3
Definition allins.hpp:8419
@ PIC_andwf3
Definition allins.hpp:8420
@ PIC_bnov1
Definition allins.hpp:8464
@ PIC_push0
Definition allins.hpp:8476
@ PIC_rrncf3
Definition allins.hpp:8441
@ PIC_return1
Definition allins.hpp:8481
@ PIC_swapf3
Definition allins.hpp:8446
@ PIC_incf3
Definition allins.hpp:8429
@ PIC_bra1
Definition allins.hpp:8467
@ PIC_reset0
Definition allins.hpp:8478
@ PIC_bov1
Definition allins.hpp:8466
@ PIC_sublw
Definition allins.hpp:8378
@ PIC_xorwf3
Definition allins.hpp:8448
@ PIC_tblrd0
Definition allins.hpp:8499
@ PIC_tris
Definition allins.hpp:8384
@ PIC_call2
Definition allins.hpp:8469
@ PIC_bnc1
Definition allins.hpp:8462
@ PIC_brw
Definition allins.hpp:8519
@ PIC_adddcf
Definition allins.hpp:8411
@ PIC_decf
Definition allins.hpp:8343
@ PIC_subwfb
Definition allins.hpp:8517
@ PIC_btfsc
Definition allins.hpp:8361
@ PIC_bc1
Definition allins.hpp:8460
@ PIC_mulwf2
Definition allins.hpp:8436
@ PIC_tblrdp0
Definition allins.hpp:8502
@ PIC_call
Definition allins.hpp:8369
@ PIC_movwf2
Definition allins.hpp:8435
@ PIC_callw
Definition allins.hpp:8520
@ PIC_btfss
Definition allins.hpp:8362
@ PIC_negf
Definition allins.hpp:8390
@ PIC_addlw
Definition allins.hpp:8367
@ PIC_clrz
Definition allins.hpp:8394
@ PIC_rcall1
Definition allins.hpp:8477
@ j_istore_2
Definition allins.hpp:3926
@ j_fconst_1
Definition allins.hpp:3877
@ j_istore_1
Definition allins.hpp:3925
@ j_invokeinterface
Definition allins.hpp:4050
@ j_lastnorm
Definition allins.hpp:4069
@ j_areturn
Definition allins.hpp:4041
@ j_lstore_2
Definition allins.hpp:3930
@ j_ireturn
Definition allins.hpp:4037
@ j_if_acmpeq
Definition allins.hpp:4030
@ j_iconst_m1
Definition allins.hpp:3867
@ j_lload
Definition allins.hpp:3887
@ j_aload_1
Definition allins.hpp:3908
@ j_i2c
Definition allins.hpp:4011
@ j_f2l
Definition allins.hpp:4005
@ j_fload_1
Definition allins.hpp:3900
@ j_drem
Definition allins.hpp:3980
@ j_fstore
Definition allins.hpp:3921
@ j_f2d
Definition allins.hpp:4006
@ j_istore_3
Definition allins.hpp:3927
@ j_checkcast
Definition allins.hpp:4057
@ j_iconst_1
Definition allins.hpp:3869
@ j_ifle
Definition allins.hpp:4023
@ j_i2d
Definition allins.hpp:4000
@ j_baload
Definition allins.hpp:3916
@ j_sastore
Definition allins.hpp:3951
@ j_dload_0
Definition allins.hpp:3903
@ j_dload_3
Definition allins.hpp:3906
@ j_dreturn
Definition allins.hpp:4040
@ j_invokespecial
Definition allins.hpp:4048
@ j_a_invokevirtualobject
Definition allins.hpp:4071
@ j_invokedynamic
Definition allins.hpp:4051
@ j_dup2_x1
Definition allins.hpp:3958
@ j_iconst_5
Definition allins.hpp:3873
@ j_dload_1
Definition allins.hpp:3904
@ j_bastore
Definition allins.hpp:3949
@ j_fload_2
Definition allins.hpp:3901
@ j_faload
Definition allins.hpp:3913
@ j_multianewarray
Definition allins.hpp:4062
@ j_dup_x2
Definition allins.hpp:3956
@ j_last
Definition allins.hpp:4077
@ j_iand
Definition allins.hpp:3991
@ j_lastore
Definition allins.hpp:3945
@ j_putstatic
Definition allins.hpp:4044
@ j_ineg
Definition allins.hpp:3981
@ j_goto
Definition allins.hpp:4032
@ j_ldc
Definition allins.hpp:3883
@ j_ishr
Definition allins.hpp:3987
@ j_ifgt
Definition allins.hpp:4022
@ j_iload_2
Definition allins.hpp:3893
@ j_iushr
Definition allins.hpp:3989
@ j_dmul
Definition allins.hpp:3972
@ j_monitorenter
Definition allins.hpp:4059
@ j_astore_2
Definition allins.hpp:3942
@ j_lshr
Definition allins.hpp:3988
@ j_dcmpl
Definition allins.hpp:4016
@ j_ldiv
Definition allins.hpp:3974
@ j_pop2
Definition allins.hpp:3953
@ j_sipush
Definition allins.hpp:3882
@ j_dload
Definition allins.hpp:3889
@ j_fload
Definition allins.hpp:3888
@ j_fconst_2
Definition allins.hpp:3878
@ j_idiv
Definition allins.hpp:3973
@ j_bipush
Definition allins.hpp:3881
@ j_caload
Definition allins.hpp:3917
@ j_if_icmpge
Definition allins.hpp:4027
@ j_lmul
Definition allins.hpp:3970
@ j_aload_3
Definition allins.hpp:3910
@ j_athrow
Definition allins.hpp:4056
@ j_if_icmpne
Definition allins.hpp:4025
@ j_fload_0
Definition allins.hpp:3899
@ j_ladd
Definition allins.hpp:3962
@ j_jsr_w
Definition allins.hpp:4066
@ j_f2i
Definition allins.hpp:4004
@ j_iaload
Definition allins.hpp:3911
@ j_invokevirtual
Definition allins.hpp:4047
@ j_ifnonnull
Definition allins.hpp:4064
@ j_lstore_3
Definition allins.hpp:3931
@ j_laload
Definition allins.hpp:3912
@ j_fcmpg
Definition allins.hpp:4015
@ j_putfield
Definition allins.hpp:4046
@ j_lload_1
Definition allins.hpp:3896
@ j_i2b
Definition allins.hpp:4010
@ j_castore
Definition allins.hpp:3950
@ j_if_icmpeq
Definition allins.hpp:4024
@ j_dsub
Definition allins.hpp:3968
@ j_lushr
Definition allins.hpp:3990
@ j_lstore
Definition allins.hpp:3920
@ j_new
Definition allins.hpp:4052
@ j_aload_0
Definition allins.hpp:3907
@ j_fastore
Definition allins.hpp:3946
@ j_iconst_4
Definition allins.hpp:3872
@ j_fdiv
Definition allins.hpp:3975
@ j_lcmp
Definition allins.hpp:4013
@ j_lload_0
Definition allins.hpp:3895
@ j_iastore
Definition allins.hpp:3944
@ j_aload_2
Definition allins.hpp:3909
@ j_goto_w
Definition allins.hpp:4065
@ j_ifeq
Definition allins.hpp:4018
@ j_dup2_x2
Definition allins.hpp:3959
@ j_imul
Definition allins.hpp:3969
@ j_lsub
Definition allins.hpp:3966
@ j_astore_1
Definition allins.hpp:3941
@ j_lreturn
Definition allins.hpp:4038
@ j_swap
Definition allins.hpp:3960
@ j_fload_3
Definition allins.hpp:3902
@ j_ldc2w
Definition allins.hpp:3885
@ j_frem
Definition allins.hpp:3979
@ j_fstore_2
Definition allins.hpp:3934
@ j_if_acmpne
Definition allins.hpp:4031
@ j_fneg
Definition allins.hpp:3983
@ j_iconst_0
Definition allins.hpp:3868
@ j_d2l
Definition allins.hpp:4008
@ j_land
Definition allins.hpp:3992
@ j_fstore_3
Definition allins.hpp:3935
@ j_nop
Definition allins.hpp:3865
@ j_jsr
Definition allins.hpp:4033
@ j_arraylength
Definition allins.hpp:4055
@ j_astore_0
Definition allins.hpp:3940
@ j_pop
Definition allins.hpp:3952
@ j_aload
Definition allins.hpp:3890
@ j_ret
Definition allins.hpp:4034
@ j_lneg
Definition allins.hpp:3982
@ j_a_invokesuper
Definition allins.hpp:4070
@ j_dcmpg
Definition allins.hpp:4017
@ j_invokestatic
Definition allins.hpp:4049
@ j_if_icmpgt
Definition allins.hpp:4028
@ j_a_software
Definition allins.hpp:4074
@ j_return
Definition allins.hpp:4042
@ j_saload
Definition allins.hpp:3918
@ j_dconst_1
Definition allins.hpp:3880
@ j_iadd
Definition allins.hpp:3961
@ j_aastore
Definition allins.hpp:3948
@ j_dup_x1
Definition allins.hpp:3955
@ j_instanceof
Definition allins.hpp:4058
@ j_aaload
Definition allins.hpp:3915
@ j_if_icmplt
Definition allins.hpp:4026
@ j_freturn
Definition allins.hpp:4039
@ j_ldcw
Definition allins.hpp:3884
@ j_lookupswitch
Definition allins.hpp:4036
@ j_istore_0
Definition allins.hpp:3924
@ j_lrem
Definition allins.hpp:3978
@ j_fsub
Definition allins.hpp:3967
@ j_iload_3
Definition allins.hpp:3894
@ j_ddiv
Definition allins.hpp:3976
@ j_lstore_0
Definition allins.hpp:3928
@ j_dadd
Definition allins.hpp:3964
@ j_lload_3
Definition allins.hpp:3898
@ j_fcmpl
Definition allins.hpp:4014
@ j_l2d
Definition allins.hpp:4003
@ j_i2l
Definition allins.hpp:3998
@ j_iload_1
Definition allins.hpp:3892
@ j_astore_3
Definition allins.hpp:3943
@ j_daload
Definition allins.hpp:3914
@ j_wide
Definition allins.hpp:4061
@ j_a_invokeignored
Definition allins.hpp:4072
@ j_iload
Definition allins.hpp:3886
@ j_newarray
Definition allins.hpp:4053
@ j_dload_2
Definition allins.hpp:3905
@ j_lload_2
Definition allins.hpp:3897
@ j_isub
Definition allins.hpp:3965
@ j_fmul
Definition allins.hpp:3971
@ j_iconst_3
Definition allins.hpp:3871
@ j_dstore
Definition allins.hpp:3922
@ j_astore
Definition allins.hpp:3923
@ j_iload_0
Definition allins.hpp:3891
@ j_getstatic
Definition allins.hpp:4043
@ j_l2f
Definition allins.hpp:4002
@ j_irem
Definition allins.hpp:3977
@ j_lshl
Definition allins.hpp:3986
@ j_ifge
Definition allins.hpp:4021
@ j_ifnull
Definition allins.hpp:4063
@ j_dstore_0
Definition allins.hpp:3936
@ j_ixor
Definition allins.hpp:3995
@ j_lxor
Definition allins.hpp:3996
@ j_if_icmple
Definition allins.hpp:4029
@ j_dneg
Definition allins.hpp:3984
@ j_a_hardware
Definition allins.hpp:4075
@ j_dconst_0
Definition allins.hpp:3879
@ j_iinc
Definition allins.hpp:3997
@ j_fadd
Definition allins.hpp:3963
@ j_dstore_3
Definition allins.hpp:3939
@ j_d2i
Definition allins.hpp:4007
@ j_dup2
Definition allins.hpp:3957
@ j_ifne
Definition allins.hpp:4019
@ j_aconst_null
Definition allins.hpp:3866
@ j_dup
Definition allins.hpp:3954
@ j_istore
Definition allins.hpp:3919
@ j_ior
Definition allins.hpp:3993
@ j_lconst_0
Definition allins.hpp:3874
@ j_iflt
Definition allins.hpp:4020
@ j_fstore_1
Definition allins.hpp:3933
@ j_dstore_1
Definition allins.hpp:3937
@ j_breakpoint
Definition allins.hpp:4067
@ j_i2s
Definition allins.hpp:4012
@ j_dastore
Definition allins.hpp:3947
@ j_tableswitch
Definition allins.hpp:4035
@ j_l2i
Definition allins.hpp:4001
@ j_lstore_1
Definition allins.hpp:3929
@ j_lor
Definition allins.hpp:3994
@ j_iconst_2
Definition allins.hpp:3870
@ j_fstore_0
Definition allins.hpp:3932
@ j_lconst_1
Definition allins.hpp:3875
@ j_anewarray
Definition allins.hpp:4054
@ j_i2f
Definition allins.hpp:3999
@ j_monitorexit
Definition allins.hpp:4060
@ j_getfield
Definition allins.hpp:4045
@ j_dstore_2
Definition allins.hpp:3938
@ j_ishl
Definition allins.hpp:3985
@ j_d2f
Definition allins.hpp:4009
@ j_fconst_0
Definition allins.hpp:3876
@ M65_rla
Definition allins.hpp:3145
@ M65_sed
Definition allins.hpp:3155
@ M65_shs
Definition allins.hpp:3158
@ M65_bbr7
Definition allins.hpp:3182
@ M65_rmb1
Definition allins.hpp:3192
@ M65_rra
Definition allins.hpp:3148
@ M65_wai
Definition allins.hpp:3215
@ M65_rmb6
Definition allins.hpp:3197
@ M65_rmb4
Definition allins.hpp:3195
@ M65_shy
Definition allins.hpp:3160
@ M65_last
Definition allins.hpp:3218
@ M65_bbs7
Definition allins.hpp:3190
@ M65_smb2
Definition allins.hpp:3201
@ M65_phy
Definition allins.hpp:3210
@ M65_smb1
Definition allins.hpp:3200
@ M65_sta
Definition allins.hpp:3163
@ M65_lae
Definition allins.hpp:3132
@ M65_bra
Definition allins.hpp:3214
@ M65_tya
Definition allins.hpp:3171
@ M65_sre
Definition allins.hpp:3162
@ M65_nop
Definition allins.hpp:3139
@ M65_dcp
Definition allins.hpp:3120
@ M65_php
Definition allins.hpp:3142
@ M65_bcc
Definition allins.hpp:3103
@ M65_clc
Definition allins.hpp:3113
@ M65_inx
Definition allins.hpp:3126
@ M65_bvs
Definition allins.hpp:3112
@ M65_smb4
Definition allins.hpp:3203
@ M65_rmb7
Definition allins.hpp:3198
@ M65_trb
Definition allins.hpp:3209
@ M65_smb6
Definition allins.hpp:3205
@ M65_lda
Definition allins.hpp:3134
@ M65_tsx
Definition allins.hpp:3168
@ M65_eor
Definition allins.hpp:3124
@ M65_and
Definition allins.hpp:3098
@ M65_ldx
Definition allins.hpp:3135
@ M65_rol
Definition allins.hpp:3146
@ M65_smb3
Definition allins.hpp:3202
@ M65_stx
Definition allins.hpp:3164
@ M65_sax
Definition allins.hpp:3151
@ M65_sei
Definition allins.hpp:3156
@ M65_bbr6
Definition allins.hpp:3181
@ M65_bbs1
Definition allins.hpp:3184
@ M65_ora
Definition allins.hpp:3140
@ M65_sbx
Definition allins.hpp:3153
@ M65_cpy
Definition allins.hpp:3119
@ M65_inc
Definition allins.hpp:3125
@ M65_dec
Definition allins.hpp:3121
@ M65_asr
Definition allins.hpp:3102
@ M65_anc
Definition allins.hpp:3097
@ M65_rmb5
Definition allins.hpp:3196
@ M65_cli
Definition allins.hpp:3115
@ M65_ror
Definition allins.hpp:3147
@ M65_lsr
Definition allins.hpp:3137
@ M65_sha
Definition allins.hpp:3157
@ M65_pha
Definition allins.hpp:3141
@ M65_bbs4
Definition allins.hpp:3187
@ M65_cld
Definition allins.hpp:3114
@ M65_bmi
Definition allins.hpp:3107
@ M65_stz
Definition allins.hpp:3207
@ M65_bbr1
Definition allins.hpp:3176
@ M65_sty
Definition allins.hpp:3165
@ M65_asl
Definition allins.hpp:3101
@ M65_brk
Definition allins.hpp:3110
@ M65_ply
Definition allins.hpp:3211
@ M65_sbc
Definition allins.hpp:3152
@ M65_bbr0
Definition allins.hpp:3175
@ M65_rmb0
Definition allins.hpp:3191
@ M65_bpl
Definition allins.hpp:3109
@ M65_bit
Definition allins.hpp:3106
@ M65_bbr2
Definition allins.hpp:3177
@ M65_iny
Definition allins.hpp:3127
@ M65_slo
Definition allins.hpp:3161
@ M65_bbs0
Definition allins.hpp:3183
@ M65_isb
Definition allins.hpp:3128
@ M65_dex
Definition allins.hpp:3122
@ M65_bbs3
Definition allins.hpp:3186
@ M65_plp
Definition allins.hpp:3144
@ M65_pla
Definition allins.hpp:3143
@ M65_rmb3
Definition allins.hpp:3194
@ M65_bbs2
Definition allins.hpp:3185
@ M65_tax
Definition allins.hpp:3166
@ M65_ane
Definition allins.hpp:3099
@ M65_stp
Definition allins.hpp:3216
@ M65_clv
Definition allins.hpp:3116
@ M65_lxa
Definition allins.hpp:3138
@ M65_smb0
Definition allins.hpp:3199
@ M65_shx
Definition allins.hpp:3159
@ M65_arr
Definition allins.hpp:3100
@ M65_rmb2
Definition allins.hpp:3193
@ M65_cmp
Definition allins.hpp:3117
@ M65_phx
Definition allins.hpp:3212
@ M65_dey
Definition allins.hpp:3123
@ M65_adc
Definition allins.hpp:3096
@ M65_bbr3
Definition allins.hpp:3178
@ M65_jsr
Definition allins.hpp:3131
@ M65_bne
Definition allins.hpp:3108
@ M65_rti
Definition allins.hpp:3149
@ M65_bbr4
Definition allins.hpp:3179
@ M65_plx
Definition allins.hpp:3213
@ M65_cpx
Definition allins.hpp:3118
@ M65_smb5
Definition allins.hpp:3204
@ M65_smb7
Definition allins.hpp:3206
@ M65_bvc
Definition allins.hpp:3111
@ M65_bcs
Definition allins.hpp:3104
@ M65_null
Definition allins.hpp:3092
@ M65_bbr5
Definition allins.hpp:3180
@ M65_sec
Definition allins.hpp:3154
@ M65_txa
Definition allins.hpp:3169
@ M65_txs
Definition allins.hpp:3170
@ M65_jmpi
Definition allins.hpp:3130
@ M65_bbs6
Definition allins.hpp:3189
@ M65_tsb
Definition allins.hpp:3208
@ M65_beq
Definition allins.hpp:3105
@ M65_jmp
Definition allins.hpp:3129
@ M65_lax
Definition allins.hpp:3133
@ M65_bbs5
Definition allins.hpp:3188
@ M65_tay
Definition allins.hpp:3167
@ M65_ldy
Definition allins.hpp:3136
@ M65_rts
Definition allins.hpp:3150
@ mc8_bhi
Definition allins.hpp:3711
@ mc8_bvs
Definition allins.hpp:3732
@ mc8_pulx
Definition allins.hpp:3788
@ mc8_adc
Definition allins.hpp:3695
@ mc8_de
Definition allins.hpp:3748
@ mc8_brclr
Definition allins.hpp:3726
@ mc8_ins
Definition allins.hpp:3758
@ mc8_pul
Definition allins.hpp:3784
@ mc8_psh
Definition allins.hpp:3779
@ mc8_lds
Definition allins.hpp:3765
@ mc8_eor
Definition allins.hpp:3752
@ mc8_slp
Definition allins.hpp:3800
@ mc8_bhcs
Definition allins.hpp:3710
@ mc8_cwai
Definition allins.hpp:3745
@ mc8_dbnz
Definition allins.hpp:3747
@ mc8_sbc
Definition allins.hpp:3795
@ mc8_exg
Definition allins.hpp:3753
@ mc8_andcc
Definition allins.hpp:3701
@ mc8_wai
Definition allins.hpp:3825
@ mc8_daa
Definition allins.hpp:3746
@ mc8_bil
Definition allins.hpp:3714
@ mc8_pulh
Definition allins.hpp:3787
@ mc8_des
Definition allins.hpp:3750
@ mc8_tap
Definition allins.hpp:3813
@ mc8_lsr
Definition allins.hpp:3770
@ mc8_null
Definition allins.hpp:3691
@ mc8_rts
Definition allins.hpp:3793
@ mc8_clr
Definition allins.hpp:3737
@ mc8_dec
Definition allins.hpp:3749
@ mc8_bmc
Definition allins.hpp:3720
@ mc8_add
Definition allins.hpp:3696
@ mc8_call
Definition allins.hpp:3839
@ mc8_sthx
Definition allins.hpp:3804
@ mc8_blt
Definition allins.hpp:3719
@ mc8_oim
Definition allins.hpp:3833
@ mc8_tpa
Definition allins.hpp:3818
@ mc8_ab
Definition allins.hpp:3694
@ mc8_lsl
Definition allins.hpp:3768
@ mc8_clc
Definition allins.hpp:3735
@ mc8_stop
Definition allins.hpp:3805
@ mc8_and
Definition allins.hpp:3700
@ mc8_orcc
Definition allins.hpp:3778
@ mc8_in
Definition allins.hpp:3756
@ mc8_bvc
Definition allins.hpp:3731
@ mc8_tax
Definition allins.hpp:3814
@ mc8_brset
Definition allins.hpp:3728
@ mc8_bhs
Definition allins.hpp:3712
@ mc8_bgnd
Definition allins.hpp:3838
@ mc8_ldd
Definition allins.hpp:3763
@ mc8_last
Definition allins.hpp:3846
@ mc8_subd
Definition allins.hpp:3809
@ mc8_std
Definition allins.hpp:3803
@ mc8_wait
Definition allins.hpp:3826
@ mc8_2
Definition allins.hpp:3829
@ mc8_ais
Definition allins.hpp:3698
@ mc8_cmp
Definition allins.hpp:3739
@ mc8_com
Definition allins.hpp:3740
@ mc8_fdiv
Definition allins.hpp:3754
@ mc8_rol
Definition allins.hpp:3789
@ mc8_pshb
Definition allins.hpp:3781
@ mc8_pshx
Definition allins.hpp:3783
@ mc8_asr
Definition allins.hpp:3702
@ mc8_tys
Definition allins.hpp:3824
@ mc8_cbeq
Definition allins.hpp:3734
@ mc8_test
Definition allins.hpp:3816
@ mc8_cba
Definition allins.hpp:3733
@ mc8_pshh
Definition allins.hpp:3782
@ mc8_blo
Definition allins.hpp:3717
@ mc8_neg
Definition allins.hpp:3774
@ mc8_bge
Definition allins.hpp:3707
@ mc8_cphx
Definition allins.hpp:3743
@ mc8_bms
Definition allins.hpp:3722
@ mc8_bmi
Definition allins.hpp:3721
@ mc8_stx
Definition allins.hpp:3807
@ mc8_tba
Definition allins.hpp:3815
@ mc8_div
Definition allins.hpp:3751
@ mc8_bhcc
Definition allins.hpp:3709
@ mc8_sev
Definition allins.hpp:3798
@ mc8_sec
Definition allins.hpp:3796
@ mc8_bne
Definition allins.hpp:3723
@ mc8_ble
Definition allins.hpp:3716
@ mc8_nop
Definition allins.hpp:3775
@ mc8_bit
Definition allins.hpp:3715
@ mc8_tfr
Definition allins.hpp:3817
@ mc8_bclr
Definition allins.hpp:3704
@ mc8_sync
Definition allins.hpp:3811
@ mc8_1
Definition allins.hpp:3828
@ mc8_lsrd
Definition allins.hpp:3771
@ mc8_ror
Definition allins.hpp:3790
@ mc8_swi
Definition allins.hpp:3810
@ mc8_ora
Definition allins.hpp:3777
@ mc8_jmp
Definition allins.hpp:3759
@ mc8_eim
Definition allins.hpp:3834
@ mc8_lea
Definition allins.hpp:3767
@ mc8_beq
Definition allins.hpp:3706
@ mc8_aix
Definition allins.hpp:3699
@ mc8_psha
Definition allins.hpp:3780
@ mc8_pulb
Definition allins.hpp:3786
@ mc8_ldx
Definition allins.hpp:3766
@ mc8_bls
Definition allins.hpp:3718
@ mc8_nsa
Definition allins.hpp:3776
@ mc8_bih
Definition allins.hpp:3713
@ mc8_os9
Definition allins.hpp:3830
@ mc8_sta
Definition allins.hpp:3802
@ mc8_rti
Definition allins.hpp:3792
@ mc8_rtc
Definition allins.hpp:3840
@ mc8_st
Definition allins.hpp:3801
@ mc8_mov
Definition allins.hpp:3772
@ mc8_bcs
Definition allins.hpp:3705
@ mc8_ld
Definition allins.hpp:3761
@ mc8_cpd
Definition allins.hpp:3742
@ mc8_tsx
Definition allins.hpp:3821
@ mc8_xgd
Definition allins.hpp:3827
@ mc8_pula
Definition allins.hpp:3785
@ mc8_bsr
Definition allins.hpp:3730
@ mc8_tim
Definition allins.hpp:3835
@ mc8_cpx
Definition allins.hpp:3744
@ mc8_bcc
Definition allins.hpp:3703
@ mc8_bra
Definition allins.hpp:3725
@ mc8_rsp
Definition allins.hpp:3791
@ mc8_mul
Definition allins.hpp:3773
@ mc8_ldhx
Definition allins.hpp:3764
@ mc8_tst
Definition allins.hpp:3820
@ mc8_bpl
Definition allins.hpp:3724
@ mc8_cp
Definition allins.hpp:3741
@ mc8_sts
Definition allins.hpp:3806
@ mc8_sba
Definition allins.hpp:3794
@ mc8_lda
Definition allins.hpp:3762
@ mc8_skip1
Definition allins.hpp:3843
@ mc8_cli
Definition allins.hpp:3736
@ mc8_sei
Definition allins.hpp:3797
@ mc8_aim
Definition allins.hpp:3832
@ mc8_tab
Definition allins.hpp:3812
@ mc8_idiv
Definition allins.hpp:3755
@ mc8_skip2
Definition allins.hpp:3844
@ mc8_addd
Definition allins.hpp:3697
@ mc8_txa
Definition allins.hpp:3822
@ mc8_aba
Definition allins.hpp:3693
@ mc8_bset
Definition allins.hpp:3729
@ mc8_lsld
Definition allins.hpp:3769
@ mc8_sub
Definition allins.hpp:3808
@ mc8_ts
Definition allins.hpp:3819
@ mc8_jsr
Definition allins.hpp:3760
@ mc8_sex
Definition allins.hpp:3799
@ mc8_inc
Definition allins.hpp:3757
@ mc8_bgt
Definition allins.hpp:3708
@ mc8_brn
Definition allins.hpp:3727
@ mc8_clv
Definition allins.hpp:3738
@ mc8_txs
Definition allins.hpp:3823
@ ARM_frintx
Definition allins.hpp:4815
@ ARM_sqdmlal
Definition allins.hpp:4890
@ ARM_vlstm
Definition allins.hpp:5105
@ ARM_vmaxnmv
Definition allins.hpp:5315
@ ARM_fnmsub
Definition allins.hpp:4820
@ ARM_bsl
Definition allins.hpp:4770
@ ARM_smlsl
Definition allins.hpp:4851
@ ARM_frecps
Definition allins.hpp:4928
@ ARM_ldc2
Definition allins.hpp:4226
@ ARM_dsb
Definition allins.hpp:4454
@ ARM_bx
Definition allins.hpp:4166
@ ARM_vshrnb
Definition allins.hpp:5327
@ ARM_sm4ekey
Definition allins.hpp:5199
@ ARM_fmuls
Definition allins.hpp:4267
@ ARM_blr
Definition allins.hpp:4660
@ ARM_cmlo
Definition allins.hpp:4782
@ ARM_aesd
Definition allins.hpp:4634
@ ARM_swpa
Definition allins.hpp:5003
@ ARM_sxtab16
Definition allins.hpp:4381
@ ARM_vcx2
Definition allins.hpp:5414
@ ARM_vcvtr
Definition allins.hpp:4503
@ ARM_it
Definition allins.hpp:4448
@ ARM_fmla
Definition allins.hpp:4845
@ ARM_vrmlsldavhAX
Definition allins.hpp:5293
@ ARM_mcr
Definition allins.hpp:4231
@ ARM_cmpp
Definition allins.hpp:5151
@ ARM_fmrdl
Definition allins.hpp:4300
@ ARM_ccmp
Definition allins.hpp:4714
@ ARM_vbsl
Definition allins.hpp:4491
@ ARM_vmaxa
Definition allins.hpp:5246
@ ARM_sm3tt2b
Definition allins.hpp:5195
@ ARM_movl
Definition allins.hpp:4217
@ ARM_vld4
Definition allins.hpp:4519
@ ARM_fcvtau
Definition allins.hpp:4798
@ ARM_smulwt
Definition allins.hpp:4197
@ ARM_uaddsubx
Definition allins.hpp:4388
@ ARM_rsc
Definition allins.hpp:4139
@ ARM_ssubw
Definition allins.hpp:4977
@ ARM_movz
Definition allins.hpp:4683
@ ARM_sm3ss1
Definition allins.hpp:5191
@ ARM_fmul
Definition allins.hpp:4862
@ ARM_smlad
Definition allins.hpp:4353
@ ARM_bfx
Definition allins.hpp:5394
@ ARM_vminv
Definition allins.hpp:5313
@ ARM_shasx
Definition allins.hpp:4347
@ ARM_smusd
Definition allins.hpp:4361
@ ARM_smlsl2
Definition allins.hpp:4852
@ ARM_vmax
Definition allins.hpp:4522
@ ARM_stl
Definition allins.hpp:4615
@ ARM_trn2
Definition allins.hpp:4982
@ ARM_ngc
Definition allins.hpp:4712
@ ARM_ldclra
Definition allins.hpp:5017
@ ARM_lsl
Definition allins.hpp:4128
@ ARM_ldumaxal
Definition allins.hpp:5054
@ ARM_uadd16
Definition allins.hpp:4385
@ ARM_sha1su0
Definition allins.hpp:4642
@ ARM_smuad
Definition allins.hpp:4355
@ ARM_ldur
Definition allins.hpp:4661
@ ARM_sha1h
Definition allins.hpp:4641
@ ARM_vbrsr
Definition allins.hpp:5243
@ ARM_fmsr
Definition allins.hpp:4303
@ ARM_uqsub16
Definition allins.hpp:4402
@ ARM_usat
Definition allins.hpp:4408
@ ARM_uhaddsubx
Definition allins.hpp:4392
@ ARM_vqshlu
Definition allins.hpp:4563
@ ARM_frint32x
Definition allins.hpp:5171
@ ARM_ssub16
Definition allins.hpp:4374
@ ARM_ldtr
Definition allins.hpp:4667
@ ARM_mul
Definition allins.hpp:4150
@ ARM_sm4e
Definition allins.hpp:5198
@ ARM_smulbt
Definition allins.hpp:4200
@ ARM_srshrl
Definition allins.hpp:5372
@ ARM_vrsra
Definition allins.hpp:4579
@ ARM_frint64z
Definition allins.hpp:5174
@ ARM_veor
Definition allins.hpp:4508
@ ARM_vldrh
Definition allins.hpp:5358
@ ARM_tbz
Definition allins.hpp:4657
@ ARM_ldumax
Definition allins.hpp:5051
@ xScale_mra
Definition allins.hpp:4213
@ ARM_ldg
Definition allins.hpp:5161
@ ARM_pkhtb
Definition allins.hpp:4326
@ ARM_urecpe
Definition allins.hpp:4926
@ ARM_fstmx
Definition allins.hpp:4284
@ ARM_vqneg
Definition allins.hpp:4557
@ ARM_vmladavX
Definition allins.hpp:5275
@ ARM_fmaxv
Definition allins.hpp:4993
@ ARM_ldsminl
Definition allins.hpp:5045
@ ARM_fmdhr
Definition allins.hpp:4297
@ ARM_fmrs
Definition allins.hpp:4304
@ ARM_sdsb
Definition allins.hpp:5237
@ ARM_uhadd16
Definition allins.hpp:4389
@ ARM_vhcadd
Definition allins.hpp:5298
@ ARM_cmls
Definition allins.hpp:4779
@ ARM_uabal2
Definition allins.hpp:4741
@ ARM_ld4r
Definition allins.hpp:4836
@ ARM_orr
Definition allins.hpp:4144
@ ARM_qasx
Definition allins.hpp:4329
@ ARM_vqdmlal
Definition allins.hpp:4551
@ ARM_vmlaldavX
Definition allins.hpp:5283
@ ARM_vld41
Definition allins.hpp:5348
@ ARM_mvni
Definition allins.hpp:4682
@ ARM_eor
Definition allins.hpp:4133
@ ARM_fccmpe
Definition allins.hpp:4788
@ ARM_str
Definition allins.hpp:4154
@ ARM_usad8
Definition allins.hpp:4407
@ ARM_cneg
Definition allins.hpp:4711
@ ARM_hint
Definition allins.hpp:4734
@ ARM_uabdl2
Definition allins.hpp:4748
@ ARM_usada8
Definition allins.hpp:4406
@ ARM_vstrb
Definition allins.hpp:5361
@ ARM_blx2
Definition allins.hpp:4175
@ ARM_vld43
Definition allins.hpp:5350
@ ARM_vaddv
Definition allins.hpp:5338
@ ARM_fadd
Definition allins.hpp:4757
@ ARM_ldapur
Definition allins.hpp:5135
@ ARM_fldd
Definition allins.hpp:4256
@ ARM_vrintp
Definition allins.hpp:4631
@ ARM_ldsmaxal
Definition allins.hpp:5039
@ ARM_tbx
Definition allins.hpp:4980
@ ARM_cx3d
Definition allins.hpp:5410
@ ARM_vmladav
Definition allins.hpp:5274
@ ARM_dls
Definition allins.hpp:5387
@ ARM_umaxv
Definition allins.hpp:4991
@ ARM_bfmmla
Definition allins.hpp:5218
@ ARM_vrev16
Definition allins.hpp:4570
@ ARM_ftosizd
Definition allins.hpp:4289
@ ARM_usmmla
Definition allins.hpp:5205
@ ARM_fmax
Definition allins.hpp:4839
@ ARM_ldseta
Definition allins.hpp:5031
@ ARM_not
Definition allins.hpp:4700
@ xScale_miaph
Definition allins.hpp:4207
@ ARM_vrsubhn
Definition allins.hpp:4580
@ ARM_fcmp
Definition allins.hpp:4785
@ ARM_ldaxr
Definition allins.hpp:4675
@ ARM_hbl
Definition allins.hpp:4468
@ ARM_saddw
Definition allins.hpp:4766
@ ARM_usubw
Definition allins.hpp:4975
@ ARM_sbfx
Definition allins.hpp:4440
@ ARM_smladx
Definition allins.hpp:4354
@ ARM_fsitod
Definition allins.hpp:4276
@ ARM_vdup
Definition allins.hpp:4507
@ ARM_tt
Definition allins.hpp:5101
@ ARM_vcvtt
Definition allins.hpp:4505
@ ARM_vmlsdav
Definition allins.hpp:5278
@ ARM_ssbb
Definition allins.hpp:5165
@ ARM_rshrn
Definition allins.hpp:4937
@ ARM_faclt
Definition allins.hpp:4756
@ ARM_vmlsldav
Definition allins.hpp:5286
@ ARM_uzp2
Definition allins.hpp:4985
@ ARM_bkpt
Definition allins.hpp:4173
@ ARM_ldr
Definition allins.hpp:4152
@ ARM_ushll
Definition allins.hpp:4948
@ ARM_sqxtn2
Definition allins.hpp:4900
@ ARM_null
Definition allins.hpp:4122
@ ARM_sbfiz
Definition allins.hpp:4692
@ xScale_mia
Definition allins.hpp:4206
@ ARM_vbit
Definition allins.hpp:4490
@ ARM_fcpyd
Definition allins.hpp:4250
@ ARM_fmadd
Definition allins.hpp:4817
@ ARM_trap
Definition allins.hpp:5230
@ ARM_vqabs
Definition allins.hpp:4549
@ ARM_le2
Definition allins.hpp:5391
@ ARM_vqshrnt
Definition allins.hpp:5320
@ ARM_umnegl
Definition allins.hpp:4724
@ ARM_vqshrn
Definition allins.hpp:4564
@ ARM_uqadd8
Definition allins.hpp:4399
@ ARM_sdiv
Definition allins.hpp:4450
@ ARM_umaxp
Definition allins.hpp:4877
@ ARM_sqshrun
Definition allins.hpp:4920
@ ARM_leavex
Definition allins.hpp:4465
@ ARM_frintm
Definition allins.hpp:4812
@ ARM_smull
Definition allins.hpp:4162
@ ARM_ssra
Definition allins.hpp:4962
@ ARM_ldsmaxa
Definition allins.hpp:5038
@ ARM_fcvtl
Definition allins.hpp:4806
@ ARM_vld42
Definition allins.hpp:5349
@ ARM_add
Definition allins.hpp:4136
@ ARM_umax
Definition allins.hpp:4837
@ ARM_fmsrr
Definition allins.hpp:4310
@ ARM_sb
Definition allins.hpp:5164
@ ARM_sm3tt1a
Definition allins.hpp:5192
@ ARM_vmovl
Definition allins.hpp:4529
@ ARM_sm3tt2a
Definition allins.hpp:5194
@ ARM_vmina
Definition allins.hpp:5248
@ ARM_uxtab16
Definition allins.hpp:4416
@ ARM_usubw2
Definition allins.hpp:4976
@ ARM_dup
Definition allins.hpp:4822
@ ARM_sdot
Definition allins.hpp:5208
@ ARM_ursqrte
Definition allins.hpp:4939
@ ARM_pli
Definition allins.hpp:4446
@ ARM_ssubl2
Definition allins.hpp:4974
@ ARM_uqrshrn
Definition allins.hpp:4907
@ ARM_bfcsel
Definition allins.hpp:5397
@ ARM_vcvta
Definition allins.hpp:4622
@ ARM_vminnma
Definition allins.hpp:5249
@ ARM_vldrw
Definition allins.hpp:5359
@ ARM_ldumin
Definition allins.hpp:5059
@ ARM_casp
Definition allins.hpp:5073
@ ARM_fldms
Definition allins.hpp:4259
@ ARM_frintz
Definition allins.hpp:4816
@ ARM_vcx2A
Definition allins.hpp:5415
@ ARM_sudot
Definition allins.hpp:5202
@ ARM_sev
Definition allins.hpp:4431
@ ARM_vmls
Definition allins.hpp:4526
@ ARM_ldsetal
Definition allins.hpp:5032
@ ARM_usra
Definition allins.hpp:4961
@ ARM_fcmge
Definition allins.hpp:4775
@ ARM_smlalbt
Definition allins.hpp:4192
@ ARM_fmuld
Definition allins.hpp:4266
@ ARM_vrmlsldavhA
Definition allins.hpp:5292
@ ARM_casl
Definition allins.hpp:5069
@ ARM_vrintm
Definition allins.hpp:4632
@ ARM_uqrshrn2
Definition allins.hpp:4908
@ ARM_fcvtzs
Definition allins.hpp:4792
@ ARM_lsr
Definition allins.hpp:4129
@ ARM_sha256h
Definition allins.hpp:4644
@ ARM_vqrdmulh
Definition allins.hpp:4558
@ ARM_smull2
Definition allins.hpp:4867
@ ARM_bif
Definition allins.hpp:4768
@ ARM_trap2
Definition allins.hpp:5231
@ ARM_sshr
Definition allins.hpp:4953
@ ARM_umsubl
Definition allins.hpp:4723
@ ARM_sxtl
Definition allins.hpp:4858
@ ARM_cdp
Definition allins.hpp:4223
@ ARM_ldeora
Definition allins.hpp:5024
@ ARM_srhadd
Definition allins.hpp:4932
@ ARM_vfmas
Definition allins.hpp:5245
@ ARM_xtn2
Definition allins.hpp:4861
@ ARM_uqsubaddx
Definition allins.hpp:4405
@ ARM_vqshrunb
Definition allins.hpp:5323
@ ARM_and
Definition allins.hpp:4132
@ ARM_fsts
Definition allins.hpp:4281
@ ARM_sysl
Definition allins.hpp:4729
@ ARM_dc
Definition allins.hpp:4731
@ ARM_smlalbb
Definition allins.hpp:4190
@ ARM_sub
Definition allins.hpp:4134
@ ARM_qsubaddx
Definition allins.hpp:4334
@ ARM_vmla
Definition allins.hpp:4524
@ ARM_vqrshl
Definition allins.hpp:4559
@ ARM_fneg
Definition allins.hpp:4870
@ ARM_genter
Definition allins.hpp:5233
@ ARM_fcmps
Definition allins.hpp:4243
@ ARM_uhasx
Definition allins.hpp:4391
@ ARM_ucvtf
Definition allins.hpp:4802
@ ARM_qsub
Definition allins.hpp:4185
@ ARM_trn1
Definition allins.hpp:4981
@ ARM_bfm
Definition allins.hpp:4687
@ ARM_uaba
Definition allins.hpp:4738
@ ARM_uxtl2
Definition allins.hpp:4857
@ ARM_saddlv
Definition allins.hpp:4990
@ ARM_sqrshrun
Definition allins.hpp:4911
@ ARM_dcps2
Definition allins.hpp:4650
@ ARM_st2g
Definition allins.hpp:5157
@ ARM_wfi
Definition allins.hpp:4433
@ ARM_sqadd
Definition allins.hpp:4887
@ ARM_qdsub
Definition allins.hpp:4184
@ ARM_vpnot
Definition allins.hpp:5309
@ ARM_vqshrnb
Definition allins.hpp:5319
@ ARM_cx1d
Definition allins.hpp:5402
@ ARM_smulwb
Definition allins.hpp:4195
@ ARM_blx1
Definition allins.hpp:4174
@ ARM_setf16
Definition allins.hpp:5143
@ ARM_fcmpd
Definition allins.hpp:4242
@ ARM_uqxtn2
Definition allins.hpp:4898
@ ARM_bfi
Definition allins.hpp:4442
@ ARM_rshrn2
Definition allins.hpp:4938
@ ARM_cx1A
Definition allins.hpp:5401
@ ARM_fmlsl
Definition allins.hpp:5214
@ ARM_smmul
Definition allins.hpp:4367
@ ARM_fuitos
Definition allins.hpp:4296
@ ARM_usdot
Definition allins.hpp:5204
@ ARM_vldm
Definition allins.hpp:4520
@ ARM_cnt
Definition allins.hpp:4790
@ ARM_cfinv
Definition allins.hpp:5140
@ ARM_fdivd
Definition allins.hpp:4254
@ ARM_umlal
Definition allins.hpp:4165
@ ARM_sqshrn
Definition allins.hpp:4918
@ ARM_dmb
Definition allins.hpp:4455
@ ARM_ins
Definition allins.hpp:4823
@ ARM_vcx1A
Definition allins.hpp:5413
@ ARM_ubfx
Definition allins.hpp:4441
@ ARM_vrshrn
Definition allins.hpp:4576
@ ARM_rsubhn
Definition allins.hpp:4944
@ ARM_vcge
Definition allins.hpp:4493
@ ARM_ftouizs
Definition allins.hpp:4294
@ ARM_sqshrun2
Definition allins.hpp:4921
@ ARM_sha1p
Definition allins.hpp:4640
@ ARM_vrintr
Definition allins.hpp:4627
@ ARM_subg
Definition allins.hpp:5149
@ ARM_fminnm
Definition allins.hpp:4844
@ ARM_vqmovn
Definition allins.hpp:4555
@ ARM_uqxtn
Definition allins.hpp:4897
@ ARM_cmlt
Definition allins.hpp:4783
@ ARM_chka
Definition allins.hpp:4466
@ ARM_fcmlt
Definition allins.hpp:4784
@ ARM_fnmacs
Definition allins.hpp:4271
@ ARM_ldaddal
Definition allins.hpp:5011
@ ARM_b
Definition allins.hpp:4125
@ ARM_vmlas
Definition allins.hpp:5250
@ ARM_shrn
Definition allins.hpp:4954
@ ARM_shsub
Definition allins.hpp:4828
@ ARM_vnmla
Definition allins.hpp:4537
@ ARM_ftouis
Definition allins.hpp:4292
@ ARM_sqrshrn2
Definition allins.hpp:4910
@ ARM_vcmpe
Definition allins.hpp:4500
@ ARM_neg
Definition allins.hpp:4131
@ xScale_mar
Definition allins.hpp:4212
@ ARM_vstrd
Definition allins.hpp:5364
@ ARM_strexb
Definition allins.hpp:4427
@ ARM_vmov2
Definition allins.hpp:5365
@ ARM_fnmul
Definition allins.hpp:4865
@ ARM_vmladavA
Definition allins.hpp:5276
@ ARM_fsubs
Definition allins.hpp:4286
@ ARM_vshr
Definition allins.hpp:4583
@ ARM_ldclrl
Definition allins.hpp:5016
@ ARM_vpop
Definition allins.hpp:4547
@ ARM_fsubd
Definition allins.hpp:4285
@ ARM_stzgm
Definition allins.hpp:5156
@ ARM_fuitod
Definition allins.hpp:4295
@ ARM_caspal
Definition allins.hpp:5076
@ ARM_fcvtxn2
Definition allins.hpp:4809
@ ARM_vcls
Definition allins.hpp:4496
@ ARM_teq
Definition allins.hpp:4141
@ ARM_stumaxl
Definition allins.hpp:5056
@ ARM_ssax
Definition allins.hpp:4376
@ ARM_fsub
Definition allins.hpp:4968
@ ARM_ldrd
Definition allins.hpp:4180
@ ARM_vaddw
Definition allins.hpp:4486
@ ARM_vctp
Definition allins.hpp:5377
@ ARM_rev
Definition allins.hpp:4335
@ ARM_vsel
Definition allins.hpp:4618
@ ARM_fmrrs
Definition allins.hpp:4311
@ ARM_shsubaddx
Definition allins.hpp:4352
@ ARM_uhadd8
Definition allins.hpp:4390
@ ARM_vstr
Definition allins.hpp:4594
@ ARM_stsmaxl
Definition allins.hpp:5041
@ ARM_ldar
Definition allins.hpp:4673
@ ARM_vqmovnt
Definition allins.hpp:5269
@ ARM_vcx1
Definition allins.hpp:5412
@ ARM_vshrn
Definition allins.hpp:4584
@ ARM_uhsubaddx
Definition allins.hpp:4396
@ ARM_vcvtn
Definition allins.hpp:4623
@ ARM_sxth
Definition allins.hpp:4384
@ ARM_ldsmaxl
Definition allins.hpp:5037
@ ARM_wlstp
Definition allins.hpp:5388
@ ARM_cx1dA
Definition allins.hpp:5403
@ ARM_fabs
Definition allins.hpp:4752
@ ARM_ldsminal
Definition allins.hpp:5047
@ ARM_frsqrts
Definition allins.hpp:4941
@ ARM_fmdrr
Definition allins.hpp:4308
@ ARM_cmtst
Definition allins.hpp:4983
@ ARM_srshr
Definition allins.hpp:4936
@ ARM_vqdmullb
Definition allins.hpp:5304
@ ARM_vld2
Definition allins.hpp:4517
@ ARM_stxp
Definition allins.hpp:4672
@ ARM_cbz
Definition allins.hpp:4452
@ ARM_uhsax
Definition allins.hpp:4395
@ ARM_lsrl
Definition allins.hpp:5367
@ ARM_vcmpv
Definition allins.hpp:5307
@ ARM_stadd
Definition allins.hpp:5012
@ ARM_addhn2
Definition allins.hpp:4759
@ ARM_tbnz
Definition allins.hpp:4658
@ ARM_ldapr
Definition allins.hpp:5006
@ ARM_fcvtsd
Definition allins.hpp:4252
@ ARM_lda
Definition allins.hpp:4614
@ ARM_fnegs
Definition allins.hpp:4269
@ ARM_bf
Definition allins.hpp:5393
@ ARM_vminnmav
Definition allins.hpp:5318
@ ARM_sqrshrl
Definition allins.hpp:5374
@ ARM_swp
Definition allins.hpp:4157
@ ARM_ldc
Definition allins.hpp:4225
@ ARM_vcadd
Definition allins.hpp:5299
@ ARM_cmn
Definition allins.hpp:4143
@ ARM_stsminl
Definition allins.hpp:5049
@ ARM_mcrr2
Definition allins.hpp:4319
@ ARM_saddl
Definition allins.hpp:4762
@ ARM_strex
Definition allins.hpp:4378
@ ARM_stxr
Definition allins.hpp:4670
@ ARM_vst21
Definition allins.hpp:5352
@ ARM_cmp
Definition allins.hpp:4142
@ ARM_stnp
Definition allins.hpp:4666
@ ARM_vaclt
Definition allins.hpp:4482
@ ARM_stlr
Definition allins.hpp:4674
@ ARM_sshll
Definition allins.hpp:4950
@ ARM_stclrl
Definition allins.hpp:5020
@ ARM_vcmla
Definition allins.hpp:5343
@ ARM_usax
Definition allins.hpp:4412
@ ARM_ld1r
Definition allins.hpp:4833
@ ARM_vldrb
Definition allins.hpp:5357
@ ARM_sqdmlsl2
Definition allins.hpp:4893
@ ARM_bl
Definition allins.hpp:4126
@ ARM_fldmx
Definition allins.hpp:4260
@ ARM_vst2
Definition allins.hpp:4590
@ ARM_vqrdmlah
Definition allins.hpp:5111
@ ARM_fdivs
Definition allins.hpp:4255
@ ARM_smaxv
Definition allins.hpp:4992
@ ARM_vmlsdavX
Definition allins.hpp:5279
@ ARM_ldadd
Definition allins.hpp:5008
@ ARM_strd
Definition allins.hpp:4202
@ ARM_ssubaddx
Definition allins.hpp:4377
@ ARM_vrshrnt
Definition allins.hpp:5330
@ ARM_sxtab
Definition allins.hpp:4379
@ ARM_urshr
Definition allins.hpp:4935
@ ARM_smaxp
Definition allins.hpp:4878
@ ARM_fcvtas
Definition allins.hpp:4793
@ ARM_cmle
Definition allins.hpp:4780
@ ARM_vtrn
Definition allins.hpp:4602
@ ARM_vpmin
Definition allins.hpp:4546
@ ARM_udiv
Definition allins.hpp:4451
@ ARM_vrhadd
Definition allins.hpp:4573
@ ARM_sha512h
Definition allins.hpp:5183
@ ARM_vaddhn
Definition allins.hpp:4484
@ ARM_pacbti
Definition allins.hpp:5379
@ ARM_stset
Definition allins.hpp:5033
@ ARM_extr
Definition allins.hpp:4696
@ ARM_vpadal
Definition allins.hpp:4542
@ ARM_smlsd
Definition allins.hpp:4359
@ ARM_cbnz
Definition allins.hpp:4453
@ ARM_uqasx
Definition allins.hpp:4400
@ ARM_aut
Definition allins.hpp:5089
@ ARM_sxtw
Definition allins.hpp:4697
@ ARM_udot
Definition allins.hpp:5209
@ ARM_fminv
Definition allins.hpp:4997
@ ARM_sbfm
Definition allins.hpp:4688
@ ARM_vqrdmlsdh
Definition allins.hpp:5266
@ ARM_smin
Definition allins.hpp:4842
@ ARM_uabd
Definition allins.hpp:4744
@ ARM_ldrpc
Definition allins.hpp:4153
@ ARM_tbb
Definition allins.hpp:4444
@ ARM_vld21
Definition allins.hpp:5346
@ ARM_eon
Definition allins.hpp:4699
@ ARM_bit
Definition allins.hpp:4769
@ ARM_usat16
Definition allins.hpp:4409
@ ARM_ret
Definition allins.hpp:4123
@ ARM_suqadd
Definition allins.hpp:4888
@ ARM_vaddvA
Definition allins.hpp:5339
@ ARM_umaal
Definition allins.hpp:4397
@ ARM_uxth
Definition allins.hpp:4419
@ ARM_nop
Definition allins.hpp:4124
@ ARM_vqshrunt
Definition allins.hpp:5324
@ ARM_uqshl
Definition allins.hpp:4913
@ ARM_vrintn
Definition allins.hpp:4630
@ ARM_qsax
Definition allins.hpp:4333
@ ARM_vorr
Definition allins.hpp:4541
@ ARM_vshll
Definition allins.hpp:4582
@ ARM_cmhi
Definition allins.hpp:4776
@ ARM_wfet
Definition allins.hpp:5420
@ ARM_vins
Definition allins.hpp:5118
@ ARM_addv
Definition allins.hpp:4988
@ ARM_ldp
Definition allins.hpp:4663
@ ARM_ushl
Definition allins.hpp:4946
@ ARM_vstm
Definition allins.hpp:4593
@ ARM_smlawb
Definition allins.hpp:4194
@ ARM_bfdot
Definition allins.hpp:5221
@ ARM_uqshll
Definition allins.hpp:5370
@ ARM_vdiv
Definition allins.hpp:4506
@ ARM_stsmax
Definition allins.hpp:5040
@ ARM_fmrrd
Definition allins.hpp:4309
@ ARM_vpadd
Definition allins.hpp:4543
@ ARM_vmrs
Definition allins.hpp:4531
@ ARM_vld3
Definition allins.hpp:4518
@ ARM_vabs
Definition allins.hpp:4478
@ ARM_fmaxnmv
Definition allins.hpp:4994
@ ARM_addp
Definition allins.hpp:4873
@ ARM_umlsl2
Definition allins.hpp:4850
@ ARM_vext
Definition allins.hpp:4509
@ ARM_ldm
Definition allins.hpp:4155
@ ARM_vswp
Definition allins.hpp:4599
@ ARM_fmlal
Definition allins.hpp:5212
@ ARM_faddp
Definition allins.hpp:4874
@ ARM_sadd8
Definition allins.hpp:4340
@ ARM_vmaxav
Definition allins.hpp:5312
@ ARM_vst42
Definition allins.hpp:5355
@ ARM_rev16
Definition allins.hpp:4336
@ ARM_vbif
Definition allins.hpp:4489
@ ARM_smmlar
Definition allins.hpp:4366
@ ARM_vqshrun
Definition allins.hpp:4565
@ ARM_zip1
Definition allins.hpp:4986
@ ARM_vmaxv
Definition allins.hpp:5311
@ ARM_qadd
Definition allins.hpp:4182
@ ARM_ssat
Definition allins.hpp:4372
@ ARM_uxtb16
Definition allins.hpp:4417
@ ARM_fcmpe
Definition allins.hpp:4786
@ ARM_ftosid
Definition allins.hpp:4287
@ ARM_vcle
Definition allins.hpp:4495
@ ARM_frintp
Definition allins.hpp:4814
@ ARM_tta
Definition allins.hpp:5102
@ ARM_vsqrt
Definition allins.hpp:4586
@ ARM_vmvn
Definition allins.hpp:4535
@ ARM_rfe
Definition allins.hpp:4338
@ ARM_pmull
Definition allins.hpp:4868
@ ARM_bic
Definition allins.hpp:4146
@ ARM_raddhn2
Definition allins.hpp:4925
@ ARM_cmge
Definition allins.hpp:4774
@ ARM_vqrdmlsdhX
Definition allins.hpp:5267
@ ARM_ld1
Definition allins.hpp:4829
@ ARM_staddl
Definition allins.hpp:5013
@ ARM_vmovlt
Definition allins.hpp:5342
@ ARM_fcmpezd
Definition allins.hpp:4246
@ ARM_ldumaxl
Definition allins.hpp:5052
@ ARM_cx2d
Definition allins.hpp:5406
@ ARM_qsub16
Definition allins.hpp:4331
@ ARM_shsub8
Definition allins.hpp:4350
@ ARM_umin
Definition allins.hpp:4841
@ ARM_vhadd
Definition allins.hpp:4514
@ ARM_cmgt
Definition allins.hpp:4777
@ ARM_facle
Definition allins.hpp:4755
@ ARM_sqdmlsl
Definition allins.hpp:4892
@ ARM_faddd
Definition allins.hpp:4240
@ ARM_sel
Definition allins.hpp:4343
@ ARM_xaflag
Definition allins.hpp:5144
@ ARM_vsli
Definition allins.hpp:4585
@ ARM_hblp
Definition allins.hpp:4469
@ ARM_uaddlp
Definition allins.hpp:4875
@ ARM_viwdup
Definition allins.hpp:5296
@ ARM_shl
Definition allins.hpp:4956
@ ARM_stzg
Definition allins.hpp:5155
@ ARM_sttr
Definition allins.hpp:4668
@ ARM_asrl
Definition allins.hpp:5368
@ ARM_ldaxp
Definition allins.hpp:4677
@ ARM_tlbi
Definition allins.hpp:4733
@ ARM_subhn2
Definition allins.hpp:4970
@ ARM_flds
Definition allins.hpp:4257
@ ARM_vmladavAX
Definition allins.hpp:5277
@ ARM_vqrdmladhX
Definition allins.hpp:5260
@ ARM_vrev32
Definition allins.hpp:4571
@ ARM_bfmlalt
Definition allins.hpp:5220
@ ARM_vacle
Definition allins.hpp:4481
@ ARM_bxj
Definition allins.hpp:4315
@ ARM_fcvtns
Definition allins.hpp:4794
@ ARM_aese
Definition allins.hpp:4635
@ ARM_vst3
Definition allins.hpp:4591
@ ARM_vpaddl
Definition allins.hpp:4544
@ ARM_vmov
Definition allins.hpp:4528
@ ARM_cset
Definition allins.hpp:4707
@ ARM_vceq
Definition allins.hpp:4492
@ ARM_swpal
Definition allins.hpp:5004
@ ARM_srshl
Definition allins.hpp:4934
@ ARM_ldrexb
Definition allins.hpp:4424
@ ARM_saddw2
Definition allins.hpp:4767
@ ARM_vaddlv
Definition allins.hpp:5336
@ ARM_stsetl
Definition allins.hpp:5034
@ ARM_smc
Definition allins.hpp:4434
@ ARM_vfma
Definition allins.hpp:4510
@ ARM_uhsub16
Definition allins.hpp:4393
@ ARM_fnmuls
Definition allins.hpp:4275
@ ARM_ubfm
Definition allins.hpp:4689
@ ARM_umull
Definition allins.hpp:4164
@ ARM_vst43
Definition allins.hpp:5356
@ ARM_uaddw2
Definition allins.hpp:4765
@ ARM_smmla
Definition allins.hpp:4365
@ ARM_stlex
Definition allins.hpp:4617
@ ARM_vddup
Definition allins.hpp:5295
@ ARM_rax1
Definition allins.hpp:5179
@ ARM_uqadd16
Definition allins.hpp:4398
@ ARM_strexd
Definition allins.hpp:4428
@ ARM_vqdmlah
Definition allins.hpp:5261
@ ARM_sshl
Definition allins.hpp:4947
@ ARM_vcvtp
Definition allins.hpp:4624
@ ARM_uxtw
Definition allins.hpp:4698
@ ARM_sbc
Definition allins.hpp:4138
@ ARM_irg
Definition allins.hpp:5152
@ ARM_zip2
Definition allins.hpp:4987
@ ARM_vcnt
Definition allins.hpp:4501
@ ARM_rev32
Definition allins.hpp:4702
@ ARM_vmsr
Definition allins.hpp:4532
@ ARM_uqsax
Definition allins.hpp:4404
@ ARM_vqrshrunt
Definition allins.hpp:5326
@ ARM_fcsel
Definition allins.hpp:4789
@ ARM_fcmpzd
Definition allins.hpp:4248
@ ARM_fcvtnu
Definition allins.hpp:4799
@ ARM_sg
Definition allins.hpp:5103
@ ARM_fnmscd
Definition allins.hpp:4272
@ ARM_frinta
Definition allins.hpp:4810
@ ARM_ssat16
Definition allins.hpp:4373
@ ARM_vmovn
Definition allins.hpp:4530
@ ARM_clrex
Definition allins.hpp:4423
@ ARM_vzip
Definition allins.hpp:4605
@ ARM_vmlal
Definition allins.hpp:4525
@ ARM_vand
Definition allins.hpp:4487
@ ARM_fmscd
Definition allins.hpp:4263
@ ARM_smlatt
Definition allins.hpp:4189
@ ARM_eret
Definition allins.hpp:4609
@ ARM_uminp
Definition allins.hpp:4881
@ ARM_smmls
Definition allins.hpp:4369
@ ARM_fmaxnm
Definition allins.hpp:4840
@ ARM_fccmp
Definition allins.hpp:4787
@ ARM_cmeq
Definition allins.hpp:4771
@ ARM_stlxp
Definition allins.hpp:4678
@ ARM_movk
Definition allins.hpp:4685
@ ARM_vmlaldavAX
Definition allins.hpp:5285
@ ARM_vpush
Definition allins.hpp:4548
@ ARM_vsra
Definition allins.hpp:4587
@ ARM_stp
Definition allins.hpp:4664
@ ARM_cas
Definition allins.hpp:5068
@ ARM_stlur
Definition allins.hpp:5136
@ ARM_smusdx
Definition allins.hpp:4362
@ ARM_sli
Definition allins.hpp:4959
@ ARM_vidup
Definition allins.hpp:5294
@ ARM_uzp1
Definition allins.hpp:4984
@ ARM_fnmscs
Definition allins.hpp:4273
@ ARM_vfms
Definition allins.hpp:4511
@ ARM_shll2
Definition allins.hpp:4958
@ ARM_ursra
Definition allins.hpp:4942
@ ARM_stumax
Definition allins.hpp:5055
@ ARM_vcmul
Definition allins.hpp:5244
@ ARM_ldclral
Definition allins.hpp:5018
@ ARM_smsubl
Definition allins.hpp:4719
@ ARM_stlxr
Definition allins.hpp:4676
@ ARM_uabal
Definition allins.hpp:4740
@ ARM_ubfiz
Definition allins.hpp:4694
@ ARM_cx3
Definition allins.hpp:5408
@ ARM_ushll2
Definition allins.hpp:4949
@ ARM_setend
Definition allins.hpp:4344
@ ARM_vcgt
Definition allins.hpp:4494
@ ARM_uabdl
Definition allins.hpp:4747
@ ARM_stur
Definition allins.hpp:4662
@ ARM_sha512h2
Definition allins.hpp:5184
@ ARM_qaddsubx
Definition allins.hpp:4330
@ ARM_umlsl
Definition allins.hpp:4849
@ ARM_sqrdmulh
Definition allins.hpp:4904
@ ARM_yield
Definition allins.hpp:4430
@ ARM_sabal
Definition allins.hpp:4742
@ ARM_uaddl2
Definition allins.hpp:4761
@ ARM_isb
Definition allins.hpp:4456
@ ARM_smlawt
Definition allins.hpp:4196
@ ARM_uasx
Definition allins.hpp:4387
@ ARM_xar
Definition allins.hpp:5180
@ ARM_stclr
Definition allins.hpp:5019
@ ARM_ldadda
Definition allins.hpp:5010
@ ARM_wkdmc
Definition allins.hpp:5235
@ ARM_fcvtmu
Definition allins.hpp:4801
@ ARM_ldaddl
Definition allins.hpp:5009
@ ARM_stg
Definition allins.hpp:5154
@ ARM_fabss
Definition allins.hpp:4239
@ ARM_umov
Definition allins.hpp:4853
@ ARM_st2
Definition allins.hpp:4965
@ ARM_urhadd
Definition allins.hpp:4931
@ ARM_fmaxp
Definition allins.hpp:4879
@ ARM_uxtl
Definition allins.hpp:4856
@ ARM_srsra
Definition allins.hpp:4943
@ ARM_vaddl
Definition allins.hpp:4485
@ ARM_sqxtun2
Definition allins.hpp:4902
@ ARM_sha1m
Definition allins.hpp:4639
@ ARM_subp
Definition allins.hpp:5150
@ ARM_qadd16
Definition allins.hpp:4327
@ ARM_ic
Definition allins.hpp:4730
@ ARM_fcvt
Definition allins.hpp:4791
@ ARM_fsqrtd
Definition allins.hpp:4278
@ ARM_ssubl
Definition allins.hpp:4973
@ ARM_vadcI
Definition allins.hpp:5301
@ ARM_ummla
Definition allins.hpp:5203
@ ARM_pop
Definition allins.hpp:4167
@ ARM_rev64
Definition allins.hpp:4930
@ ARM_cinc
Definition allins.hpp:4709
@ ARM_fnmuld
Definition allins.hpp:4274
@ ARM_uqrshll
Definition allins.hpp:5373
@ ARM_ldclr
Definition allins.hpp:5015
@ ARM_vmull
Definition allins.hpp:4534
@ ARM_vqadd
Definition allins.hpp:4550
@ ARM_hvc
Definition allins.hpp:4610
@ ARM_uqaddsubx
Definition allins.hpp:4401
@ ARM_casa
Definition allins.hpp:5070
@ ARM_ldgm
Definition allins.hpp:5162
@ ARM_smulh
Definition allins.hpp:4721
@ ARM_ftosis
Definition allins.hpp:4288
@ ARM_ssub8
Definition allins.hpp:4375
@ ARM_sabal2
Definition allins.hpp:4743
@ ARM_vstrh
Definition allins.hpp:5362
@ ARM_fabsd
Definition allins.hpp:4238
@ ARM_ldsetl
Definition allins.hpp:5030
@ ARM_mneg
Definition allins.hpp:4717
@ ARM_sqdmull2
Definition allins.hpp:4896
@ ARM_vrshrnb
Definition allins.hpp:5329
@ ARM_swbkpt
Definition allins.hpp:4219
@ ARM_vrmlsldavhX
Definition allins.hpp:5291
@ ARM_ftouizd
Definition allins.hpp:4293
@ ARM_ldnp
Definition allins.hpp:4665
@ xScale_miatb
Definition allins.hpp:4210
@ ARM_cpsid
Definition allins.hpp:4322
@ ARM_uqsub
Definition allins.hpp:4922
@ ARM_letp
Definition allins.hpp:5392
@ ARM_vldrd
Definition allins.hpp:5360
@ ARM_sqrshrn
Definition allins.hpp:4909
@ ARM_fcvtn2
Definition allins.hpp:4805
@ ARM_vmlsdavA
Definition allins.hpp:5280
@ ARM_addhn
Definition allins.hpp:4758
@ ARM_gmi
Definition allins.hpp:5153
@ ARM_mls
Definition allins.hpp:4449
@ ARM_vmin
Definition allins.hpp:4523
@ ARM_fminnmp
Definition allins.hpp:4884
@ ARM_movt
Definition allins.hpp:4439
@ ARM_vrintx
Definition allins.hpp:4626
@ ARM_ldrexh
Definition allins.hpp:4426
@ ARM_vmovx
Definition allins.hpp:5117
@ ARM_smultt
Definition allins.hpp:4201
@ ARM_uxtah
Definition allins.hpp:4418
@ ARM_pac
Definition allins.hpp:5088
@ ARM_umull2
Definition allins.hpp:4866
@ ARM_orn
Definition allins.hpp:4438
@ ARM_adc
Definition allins.hpp:4137
@ ARM_smlabt
Definition allins.hpp:4188
@ ARM_frecpx
Definition allins.hpp:4929
@ ARM_fstd
Definition allins.hpp:4280
@ ARM_vfnma
Definition allins.hpp:4512
@ ARM_madd
Definition allins.hpp:4715
@ ARM_ldsmax
Definition allins.hpp:5036
@ ARM_vshllb
Definition allins.hpp:5272
@ ARM_shadd16
Definition allins.hpp:4345
@ ARM_smov
Definition allins.hpp:4854
@ ARM_steor
Definition allins.hpp:5026
@ ARM_vqdmull
Definition allins.hpp:4554
@ ARM_sqrdmlsh
Definition allins.hpp:5082
@ ARM_sxtah
Definition allins.hpp:4383
@ ARM_vqdmladh
Definition allins.hpp:5257
@ ARM_fsqrts
Definition allins.hpp:4279
@ ARM_qsub8
Definition allins.hpp:4332
@ ARM_umlal2
Definition allins.hpp:4846
@ ARM_msub
Definition allins.hpp:4716
@ ARM_vcvtb
Definition allins.hpp:4504
@ ARM_fcvtms
Definition allins.hpp:4796
@ ARM_mov
Definition allins.hpp:4145
@ ARM_fmstat
Definition allins.hpp:4265
@ ARM_movn
Definition allins.hpp:4684
@ ARM_stgm
Definition allins.hpp:5159
@ ARM_bfmlalb
Definition allins.hpp:5219
@ ARM_autg
Definition allins.hpp:5380
@ ARM_uqsub8
Definition allins.hpp:4403
@ ARM_ldset
Definition allins.hpp:5029
@ ARM_vcvtm
Definition allins.hpp:4625
@ ARM_sqshl
Definition allins.hpp:4914
@ ARM_caspa
Definition allins.hpp:5075
@ ARM_fmscs
Definition allins.hpp:4264
@ ARM_sshll2
Definition allins.hpp:4951
@ ARM_smlaltt
Definition allins.hpp:4193
@ ARM_rmif
Definition allins.hpp:5141
@ ARM_vacge
Definition allins.hpp:4479
@ ARM_bfcvtn2
Definition allins.hpp:5223
@ ARM_vrev64
Definition allins.hpp:4572
@ ARM_sminp
Definition allins.hpp:4882
@ ARM_lsll
Definition allins.hpp:5366
@ ARM_stuminl
Definition allins.hpp:5064
@ ARM_frint32z
Definition allins.hpp:5172
@ ARM_smmulr
Definition allins.hpp:4368
@ ARM_shaddsubx
Definition allins.hpp:4348
@ ARM_vrinta
Definition allins.hpp:4629
@ ARM_smlsld
Definition allins.hpp:4363
@ ARM_usqadd
Definition allins.hpp:4889
@ ARM_hbp
Definition allins.hpp:4470
@ ARM_ldeorl
Definition allins.hpp:5023
@ ARM_facgt
Definition allins.hpp:4754
@ ARM_frecpe
Definition allins.hpp:4927
@ ARM_ftouid
Definition allins.hpp:4291
@ ARM_revsh
Definition allins.hpp:4337
@ ARM_cdp2
Definition allins.hpp:4224
@ ARM_fcvtps
Definition allins.hpp:4795
@ ARM_sqshrn2
Definition allins.hpp:4919
@ ARM_ror
Definition allins.hpp:4130
@ ARM_uqshrn2
Definition allins.hpp:4917
@ ARM_casal
Definition allins.hpp:5071
@ ARM_qadd8
Definition allins.hpp:4328
@ ARM_fcvtl2
Definition allins.hpp:4807
@ ARM_sqrshl
Definition allins.hpp:4906
@ ARM_vabdl
Definition allins.hpp:4477
@ ARM_vabal
Definition allins.hpp:4475
@ ARM_lduminl
Definition allins.hpp:5060
@ ARM_ext
Definition allins.hpp:4824
@ ARM_ldsmina
Definition allins.hpp:5046
@ ARM_mcrr
Definition allins.hpp:4233
@ ARM_shsub16
Definition allins.hpp:4349
@ ARM_fnmadd
Definition allins.hpp:4819
@ ARM_fmlal2
Definition allins.hpp:5213
@ ARM_fcvtn
Definition allins.hpp:4804
@ ARM_sxtl2
Definition allins.hpp:4859
@ ARM_wfe
Definition allins.hpp:4432
@ ARM_vqrshrunb
Definition allins.hpp:5325
@ ARM_vcvt
Definition allins.hpp:4502
@ ARM_vnmls
Definition allins.hpp:4538
@ ARM_sminv
Definition allins.hpp:4996
@ ARM_saba
Definition allins.hpp:4739
@ ARM_vmulh
Definition allins.hpp:5253
@ ARM_sabd
Definition allins.hpp:4745
@ ARM_urshl
Definition allins.hpp:4933
@ ARM_cx2
Definition allins.hpp:5404
@ ARM_fcvtzu
Definition allins.hpp:4797
@ ARM_sha256su1
Definition allins.hpp:4647
@ ARM_smulbb
Definition allins.hpp:4198
@ ARM_vrmlaldavhX
Definition allins.hpp:5332
@ ARM_vmlsdavAX
Definition allins.hpp:5281
@ ARM_vmlsl
Definition allins.hpp:4527
@ ARM_ld3
Definition allins.hpp:4831
@ ARM_stgp
Definition allins.hpp:5160
@ ARM_vshl
Definition allins.hpp:4581
@ ARM_vld40
Definition allins.hpp:5347
@ ARM_vnmul
Definition allins.hpp:4539
@ ARM_vqrshrun
Definition allins.hpp:4561
@ ARM_asr
Definition allins.hpp:4127
@ ARM_fsitos
Definition allins.hpp:4277
@ ARM_mul53lo
Definition allins.hpp:5239
@ ARM_uqadd
Definition allins.hpp:4886
@ ARM_vrmulh
Definition allins.hpp:5254
@ ARM_ldeor
Definition allins.hpp:5022
@ ARM_vstrw
Definition allins.hpp:5363
@ ARM_vqrshrn
Definition allins.hpp:4560
@ ARM_vpsel
Definition allins.hpp:5306
@ ARM_vld1
Definition allins.hpp:4516
@ ARM_dcps3
Definition allins.hpp:4651
@ ARM_smlabb
Definition allins.hpp:4186
@ ARM_rsb
Definition allins.hpp:4135
@ ARM_ftosizs
Definition allins.hpp:4290
@ ARM_sbdc
Definition allins.hpp:5302
@ ARM_vqrshrnt
Definition allins.hpp:5322
@ ARM_cps
Definition allins.hpp:4321
@ ARM_sadalp
Definition allins.hpp:4872
@ ARM_pssbb
Definition allins.hpp:5166
@ ARM_vminnm
Definition allins.hpp:4621
@ ARM_sm3tt1b
Definition allins.hpp:5193
@ ARM_usubl2
Definition allins.hpp:4972
@ ARM_ldumaxa
Definition allins.hpp:5053
@ ARM_vqdmlsdhX
Definition allins.hpp:5265
@ ARM_mrrc
Definition allins.hpp:4234
@ ARM_sxtb
Definition allins.hpp:4380
@ ARM_cx3dA
Definition allins.hpp:5411
@ ARM_fcmeq
Definition allins.hpp:4772
@ ARM_pkhbt
Definition allins.hpp:4325
@ ARM_smaddl
Definition allins.hpp:4718
@ ARM_usubaddx
Definition allins.hpp:4413
@ ARM_ld3r
Definition allins.hpp:4835
@ ARM_ldrexd
Definition allins.hpp:4425
@ ARM_vshlc
Definition allins.hpp:5340
@ ARM_vmlaldav
Definition allins.hpp:5282
@ ARM_fcmped
Definition allins.hpp:4244
@ ARM_umulh
Definition allins.hpp:4725
@ ARM_vst1
Definition allins.hpp:4589
@ ARM_csneg
Definition allins.hpp:4706
@ ARM_caspl
Definition allins.hpp:5074
@ ARM_clz
Definition allins.hpp:4176
@ ARM_vqrdmladh
Definition allins.hpp:5259
@ ARM_ldxr
Definition allins.hpp:4669
@ ARM_shadd8
Definition allins.hpp:4346
@ ARM_tbh
Definition allins.hpp:4445
@ ARM_wkdmd
Definition allins.hpp:5236
@ ARM_movi
Definition allins.hpp:4681
@ ARM_vjcvt
Definition allins.hpp:5121
@ ARM_fstms
Definition allins.hpp:4283
@ ARM_ldxp
Definition allins.hpp:4671
@ ARM_smmlsr
Definition allins.hpp:4370
@ ARM_pmul
Definition allins.hpp:4863
@ ARM_xpac
Definition allins.hpp:5090
@ ARM_vsubw
Definition allins.hpp:4598
@ ARM_vrecps
Definition allins.hpp:4569
@ ARM_vqdmlsdh
Definition allins.hpp:5264
@ ARM_fmrx
Definition allins.hpp:4302
@ ARM_bxaut
Definition allins.hpp:5381
@ ARM_aesimc
Definition allins.hpp:4636
@ ARM_sha256su0
Definition allins.hpp:4646
@ ARM_fsqrt
Definition allins.hpp:4960
@ ARM_rrx
Definition allins.hpp:4463
@ ARM_pldw
Definition allins.hpp:5108
@ ARM_frintn
Definition allins.hpp:4813
@ xScale_miabt
Definition allins.hpp:4209
@ ARM_sqrshrun2
Definition allins.hpp:4912
@ ARM_ushr
Definition allins.hpp:4952
@ ARM_cx2A
Definition allins.hpp:5405
@ ARM_st3
Definition allins.hpp:4966
@ ARM_sqxtun
Definition allins.hpp:4901
@ ARM_und
Definition allins.hpp:4459
@ ARM_bfcvt
Definition allins.hpp:5224
@ ARM_vrintz
Definition allins.hpp:4628
@ ARM_vabav
Definition allins.hpp:5335
@ ARM_stc
Definition allins.hpp:4227
@ ARM_vrshl
Definition allins.hpp:4574
@ ARM_csinv
Definition allins.hpp:4705
@ ARM_crc32c
Definition allins.hpp:5098
@ ARM_saddsubx
Definition allins.hpp:4342
@ ARM_vneg
Definition allins.hpp:4536
@ ARM_vcmp
Definition allins.hpp:4499
@ ARM_vmovlb
Definition allins.hpp:5341
@ xScale_miatt
Definition allins.hpp:4211
@ ARM_cmhs
Definition allins.hpp:4773
@ ARM_uaddw
Definition allins.hpp:4764
@ ARM_vminav
Definition allins.hpp:5314
@ ARM_umaddl
Definition allins.hpp:4722
@ ARM_qdadd
Definition allins.hpp:4183
@ ARM_vmaxnmav
Definition allins.hpp:5316
@ ARM_raddhn
Definition allins.hpp:4924
@ ARM_esb
Definition allins.hpp:5384
@ ARM_setf8
Definition allins.hpp:5142
@ ARM_ldrd2
Definition allins.hpp:5093
@ ARM_sha1c
Definition allins.hpp:4638
@ ARM_fcvtds
Definition allins.hpp:4253
@ ARM_brk
Definition allins.hpp:4735
@ ARM_vadc
Definition allins.hpp:5300
@ ARM_fcmpezs
Definition allins.hpp:4247
@ ARM_tst
Definition allins.hpp:4140
@ ARM_sqsub
Definition allins.hpp:4923
@ ARM_ldumina
Definition allins.hpp:5061
@ ARM_sabdl
Definition allins.hpp:4749
@ ARM_rsubhn2
Definition allins.hpp:4945
@ ARM_uaddl
Definition allins.hpp:4760
@ ARM_pld
Definition allins.hpp:4181
@ ARM_vrsqrte
Definition allins.hpp:4577
@ ARM_fmulx
Definition allins.hpp:4864
@ ARM_ldlar
Definition allins.hpp:5078
@ ARM_mrrc2
Definition allins.hpp:4320
@ ARM_srs
Definition allins.hpp:4371
@ ARM_uhsub
Definition allins.hpp:4827
@ ARM_sys
Definition allins.hpp:4728
@ ARM_fnmacd
Definition allins.hpp:4270
@ ARM_fminnmv
Definition allins.hpp:4998
@ ARM_smlal2
Definition allins.hpp:4847
@ ARM_vmullt
Definition allins.hpp:5256
@ ARM_usub8
Definition allins.hpp:4411
@ ARM_stsmin
Definition allins.hpp:5048
@ ARM_sqxtn
Definition allins.hpp:4899
@ ARM_vqrdmlash
Definition allins.hpp:5263
@ ARM_sxtb16
Definition allins.hpp:4382
@ ARM_fldmd
Definition allins.hpp:4258
@ ARM_smultb
Definition allins.hpp:4199
@ ARM_gexit
Definition allins.hpp:5234
@ ARM_fjcvtzs
Definition allins.hpp:5124
@ ARM_vmul
Definition allins.hpp:4533
@ ARM_vqdmlash
Definition allins.hpp:5262
@ ARM_uaddlv
Definition allins.hpp:4989
@ ARM_ccmn
Definition allins.hpp:4713
@ ARM_bfxil
Definition allins.hpp:4691
@ ARM_fmrdh
Definition allins.hpp:4298
@ ARM_vpst
Definition allins.hpp:5310
@ ARM_sqshlu
Definition allins.hpp:4915
@ ARM_facge
Definition allins.hpp:4753
@ ARM_uxtb
Definition allins.hpp:4415
@ ARM_xtn
Definition allins.hpp:4860
@ ARM_vmaxnma
Definition allins.hpp:5247
@ ARM_smlsdx
Definition allins.hpp:4360
@ ARM_sqneg
Definition allins.hpp:4903
@ ARM_vqsub
Definition allins.hpp:4566
@ ARM_smlald
Definition allins.hpp:4357
@ ARM_vadd
Definition allins.hpp:4483
@ ARM_cx2dA
Definition allins.hpp:5407
@ ARM_smlaltb
Definition allins.hpp:4191
@ ARM_enterx
Definition allins.hpp:4464
@ ARM_vst40
Definition allins.hpp:5353
@ ARM_fmsub
Definition allins.hpp:4818
@ ARM_mul53hi
Definition allins.hpp:5240
@ ARM_vtbx
Definition allins.hpp:4601
@ ARM_at
Definition allins.hpp:4732
@ ARM_subhn
Definition allins.hpp:4969
@ ARM_smnegl
Definition allins.hpp:4720
@ ARM_mla
Definition allins.hpp:4151
@ ARM_fabd
Definition allins.hpp:4746
@ ARM_pmull2
Definition allins.hpp:4869
@ ARM_hb
Definition allins.hpp:4467
@ ARM_usub16
Definition allins.hpp:4410
@ ARM_vclt
Definition allins.hpp:4497
@ ARM_fadds
Definition allins.hpp:4241
@ ARM_fdiv
Definition allins.hpp:4821
@ ARM_cx3A
Definition allins.hpp:5409
@ ARM_bfc
Definition allins.hpp:4443
@ ARM_vrmlaldavhAX
Definition allins.hpp:5334
@ ARM_hlt
Definition allins.hpp:4652
@ ARM_shrn2
Definition allins.hpp:4955
@ ARM_vminnmv
Definition allins.hpp:5317
@ ARM_fcmle
Definition allins.hpp:4781
@ ARM_adr
Definition allins.hpp:4169
@ ARM_stz2g
Definition allins.hpp:5158
@ ARM_sqrdmlah
Definition allins.hpp:5081
@ ARM_sha1su1
Definition allins.hpp:4643
@ ARM_stllr
Definition allins.hpp:5079
@ ARM_rbit
Definition allins.hpp:4447
@ ARM_cls
Definition allins.hpp:4701
@ ARM_dcps1
Definition allins.hpp:4649
@ ARM_csinc
Definition allins.hpp:4704
@ ARM_vst41
Definition allins.hpp:5354
@ ARM_pacg
Definition allins.hpp:5382
@ ARM_vqrshrnb
Definition allins.hpp:5321
@ ARM_sha512su1
Definition allins.hpp:5186
@ ARM_cx1
Definition allins.hpp:5400
@ ARM_csel
Definition allins.hpp:4703
@ ARM_uminv
Definition allins.hpp:4995
@ ARM_ld2
Definition allins.hpp:4830
@ ARM_stumin
Definition allins.hpp:5063
@ ARM_shsax
Definition allins.hpp:4351
@ ARM_vtbl
Definition allins.hpp:4600
@ ARM_saddlp
Definition allins.hpp:4876
@ ARM_vclz
Definition allins.hpp:4498
@ ARM_vuzp
Definition allins.hpp:4604
@ ARM_vacgt
Definition allins.hpp:4480
@ ARM_le1
Definition allins.hpp:5390
@ ARM_axflag
Definition allins.hpp:5145
@ ARM_vmlsldavAX
Definition allins.hpp:5289
@ ARM_vst4
Definition allins.hpp:4592
@ ARM_wfit
Definition allins.hpp:5421
@ ARM_scvtf
Definition allins.hpp:4803
@ ARM_vrshr
Definition allins.hpp:4575
@ ARM_sha512su0
Definition allins.hpp:5185
@ ARM_sha256h2
Definition allins.hpp:4645
@ ARM_vfnms
Definition allins.hpp:4513
@ ARM_frinti
Definition allins.hpp:4811
@ ARM_uhadd
Definition allins.hpp:4825
@ ARM_ldeoral
Definition allins.hpp:5025
@ ARM_uxtab
Definition allins.hpp:4414
@ ARM_vqmovunb
Definition allins.hpp:5270
@ ARM_sqdmlal2
Definition allins.hpp:4891
@ ARM_usubl
Definition allins.hpp:4971
@ ARM_vqdmlsl
Definition allins.hpp:4552
@ ARM_fmacd
Definition allins.hpp:4261
@ ARM_vshllt
Definition allins.hpp:5273
@ ARM_fcvtxn
Definition allins.hpp:4808
@ ARM_mrc2
Definition allins.hpp:4230
@ ARM_smuadx
Definition allins.hpp:4356
@ ARM_fmaxnmp
Definition allins.hpp:4880
@ ARM_fmls
Definition allins.hpp:4848
@ ARM_ldrex
Definition allins.hpp:4324
@ ARM_fcvtpu
Definition allins.hpp:4800
@ ARM_strd2
Definition allins.hpp:5094
@ ARM_steorl
Definition allins.hpp:5027
@ ARM_sevl
Definition allins.hpp:4653
@ ARM_fcmgt
Definition allins.hpp:4778
@ ARM_sabdl2
Definition allins.hpp:4750
@ ARM_push
Definition allins.hpp:4168
@ ARM_bfl
Definition allins.hpp:5395
@ ARM_amx
Definition allins.hpp:5238
@ ARM_sqshll
Definition allins.hpp:5369
@ ARM_cinv
Definition allins.hpp:4710
@ ARM_vmullb
Definition allins.hpp:5255
@ ARM_vsubl
Definition allins.hpp:4597
@ ARM_crc32
Definition allins.hpp:5097
@ ARM_vrecpe
Definition allins.hpp:4568
@ ARM_smax
Definition allins.hpp:4838
@ ARM_uhsub8
Definition allins.hpp:4394
@ ARM_vraddhn
Definition allins.hpp:4567
@ ARM_sqabs
Definition allins.hpp:4885
@ ARM_aesmc
Definition allins.hpp:4637
@ ARM_vaba
Definition allins.hpp:4474
@ ARM_bcax
Definition allins.hpp:5177
@ ARM_wls
Definition allins.hpp:5386
@ ARM_uadd8
Definition allins.hpp:4386
@ ARM_sasx
Definition allins.hpp:4341
@ ARM_svc
Definition allins.hpp:4158
@ ARM_urshrl
Definition allins.hpp:5371
@ ARM_stc2
Definition allins.hpp:4228
@ ARM_swpl
Definition allins.hpp:5002
@ ARM_vpmax
Definition allins.hpp:4545
@ ARM_cpsie
Definition allins.hpp:4323
@ ARM_vldr
Definition allins.hpp:4521
@ ARM_prfm
Definition allins.hpp:4679
@ ARM_fminp
Definition allins.hpp:4883
@ ARM_ld2r
Definition allins.hpp:4834
@ ARM_vcx3A
Definition allins.hpp:5417
@ ARM_adrp
Definition allins.hpp:4686
@ ARM_fmdlr
Definition allins.hpp:4299
@ ARM_bti
Definition allins.hpp:5163
@ ARM_vrmlsldavh
Definition allins.hpp:5290
@ ARM_vrmlaldavh
Definition allins.hpp:5331
@ ARM_sadd16
Definition allins.hpp:4339
@ ARM_eor3
Definition allins.hpp:5178
@ ARM_adrl
Definition allins.hpp:4218
@ ARM_fnegd
Definition allins.hpp:4268
@ ARM_sqdmull
Definition allins.hpp:4895
@ ARM_lduminal
Definition allins.hpp:5062
@ ARM_vabd
Definition allins.hpp:4476
@ ARM_fcmpes
Definition allins.hpp:4245
@ ARM_vscclrm
Definition allins.hpp:5344
@ ARM_fmxr
Definition allins.hpp:4301
@ ARM_msr
Definition allins.hpp:4149
@ ARM_vlldm
Definition allins.hpp:5104
@ ARM_dbg
Definition allins.hpp:4457
@ ARM_mvn
Definition allins.hpp:4147
@ ARM_shadd
Definition allins.hpp:4826
@ ARM_ld4
Definition allins.hpp:4832
@ ARM_vld20
Definition allins.hpp:5345
@ ARM_vorn
Definition allins.hpp:4540
@ ARM_vdwdup
Definition allins.hpp:5297
@ ARM_fcmpzs
Definition allins.hpp:4249
@ ARM_uqshrn
Definition allins.hpp:4916
@ ARM_vqrdmlsh
Definition allins.hpp:5113
@ ARM_mrc
Definition allins.hpp:4229
@ ARM_st4
Definition allins.hpp:4967
@ ARM_smlsldx
Definition allins.hpp:4364
@ ARM_vsubhn
Definition allins.hpp:4596
@ ARM_fmov
Definition allins.hpp:4855
@ ARM_vqmovnb
Definition allins.hpp:5268
@ ARM_stm
Definition allins.hpp:4156
@ ARM_fmacs
Definition allins.hpp:4262
@ ARM_fcpys
Definition allins.hpp:4251
@ ARM_vsub
Definition allins.hpp:4595
@ ARM_smlaldx
Definition allins.hpp:4358
@ ARM_st1
Definition allins.hpp:4964
@ ARM_frint64x
Definition allins.hpp:5173
@ ARM_bfcvtn
Definition allins.hpp:5222
@ ARM_tbl
Definition allins.hpp:4979
@ ARM_uqrshl
Definition allins.hpp:4905
@ ARM_fstmd
Definition allins.hpp:4282
@ ARM_ldsmin
Definition allins.hpp:5044
@ ARM_vst20
Definition allins.hpp:5351
@ ARM_vshrnt
Definition allins.hpp:5328
@ ARM_ssubw2
Definition allins.hpp:4978
@ ARM_frsqrte
Definition allins.hpp:4940
@ ARM_br
Definition allins.hpp:4659
@ ARM_shll
Definition allins.hpp:4957
@ ARM_vsbcI
Definition allins.hpp:5303
@ ARM_vqshl
Definition allins.hpp:4562
@ ARM_vqmovunt
Definition allins.hpp:5271
@ ARM_vmlsldavX
Definition allins.hpp:5287
@ ARM_abs
Definition allins.hpp:4751
@ ARM_fmlsl2
Definition allins.hpp:5215
@ ARM_vtst
Definition allins.hpp:4603
@ ARM_smlal
Definition allins.hpp:4163
@ ARM_saddl2
Definition allins.hpp:4763
@ ARM_vqmovun
Definition allins.hpp:4556
@ ARM_vcx3
Definition allins.hpp:5416
@ ARM_vmlaldavA
Definition allins.hpp:5284
@ ARM_addg
Definition allins.hpp:5148
@ ARM_uadalp
Definition allins.hpp:4871
@ ARM_mcr2
Definition allins.hpp:4232
@ ARM_bflx
Definition allins.hpp:5396
@ ARM_vsri
Definition allins.hpp:4588
@ ARM_mrs
Definition allins.hpp:4148
@ ARM_csetm
Definition allins.hpp:4708
@ xScale_miabb
Definition allins.hpp:4208
@ ARM_vmovnt
Definition allins.hpp:5252
@ ARM_fmin
Definition allins.hpp:4843
@ ARM_vmovnb
Definition allins.hpp:5251
@ ARM_drps
Definition allins.hpp:4727
@ ARM_vqdmullt
Definition allins.hpp:5305
@ ARM_sm3partw2
Definition allins.hpp:5190
@ ARM_smlatb
Definition allins.hpp:4187
@ ARM_vmaxnm
Definition allins.hpp:4620
@ ARM_vrsqrts
Definition allins.hpp:4578
@ ARM_sm3partw1
Definition allins.hpp:5189
@ ARM_vhsub
Definition allins.hpp:4515
@ ARM_vmlsldavA
Definition allins.hpp:5288
@ ARM_ldaex
Definition allins.hpp:4616
@ ARM_dlstp
Definition allins.hpp:5389
@ ARM_last
Definition allins.hpp:5423
@ ARM_vbic
Definition allins.hpp:4488
@ ARM_sqdmulh
Definition allins.hpp:4894
@ ARM_vqdmladhX
Definition allins.hpp:5258
@ ARM_strexh
Definition allins.hpp:4429
@ ARM_sri
Definition allins.hpp:4963
@ ARM_vqdmulh
Definition allins.hpp:4553
@ ARM_lctp
Definition allins.hpp:5376
@ ARM_vpt
Definition allins.hpp:5308
@ ARM_prfum
Definition allins.hpp:4680
@ ARM_vrmlaldavhA
Definition allins.hpp:5333
@ ARM_vaddlvA
Definition allins.hpp:5337
@ ARM_sqrshr
Definition allins.hpp:5375
@ mc_unlk
Definition allins.hpp:3653
@ mc_halt
Definition allins.hpp:3582
@ mc_fgetexp
Definition allins.hpp:3541
@ mc_pb
Definition allins.hpp:3614
@ mc_cmp2
Definition allins.hpp:3504
@ mc_ff1
Definition allins.hpp:3662
@ mc_lsr
Definition allins.hpp:3590
@ mc_fsin
Definition allins.hpp:3566
@ mc_fmove
Definition allins.hpp:3550
@ mc_fcos
Definition allins.hpp:3527
@ mc_illegal
Definition allins.hpp:3583
@ mc_fintrz
Definition allins.hpp:3544
@ mc_subx
Definition allins.hpp:3646
@ mc_fmovecr
Definition allins.hpp:3551
@ mc_nbcd
Definition allins.hpp:3605
@ mc_bfchg
Definition allins.hpp:3483
@ mc_b
Definition allins.hpp:3479
@ mc_bfffo
Definition allins.hpp:3488
@ mc_frem
Definition allins.hpp:3556
@ mc_ftst
Definition allins.hpp:3580
@ mc_fcmp
Definition allins.hpp:3526
@ mc_bfextu
Definition allins.hpp:3486
@ mc_wddata
Definition allins.hpp:3655
@ mc_fsmul
Definition allins.hpp:3570
@ mc_stop
Definition allins.hpp:3641
@ mc_movclr
Definition allins.hpp:3668
@ mc_atrap
Definition allins.hpp:3657
@ mc_addi
Definition allins.hpp:3472
@ mc_bgnd
Definition allins.hpp:3490
@ mc_lsl
Definition allins.hpp:3589
@ mc_flogn
Definition allins.hpp:3547
@ mc_swap
Definition allins.hpp:3647
@ mc_cmpm
Definition allins.hpp:3507
@ mc_bftst
Definition allins.hpp:3482
@ mc_movem
Definition allins.hpp:3597
@ mc_ftrap
Definition allins.hpp:3579
@ mc_muls
Definition allins.hpp:3603
@ mc_andi
Definition allins.hpp:3476
@ mc_bfset
Definition allins.hpp:3485
@ mc_bkpt
Definition allins.hpp:3491
@ mc_reset
Definition allins.hpp:3633
@ mc_fsinh
Definition allins.hpp:3568
@ mc_fsneg
Definition allins.hpp:3571
@ mc_fsgldiv
Definition allins.hpp:3564
@ mc_fdmove
Definition allins.hpp:3534
@ mc_bchg
Definition allins.hpp:3480
@ mc_sbcd
Definition allins.hpp:3639
@ mc_roxl
Definition allins.hpp:3631
@ mc_addx
Definition allins.hpp:3474
@ mc_fsdiv
Definition allins.hpp:3563
@ mc_pflush
Definition allins.hpp:3616
@ mc_btst
Definition allins.hpp:3495
@ mc_fmul
Definition allins.hpp:3553
@ mc_fasin
Definition allins.hpp:3522
@ mc_lea
Definition allins.hpp:3586
@ mc_fsincos
Definition allins.hpp:3567
@ mc_fneg
Definition allins.hpp:3554
@ mc_not
Definition allins.hpp:3609
@ mc_cpush
Definition allins.hpp:3508
@ mc_roxr
Definition allins.hpp:3632
@ mc_rtm
Definition allins.hpp:3636
@ mc_movea
Definition allins.hpp:3595
@ mc_bra
Definition allins.hpp:3492
@ mc_pmove
Definition allins.hpp:3620
@ mc_facos
Definition allins.hpp:3520
@ mc_fmod
Definition allins.hpp:3549
@ mc_add
Definition allins.hpp:3470
@ mc_rtd
Definition allins.hpp:3634
@ mc_clr
Definition allins.hpp:3502
@ mc_asl
Definition allins.hpp:3477
@ mc_last
Definition allins.hpp:3677
@ mc_ftanh
Definition allins.hpp:3577
@ mc_fs
Definition allins.hpp:3558
@ mc_fsmove
Definition allins.hpp:3569
@ mc_remsl
Definition allins.hpp:3674
@ mc_msaac
Definition allins.hpp:3671
@ mc_fdneg
Definition allins.hpp:3536
@ mc_cas
Definition allins.hpp:3497
@ mc_bsr
Definition allins.hpp:3494
@ mc_msacl
Definition allins.hpp:3602
@ mc_fdmul
Definition allins.hpp:3535
@ mc_rtr
Definition allins.hpp:3637
@ mc_fmovem
Definition allins.hpp:3552
@ mc_subi
Definition allins.hpp:3644
@ mc_sats
Definition allins.hpp:3667
@ mc_ploadr
Definition allins.hpp:3618
@ mc_tst
Definition allins.hpp:3652
@ mc_fint
Definition allins.hpp:3543
@ mc_maaac
Definition allins.hpp:3669
@ mc_ror
Definition allins.hpp:3630
@ mc_pflushr
Definition allins.hpp:3617
@ mc_fdadd
Definition allins.hpp:3530
@ mc_flognp1
Definition allins.hpp:3548
@ mc_eori
Definition allins.hpp:3515
@ mc_cmp
Definition allins.hpp:3503
@ mc_mssac
Definition allins.hpp:3672
@ mc_fatanh
Definition allins.hpp:3524
@ mc_fatan
Definition allins.hpp:3523
@ mc_fscale
Definition allins.hpp:3562
@ mc_movec
Definition allins.hpp:3596
@ mc_tbl
Definition allins.hpp:3649
@ mc_fsqrt
Definition allins.hpp:3572
@ mc_fdb
Definition allins.hpp:3531
@ mc_rte
Definition allins.hpp:3635
@ mc_mulu
Definition allins.hpp:3604
@ mc_null
Definition allins.hpp:3467
@ mc_wdebug
Definition allins.hpp:3656
@ mc_mov3q
Definition allins.hpp:3664
@ mc_macl
Definition allins.hpp:3592
@ mc_eor
Definition allins.hpp:3514
@ mc_neg
Definition allins.hpp:3606
@ mc_asr
Definition allins.hpp:3478
@ mc_pdb
Definition allins.hpp:3615
@ mc_moves
Definition allins.hpp:3600
@ mc_adda
Definition allins.hpp:3471
@ mc_bfins
Definition allins.hpp:3489
@ mc_fetoxm1
Definition allins.hpp:3540
@ mc_unpk
Definition allins.hpp:3654
@ mc_masac
Definition allins.hpp:3670
@ mc_fdabs
Definition allins.hpp:3529
@ mc_pack
Definition allins.hpp:3612
@ mc_fdsqrt
Definition allins.hpp:3537
@ mc_divu
Definition allins.hpp:3512
@ mc_s
Definition allins.hpp:3640
@ mc_pvalid
Definition allins.hpp:3628
@ mc_fsglmul
Definition allins.hpp:3565
@ mc_mvz
Definition allins.hpp:3666
@ mc_cinv
Definition allins.hpp:3501
@ mc_frestore
Definition allins.hpp:3557
@ mc_ftan
Definition allins.hpp:3576
@ mc_movep
Definition allins.hpp:3598
@ mc_moveq
Definition allins.hpp:3599
@ mc_flog10
Definition allins.hpp:3546
@ mc_ori
Definition allins.hpp:3611
@ mc_jsr
Definition allins.hpp:3585
@ mc_fsave
Definition allins.hpp:3561
@ mc_ftentox
Definition allins.hpp:3578
@ mc_fnop
Definition allins.hpp:3555
@ mc_divul
Definition allins.hpp:3513
@ mc_mvs
Definition allins.hpp:3665
@ mc_ext
Definition allins.hpp:3517
@ mc_rol
Definition allins.hpp:3629
@ mc_ptestr
Definition allins.hpp:3624
@ mc_fabs
Definition allins.hpp:3519
@ mc_prestore
Definition allins.hpp:3621
@ mc_db
Definition allins.hpp:3509
@ mc_suba
Definition allins.hpp:3643
@ mc_divs
Definition allins.hpp:3510
@ mc_fssub
Definition allins.hpp:3574
@ mc_fsabs
Definition allins.hpp:3559
@ mc_divsl
Definition allins.hpp:3511
@ mc_rts
Definition allins.hpp:3638
@ mc_exg
Definition allins.hpp:3516
@ mc_pea
Definition allins.hpp:3613
@ mc_fsub
Definition allins.hpp:3575
@ mc_or
Definition allins.hpp:3610
@ mc_fsadd
Definition allins.hpp:3560
@ mc_bfclr
Definition allins.hpp:3484
@ mc_trap
Definition allins.hpp:3650
@ mc_jmp
Definition allins.hpp:3584
@ mc_intouch
Definition allins.hpp:3663
@ mc_callm
Definition allins.hpp:3496
@ mc_ftwotox
Definition allins.hpp:3581
@ mc_and
Definition allins.hpp:3475
@ mc_remul
Definition allins.hpp:3675
@ mc_fdiv
Definition allins.hpp:3533
@ mc_chk
Definition allins.hpp:3499
@ mc_extb
Definition allins.hpp:3518
@ mc_cmpa
Definition allins.hpp:3505
@ mc_fddiv
Definition allins.hpp:3532
@ mc_link
Definition allins.hpp:3587
@ mc_flog2
Definition allins.hpp:3545
@ mc_chk2
Definition allins.hpp:3500
@ mc_bfexts
Definition allins.hpp:3487
@ mc_addq
Definition allins.hpp:3473
@ mc_fdsub
Definition allins.hpp:3538
@ mc_tas
Definition allins.hpp:3648
@ mc_psave
Definition allins.hpp:3622
@ mc_nop
Definition allins.hpp:3608
@ mc_abcd
Definition allins.hpp:3469
@ mc_cas2
Definition allins.hpp:3498
@ mc_ptrap
Definition allins.hpp:3626
@ mc_mac
Definition allins.hpp:3591
@ mc_fb
Definition allins.hpp:3525
@ mc_sub
Definition allins.hpp:3642
@ mc_trapv
Definition allins.hpp:3651
@ mc_move
Definition allins.hpp:3593
@ mc_ploadw
Definition allins.hpp:3619
@ mc_fgetman
Definition allins.hpp:3542
@ mc_lpstop
Definition allins.hpp:3588
@ mc_bset
Definition allins.hpp:3493
@ mc_negx
Definition allins.hpp:3607
@ mc_bitrev
Definition allins.hpp:3660
@ mc_move16
Definition allins.hpp:3594
@ mc_cmpi
Definition allins.hpp:3506
@ mc_ps
Definition allins.hpp:3623
@ mc_bclr
Definition allins.hpp:3481
@ mc_fssqrt
Definition allins.hpp:3573
@ mc_byterev
Definition allins.hpp:3661
@ mc_ptestw
Definition allins.hpp:3625
@ mc_pulse
Definition allins.hpp:3627
@ mc_fetox
Definition allins.hpp:3539
@ mc_fadd
Definition allins.hpp:3521
@ mc_msac
Definition allins.hpp:3601
@ mc_fcosh
Definition allins.hpp:3528
@ mc_subq
Definition allins.hpp:3645
@ T900_mdec1
Definition allins.hpp:14676
@ T900_slaw_mem
Definition allins.hpp:14728
@ T900_lda
Definition allins.hpp:14632
@ T900_call
Definition allins.hpp:14746
@ T900_sll
Definition allins.hpp:14732
@ T900_xorcf
Definition allins.hpp:14689
@ T900_srlw_mem
Definition allins.hpp:14737
@ T900_jp
Definition allins.hpp:14740
@ T900_sub
Definition allins.hpp:14652
@ T900_sll_mem
Definition allins.hpp:14733
@ T900_popw
Definition allins.hpp:14631
@ T900_rrcw_mem
Definition allins.hpp:14719
@ T900_mdec2
Definition allins.hpp:14677
@ T900_adc
Definition allins.hpp:14650
@ T900_null
Definition allins.hpp:14625
@ T900_bs1f
Definition allins.hpp:14699
@ T900_djnz
Definition allins.hpp:14748
@ T900_rl_mem
Definition allins.hpp:14721
@ T900_pushw
Definition allins.hpp:14629
@ T900_halt
Definition allins.hpp:14705
@ T900_ex
Definition allins.hpp:14634
@ T900_max
Definition allins.hpp:14753
@ T900_rrd
Definition allins.hpp:14739
@ T900_link
Definition allins.hpp:14708
@ T900_rr
Definition allins.hpp:14723
@ T900_decf
Definition allins.hpp:14712
@ T900_dec
Definition allins.hpp:14660
@ T900_sbc
Definition allins.hpp:14654
@ T900_jr_cond
Definition allins.hpp:14743
@ T900_muls
Definition allins.hpp:14669
@ T900_res
Definition allins.hpp:14695
@ T900_sbcw
Definition allins.hpp:14655
@ T900_paa
Definition allins.hpp:14666
@ T900_decw
Definition allins.hpp:14661
@ T900_unlk
Definition allins.hpp:14709
@ T900_and
Definition allins.hpp:14679
@ T900_rlcw_mem
Definition allins.hpp:14716
@ T900_subw
Definition allins.hpp:14653
@ T900_minc1
Definition allins.hpp:14673
@ T900_add
Definition allins.hpp:14648
@ T900_ret
Definition allins.hpp:14749
@ T900_xor
Definition allins.hpp:14683
@ T900_ldiw
Definition allins.hpp:14637
@ T900_ldir
Definition allins.hpp:14638
@ T900_extz
Definition allins.hpp:14663
@ T900_jp_cond
Definition allins.hpp:14741
@ T900_sraw_mem
Definition allins.hpp:14731
@ T900_srl
Definition allins.hpp:14735
@ T900_zcf
Definition allins.hpp:14693
@ T900_nop
Definition allins.hpp:14701
@ T900_rcf
Definition allins.hpp:14690
@ T900_sla_mem
Definition allins.hpp:14727
@ T900_rl
Definition allins.hpp:14720
@ T900_sra_mem
Definition allins.hpp:14730
@ T900_rlc
Definition allins.hpp:14714
@ T900_ldi
Definition allins.hpp:14636
@ T900_retd
Definition allins.hpp:14751
@ T900_mula
Definition allins.hpp:14672
@ T900_ldw
Definition allins.hpp:14627
@ T900_scf
Definition allins.hpp:14691
@ T900_orw
Definition allins.hpp:14682
@ T900_cp
Definition allins.hpp:14656
@ T900_rld
Definition allins.hpp:14738
@ T900_mdec4
Definition allins.hpp:14678
@ T900_ret_cond
Definition allins.hpp:14750
@ T900_cpdr
Definition allins.hpp:14647
@ T900_cpw
Definition allins.hpp:14657
@ T900_minc2
Definition allins.hpp:14674
@ T900_set
Definition allins.hpp:14696
@ T900_ldcf
Definition allins.hpp:14685
@ T900_andcf
Definition allins.hpp:14687
@ T900_calr
Definition allins.hpp:14747
@ T900_ldar
Definition allins.hpp:14633
@ T900_bs1b
Definition allins.hpp:14700
@ T900_xorw
Definition allins.hpp:14684
@ T900_jrl
Definition allins.hpp:14744
@ T900_srl_mem
Definition allins.hpp:14736
@ T900_mul
Definition allins.hpp:14668
@ T900_lddrw
Definition allins.hpp:14643
@ T900_cpir
Definition allins.hpp:14645
@ T900_andw
Definition allins.hpp:14680
@ T900_incw
Definition allins.hpp:14659
@ T900_exts
Definition allins.hpp:14664
@ T900_mirr
Definition allins.hpp:14635
@ T900_divs
Definition allins.hpp:14671
@ T900_ldx
Definition allins.hpp:14707
@ T900_ld
Definition allins.hpp:14626
@ T900_sla
Definition allins.hpp:14726
@ T900_tset
Definition allins.hpp:14698
@ T900_cpd
Definition allins.hpp:14646
@ T900_lddr
Definition allins.hpp:14642
@ T900_pop
Definition allins.hpp:14630
@ T900_bit
Definition allins.hpp:14694
@ T900_adcw
Definition allins.hpp:14651
@ T900_inc
Definition allins.hpp:14658
@ T900_rlw_mem
Definition allins.hpp:14722
@ T900_last
Definition allins.hpp:14755
@ T900_rrc_mem
Definition allins.hpp:14718
@ T900_scc
Definition allins.hpp:14713
@ T900_jrl_cond
Definition allins.hpp:14745
@ T900_ldirw
Definition allins.hpp:14639
@ T900_di
Definition allins.hpp:14703
@ T900_ldc
Definition allins.hpp:14706
@ T900_normal
Definition allins.hpp:14754
@ T900_daa
Definition allins.hpp:14665
@ T900_minc4
Definition allins.hpp:14675
@ T900_cpi
Definition allins.hpp:14644
@ T900_push
Definition allins.hpp:14628
@ T900_jr
Definition allins.hpp:14742
@ T900_rlc_mem
Definition allins.hpp:14715
@ T900_div
Definition allins.hpp:14670
@ T900_incf
Definition allins.hpp:14711
@ T900_or
Definition allins.hpp:14681
@ T900_lddw
Definition allins.hpp:14641
@ T900_orcf
Definition allins.hpp:14688
@ T900_chg
Definition allins.hpp:14697
@ T900_ldf
Definition allins.hpp:14710
@ T900_ei
Definition allins.hpp:14702
@ T900_sllw_mem
Definition allins.hpp:14734
@ T900_ccf
Definition allins.hpp:14692
@ T900_cpl
Definition allins.hpp:14667
@ T900_reti
Definition allins.hpp:14752
@ T900_swi
Definition allins.hpp:14704
@ T900_rr_mem
Definition allins.hpp:14724
@ T900_ldd
Definition allins.hpp:14640
@ T900_rrc
Definition allins.hpp:14717
@ T900_stcf
Definition allins.hpp:14686
@ T900_sra
Definition allins.hpp:14729
@ T900_rrw_mem
Definition allins.hpp:14725
@ T900_addw
Definition allins.hpp:14649
@ T900_neg
Definition allins.hpp:14662
@ AVR_brge
Definition allins.hpp:6285
@ AVR_breq
Definition allins.hpp:6277
@ AVR_clr
Definition allins.hpp:6254
@ AVR_mov
Definition allins.hpp:6297
@ AVR_null
Definition allins.hpp:6231
@ AVR_espm
Definition allins.hpp:6347
@ AVR_brhs
Definition allins.hpp:6287
@ AVR_ret
Definition allins.hpp:6268
@ AVR_icall
Definition allins.hpp:6266
@ AVR_sbc
Definition allins.hpp:6239
@ AVR_cbi
Definition allins.hpp:6321
@ AVR_ld
Definition allins.hpp:6300
@ AVR_brbc
Definition allins.hpp:6276
@ AVR_in
Definition allins.hpp:6306
@ AVR_cls
Definition allins.hpp:6333
@ AVR_brvs
Definition allins.hpp:6291
@ AVR_call
Definition allins.hpp:6267
@ AVR_brmi
Definition allins.hpp:6283
@ AVR_seh
Definition allins.hpp:6338
@ AVR_std
Definition allins.hpp:6304
@ AVR_brsh
Definition allins.hpp:6281
@ AVR_cpse
Definition allins.hpp:6270
@ AVR_eicall
Definition allins.hpp:6355
@ AVR_mulsu
Definition allins.hpp:6353
@ AVR_rjmp
Definition allins.hpp:6262
@ AVR_and
Definition allins.hpp:6242
@ AVR_bld
Definition allins.hpp:6323
@ AVR_brtc
Definition allins.hpp:6290
@ AVR_lat
Definition allins.hpp:6363
@ AVR_rol
Definition allins.hpp:6314
@ AVR_brcc
Definition allins.hpp:6280
@ AVR_dec
Definition allins.hpp:6252
@ AVR_sez
Definition allins.hpp:6328
@ AVR_subi
Definition allins.hpp:6238
@ AVR_las
Definition allins.hpp:6362
@ AVR_bset
Definition allins.hpp:6318
@ AVR_sec
Definition allins.hpp:6324
@ AVR_andi
Definition allins.hpp:6243
@ AVR_sub
Definition allins.hpp:6237
@ AVR_lpm
Definition allins.hpp:6305
@ AVR_movw
Definition allins.hpp:6351
@ AVR_bclr
Definition allins.hpp:6319
@ AVR_brcs
Definition allins.hpp:6279
@ AVR_reti
Definition allins.hpp:6269
@ AVR_nop
Definition allins.hpp:6340
@ AVR_sbis
Definition allins.hpp:6274
@ AVR_sbi
Definition allins.hpp:6320
@ AVR_inc
Definition allins.hpp:6251
@ AVR_cpi
Definition allins.hpp:6258
@ AVR_cli
Definition allins.hpp:6331
@ AVR_sbiw
Definition allins.hpp:6241
@ AVR_lac
Definition allins.hpp:6361
@ AVR_brhc
Definition allins.hpp:6288
@ AVR_des
Definition allins.hpp:6360
@ AVR_ror
Definition allins.hpp:6315
@ AVR_or
Definition allins.hpp:6244
@ AVR_swap
Definition allins.hpp:6317
@ AVR_lds
Definition allins.hpp:6299
@ AVR_fmulsu
Definition allins.hpp:6350
@ AVR_sbic
Definition allins.hpp:6273
@ AVR_adc
Definition allins.hpp:6235
@ AVR_sts
Definition allins.hpp:6302
@ AVR_clz
Definition allins.hpp:6329
@ AVR_wdr
Definition allins.hpp:6342
@ AVR_clc
Definition allins.hpp:6325
@ AVR_brpl
Definition allins.hpp:6284
@ AVR_lsr
Definition allins.hpp:6313
@ AVR_neg
Definition allins.hpp:6248
@ AVR_brie
Definition allins.hpp:6293
@ AVR_spm
Definition allins.hpp:6354
@ AVR_cpc
Definition allins.hpp:6257
@ AVR_brid
Definition allins.hpp:6294
@ AVR_sbci
Definition allins.hpp:6240
@ AVR_lsl
Definition allins.hpp:6312
@ AVR_sbrc
Definition allins.hpp:6271
@ AVR_eor
Definition allins.hpp:6246
@ AVR_cp
Definition allins.hpp:6256
@ AVR_jmp
Definition allins.hpp:6264
@ AVR_ser
Definition allins.hpp:6255
@ AVR_eijmp
Definition allins.hpp:6356
@ AVR_out
Definition allins.hpp:6307
@ AVR_sen
Definition allins.hpp:6326
@ AVR_sei
Definition allins.hpp:6330
@ AVR_sbrs
Definition allins.hpp:6272
@ AVR_brne
Definition allins.hpp:6278
@ AVR_brbs
Definition allins.hpp:6275
@ AVR_asr
Definition allins.hpp:6316
@ AVR_ori
Definition allins.hpp:6245
@ AVR_add
Definition allins.hpp:6234
@ AVR_clv
Definition allins.hpp:6335
@ AVR_push
Definition allins.hpp:6308
@ AVR_ldi
Definition allins.hpp:6298
@ AVR_bst
Definition allins.hpp:6322
@ AVR_set
Definition allins.hpp:6336
@ AVR_ijmp
Definition allins.hpp:6263
@ AVR_brts
Definition allins.hpp:6289
@ AVR_cln
Definition allins.hpp:6327
@ AVR_com
Definition allins.hpp:6247
@ AVR_sev
Definition allins.hpp:6334
@ AVR_brlo
Definition allins.hpp:6282
@ AVR_ldd
Definition allins.hpp:6301
@ AVR_fmul
Definition allins.hpp:6348
@ AVR_fmuls
Definition allins.hpp:6349
@ AVR_st
Definition allins.hpp:6303
@ AVR_last
Definition allins.hpp:6366
@ AVR_pop
Definition allins.hpp:6309
@ AVR_sleep
Definition allins.hpp:6341
@ AVR_clt
Definition allins.hpp:6337
@ AVR_tst
Definition allins.hpp:6253
@ AVR_rcall
Definition allins.hpp:6265
@ AVR_ses
Definition allins.hpp:6332
@ AVR_cbr
Definition allins.hpp:6250
@ AVR_mul
Definition allins.hpp:6259
@ AVR_sbr
Definition allins.hpp:6249
@ AVR_clh
Definition allins.hpp:6339
@ AVR_muls
Definition allins.hpp:6352
@ AVR_brvc
Definition allins.hpp:6292
@ AVR_brlt
Definition allins.hpp:6286
@ AVR_adiw
Definition allins.hpp:6236
@ AVR_xch
Definition allins.hpp:6364
@ AVR_elpm
Definition allins.hpp:6346
@ TMS320C3X_AND3
Definition allins.hpp:11846
@ TMS320C3X_LOPOWER
Definition allins.hpp:11819
@ TMS320C3X_CMPF3
Definition allins.hpp:11849
@ TMS320C3X_LDE
Definition allins.hpp:11799
@ TMS320C3X_STFI
Definition allins.hpp:11828
@ TMS320C3X_LDII
Definition allins.hpp:11803
@ TMS320C3X_Bcond
Definition allins.hpp:11868
@ TMS320C3X_MAXSPEED
Definition allins.hpp:11820
@ TMS320C3X_ROLC
Definition allins.hpp:11823
@ TMS320C3X_NORM
Definition allins.hpp:11812
@ TMS320C3X_ABSF
Definition allins.hpp:11785
@ TMS320C3X_TSTB3
Definition allins.hpp:11858
@ TMS320C3X_NONE
Definition allins.hpp:11877
@ TMS320C3X_RETScond
Definition allins.hpp:11873
@ TMS320C3X_MV_IDX
Definition allins.hpp:11878
@ TMS320C3X_RORC
Definition allins.hpp:11825
@ TMS320C3X_PUSHF
Definition allins.hpp:11817
@ TMS320C3X_CALL
Definition allins.hpp:11865
@ TMS320C3X_POP
Definition allins.hpp:11814
@ TMS320C3X_BR
Definition allins.hpp:11863
@ TMS320C3X_IDLE2
Definition allins.hpp:11798
@ TMS320C3X_ANDN
Definition allins.hpp:11791
@ TMS320C3X_SUBRB
Definition allins.hpp:11836
@ TMS320C3X_FIX
Definition allins.hpp:11795
@ TMS320C3X_PUSH
Definition allins.hpp:11816
@ TMS320C3X_RETIcond
Definition allins.hpp:11872
@ TMS320C3X_ANDN3
Definition allins.hpp:11847
@ TMS320C3X_STI
Definition allins.hpp:11829
@ TMS320C3X_SIGI
Definition allins.hpp:11831
@ TMS320C3X_ADDF
Definition allins.hpp:11788
@ TMS320C3X_NEGB
Definition allins.hpp:11808
@ TMS320C3X_ADDI
Definition allins.hpp:11789
@ TMS320C3X_IDLE
Definition allins.hpp:11797
@ TMS320C3X_SUBB
Definition allins.hpp:11832
@ TMS320C3X_DBcond
Definition allins.hpp:11869
@ TMS320C3X_ROR
Definition allins.hpp:11824
@ TMS320C3X_LDI
Definition allins.hpp:11802
@ TMS320C3X_ADDI3
Definition allins.hpp:11845
@ TMS320C3X_MPYI
Definition allins.hpp:11807
@ TMS320C3X_POPF
Definition allins.hpp:11815
@ TMS320C3X_ROL
Definition allins.hpp:11822
@ TMS320C3X_CMPI
Definition allins.hpp:11794
@ TMS320C3X_SUBB3
Definition allins.hpp:11855
@ TMS320C3X_SUBC
Definition allins.hpp:11833
@ TMS320C3X_TSTB
Definition allins.hpp:11839
@ TMS320C3X_STII
Definition allins.hpp:11830
@ TMS320C3X_OR
Definition allins.hpp:11818
@ TMS320C3X_RPTS
Definition allins.hpp:11826
@ TMS320C3X_ADDC
Definition allins.hpp:11787
@ TMS320C3X_CMPI3
Definition allins.hpp:11850
@ TMS320C3X_NEGF
Definition allins.hpp:11809
@ TMS320C3X_SWI
Definition allins.hpp:11867
@ TMS320C3X_ASH3
Definition allins.hpp:11848
@ TMS320C3X_XOR
Definition allins.hpp:11840
@ TMS320C3X_last
Definition allins.hpp:11879
@ TMS320C3X_CMPF
Definition allins.hpp:11793
@ TMS320C3X_LDIcond
Definition allins.hpp:11862
@ TMS320C3X_TRAPcond
Definition allins.hpp:11871
@ TMS320C3X_ADDC3
Definition allins.hpp:11843
@ TMS320C3X_STF
Definition allins.hpp:11827
@ TMS320C3X_XOR3
Definition allins.hpp:11859
@ TMS320C3X_MPYI3
Definition allins.hpp:11853
@ TMS320C3X_NOT
Definition allins.hpp:11813
@ TMS320C3X_SUBRI
Definition allins.hpp:11838
@ TMS320C3X_ASH
Definition allins.hpp:11792
@ TMS320C3X_RND
Definition allins.hpp:11821
@ TMS320C3X_ADDF3
Definition allins.hpp:11844
@ TMS320C3X_LDFI
Definition allins.hpp:11801
@ TMS320C3X_SUBI3
Definition allins.hpp:11857
@ TMS320C3X_LDF
Definition allins.hpp:11800
@ TMS320C3X_IACK
Definition allins.hpp:11841
@ TMS320C3X_RETSU
Definition allins.hpp:11875
@ TMS320C3X_NEGI
Definition allins.hpp:11810
@ TMS320C3X_BRD
Definition allins.hpp:11864
@ TMS320C3X_ABSI
Definition allins.hpp:11786
@ TMS320C3X_LDFcond
Definition allins.hpp:11861
@ TMS320C3X_LDM
Definition allins.hpp:11804
@ TMS320C3X_CALLcond
Definition allins.hpp:11870
@ TMS320C3X_SUBF3
Definition allins.hpp:11856
@ TMS320C3X_SUBF
Definition allins.hpp:11834
@ TMS320C3X_MPYF
Definition allins.hpp:11806
@ TMS320C3X_null
Definition allins.hpp:11783
@ TMS320C3X_AND
Definition allins.hpp:11790
@ TMS320C3X_RPTB
Definition allins.hpp:11866
@ TMS320C3X_SUBRF
Definition allins.hpp:11837
@ TMS320C3X_NOP
Definition allins.hpp:11811
@ TMS320C3X_FLOAT
Definition allins.hpp:11796
@ TMS320C3X_MPYF3
Definition allins.hpp:11852
@ TMS320C3X_LSH
Definition allins.hpp:11805
@ TMS320C3X_OR3
Definition allins.hpp:11854
@ TMS320C3X_RETIU
Definition allins.hpp:11874
@ TMS320C3X_SUBI
Definition allins.hpp:11835
@ TMS320C3X_LSH3
Definition allins.hpp:11851
@ ARC_vmsub2hfr
Definition allins.hpp:20084
@ ARC_fmul
Definition allins.hpp:19938
@ ARC_sexb
Definition allins.hpp:19791
@ ARC_sbcs
Definition allins.hpp:20024
@ ARC_st
Definition allins.hpp:19785
@ ARC_rrc
Definition allins.hpp:19798
@ ARC_mpywhflr
Definition allins.hpp:20119
@ ARC_mpydf
Definition allins.hpp:20099
@ ARC_swape
Definition allins.hpp:20036
@ ARC_mac
Definition allins.hpp:19986
@ ARC_mpydu
Definition allins.hpp:20001
@ ARC_bspeek
Definition allins.hpp:20068
@ ARC_acm
Definition allins.hpp:19914
@ ARC_cmacchnfr
Definition allins.hpp:20088
@ ARC_msubwhflr
Definition allins.hpp:20107
@ ARC_machulw
Definition allins.hpp:19907
@ ARC_swap
Definition allins.hpp:19832
@ ARC_asls
Definition allins.hpp:19877
@ ARC_setlo
Definition allins.hpp:19962
@ ARC_ld
Definition allins.hpp:19783
@ ARC_bbit1
Definition allins.hpp:19837
@ ARC_vext2bhm
Definition allins.hpp:20060
@ ARC_extw
Definition allins.hpp:19795
@ ARC_mpyh
Definition allins.hpp:19854
@ ARC_rol8
Definition allins.hpp:20043
@ ARC_mpyfr
Definition allins.hpp:20091
@ ARC_daddh21
Definition allins.hpp:19920
@ ARC_dsubh11
Definition allins.hpp:19928
@ ARC_fssqrt
Definition allins.hpp:20139
@ ARC_min
Definition allins.hpp:19831
@ ARC_dmulh22
Definition allins.hpp:19927
@ ARC_dmpyhf
Definition allins.hpp:20028
@ ARC_msubwhfm
Definition allins.hpp:20126
@ ARC_leave
Definition allins.hpp:19976
@ ARC_vsubadds2h
Definition allins.hpp:19999
@ ARC_fsmul
Definition allins.hpp:19939
@ ARC_vpack2hblf
Definition allins.hpp:20053
@ ARC_store_instructions
Definition allins.hpp:19787
@ ARC_dmach
Definition allins.hpp:19990
@ ARC_macdf
Definition allins.hpp:20100
@ ARC_lr
Definition allins.hpp:19784
@ ARC_lsr
Definition allins.hpp:19790
@ ARC_bxor
Definition allins.hpp:19850
@ ARC_sleep
Definition allins.hpp:19821
@ ARC_setle
Definition allins.hpp:19964
@ ARC_upkqb
Definition allins.hpp:19947
@ ARC_muludw
Definition allins.hpp:19894
@ ARC_vsubs2h
Definition allins.hpp:19995
@ ARC_ldi
Definition allins.hpp:19955
@ ARC_cbflyhf1r
Definition allins.hpp:20130
@ ARC_asr16
Definition allins.hpp:20039
@ ARC_dmachu
Definition allins.hpp:19991
@ ARC_vpack2hbmf
Definition allins.hpp:20054
@ ARC_dsubh12
Definition allins.hpp:19929
@ ARC_mpyhu
Definition allins.hpp:19856
@ ARC_clamp
Definition allins.hpp:19917
@ ARC_vext2bhlf
Definition allins.hpp:20055
@ ARC_macwhl
Definition allins.hpp:20111
@ ARC_wevt
Definition allins.hpp:20146
@ ARC_pop
Definition allins.hpp:19839
@ ARC_vasls2h
Definition allins.hpp:20014
@ ARC_macf
Definition allins.hpp:20092
@ ARC_kflag
Definition allins.hpp:20145
@ ARC_vsub2h
Definition allins.hpp:19994
@ ARC_satf
Definition allins.hpp:20050
@ ARC_fadd
Definition allins.hpp:19936
@ ARC_vpack2hbm
Definition allins.hpp:20052
@ ARC_mpywhl
Definition allins.hpp:20110
@ ARC_muldw
Definition allins.hpp:19893
@ ARC_dsubh22
Definition allins.hpp:19931
@ ARC_bset
Definition allins.hpp:19848
@ ARC_bi
Definition allins.hpp:19953
@ ARC_mulu64
Definition allins.hpp:19829
@ ARC_negsw
Definition allins.hpp:19881
@ ARC_divf
Definition allins.hpp:20096
@ ARC_div
Definition allins.hpp:19979
@ ARC_sqrtf
Definition allins.hpp:20071
@ ARC_vmsub2hf
Definition allins.hpp:20083
@ ARC_subs
Definition allins.hpp:19889
@ ARC_normacc
Definition allins.hpp:20049
@ ARC_vabs2h
Definition allins.hpp:20063
@ ARC_avgqb
Definition allins.hpp:19916
@ ARC_ex
Definition allins.hpp:19852
@ ARC_llock
Definition allins.hpp:19968
@ ARC_valgn2h
Definition allins.hpp:19984
@ ARC_vmac2hfr
Definition allins.hpp:20011
@ ARC_vmin2h
Definition allins.hpp:20022
@ ARC_vrep2hm
Definition allins.hpp:20058
@ ARC_macd
Definition allins.hpp:20002
@ ARC_fsmsub
Definition allins.hpp:20136
@ ARC_rnd16
Definition allins.hpp:19885
@ ARC_normw
Definition allins.hpp:19883
@ ARC_cmpyhfmr
Definition allins.hpp:20108
@ ARC_adcs
Definition allins.hpp:20023
@ ARC_mpywhfmr
Definition allins.hpp:20115
@ ARC_lsl
Definition allins.hpp:19816
@ ARC_mpywhkl
Definition allins.hpp:20124
@ ARC_bih
Definition allins.hpp:19954
@ ARC_b
Definition allins.hpp:19799
@ ARC_sexw
Definition allins.hpp:19792
@ ARC_bspop
Definition allins.hpp:20069
@ ARC_fsub
Definition allins.hpp:19940
@ ARC_vsub4b
Definition allins.hpp:20021
@ ARC_sat16
Definition allins.hpp:19887
@ ARC_macu
Definition allins.hpp:19987
@ ARC_seteq
Definition allins.hpp:19958
@ ARC_neg
Definition allins.hpp:19859
@ ARC_mullw
Definition allins.hpp:19903
@ ARC_cmachnfr
Definition allins.hpp:20086
@ ARC_negs
Definition allins.hpp:19880
@ ARC_sexh
Definition allins.hpp:19793
@ ARC_vadd2h
Definition allins.hpp:19992
@ ARC_mpym
Definition allins.hpp:19855
@ ARC_asrsr
Definition allins.hpp:19983
@ ARC_asr8
Definition allins.hpp:20040
@ ARC_adc
Definition allins.hpp:19805
@ ARC_cmpyhnfr
Definition allins.hpp:20080
@ ARC_mpyqb
Definition allins.hpp:19944
@ ARC_vperm
Definition allins.hpp:20032
@ ARC_sync
Definition allins.hpp:19867
@ ARC_bspush
Definition allins.hpp:20033
@ ARC_and
Definition allins.hpp:19808
@ ARC_last
Definition allins.hpp:20148
@ ARC_vpack2hm
Definition allins.hpp:20027
@ ARC_vext2bhmf
Definition allins.hpp:20056
@ ARC_sbc
Definition allins.hpp:19807
@ ARC_vasrs2h
Definition allins.hpp:20016
@ ARC_not
Definition allins.hpp:19860
@ ARC_msubfr
Definition allins.hpp:20095
@ ARC_rndh
Definition allins.hpp:19886
@ ARC_rcmp
Definition allins.hpp:19861
@ ARC_sr
Definition allins.hpp:19786
@ ARC_sfxtr
Definition allins.hpp:19945
@ ARC_bmskn
Definition allins.hpp:19957
@ ARC_mpywhkul
Definition allins.hpp:20125
@ ARC_setlt
Definition allins.hpp:19960
@ ARC_lsl8
Definition allins.hpp:20042
@ ARC_btst
Definition allins.hpp:19849
@ ARC_asr
Definition allins.hpp:19789
@ ARC_jli
Definition allins.hpp:20142
@ ARC_macudw
Definition allins.hpp:19897
@ ARC_daddh12
Definition allins.hpp:19919
@ ARC_drsubh12
Definition allins.hpp:19933
@ ARC_vmac2h
Definition allins.hpp:20008
@ ARC_mulflw
Definition allins.hpp:19904
@ ARC_macdw
Definition allins.hpp:19896
@ ARC_macwhflr
Definition allins.hpp:20121
@ ARC_push
Definition allins.hpp:19840
@ ARC_fxtr
Definition allins.hpp:19942
@ ARC_dmulh12
Definition allins.hpp:19925
@ ARC_mulhlw
Definition allins.hpp:19910
@ ARC_macrdw
Definition allins.hpp:19898
@ ARC_vadd4b
Definition allins.hpp:20019
@ ARC_lsr16
Definition allins.hpp:20038
@ ARC_dmpyhu
Definition allins.hpp:19989
@ ARC_vmpy2h
Definition allins.hpp:20004
@ ARC_bbit0
Definition allins.hpp:19836
@ ARC_bic
Definition allins.hpp:19810
@ ARC_msubwhfmr
Definition allins.hpp:20127
@ ARC_vmax2h
Definition allins.hpp:20020
@ ARC_divu
Definition allins.hpp:19980
@ ARC_vmpy2hwf
Definition allins.hpp:20012
@ ARC_vasr2h
Definition allins.hpp:20015
@ ARC_aslsacc
Definition allins.hpp:20075
@ ARC_asl
Definition allins.hpp:19827
@ ARC_vabss2h
Definition allins.hpp:20064
@ ARC_cmacchfr
Definition allins.hpp:20089
@ ARC_vmpy2hu
Definition allins.hpp:20006
@ ARC_macwhkul
Definition allins.hpp:20123
@ ARC_add3
Definition allins.hpp:19845
@ ARC_vmac2hu
Definition allins.hpp:20010
@ ARC_ror8
Definition allins.hpp:20044
@ ARC_ei
Definition allins.hpp:20143
@ ARC_fsdiv
Definition allins.hpp:20137
@ ARC_dmachbl
Definition allins.hpp:20105
@ ARC_lsr8
Definition allins.hpp:20041
@ ARC_sub3
Definition allins.hpp:19866
@ ARC_max
Definition allins.hpp:19830
@ ARC_tst
Definition allins.hpp:19869
@ ARC_unimp
Definition allins.hpp:19870
@ ARC_fssub
Definition allins.hpp:19941
@ ARC_vmpy2hf
Definition allins.hpp:20005
@ ARC_xor
Definition allins.hpp:19811
@ ARC_vasl2h
Definition allins.hpp:20013
@ ARC_exth
Definition allins.hpp:19796
@ ARC_bclr
Definition allins.hpp:19846
@ ARC_vmpy2hfr
Definition allins.hpp:20007
@ ARC_dmpyhwf
Definition allins.hpp:20025
@ ARC_setacc
Definition allins.hpp:19985
@ ARC_macwhul
Definition allins.hpp:20113
@ ARC_mul64
Definition allins.hpp:19828
@ ARC_fsmadd
Definition allins.hpp:20135
@ ARC_macwhkl
Definition allins.hpp:20122
@ ARC_fls
Definition allins.hpp:20046
@ ARC_seths
Definition allins.hpp:19963
@ ARC_scond
Definition allins.hpp:19969
@ ARC_dmpyhfr
Definition allins.hpp:20029
@ ARC_add2
Definition allins.hpp:19844
@ ARC_vpack2hl
Definition allins.hpp:20026
@ ARC_sath
Definition allins.hpp:19888
@ ARC_rlc
Definition allins.hpp:19817
@ ARC_seti
Definition allins.hpp:19971
@ ARC_mpywhfl
Definition allins.hpp:20118
@ ARC_or
Definition allins.hpp:19809
@ ARC_norm
Definition allins.hpp:19833
@ ARC_subsdw
Definition allins.hpp:19890
@ ARC_divaw
Definition allins.hpp:19879
@ ARC_dmachbm
Definition allins.hpp:20106
@ ARC_null
Definition allins.hpp:19781
@ ARC_negsh
Definition allins.hpp:19882
@ ARC_iaddr
Definition allins.hpp:19943
@ ARC_macwhfmr
Definition allins.hpp:20117
@ ARC_macdu
Definition allins.hpp:20003
@ ARC_vasrsr2h
Definition allins.hpp:20018
@ ARC_abss
Definition allins.hpp:19872
@ ARC_sub2
Definition allins.hpp:19865
@ ARC_sqrt
Definition allins.hpp:20070
@ ARC_dmpyhbm
Definition allins.hpp:20104
@ ARC_mpyf
Definition allins.hpp:20090
@ ARC_mov
Definition allins.hpp:19814
@ ARC_modif
Definition allins.hpp:20077
@ ARC_cbflyhf0r
Definition allins.hpp:20109
@ ARC_vnorm2h
Definition allins.hpp:20067
@ ARC_cmpychfr
Definition allins.hpp:20082
@ ARC_fcvt32
Definition allins.hpp:20138
@ ARC_cmp
Definition allins.hpp:19851
@ ARC_trap
Definition allins.hpp:19868
@ ARC_brk
Definition allins.hpp:19820
@ ARC_sub1
Definition allins.hpp:19864
@ ARC_setne
Definition allins.hpp:19959
@ ARC_rtie
Definition allins.hpp:19863
@ ARC_add1
Definition allins.hpp:19843
@ ARC_normh
Definition allins.hpp:19884
@ ARC_mpyhm
Definition allins.hpp:19857
@ ARC_vmac2hnfr
Definition allins.hpp:20097
@ ARC_drsubh21
Definition allins.hpp:19934
@ ARC_vnegs2h
Definition allins.hpp:20066
@ ARC_daddh11
Definition allins.hpp:19918
@ ARC_add
Definition allins.hpp:19804
@ ARC_fscmp
Definition allins.hpp:20133
@ ARC_enter
Definition allins.hpp:19975
@ ARC_mpyuw
Definition allins.hpp:19952
@ ARC_drsubh22
Definition allins.hpp:19935
@ ARC_macflw
Definition allins.hpp:19906
@ ARC_bl
Definition allins.hpp:19800
@ ARC_macwhfl
Definition allins.hpp:20120
@ ARC_mpyw
Definition allins.hpp:19951
@ ARC_mpy
Definition allins.hpp:19853
@ ARC_dmpyhbl
Definition allins.hpp:20103
@ ARC_nop
Definition allins.hpp:19815
@ ARC_vpack2hbl
Definition allins.hpp:20051
@ ARC_br
Definition allins.hpp:19838
@ ARC_cmpyhfr
Definition allins.hpp:20081
@ ARC_machflw
Definition allins.hpp:19909
@ ARC_lsl16
Definition allins.hpp:20037
@ ARC_drsubh11
Definition allins.hpp:19932
@ ARC_swi
Definition allins.hpp:19824
@ ARC_pkqb
Definition allins.hpp:19946
@ ARC_dmulh11
Definition allins.hpp:19924
@ ARC_mulrdw
Definition allins.hpp:19895
@ ARC_vadds2h
Definition allins.hpp:19993
@ ARC_lp
Definition allins.hpp:19801
@ ARC_dmulh21
Definition allins.hpp:19926
@ ARC_asrs
Definition allins.hpp:19878
@ ARC_flagacc
Definition allins.hpp:20076
@ ARC_maclw
Definition allins.hpp:19905
@ ARC_vmac2hf
Definition allins.hpp:20009
@ ARC_vneg2h
Definition allins.hpp:20065
@ ARC_dmachfr
Definition allins.hpp:20031
@ ARC_macfr
Definition allins.hpp:20093
@ ARC_aslacc
Definition allins.hpp:20074
@ ARC_abs
Definition allins.hpp:19842
@ ARC_rsub
Definition allins.hpp:19862
@ ARC_sub
Definition allins.hpp:19806
@ ARC_rol
Definition allins.hpp:19967
@ ARC_flag
Definition allins.hpp:19788
@ ARC_daddh22
Definition allins.hpp:19921
@ ARC_vmsub2hnfr
Definition allins.hpp:20098
@ ARC_mpywhfm
Definition allins.hpp:20114
@ ARC_clri
Definition allins.hpp:19972
@ ARC_vaddsub2h
Definition allins.hpp:19996
@ ARC_vrep2hl
Definition allins.hpp:20057
@ ARC_mulhflw
Definition allins.hpp:19911
@ ARC_adds
Definition allins.hpp:19875
@ ARC_mpywhul
Definition allins.hpp:20112
@ ARC_extb
Definition allins.hpp:19794
@ ARC_dmpyh
Definition allins.hpp:19988
@ ARC_msubdw
Definition allins.hpp:19899
@ ARC_bmsk
Definition allins.hpp:19847
@ ARC_dsubh21
Definition allins.hpp:19930
@ ARC_vsubadd2h
Definition allins.hpp:19998
@ ARC_fscmpf
Definition allins.hpp:20134
@ ARC_rem
Definition allins.hpp:19981
@ ARC_abssh
Definition allins.hpp:19874
@ ARC_macwhfm
Definition allins.hpp:20116
@ ARC_abssw
Definition allins.hpp:19873
@ ARC_mpyd
Definition allins.hpp:20000
@ ARC_setge
Definition allins.hpp:19961
@ ARC_msubdf
Definition allins.hpp:20102
@ ARC_remu
Definition allins.hpp:19982
@ ARC_vlsr2h
Definition allins.hpp:20017
@ ARC_j
Definition allins.hpp:19802
@ ARC_addqbs
Definition allins.hpp:19915
@ ARC_dexcl2
Definition allins.hpp:19923
@ ARC_fsadd
Definition allins.hpp:19937
@ ARC_dexcl1
Definition allins.hpp:19922
@ ARC_jl
Definition allins.hpp:19803
@ ARC_ffs
Definition allins.hpp:20045
@ ARC_vsext2bhl
Definition allins.hpp:20061
@ ARC_cmpychnfr
Definition allins.hpp:20085
@ ARC_mpyu
Definition allins.hpp:19858
@ ARC_aex
Definition allins.hpp:19956
@ ARC_dmachf
Definition allins.hpp:20030
@ ARC_ror
Definition allins.hpp:19797
@ ARC_setgt
Definition allins.hpp:19965
@ ARC_getacc
Definition allins.hpp:20048
@ ARC_mululw
Definition allins.hpp:19902
@ ARC_vsext2bhm
Definition allins.hpp:20062
@ ARC_msubf
Definition allins.hpp:20094
@ ARC_msubwhfl
Definition allins.hpp:20101
@ ARC_machlw
Definition allins.hpp:19908
@ ARC_xpkqb
Definition allins.hpp:19948
@ ARC_vext2bhl
Definition allins.hpp:20059
@ ARC_addsdw
Definition allins.hpp:19876
@ ARC_cmachfr
Definition allins.hpp:20087
@ ARC_vaddsubs2h
Definition allins.hpp:19997
m16c_itype_t
Definition allins.hpp:12925
@ M16C_bnor
Definition allins.hpp:12953
@ M16C_bmge
Definition allins.hpp:12943
@ M16C_ldc
Definition allins.hpp:13004
@ M16C_movhh
Definition allins.hpp:13011
@ M16C_dadc
Definition allins.hpp:12965
@ M16C_tst
Definition allins.hpp:13048
@ M16C_cmpf
Definition allins.hpp:13105
@ M16C_stz
Definition allins.hpp:13045
@ M16C_indexld
Definition allins.hpp:13066
@ M16C_divu
Definition allins.hpp:12969
@ M16C_bmgt
Definition allins.hpp:12948
@ M16C_rot
Definition allins.hpp:13032
@ M16C_jn
Definition allins.hpp:12986
@ M16C_fclr
Definition allins.hpp:12976
@ M16C_clip
Definition allins.hpp:13058
@ M16C_popm
Definition allins.hpp:13023
@ M16C_bmle
Definition allins.hpp:12941
@ M16C_indexwd
Definition allins.hpp:13069
@ M16C_div
Definition allins.hpp:12968
@ M16C_scle
Definition allins.hpp:13081
@ M16C_null
Definition allins.hpp:12926
@ M16C_ldctx
Definition allins.hpp:13005
@ M16C_sbjnz
Definition allins.hpp:13035
@ M16C_movhl
Definition allins.hpp:13012
@ M16C_dsbb
Definition allins.hpp:12971
@ M16C_bmpz
Definition allins.hpp:12947
@ M16C_mulf
Definition allins.hpp:13116
@ M16C_jmp
Definition allins.hpp:12998
@ M16C_adsf
Definition allins.hpp:13104
@ M16C_max
Definition allins.hpp:13071
@ M16C_bmn
Definition allins.hpp:12940
@ M16C_bmne
Definition allins.hpp:12946
@ M16C_scgt
Definition allins.hpp:13088
@ M16C_bmlt
Definition allins.hpp:12950
@ M16C_jle
Definition allins.hpp:12987
@ M16C_shanc
Definition allins.hpp:13099
@ M16C_cmpx
Definition allins.hpp:13059
@ M16C_rmpa
Definition allins.hpp:13029
@ M16C_stop
Definition allins.hpp:13119
@ M16C_scmpu
Definition allins.hpp:13092
@ M16C_xor
Definition allins.hpp:13052
@ M16C_min
Definition allins.hpp:13072
@ M16C_rolc
Definition allins.hpp:13030
@ M16C_emul
Definition allins.hpp:13111
@ M16C_movlh
Definition allins.hpp:13013
@ M16C_jpz
Definition allins.hpp:12993
@ M16C_mulex
Definition allins.hpp:13074
@ M16C_sclt
Definition allins.hpp:13090
@ M16C_neg
Definition allins.hpp:13017
@ M16C_addx
Definition allins.hpp:13055
@ M16C_or
Definition allins.hpp:13020
@ M16C_jcnd
Definition allins.hpp:12981
@ M16C_indexw
Definition allins.hpp:13068
@ M16C_bmgtu
Definition allins.hpp:12938
@ M16C_bnxor
Definition allins.hpp:12956
@ M16C_jgeu
Definition allins.hpp:12983
@ M16C_band
Definition allins.hpp:12933
@ M16C_pop
Definition allins.hpp:13021
@ M16C_edivu
Definition allins.hpp:13109
@ M16C_scleu
Definition allins.hpp:13085
@ M16C_bitindex
Definition allins.hpp:13056
@ M16C_jge
Definition allins.hpp:12989
@ M16C_mulx
Definition allins.hpp:13117
@ M16C_bor
Definition allins.hpp:12957
@ M16C_subf
Definition allins.hpp:13120
@ M16C_sha
Definition allins.hpp:13036
@ M16C_dadd
Definition allins.hpp:12966
@ M16C_exts
Definition allins.hpp:12975
@ M16C_bmno
Definition allins.hpp:12949
@ M16C_jsri
Definition allins.hpp:13002
@ M16C_indexbd
Definition allins.hpp:13063
@ M16C_round
Definition allins.hpp:13118
@ M16C_jgtu
Definition allins.hpp:12984
@ M16C_suntil
Definition allins.hpp:13121
@ M16C_indexws
Definition allins.hpp:13070
@ M16C_sstr
Definition allins.hpp:13040
@ M16C_emulu
Definition allins.hpp:13112
@ M16C_stc
Definition allins.hpp:13041
@ M16C_scn
Definition allins.hpp:13080
@ M16C_indexl
Definition allins.hpp:13065
@ M16C_und
Definition allins.hpp:13049
@ M16C_index1
Definition allins.hpp:13114
@ M16C_bmltu
Definition allins.hpp:12944
@ M16C_smovu
Definition allins.hpp:13094
@ M16C_add
Definition allins.hpp:12930
@ M16C_inc
Definition allins.hpp:12978
@ M16C_and
Definition allins.hpp:12932
@ M16C_mova
Definition allins.hpp:13010
@ M16C_sin
Definition allins.hpp:13093
@ M16C_btstc
Definition allins.hpp:12961
@ M16C_ldipl
Definition allins.hpp:13008
@ M16C_subx
Definition allins.hpp:13096
@ M16C_rorc
Definition allins.hpp:13031
@ M16C_jmps
Definition allins.hpp:13000
@ M16C_bnot
Definition allins.hpp:12954
@ M16C_not
Definition allins.hpp:13019
@ M16C_fset
Definition allins.hpp:12977
@ M16C_popc
Definition allins.hpp:13022
@ M16C_brk
Definition allins.hpp:12958
@ M16C_jsrs
Definition allins.hpp:13003
@ M16C_jno
Definition allins.hpp:12995
@ M16C_pushm
Definition allins.hpp:13027
@ M16C_wait
Definition allins.hpp:13050
@ M16C_shlnc
Definition allins.hpp:13100
@ M16C_bmeq
Definition allins.hpp:12939
@ M16C_adjnz
Definition allins.hpp:12931
@ M16C_jmpi
Definition allins.hpp:12999
@ M16C_freit
Definition allins.hpp:13061
@ M16C_swhile
Definition allins.hpp:13122
@ M16C_lde
Definition allins.hpp:13006
@ M16C_jo
Definition allins.hpp:12988
@ M16C_scge
Definition allins.hpp:13083
@ M16C_bnand
Definition allins.hpp:12952
@ M16C_cnvif
Definition allins.hpp:13106
@ M16C_scgeu
Definition allins.hpp:13077
@ M16C_bntst
Definition allins.hpp:12955
@ M16C_sco
Definition allins.hpp:13082
@ M16C_adcf
Definition allins.hpp:12929
@ M16C_jleu
Definition allins.hpp:12991
@ M16C_xchg
Definition allins.hpp:13051
@ M16C_ldintb
Definition allins.hpp:13007
@ M16C_extz
Definition allins.hpp:13060
@ M16C_bmo
Definition allins.hpp:12942
@ M16C_edivx
Definition allins.hpp:13110
@ M16C_index2
Definition allins.hpp:13115
@ M16C_exiti
Definition allins.hpp:13113
@ M16C_smovb
Definition allins.hpp:13038
@ M16C_stnz
Definition allins.hpp:13044
@ M16C_mul
Definition allins.hpp:13015
@ M16C_bmcnd
Definition allins.hpp:12935
@ M16C_bmgeu
Definition allins.hpp:12937
@ M16C_scne
Definition allins.hpp:13086
@ M16C_nop
Definition allins.hpp:13018
@ M16C_brk2
Definition allins.hpp:13057
@ M16C_scno
Definition allins.hpp:13089
@ M16C_stctx
Definition allins.hpp:13042
@ M16C_jne
Definition allins.hpp:12992
@ M16C_jgt
Definition allins.hpp:12994
@ M16C_bmleu
Definition allins.hpp:12945
@ M16C_jlt
Definition allins.hpp:12996
@ M16C_smovf
Definition allins.hpp:13039
@ M16C_rts
Definition allins.hpp:13033
@ M16C_sccnd
Definition allins.hpp:13075
@ M16C_sout
Definition allins.hpp:13095
@ M16C_stzx
Definition allins.hpp:13046
@ M16C_enter
Definition allins.hpp:12973
@ M16C_bclr
Definition allins.hpp:12934
@ M16C_last
Definition allins.hpp:13124
@ M16C_addf
Definition allins.hpp:13103
@ M16C_ediv
Definition allins.hpp:13108
@ M16C_abs
Definition allins.hpp:12927
@ M16C_shl
Definition allins.hpp:13037
@ M16C_sub
Definition allins.hpp:13047
@ M16C_mulu
Definition allins.hpp:13016
@ M16C_reit
Definition allins.hpp:13028
@ M16C_mov
Definition allins.hpp:13009
@ M16C_dsub
Definition allins.hpp:12972
@ M16C_indexls
Definition allins.hpp:13067
@ M16C_btst
Definition allins.hpp:12960
@ M16C_scpz
Definition allins.hpp:13087
@ M16C_btsts
Definition allins.hpp:12962
@ M16C_exitd
Definition allins.hpp:12974
@ M16C_indexbs
Definition allins.hpp:13064
@ M16C_movx
Definition allins.hpp:13073
@ M16C_bxor
Definition allins.hpp:12963
@ M16C_divf
Definition allins.hpp:13107
@ M16C_sceq
Definition allins.hpp:13079
@ M16C_bset
Definition allins.hpp:12959
@ M16C_jeq
Definition allins.hpp:12985
@ M16C_push
Definition allins.hpp:13024
@ M16C_divx
Definition allins.hpp:12970
@ M16C_ste
Definition allins.hpp:13043
@ M16C_into
Definition allins.hpp:12980
@ M16C_sbb
Definition allins.hpp:13034
@ M16C_pushc
Definition allins.hpp:13026
@ M16C_adc
Definition allins.hpp:12928
@ M16C_movll
Definition allins.hpp:13014
@ M16C_jsr
Definition allins.hpp:13001
@ M16C_int
Definition allins.hpp:12979
@ M16C_scgtu
Definition allins.hpp:13078
@ M16C_scltu
Definition allins.hpp:13084
@ M16C_dec
Definition allins.hpp:12967
@ M16C_indexb
Definition allins.hpp:13062
@ M16C_jltu
Definition allins.hpp:12990
@ M16C_pusha
Definition allins.hpp:13025
@ M16C_cmp
Definition allins.hpp:12964
@ m32r_fcmpe
Definition allins.hpp:13273
@ m32r_bnez
Definition allins.hpp:13157
@ m32rx_macwu1
Definition allins.hpp:13254
@ m32r_bnc
Definition allins.hpp:13155
@ m32r_macwlo
Definition allins.hpp:13178
@ m32rx_sath
Definition allins.hpp:13250
@ m32r_nop
Definition allins.hpp:13193
@ m32r_fcmp
Definition allins.hpp:13272
@ m32r_addv3
Definition allins.hpp:13143
@ m32r_bgtz
Definition allins.hpp:13151
@ m32rx_machi
Definition allins.hpp:13234
@ m32rx_mvfaclo
Definition allins.hpp:13243
@ m32r_ldi
Definition allins.hpp:13171
@ m32r_seth
Definition allins.hpp:13204
@ m32r_setpsw
Definition allins.hpp:13278
@ m32rx_rach
Definition allins.hpp:13248
@ m32r_mulwlo
Definition allins.hpp:13183
@ m32r_lock
Definition allins.hpp:13174
@ m32rx_cmpeq
Definition allins.hpp:13229
@ m32r_beq
Definition allins.hpp:13148
@ m32r_srai
Definition allins.hpp:13210
@ m32r_xor
Definition allins.hpp:13222
@ m32r_ld
Definition allins.hpp:13167
@ m32rx_sadd
Definition allins.hpp:13253
@ m32r_machi
Definition allins.hpp:13175
@ m32rx_macwhi
Definition allins.hpp:13236
@ m32rx_msblo
Definition allins.hpp:13255
@ m32r_add
Definition allins.hpp:13139
@ m32r_ldb
Definition allins.hpp:13169
@ m32r_st
Definition allins.hpp:13214
@ m32r_bclr
Definition allins.hpp:13276
@ m32r_addv
Definition allins.hpp:13142
@ m32r_slli
Definition allins.hpp:13207
@ m32r_neg
Definition allins.hpp:13192
@ m32r_mvfacmi
Definition allins.hpp:13187
@ m32rx_jnc
Definition allins.hpp:13233
@ m32r_xor3
Definition allins.hpp:13223
@ m32rx_mvtaclo
Definition allins.hpp:13246
@ m32r_and
Definition allins.hpp:13145
@ m32r_beqz
Definition allins.hpp:13149
@ m32rx_mvtachi
Definition allins.hpp:13245
@ m32r_mul
Definition allins.hpp:13179
@ m32r_fmsub
Definition allins.hpp:13267
@ m32rx_divh
Definition allins.hpp:13231
@ m32r_cmpu
Definition allins.hpp:13161
@ m32r_or3
Definition allins.hpp:13196
@ m32r_remu
Definition allins.hpp:13202
@ m32r_ftos
Definition allins.hpp:13271
@ m32r_cmpi
Definition allins.hpp:13160
@ m32rx_maclo
Definition allins.hpp:13235
@ m32r_stb
Definition allins.hpp:13215
@ m32r_mv
Definition allins.hpp:13184
@ m32r_fmul
Definition allins.hpp:13264
@ m32r_mvfaclo
Definition allins.hpp:13186
@ m32r_btst
Definition allins.hpp:13277
@ m32rx_bcl
Definition allins.hpp:13227
@ m32r_subx
Definition allins.hpp:13219
@ m32r_null
Definition allins.hpp:13138
@ m32r_rach
Definition allins.hpp:13200
@ m32rx_mulwlo
Definition allins.hpp:13241
@ m32r_and3
Definition allins.hpp:13146
@ m32r_bra
Definition allins.hpp:13158
@ m32r_macwhi
Definition allins.hpp:13177
@ m32r_ldub
Definition allins.hpp:13172
@ m32r_mvtaclo
Definition allins.hpp:13190
@ m32r_fmadd
Definition allins.hpp:13266
@ m32r_rte
Definition allins.hpp:13203
@ m32r_mvtc
Definition allins.hpp:13191
@ m32r_mullo
Definition allins.hpp:13181
@ m32r_sra
Definition allins.hpp:13208
@ m32r_subv
Definition allins.hpp:13218
@ m32r_cmpui
Definition allins.hpp:13162
@ m32r_pop
Definition allins.hpp:13198
@ m32r_rem
Definition allins.hpp:13201
@ m32r_add3
Definition allins.hpp:13140
@ m32r_fadd
Definition allins.hpp:13262
@ m32r_sub
Definition allins.hpp:13217
@ m32r_jmp
Definition allins.hpp:13166
@ m32r_unlock
Definition allins.hpp:13221
@ m32r_ld24
Definition allins.hpp:13168
@ m32r_bne
Definition allins.hpp:13156
@ m32r_sll3
Definition allins.hpp:13206
@ m32rx_maclh1
Definition allins.hpp:13257
@ m32r_jl
Definition allins.hpp:13165
@ m32r_maclo
Definition allins.hpp:13176
@ m32rx_mulwhi
Definition allins.hpp:13240
@ m32r_ldh
Definition allins.hpp:13170
@ m32r_addi
Definition allins.hpp:13141
@ m32r_bltz
Definition allins.hpp:13154
@ m32rx_cmpz
Definition allins.hpp:13230
@ m32r_srli
Definition allins.hpp:13213
@ m32rx_mvfachi
Definition allins.hpp:13242
@ m32r_bl
Definition allins.hpp:13152
@ m32r_rac
Definition allins.hpp:13199
@ m32rx_snc
Definition allins.hpp:13259
@ m32rx_sat
Definition allins.hpp:13251
@ m32r_ftoi
Definition allins.hpp:13270
@ m32r_srl3
Definition allins.hpp:13212
@ m32r_or
Definition allins.hpp:13195
@ m32rx_mvfacmi
Definition allins.hpp:13244
@ m32r_sth
Definition allins.hpp:13216
@ m32r_mulwhi
Definition allins.hpp:13182
@ m32r_div
Definition allins.hpp:13163
@ m32r_addx
Definition allins.hpp:13144
@ m32r_blez
Definition allins.hpp:13153
@ m32r_bgez
Definition allins.hpp:13150
@ m32r_itof
Definition allins.hpp:13268
@ m32rx_jc
Definition allins.hpp:13232
@ m32r_sll
Definition allins.hpp:13205
@ m32r_lduh
Definition allins.hpp:13173
@ m32r_fsub
Definition allins.hpp:13263
@ m32r_mvfc
Definition allins.hpp:13188
@ m32r_utof
Definition allins.hpp:13269
@ m32rx_bncl
Definition allins.hpp:13228
@ m32rx_sc
Definition allins.hpp:13258
@ m32rx_satb
Definition allins.hpp:13249
@ m32rx_mulwu1
Definition allins.hpp:13256
@ m32r_push
Definition allins.hpp:13197
@ m32r_sra3
Definition allins.hpp:13209
@ m32rx_mullo
Definition allins.hpp:13239
@ m32rx_pcmpbz
Definition allins.hpp:13252
@ m32r_mvfachi
Definition allins.hpp:13185
@ m32r_last
Definition allins.hpp:13281
@ m32r_srl
Definition allins.hpp:13211
@ m32r_trap
Definition allins.hpp:13220
@ m32r_bc
Definition allins.hpp:13147
@ m32rx_rac
Definition allins.hpp:13247
@ m32r_fdiv
Definition allins.hpp:13265
@ m32r_bset
Definition allins.hpp:13275
@ m32r_cmp
Definition allins.hpp:13159
@ m32r_clrpsw
Definition allins.hpp:13279
@ m32rx_macwlo
Definition allins.hpp:13237
@ m32r_mvtachi
Definition allins.hpp:13189
@ m32rx_mulhi
Definition allins.hpp:13238
@ m32r_divu
Definition allins.hpp:13164
@ m32r_mulhi
Definition allins.hpp:13180
@ m32r_not
Definition allins.hpp:13194
@ PIC16_DEC2
Definition allins.hpp:8559
@ PIC16_XOR
Definition allins.hpp:8582
@ PIC16_LSR
Definition allins.hpp:8586
@ PIC16_EDAC
Definition allins.hpp:8653
@ PIC16_FEX
Definition allins.hpp:8663
@ PIC16_COM
Definition allins.hpp:8578
@ PIC16_FBCL
Definition allins.hpp:8600
@ PIC16_INC
Definition allins.hpp:8561
@ PIC16_AND
Definition allins.hpp:8576
@ PIC16_CPBGT
Definition allins.hpp:8618
@ PIC16_ZE
Definition allins.hpp:8569
@ PIC16_RLC
Definition allins.hpp:8587
@ PIC16_DISI
Definition allins.hpp:8641
@ PIC16_last
Definition allins.hpp:8665
@ PIC16_CPBNE
Definition allins.hpp:8617
@ PIC16_TBLWTH
Definition allins.hpp:8549
@ PIC16_RESET
Definition allins.hpp:8645
@ PIC16_CPSNE
Definition allins.hpp:8614
@ PIC16_GOTO
Definition allins.hpp:8624
@ PIC16_ADDC
Definition allins.hpp:8556
@ PIC16_REPEAT
Definition allins.hpp:8626
@ PIC16_INC2
Definition allins.hpp:8562
@ PIC16_EXCH
Definition allins.hpp:8544
@ PIC16_BTG
Definition allins.hpp:8597
@ PIC16_MOVSAC
Definition allins.hpp:8655
@ PIC16_IOR
Definition allins.hpp:8579
@ PIC16_DIV
Definition allins.hpp:8560
@ PIC16_ED
Definition allins.hpp:8652
@ PIC16_RRC
Definition allins.hpp:8589
@ PIC16_NEG
Definition allins.hpp:8580
@ PIC16_POP
Definition allins.hpp:8635
@ PIC16_PWRSAV
Definition allins.hpp:8644
@ PIC16_CLR1
Definition allins.hpp:8651
@ PIC16_BTST
Definition allins.hpp:8598
@ PIC16_URUN
Definition allins.hpp:8661
@ PIC16_RETFIE
Definition allins.hpp:8627
@ PIC16_NOPR
Definition allins.hpp:8643
@ PIC16_SFTAC
Definition allins.hpp:8650
@ PIC16_BSET
Definition allins.hpp:8595
@ PIC16_BRA
Definition allins.hpp:8622
@ PIC16_RETLW
Definition allins.hpp:8628
@ PIC16_SAC
Definition allins.hpp:8649
@ PIC16_SETM
Definition allins.hpp:8581
@ PIC16_FF1R
Definition allins.hpp:8602
@ PIC16_MULW
Definition allins.hpp:8571
@ PIC16_SUBBR
Definition allins.hpp:8567
@ PIC16_BREAK
Definition allins.hpp:8660
@ PIC16_SL
Definition allins.hpp:8591
@ PIC16_BTSS
Definition allins.hpp:8607
@ PIC16_CLRWDT
Definition allins.hpp:8640
@ PIC16_SUB
Definition allins.hpp:8565
@ PIC16_MUL
Definition allins.hpp:8563
@ PIC16_CPSGT
Definition allins.hpp:8612
@ PIC16_BTSC
Definition allins.hpp:8606
@ PIC16_RLNC
Definition allins.hpp:8588
@ PIC16_DAWB
Definition allins.hpp:8557
@ PIC16_BTSTS
Definition allins.hpp:8599
@ PIC16_ASR
Definition allins.hpp:8585
@ PIC16_LAC
Definition allins.hpp:8648
@ PIC16_CP0
Definition allins.hpp:8609
@ PIC16_SE
Definition allins.hpp:8564
@ PIC16_MSC
Definition allins.hpp:8657
@ PIC16_BSW
Definition allins.hpp:8596
@ PIC16_LNK
Definition allins.hpp:8634
@ PIC16_NOP
Definition allins.hpp:8642
@ PIC16_CLR
Definition allins.hpp:8577
@ PIC16_MPY
Definition allins.hpp:8656
@ PIC16_RCALL
Definition allins.hpp:8625
@ PIC16_SWAP
Definition allins.hpp:8546
@ PIC16_CP
Definition allins.hpp:8608
@ PIC16_TBLWTL
Definition allins.hpp:8550
@ PIC16_CPBEQ
Definition allins.hpp:8616
@ PIC16_DIVF
Definition allins.hpp:8573
@ PIC16_BCLR
Definition allins.hpp:8594
@ PIC16_null
Definition allins.hpp:8541
@ PIC16_MOVPAG
Definition allins.hpp:8552
@ PIC16_ULNK
Definition allins.hpp:8637
@ PIC16_FF1L
Definition allins.hpp:8601
@ PIC16_DEC
Definition allins.hpp:8558
@ PIC16_DO
Definition allins.hpp:8631
@ PIC16_ADD
Definition allins.hpp:8555
@ PIC16_TBLRDH
Definition allins.hpp:8547
@ PIC16_PUSH
Definition allins.hpp:8636
@ PIC16_MAC
Definition allins.hpp:8654
@ PIC16_CPBLT
Definition allins.hpp:8619
@ PIC16_CALL
Definition allins.hpp:8623
@ PIC16_SUBB
Definition allins.hpp:8566
@ PIC16_RETURN
Definition allins.hpp:8629
@ PIC16_CPB
Definition allins.hpp:8610
@ PIC16_TBLRDL
Definition allins.hpp:8548
@ PIC16_CPSLT
Definition allins.hpp:8613
@ PIC16_RRNC
Definition allins.hpp:8590
@ PIC16_MOV
Definition allins.hpp:8545
@ PIC16_CPSEQ
Definition allins.hpp:8611
@ PIC16_SUBR
Definition allins.hpp:8568
@ PIC16_SSTEP
Definition allins.hpp:8662
@ I196_add2
Definition allins.hpp:5777
@ I196_st
Definition allins.hpp:5910
@ I196_epts
Definition allins.hpp:5821
@ I196_djnzw
Definition allins.hpp:5815
@ I196_shr
Definition allins.hpp:5899
@ I196_cmpl
Definition allins.hpp:5802
@ I196_addb3
Definition allins.hpp:5780
@ I196_or
Definition allins.hpp:5878
@ I196_incb
Definition allins.hpp:5829
@ I196_subc
Definition allins.hpp:5918
@ I196_ebr
Definition allins.hpp:5934
@ I196_subcb
Definition allins.hpp:5919
@ I196_addcb
Definition allins.hpp:5783
@ I196_scall
Definition allins.hpp:5892
@ I196_mul2
Definition allins.hpp:5859
@ I196_ei
Definition allins.hpp:5819
@ I196_xorb
Definition allins.hpp:5929
@ I196_sub3
Definition allins.hpp:5914
@ I196_dec
Definition allins.hpp:5804
@ I196_ext
Definition allins.hpp:5823
@ I196_jnc
Definition allins.hpp:5840
@ I196_addb2
Definition allins.hpp:5779
@ I196_last
Definition allins.hpp:5942
@ I196_and2
Definition allins.hpp:5785
@ I196_inc
Definition allins.hpp:5828
@ I196_clrc
Definition allins.hpp:5797
@ I196_popf
Definition allins.hpp:5883
@ I196_mulu3
Definition allins.hpp:5864
@ I196_jvt
Definition allins.hpp:5848
@ I196_jne
Definition allins.hpp:5841
@ I196_idlpd
Definition allins.hpp:5826
@ I196_clrvt
Definition allins.hpp:5798
@ I196_shlb
Definition allins.hpp:5897
@ I196_and3
Definition allins.hpp:5786
@ I196_mulu2
Definition allins.hpp:5863
@ I196_xor
Definition allins.hpp:5928
@ I196_ret
Definition allins.hpp:5888
@ I196_popa
Definition allins.hpp:5882
@ I196_tijmp
Definition allins.hpp:5921
@ I196_bmov
Definition allins.hpp:5790
@ I196_ldbse
Definition allins.hpp:5854
@ I196_mulub3
Definition allins.hpp:5866
@ I196_shral
Definition allins.hpp:5902
@ I196_ldb
Definition allins.hpp:5853
@ I196_mulub2
Definition allins.hpp:5865
@ I196_div
Definition allins.hpp:5809
@ I196_ecall
Definition allins.hpp:5935
@ I196_jnvt
Definition allins.hpp:5845
@ I196_estb
Definition allins.hpp:5940
@ I196_skip
Definition allins.hpp:5908
@ I196_jnh
Definition allins.hpp:5842
@ I196_neg
Definition allins.hpp:5868
@ I196_shll
Definition allins.hpp:5898
@ I196_ejmp
Definition allins.hpp:5936
@ I196_mulb3
Definition allins.hpp:5862
@ I196_divu
Definition allins.hpp:5811
@ I196_trap
Definition allins.hpp:5923
@ I196_ljmp
Definition allins.hpp:5857
@ I196_decb
Definition allins.hpp:5805
@ I196_eld
Definition allins.hpp:5937
@ I196_andb2
Definition allins.hpp:5787
@ I196_null
Definition allins.hpp:5775
@ I196_andb3
Definition allins.hpp:5788
@ I196_djnz
Definition allins.hpp:5814
@ I196_xch
Definition allins.hpp:5925
@ I196_add3
Definition allins.hpp:5778
@ I196_jc
Definition allins.hpp:5833
@ I196_shrl
Definition allins.hpp:5904
@ I196_setc
Definition allins.hpp:5894
@ I196_sub2
Definition allins.hpp:5913
@ I196_jle
Definition allins.hpp:5838
@ I196_dpts
Definition allins.hpp:5817
@ I196_pusha
Definition allins.hpp:5885
@ I196_pop
Definition allins.hpp:5881
@ I196_push
Definition allins.hpp:5884
@ I196_jnst
Definition allins.hpp:5843
@ I196_notb
Definition allins.hpp:5876
@ I196_cmp
Definition allins.hpp:5800
@ I196_divub
Definition allins.hpp:5812
@ I196_extb
Definition allins.hpp:5824
@ I196_nop
Definition allins.hpp:5871
@ I196_shra
Definition allins.hpp:5900
@ I196_bmovi
Definition allins.hpp:5791
@ I196_shrab
Definition allins.hpp:5901
@ I196_lcall
Definition allins.hpp:5850
@ I196_norml
Definition allins.hpp:5873
@ I196_not
Definition allins.hpp:5875
@ I196_di
Definition allins.hpp:5807
@ I196_eldb
Definition allins.hpp:5938
@ I196_orb
Definition allins.hpp:5879
@ I196_addc
Definition allins.hpp:5782
@ I196_pushf
Definition allins.hpp:5886
@ I196_shrb
Definition allins.hpp:5903
@ I196_subb2
Definition allins.hpp:5915
@ I196_ldbze
Definition allins.hpp:5855
@ I196_rst
Definition allins.hpp:5890
@ I196_jst
Definition allins.hpp:5846
@ I196_jgt
Definition allins.hpp:5836
@ I196_est
Definition allins.hpp:5939
@ I196_ld
Definition allins.hpp:5852
@ I196_shl
Definition allins.hpp:5896
@ I196_divb
Definition allins.hpp:5810
@ I196_jh
Definition allins.hpp:5837
@ I196_jnv
Definition allins.hpp:5844
@ I196_jbs
Definition allins.hpp:5832
@ I196_cmpb
Definition allins.hpp:5801
@ I196_je
Definition allins.hpp:5834
@ I196_jge
Definition allins.hpp:5835
@ I196_jbc
Definition allins.hpp:5831
@ I196_xchb
Definition allins.hpp:5926
@ I196_br
Definition allins.hpp:5793
@ I196_mulb2
Definition allins.hpp:5861
@ I196_subb3
Definition allins.hpp:5916
@ I196_jv
Definition allins.hpp:5847
@ I196_negb
Definition allins.hpp:5869
@ I196_clr
Definition allins.hpp:5795
@ I196_jlt
Definition allins.hpp:5839
@ I196_mul3
Definition allins.hpp:5860
@ I196_sjmp
Definition allins.hpp:5906
@ I196_clrb
Definition allins.hpp:5796
@ I196_ebmovi
Definition allins.hpp:5933
@ I196_stb
Definition allins.hpp:5911
@ XTENSA_div0_s
Definition allins.hpp:24276
@ XTENSA_iii
Definition allins.hpp:24363
@ XTENSA_movgez_s
Definition allins.hpp:24303
@ XTENSA_dci
Definition allins.hpp:24218
@ XTENSA_mksadj_d
Definition allins.hpp:24297
@ XTENSA_dpfr
Definition allins.hpp:24231
@ XTENSA_movt_s
Definition allins.hpp:24306
@ XTENSA_saltu
Definition allins.hpp:24185
@ XTENSA_lsxu
Definition allins.hpp:24290
@ XTENSA_lsx
Definition allins.hpp:24098
@ XTENSA_subx4
Definition allins.hpp:24149
@ XTENSA_ret
Definition allins.hpp:24123
@ XTENSA_msub_d
Definition allins.hpp:24307
@ XTENSA_andb
Definition allins.hpp:24202
@ XTENSA_ritlb0
Definition allins.hpp:24418
@ XTENSA_mula_aa
Definition allins.hpp:24387
@ XTENSA_ssa8l
Definition allins.hpp:24143
@ XTENSA_mov
Definition allins.hpp:24109
@ XTENSA_sra
Definition allins.hpp:24137
@ XTENSA_neg_s
Definition allins.hpp:24312
@ XTENSA_movt
Definition allins.hpp:24209
@ XTENSA_dpfro
Definition allins.hpp:24232
@ XTENSA_bt
Definition allins.hpp:24207
@ XTENSA_orbc
Definition allins.hpp:24211
@ XTENSA_sub
Definition allins.hpp:24147
@ XTENSA_cvtd_s
Definition allins.hpp:24273
@ XTENSA_s8i
Definition allins.hpp:24130
@ XTENSA_floor_d
Definition allins.hpp:24281
@ XTENSA_nexp01_d
Definition allins.hpp:24313
@ XTENSA_dhu
Definition allins.hpp:24222
@ XTENSA_or
Definition allins.hpp:24122
@ XTENSA_entry
Definition allins.hpp:24085
@ XTENSA_witlb
Definition allins.hpp:24153
@ XTENSA_rfde
Definition allins.hpp:24250
@ XTENSA_maddn_d
Definition allins.hpp:24293
@ XTENSA_dhwb
Definition allins.hpp:24223
@ XTENSA_float_s
Definition allins.hpp:24280
@ XTENSA_oeq_s
Definition allins.hpp:24316
@ XTENSA_bnez
Definition allins.hpp:24074
@ XTENSA_ssxp
Definition allins.hpp:24339
@ XTENSA_dhwbi
Definition allins.hpp:24224
@ XTENSA_ipf
Definition allins.hpp:24365
@ XTENSA_bnone
Definition allins.hpp:24071
@ XTENSA_mul_s
Definition allins.hpp:24310
@ XTENSA_xorb
Definition allins.hpp:24212
@ XTENSA_blti
Definition allins.hpp:24066
@ XTENSA_remu
Definition allins.hpp:24378
@ XTENSA_wdtlb
Definition allins.hpp:24152
@ XTENSA_orb
Definition allins.hpp:24210
@ XTENSA_rotw
Definition allins.hpp:24432
@ XTENSA_lict
Definition allins.hpp:24367
@ XTENSA_getex
Definition allins.hpp:24256
@ XTENSA_wfrd
Definition allins.hpp:24358
@ XTENSA_bltu
Definition allins.hpp:24067
@ XTENSA_ldx
Definition allins.hpp:24285
@ XTENSA_l32ex
Definition allins.hpp:24257
@ XTENSA_olt_d
Definition allins.hpp:24319
@ XTENSA_salt
Definition allins.hpp:24184
@ XTENSA_dii
Definition allins.hpp:24225
@ XTENSA_ult_d
Definition allins.hpp:24351
@ XTENSA_sll
Definition allins.hpp:24135
@ XTENSA_muls_dd
Definition allins.hpp:24398
@ XTENSA_addx2
Definition allins.hpp:24047
@ XTENSA_mkdadj_s
Definition allins.hpp:24296
@ XTENSA_pptlb
Definition allins.hpp:24415
@ XTENSA_ole_s
Definition allins.hpp:24318
@ XTENSA_divn_s
Definition allins.hpp:24278
@ XTENSA_lddr32_p
Definition allins.hpp:24241
@ XTENSA_ihi
Definition allins.hpp:24361
@ XTENSA_subx2
Definition allins.hpp:24148
@ XTENSA_dpfm_b
Definition allins.hpp:24192
@ XTENSA_hwwdtlba
Definition allins.hpp:24440
@ XTENSA_sqrt0_s
Definition allins.hpp:24334
@ XTENSA_and
Definition allins.hpp:24050
@ XTENSA_l16ui
Definition allins.hpp:24101
@ XTENSA_dhi
Definition allins.hpp:24221
@ XTENSA_movgez
Definition allins.hpp:24111
@ XTENSA_s32c1i
Definition allins.hpp:24215
@ XTENSA_ldpte
Definition allins.hpp:24442
@ XTENSA_rfwu
Definition allins.hpp:24431
@ XTENSA_j
Definition allins.hpp:24092
@ XTENSA_addexp_s
Definition allins.hpp:24266
@ XTENSA_mula_dd_ldinc
Definition allins.hpp:24394
@ XTENSA_mula_dd_lddec
Definition allins.hpp:24393
@ XTENSA_l32r
Definition allins.hpp:24103
@ XTENSA_muluh
Definition allins.hpp:24374
@ XTENSA_mov_s
Definition allins.hpp:24300
@ XTENSA_sub_s
Definition allins.hpp:24342
@ XTENSA_mul16u
Definition allins.hpp:24116
@ XTENSA_ae2_rur
Definition allins.hpp:24450
@ XTENSA_rfi
Definition allins.hpp:24126
@ XTENSA_rems
Definition allins.hpp:24377
@ XTENSA_lsi
Definition allins.hpp:24097
@ XTENSA_clrex
Definition allins.hpp:24255
@ XTENSA_neg
Definition allins.hpp:24118
@ XTENSA_rdtlb1
Definition allins.hpp:24417
@ XTENSA_sdi
Definition allins.hpp:24329
@ XTENSA_ssl
Definition allins.hpp:24145
@ XTENSA_rsr
Definition allins.hpp:24128
@ XTENSA_diwbi
Definition allins.hpp:24228
@ XTENSA_xor
Definition allins.hpp:24155
@ XTENSA_dpfwo
Definition allins.hpp:24234
@ XTENSA_s32ex
Definition allins.hpp:24258
@ XTENSA_sdxp
Definition allins.hpp:24332
@ XTENSA_wer
Definition allins.hpp:24186
@ XTENSA_rsil
Definition allins.hpp:24127
@ XTENSA_addexpm_s
Definition allins.hpp:24268
@ XTENSA_mul_ad
Definition allins.hpp:24384
@ XTENSA_ae_wur
Definition allins.hpp:24453
@ XTENSA_floor_s
Definition allins.hpp:24282
@ XTENSA_ssa8b
Definition allins.hpp:24142
@ XTENSA_beq
Definition allins.hpp:24057
@ XTENSA_addx8
Definition allins.hpp:24049
@ XTENSA_pdtlb
Definition allins.hpp:24413
@ XTENSA_rfme
Definition allins.hpp:24402
@ XTENSA_mksadj_s
Definition allins.hpp:24298
@ XTENSA_mul_d
Definition allins.hpp:24309
@ XTENSA_l32e
Definition allins.hpp:24428
@ XTENSA_mul_da
Definition allins.hpp:24385
@ XTENSA_idtlb
Definition allins.hpp:24411
@ XTENSA_callx0
Definition allins.hpp:24080
@ XTENSA_ldxp
Definition allins.hpp:24286
@ XTENSA_sict
Definition allins.hpp:24369
@ XTENSA_clamps
Definition allins.hpp:24405
@ XTENSA_movltz_s
Definition allins.hpp:24304
@ XTENSA_waiti
Definition allins.hpp:24151
@ XTENSA_movi
Definition allins.hpp:24112
@ XTENSA_sicw
Definition allins.hpp:24370
@ XTENSA_subx8
Definition allins.hpp:24150
@ XTENSA_addmi
Definition allins.hpp:24046
@ XTENSA_ae_rur
Definition allins.hpp:24452
@ XTENSA_any8
Definition allins.hpp:24205
@ XTENSA_utrunc_d
Definition allins.hpp:24355
@ XTENSA_callx4
Definition allins.hpp:24081
@ XTENSA_msub_s
Definition allins.hpp:24308
@ XTENSA_rptlb1
Definition allins.hpp:24421
@ XTENSA_dpfr_bf
Definition allins.hpp:24195
@ XTENSA_src
Definition allins.hpp:24139
@ XTENSA_sddr32_p
Definition allins.hpp:24244
@ XTENSA_bnall
Definition allins.hpp:24070
@ XTENSA_moveqz_s
Definition allins.hpp:24301
@ XTENSA_licw
Definition allins.hpp:24368
@ XTENSA_lsip
Definition allins.hpp:24287
@ XTENSA_lsiu
Definition allins.hpp:24288
@ XTENSA_read_impwire
Definition allins.hpp:24443
@ XTENSA_wptlb
Definition allins.hpp:24422
@ XTENSA_dpfw_b
Definition allins.hpp:24196
@ XTENSA_quou
Definition allins.hpp:24376
@ XTENSA_ldcw
Definition allins.hpp:24236
@ XTENSA_iiu
Definition allins.hpp:24364
@ XTENSA_mkdadj_d
Definition allins.hpp:24295
@ XTENSA_madd_s
Definition allins.hpp:24292
@ XTENSA_rfdd
Definition allins.hpp:24242
@ XTENSA_depbits
Definition allins.hpp:24247
@ XTENSA_l16si
Definition allins.hpp:24100
@ XTENSA_extui
Definition allins.hpp:24088
@ XTENSA_ssx
Definition allins.hpp:24338
@ XTENSA_round_s
Definition allins.hpp:24326
@ XTENSA_bgei
Definition allins.hpp:24061
@ XTENSA_andbc
Definition allins.hpp:24203
@ XTENSA_diwb
Definition allins.hpp:24227
@ XTENSA_break
Definition allins.hpp:24075
@ XTENSA_s32ri
Definition allins.hpp:24133
@ XTENSA_last
Definition allins.hpp:24462
@ XTENSA_bne
Definition allins.hpp:24072
@ XTENSA_jx
Definition allins.hpp:24093
@ XTENSA_rsqrt0_d
Definition allins.hpp:24327
@ XTENSA_hwwitlba
Definition allins.hpp:24441
@ XTENSA_beqi
Definition allins.hpp:24058
@ XTENSA_setb_expstate
Definition allins.hpp:24444
@ XTENSA_ldinc
Definition allins.hpp:24382
@ XTENSA_ssr
Definition allins.hpp:24146
@ XTENSA_cvts_d
Definition allins.hpp:24274
@ XTENSA_wrmsk_expstate
Definition allins.hpp:24445
@ XTENSA_nexp01_s
Definition allins.hpp:24314
@ XTENSA_slli
Definition allins.hpp:24136
@ XTENSA_wsr
Definition allins.hpp:24154
@ XTENSA_madd_d
Definition allins.hpp:24291
@ XTENSA_const_d
Definition allins.hpp:24271
@ XTENSA_wfr
Definition allins.hpp:24357
@ XTENSA_movsp
Definition allins.hpp:24429
@ XTENSA_olt_s
Definition allins.hpp:24320
@ XTENSA_ufloat_d
Definition allins.hpp:24347
@ XTENSA_ae2_wur
Definition allins.hpp:24451
@ XTENSA_mula_da_lddec
Definition allins.hpp:24390
@ XTENSA_add_d
Definition allins.hpp:24263
@ XTENSA_muls_aa
Definition allins.hpp:24395
@ XTENSA_ori
Definition allins.hpp:24163
@ XTENSA_call8
Definition allins.hpp:24078
@ XTENSA_ult_s
Definition allins.hpp:24352
@ XTENSA_null
Definition allins.hpp:24041
@ XTENSA_movnez_s
Definition allins.hpp:24305
@ XTENSA_lddec
Definition allins.hpp:24381
@ XTENSA_dcwb
Definition allins.hpp:24219
@ XTENSA_mula_da_ldinc
Definition allins.hpp:24391
@ XTENSA_ldi
Definition allins.hpp:24283
@ XTENSA_ill
Definition allins.hpp:24159
@ XTENSA_dhwb_b
Definition allins.hpp:24190
@ XTENSA_all4
Definition allins.hpp:24200
@ XTENSA_syscall
Definition allins.hpp:24252
@ XTENSA_mul_aa
Definition allins.hpp:24383
@ XTENSA_all8
Definition allins.hpp:24201
@ XTENSA_abs_d
Definition allins.hpp:24261
@ XTENSA_mul_dd
Definition allins.hpp:24386
@ XTENSA_rptlb0
Definition allins.hpp:24420
@ XTENSA_andi
Definition allins.hpp:24162
@ XTENSA_mula_da
Definition allins.hpp:24389
@ XTENSA_dsync
Definition allins.hpp:24084
@ XTENSA_retw
Definition allins.hpp:24124
@ XTENSA_minu
Definition allins.hpp:24108
@ XTENSA_isync
Definition allins.hpp:24090
@ XTENSA_rsync
Definition allins.hpp:24129
@ XTENSA_trunc_d
Definition allins.hpp:24343
@ XTENSA_ssai
Definition allins.hpp:24144
@ XTENSA_excw
Definition allins.hpp:24087
@ XTENSA_dhwbi_b
Definition allins.hpp:24191
@ XTENSA_addi
Definition allins.hpp:24045
@ XTENSA_ldct
Definition allins.hpp:24235
@ XTENSA_s16i
Definition allins.hpp:24131
@ XTENSA_rfue
Definition allins.hpp:24251
@ XTENSA_ceil_s
Definition allins.hpp:24270
@ XTENSA_esync
Definition allins.hpp:24086
@ XTENSA_srli
Definition allins.hpp:24141
@ XTENSA_addexp_d
Definition allins.hpp:24265
@ XTENSA_clrb_expstate
Definition allins.hpp:24439
@ XTENSA_sdct
Definition allins.hpp:24237
@ XTENSA_dpfw
Definition allins.hpp:24233
@ XTENSA_ceil_d
Definition allins.hpp:24269
@ XTENSA_dpfr_b
Definition allins.hpp:24194
@ XTENSA_loop
Definition allins.hpp:24094
@ XTENSA_rer
Definition allins.hpp:24182
@ XTENSA_round_d
Definition allins.hpp:24325
@ XTENSA_mula_dd
Definition allins.hpp:24392
@ XTENSA_rur
Definition allins.hpp:24177
@ XTENSA_rsqrt0_s
Definition allins.hpp:24328
@ XTENSA_ldip
Definition allins.hpp:24284
@ XTENSA_bgeu
Definition allins.hpp:24062
@ XTENSA_add
Definition allins.hpp:24044
@ XTENSA_mula_ad
Definition allins.hpp:24388
@ XTENSA_l32i
Definition allins.hpp:24102
@ XTENSA_nsa
Definition allins.hpp:24119
@ XTENSA_ssip
Definition allins.hpp:24336
@ XTENSA_l8ui
Definition allins.hpp:24099
@ XTENSA_ole_d
Definition allins.hpp:24317
@ XTENSA_max
Definition allins.hpp:24104
@ XTENSA_l32ai
Definition allins.hpp:24408
@ XTENSA_bltui
Definition allins.hpp:24068
@ XTENSA_mull
Definition allins.hpp:24117
@ XTENSA_callx12
Definition allins.hpp:24083
@ XTENSA_addexpm_d
Definition allins.hpp:24267
@ XTENSA_diwbui_p
Definition allins.hpp:24229
@ XTENSA_s32nb
Definition allins.hpp:24183
@ XTENSA_rfr
Definition allins.hpp:24323
@ XTENSA_movf
Definition allins.hpp:24208
@ XTENSA_rfrd
Definition allins.hpp:24324
@ XTENSA_lsxp
Definition allins.hpp:24289
@ XTENSA_call12
Definition allins.hpp:24079
@ XTENSA_movltz
Definition allins.hpp:24113
@ XTENSA_loopgtz
Definition allins.hpp:24095
@ XTENSA_rfwo
Definition allins.hpp:24430
@ XTENSA_mov_d
Definition allins.hpp:24299
@ XTENSA_srl
Definition allins.hpp:24140
@ XTENSA_trunc_s
Definition allins.hpp:24344
@ XTENSA_pitlb
Definition allins.hpp:24414
@ XTENSA_add_s
Definition allins.hpp:24264
@ XTENSA_bbc
Definition allins.hpp:24053
@ XTENSA_bge
Definition allins.hpp:24060
@ XTENSA_ssxu
Definition allins.hpp:24340
@ XTENSA_iitlb
Definition allins.hpp:24412
@ XTENSA_rdtlb0
Definition allins.hpp:24416
@ XTENSA_const_s
Definition allins.hpp:24272
@ XTENSA_maddn_s
Definition allins.hpp:24294
@ XTENSA_ritlb1
Definition allins.hpp:24419
@ XTENSA_nop
Definition allins.hpp:24121
@ XTENSA_umul_aa
Definition allins.hpp:24399
@ XTENSA_dpfl
Definition allins.hpp:24230
@ XTENSA_bbs
Definition allins.hpp:24054
@ XTENSA_dhi_b
Definition allins.hpp:24189
@ XTENSA_s32i
Definition allins.hpp:24132
@ XTENSA_sub_d
Definition allins.hpp:24341
@ XTENSA_blt
Definition allins.hpp:24065
@ XTENSA_srai
Definition allins.hpp:24138
@ XTENSA_dpfm_bf
Definition allins.hpp:24193
@ XTENSA_loopnez
Definition allins.hpp:24096
@ XTENSA_maxu
Definition allins.hpp:24105
@ XTENSA_beqz
Definition allins.hpp:24059
@ XTENSA_div0_d
Definition allins.hpp:24275
@ XTENSA_recip0_d
Definition allins.hpp:24321
@ XTENSA_sqrt0_d
Definition allins.hpp:24333
@ XTENSA_bf
Definition allins.hpp:24206
@ XTENSA_s32e
Definition allins.hpp:24433
@ XTENSA_callx8
Definition allins.hpp:24082
@ XTENSA_float_d
Definition allins.hpp:24279
@ XTENSA_nsau
Definition allins.hpp:24120
@ XTENSA_bbci
Definition allins.hpp:24055
@ XTENSA_xsr
Definition allins.hpp:24156
@ XTENSA_bgez
Definition allins.hpp:24064
@ XTENSA_oeq_d
Definition allins.hpp:24315
@ XTENSA_ball
Definition allins.hpp:24051
@ XTENSA_min
Definition allins.hpp:24107
@ XTENSA_fsync
Definition allins.hpp:24181
@ XTENSA_wur
Definition allins.hpp:24178
@ XTENSA_simcall
Definition allins.hpp:24425
@ XTENSA_sdx
Definition allins.hpp:24331
@ XTENSA_movnez
Definition allins.hpp:24114
@ XTENSA_moveqz
Definition allins.hpp:24110
@ XTENSA_un_d
Definition allins.hpp:24353
@ XTENSA_ufloat_s
Definition allins.hpp:24348
@ XTENSA_recip0_s
Definition allins.hpp:24322
@ XTENSA_mul16s
Definition allins.hpp:24115
@ XTENSA_bnei
Definition allins.hpp:24073
@ XTENSA_muls_ad
Definition allins.hpp:24396
@ XTENSA_ule_d
Definition allins.hpp:24349
@ XTENSA_ssi
Definition allins.hpp:24335
@ XTENSA_diu
Definition allins.hpp:24226
@ XTENSA_memw
Definition allins.hpp:24106
@ XTENSA_ipfl
Definition allins.hpp:24366
@ XTENSA_bgeui
Definition allins.hpp:24063
@ XTENSA_extw
Definition allins.hpp:24089
@ XTENSA_dpfw_bf
Definition allins.hpp:24197
@ XTENSA_bany
Definition allins.hpp:24052
@ XTENSA_any4
Definition allins.hpp:24204
@ XTENSA_ssiu
Definition allins.hpp:24337
@ XTENSA_dcwbi
Definition allins.hpp:24220
@ XTENSA_ule_s
Definition allins.hpp:24350
@ XTENSA_call4
Definition allins.hpp:24077
@ XTENSA_abs
Definition allins.hpp:24043
@ XTENSA_sdcw
Definition allins.hpp:24238
@ XTENSA_movf_s
Definition allins.hpp:24302
@ XTENSA_addx4
Definition allins.hpp:24048
@ XTENSA_ueq_d
Definition allins.hpp:24345
@ XTENSA_ueq_s
Definition allins.hpp:24346
@ XTENSA_call0
Definition allins.hpp:24076
@ XTENSA_abs_s
Definition allins.hpp:24262
@ XTENSA_rfdo
Definition allins.hpp:24243
@ XTENSA_mulsh
Definition allins.hpp:24373
@ XTENSA_divn_d
Definition allins.hpp:24277
@ XTENSA_sext
Definition allins.hpp:24134
@ XTENSA_quos
Definition allins.hpp:24375
@ XTENSA_neg_d
Definition allins.hpp:24311
@ XTENSA_sdip
Definition allins.hpp:24330
@ XTENSA_un_s
Definition allins.hpp:24354
@ XTENSA_bbsi
Definition allins.hpp:24056
@ XTENSA_bltz
Definition allins.hpp:24069
@ XTENSA_ihu
Definition allins.hpp:24362
@ XTENSA_rfe
Definition allins.hpp:24125
@ XTENSA_muls_da
Definition allins.hpp:24397
@ XTENSA_utrunc_s
Definition allins.hpp:24356
@ MC12_jmp
Definition allins.hpp:10638
@ MC12XGATE_ror
Definition allins.hpp:10889
@ MC12_lsrd
Definition allins.hpp:10674
@ MC12_pshx
Definition allins.hpp:10694
@ MC12_lbgt
Definition allins.hpp:10644
@ MC12X_adex
Definition allins.hpp:10761
@ MC12_cba
Definition allins.hpp:10589
@ MC12X_gldx
Definition allins.hpp:10793
@ MC12_ldy
Definition allins.hpp:10663
@ MC12XGATE_bfext
Definition allins.hpp:10844
@ MC12_rti
Definition allins.hpp:10711
@ MC12_anda
Definition allins.hpp:10552
@ MC12_puly
Definition allins.hpp:10701
@ MC12_coma
Definition allins.hpp:10599
@ MC12_bsr
Definition allins.hpp:10585
@ MC12_deca
Definition allins.hpp:10609
@ MC12XGATE_add16
Definition allins.hpp:10907
@ MC12_sbca
Definition allins.hpp:10714
@ MC12_dex
Definition allins.hpp:10612
@ MC12_lbcs
Definition allins.hpp:10641
@ MC12_asl
Definition allins.hpp:10555
@ MC12XGATE_jal
Definition allins.hpp:10874
@ MC12_stx
Definition allins.hpp:10725
@ MC12_last
Definition allins.hpp:10915
@ MC12_emaxd
Definition allins.hpp:10617
@ MC12X_rorw
Definition allins.hpp:10817
@ MC12X_roly
Definition allins.hpp:10816
@ MC12X_ory
Definition allins.hpp:10811
@ MC12XGATE_bhi
Definition allins.hpp:10851
@ MC12_tap
Definition allins.hpp:10732
@ MC12_asra
Definition allins.hpp:10560
@ MC12_orcc
Definition allins.hpp:10689
@ MC12_tbl
Definition allins.hpp:10735
@ MC12XGATE_csl
Definition allins.hpp:10872
@ MC12_ldab
Definition allins.hpp:10659
@ MC12_puld
Definition allins.hpp:10699
@ MC12_lslb
Definition allins.hpp:10669
@ MC12_movb
Definition allins.hpp:10680
@ MC12_jsr
Definition allins.hpp:10639
@ MC12X_sbed
Definition allins.hpp:10820
@ MC12_negb
Definition allins.hpp:10685
@ MC12X_negy
Definition allins.hpp:10809
@ MC12X_gldab
Definition allins.hpp:10790
@ MC12XGATE_brk
Definition allins.hpp:10863
@ MC12X_gstaa
Definition allins.hpp:10795
@ MC12X_bity
Definition allins.hpp:10772
@ MC12_exg
Definition allins.hpp:10626
@ MC12X_negw
Definition allins.hpp:10807
@ MC12X_comy
Definition allins.hpp:10779
@ MC12X_aslx
Definition allins.hpp:10766
@ MC12X_aded
Definition allins.hpp:10760
@ MC12_lsla
Definition allins.hpp:10668
@ MC12_lsra
Definition allins.hpp:10672
@ MC12_pshc
Definition allins.hpp:10692
@ MC12XGATE_andl
Definition allins.hpp:10839
@ MC12_staa
Definition allins.hpp:10720
@ MC12_xgdy
Definition allins.hpp:10751
@ MC12_leay
Definition allins.hpp:10666
@ MC12XGATE_bitl
Definition allins.hpp:10854
@ MC12XGATE_bvc
Definition allins.hpp:10864
@ MC12X_gstx
Definition allins.hpp:10799
@ MC12_beq
Definition allins.hpp:10565
@ MC12X_decy
Definition allins.hpp:10786
@ MC12_call
Definition allins.hpp:10588
@ MC12XGATE_bcs
Definition allins.hpp:10842
@ MC12XGATE_sbc
Definition allins.hpp:10891
@ MC12X_orx
Definition allins.hpp:10810
@ MC12_rtc
Definition allins.hpp:10710
@ MC12_des
Definition allins.hpp:10611
@ MC12_lbcc
Definition allins.hpp:10640
@ MC12_nop
Definition allins.hpp:10686
@ MC12X_comx
Definition allins.hpp:10778
@ MC12_pshd
Definition allins.hpp:10693
@ MC12_maxm
Definition allins.hpp:10676
@ MC12_sex
Definition allins.hpp:10719
@ MC12_ldd
Definition allins.hpp:10660
@ MC12_incb
Definition allins.hpp:10634
@ MC12XGATE_sif
Definition allins.hpp:10893
@ MC12_lblo
Definition allins.hpp:10648
@ MC12_lbne
Definition allins.hpp:10652
@ MC12XGATE_tfr
Definition allins.hpp:10900
@ MC12_rts
Definition allins.hpp:10712
@ MC12_idiv
Definition allins.hpp:10630
@ MC12_rorb
Definition allins.hpp:10709
@ MC12_psha
Definition allins.hpp:10690
@ MC12_ibeq
Definition allins.hpp:10628
@ MC12_tsta
Definition allins.hpp:10741
@ MC12_revw
Definition allins.hpp:10703
@ MC12_rev
Definition allins.hpp:10702
@ MC12XGATE_csr
Definition allins.hpp:10873
@ MC12X_lsrx
Definition allins.hpp:10805
@ MC12X_andy
Definition allins.hpp:10764
@ MC12XGATE_or
Definition allins.hpp:10884
@ MC12_bmi
Definition allins.hpp:10577
@ MC12X_negx
Definition allins.hpp:10808
@ MC12XGATE_adc
Definition allins.hpp:10833
@ MC12_asrb
Definition allins.hpp:10561
@ MC12_stab
Definition allins.hpp:10721
@ MC12X_cpes
Definition allins.hpp:10781
@ MC12_trap
Definition allins.hpp:10739
@ MC12_lbhs
Definition allins.hpp:10646
@ MC12XGATE_stw
Definition allins.hpp:10896
@ MC12XGATE_asr
Definition allins.hpp:10840
@ MC12_adca
Definition allins.hpp:10547
@ MC12_rora
Definition allins.hpp:10708
@ MC12XGATE_cpc
Definition allins.hpp:10869
@ MC12_cpx
Definition allins.hpp:10603
@ MC12_sty
Definition allins.hpp:10726
@ MC12_ldx
Definition allins.hpp:10662
@ MC12_sei
Definition allins.hpp:10717
@ MC12X_tstx
Definition allins.hpp:10826
@ MC12XGATE_bpl
Definition allins.hpp:10861
@ MC12_neg
Definition allins.hpp:10683
@ MC12_bhi
Definition allins.hpp:10569
@ MC12_lbls
Definition allins.hpp:10649
@ MC12X_clrw
Definition allins.hpp:10774
@ MC12X_asrx
Definition allins.hpp:10769
@ MC12_bvs
Definition allins.hpp:10587
@ MC12X_cped
Definition allins.hpp:10780
@ MC12X_comw
Definition allins.hpp:10777
@ MC12_suba
Definition allins.hpp:10727
@ MC12_cps
Definition allins.hpp:10602
@ MC12X_gldy
Definition allins.hpp:10794
@ MC12_inc
Definition allins.hpp:10632
@ MC12X_glds
Definition allins.hpp:10792
@ MC12XGATE_and16
Definition allins.hpp:10908
@ MC12_nega
Definition allins.hpp:10684
@ MC12_std
Definition allins.hpp:10722
@ MC12_xgdx
Definition allins.hpp:10750
@ MC12X_pulcw
Definition allins.hpp:10813
@ MC12XGATE_bra
Definition allins.hpp:10862
@ MC12_cli
Definition allins.hpp:10591
@ MC12_decb
Definition allins.hpp:10610
@ MC12_bcc
Definition allins.hpp:10562
@ MC12_sec
Definition allins.hpp:10716
@ MC12XGATE_xnorl
Definition allins.hpp:10904
@ MC12_bra
Definition allins.hpp:10580
@ MC12X_bitx
Definition allins.hpp:10771
@ MC12_inca
Definition allins.hpp:10633
@ MC12_subd
Definition allins.hpp:10729
@ MC12_ror
Definition allins.hpp:10707
@ MC12_tpa
Definition allins.hpp:10738
@ MC12_abx
Definition allins.hpp:10545
@ MC12_ediv
Definition allins.hpp:10614
@ MC12_wav
Definition allins.hpp:10748
@ MC12_movw
Definition allins.hpp:10681
@ MC12_txs
Definition allins.hpp:10745
@ MC12_lbra
Definition allins.hpp:10654
@ MC12X_clrx
Definition allins.hpp:10775
@ MC12_tys
Definition allins.hpp:10746
@ MC12XGATE_bfinsi
Definition allins.hpp:10847
@ MC12XGATE_xnor
Definition allins.hpp:10902
@ MC12_andcc
Definition allins.hpp:10554
@ MC12XGATE_rol
Definition allins.hpp:10888
@ MC12_tbne
Definition allins.hpp:10736
@ MC12_bhs
Definition allins.hpp:10570
@ MC12_eora
Definition allins.hpp:10623
@ MC12X_incy
Definition allins.hpp:10803
@ MC12_cpy
Definition allins.hpp:10604
@ MC12XGATE_bgt
Definition allins.hpp:10850
@ MC12_asla
Definition allins.hpp:10556
@ MC12_sts
Definition allins.hpp:10724
@ MC12_daa
Definition allins.hpp:10605
@ MC12X_asly
Definition allins.hpp:10767
@ MC12_clr
Definition allins.hpp:10592
@ MC12_comb
Definition allins.hpp:10600
@ MC12X_gsts
Definition allins.hpp:10798
@ MC12_fdiv
Definition allins.hpp:10627
@ MC12X_btas
Definition allins.hpp:10773
@ MC12_lds
Definition allins.hpp:10661
@ MC12_skip1
Definition allins.hpp:10754
@ MC12_mul
Definition allins.hpp:10682
@ MC12XGATE_cmp16
Definition allins.hpp:10909
@ MC12_tst
Definition allins.hpp:10740
@ MC12X_pshcw
Definition allins.hpp:10812
@ MC12XGATE_stb
Definition allins.hpp:10895
@ MC12_bge
Definition allins.hpp:10566
@ MC12_aby
Definition allins.hpp:10546
@ MC12XGATE_csem
Definition allins.hpp:10871
@ MC12_pulc
Definition allins.hpp:10698
@ MC12X_addx
Definition allins.hpp:10758
@ MC12_null
Definition allins.hpp:10542
@ MC12_asld
Definition allins.hpp:10558
@ MC12_mina
Definition allins.hpp:10678
@ MC12XGATE_bvs
Definition allins.hpp:10865
@ MC12X_suby
Definition allins.hpp:10824
@ MC12XGATE_bne
Definition allins.hpp:10860
@ MC12XGATE_nop
Definition allins.hpp:10883
@ MC12XGATE_bith
Definition allins.hpp:10853
@ MC12X_rorx
Definition allins.hpp:10818
@ MC12_tba
Definition allins.hpp:10733
@ MC12_tstb
Definition allins.hpp:10742
@ MC12XGATE_addl
Definition allins.hpp:10836
@ MC12_tsy
Definition allins.hpp:10744
@ MC12_orab
Definition allins.hpp:10688
@ MC12_rolb
Definition allins.hpp:10706
@ MC12_dey
Definition allins.hpp:10613
@ MC12_dbeq
Definition allins.hpp:10606
@ MC12_lbpl
Definition allins.hpp:10653
@ MC12XGATE_xnorh
Definition allins.hpp:10903
@ MC12_clc
Definition allins.hpp:10590
@ MC12X_rory
Definition allins.hpp:10819
@ MC12_bclr
Definition allins.hpp:10563
@ MC12X_gldaa
Definition allins.hpp:10789
@ MC12_lbge
Definition allins.hpp:10643
@ MC12_clv
Definition allins.hpp:10595
@ MC12X_asrw
Definition allins.hpp:10768
@ MC12_lbvc
Definition allins.hpp:10656
@ MC12_sbcb
Definition allins.hpp:10715
@ MC12_bset
Definition allins.hpp:10584
@ MC12_brset
Definition allins.hpp:10583
@ MC12_iny
Definition allins.hpp:10637
@ MC12_ibne
Definition allins.hpp:10629
@ MC12XGATE_cmp
Definition allins.hpp:10866
@ MC12_bcs
Definition allins.hpp:10564
@ MC12_emacs
Definition allins.hpp:10616
@ MC12_lbvs
Definition allins.hpp:10657
@ MC12_tfr
Definition allins.hpp:10737
@ MC12X_incx
Definition allins.hpp:10802
@ MC12_lbeq
Definition allins.hpp:10642
@ MC12XGATE_add
Definition allins.hpp:10834
@ MC12_idivs
Definition allins.hpp:10631
@ MC12_lbhi
Definition allins.hpp:10645
@ MC12X_tsty
Definition allins.hpp:10827
@ MC12_emuls
Definition allins.hpp:10622
@ MC12XGATE_ldw16
Definition allins.hpp:10910
@ MC12X_rolw
Definition allins.hpp:10814
@ MC12XGATE_sex
Definition allins.hpp:10892
@ MC12X_gstab
Definition allins.hpp:10796
@ MC12_bvc
Definition allins.hpp:10586
@ MC12_bls
Definition allins.hpp:10575
@ MC12X_rolx
Definition allins.hpp:10815
@ MC12_addb
Definition allins.hpp:10550
@ MC12XGATE_cmpl
Definition allins.hpp:10867
@ MC12XGATE_subh
Definition allins.hpp:10898
@ MC12_pulx
Definition allins.hpp:10700
@ MC12_cmpb
Definition allins.hpp:10597
@ MC12_pshb
Definition allins.hpp:10691
@ MC12_maxa
Definition allins.hpp:10675
@ MC12_lsr
Definition allins.hpp:10671
@ MC12XGATE_lsr
Definition allins.hpp:10880
@ MC12_brn
Definition allins.hpp:10582
@ MC12XGATE_subl
Definition allins.hpp:10899
@ MC12XGATE_neg
Definition allins.hpp:10882
@ MC12_emind
Definition allins.hpp:10619
@ MC12_andb
Definition allins.hpp:10553
@ MC12_stop
Definition allins.hpp:10723
@ MC12_tab
Definition allins.hpp:10731
@ MC12XGATE_bhs
Definition allins.hpp:10852
@ MC12XGATE_ldw
Definition allins.hpp:10878
@ MC12XGATE_blo
Definition allins.hpp:10856
@ MC12XGATE_bls
Definition allins.hpp:10857
@ MC12XGATE_andh
Definition allins.hpp:10838
@ MC12_sba
Definition allins.hpp:10713
@ MC12X_cpex
Definition allins.hpp:10782
@ MC12XGATE_bcc
Definition allins.hpp:10841
@ MC12XGATE_blt
Definition allins.hpp:10858
@ MC12_lsrb
Definition allins.hpp:10673
@ MC12_blt
Definition allins.hpp:10576
@ MC12_addd
Definition allins.hpp:10551
@ MC12X_lsry
Definition allins.hpp:10806
@ MC12_adda
Definition allins.hpp:10549
@ MC12XGATE_com
Definition allins.hpp:10868
@ MC12XGATE_ble
Definition allins.hpp:10855
@ MC12_lsl
Definition allins.hpp:10667
@ MC12_bpl
Definition allins.hpp:10579
@ MC12XGATE_orl
Definition allins.hpp:10886
@ MC12_blo
Definition allins.hpp:10574
@ MC12_wavr
Definition allins.hpp:10749
@ MC12X_eory
Definition allins.hpp:10788
@ MC12_aba
Definition allins.hpp:10544
@ MC12_emul
Definition allins.hpp:10621
@ MC12X_incw
Definition allins.hpp:10801
@ MC12_ldaa
Definition allins.hpp:10658
@ MC12_asr
Definition allins.hpp:10559
@ MC12XGATE_ssem
Definition allins.hpp:10894
@ MC12X_lsrw
Definition allins.hpp:10804
@ MC12_clrb
Definition allins.hpp:10594
@ MC12_rol
Definition allins.hpp:10704
@ MC12XGATE_rts
Definition allins.hpp:10890
@ MC12_cpd
Definition allins.hpp:10601
@ MC12_edivs
Definition allins.hpp:10615
@ MC12_lble
Definition allins.hpp:10647
@ MC12X_andx
Definition allins.hpp:10763
@ MC12_eminm
Definition allins.hpp:10620
@ MC12X_decx
Definition allins.hpp:10785
@ MC12X_clry
Definition allins.hpp:10776
@ MC12X_cpey
Definition allins.hpp:10783
@ MC12_bitb
Definition allins.hpp:10572
@ MC12XGATE_bfins
Definition allins.hpp:10846
@ MC12X_subx
Definition allins.hpp:10823
@ MC12X_sbey
Definition allins.hpp:10822
@ MC12_emaxm
Definition allins.hpp:10618
@ MC12X_gldd
Definition allins.hpp:10791
@ MC12XGATE_beq
Definition allins.hpp:10843
@ MC12XGATE_orh
Definition allins.hpp:10885
@ MC12_leas
Definition allins.hpp:10664
@ MC12_bita
Definition allins.hpp:10571
@ MC12_sev
Definition allins.hpp:10718
@ MC12XGATE_bfinsx
Definition allins.hpp:10848
@ MC12XGATE_or16
Definition allins.hpp:10911
@ MC12XGATE_tst
Definition allins.hpp:10901
@ MC12XGATE_lsl
Definition allins.hpp:10879
@ MC12_etbl
Definition allins.hpp:10625
@ MC12_pshy
Definition allins.hpp:10695
@ MC12X_decw
Definition allins.hpp:10784
@ MC12_pulb
Definition allins.hpp:10697
@ MC12XGATE_ldl
Definition allins.hpp:10877
@ MC12X_gsty
Definition allins.hpp:10800
@ MC12_rola
Definition allins.hpp:10705
@ MC12XGATE_mov
Definition allins.hpp:10881
@ MC12_lbrn
Definition allins.hpp:10655
@ MC12_skip2
Definition allins.hpp:10755
@ MC12_brclr
Definition allins.hpp:10581
@ MC12_bgt
Definition allins.hpp:10568
@ MC12XGATE_sub16
Definition allins.hpp:10912
@ MC12XGATE_addh
Definition allins.hpp:10835
@ MC12_lblt
Definition allins.hpp:10650
@ MC12X_addy
Definition allins.hpp:10759
@ MC12_bne
Definition allins.hpp:10578
@ MC12_wai
Definition allins.hpp:10747
@ MC12X_sys
Definition allins.hpp:10830
@ MC12XGATE_xnor16
Definition allins.hpp:10913
@ MC12X_adey
Definition allins.hpp:10762
@ MC12_lbmi
Definition allins.hpp:10651
@ MC12_oraa
Definition allins.hpp:10687
@ MC12X_sbex
Definition allins.hpp:10821
@ MC12_com
Definition allins.hpp:10598
@ MC12X_gstd
Definition allins.hpp:10797
@ MC12_clra
Definition allins.hpp:10593
@ MC12_tbeq
Definition allins.hpp:10734
@ MC12_lsld
Definition allins.hpp:10670
@ MC12_pula
Definition allins.hpp:10696
@ MC12_bgnd
Definition allins.hpp:10567
@ MC12_mem
Definition allins.hpp:10677
@ MC12X_tstw
Definition allins.hpp:10825
@ MC12XGATE_par
Definition allins.hpp:10887
@ MC12X_aslw
Definition allins.hpp:10765
@ MC12_inx
Definition allins.hpp:10636
@ MC12_ins
Definition allins.hpp:10635
@ MC12_ble
Definition allins.hpp:10573
@ MC12XGATE_bge
Definition allins.hpp:10849
@ MC12_dbne
Definition allins.hpp:10607
@ MC12_minm
Definition allins.hpp:10679
@ MC12X_eorx
Definition allins.hpp:10787
@ MC12_leax
Definition allins.hpp:10665
@ MC12XGATE_ldh
Definition allins.hpp:10876
@ MC12XGATE_ldb
Definition allins.hpp:10875
@ MC12XGATE_and
Definition allins.hpp:10837
@ MC12XGATE_bmi
Definition allins.hpp:10859
@ MC12XGATE_sub
Definition allins.hpp:10897
@ MC12X_asry
Definition allins.hpp:10770
@ MC12_adcb
Definition allins.hpp:10548
@ MC12XGATE_bffo
Definition allins.hpp:10845
@ MC12_tsx
Definition allins.hpp:10743
@ MC12_eorb
Definition allins.hpp:10624
@ MC12XGATE_cpch
Definition allins.hpp:10870
@ MC12_cmpa
Definition allins.hpp:10596
@ MC12_subb
Definition allins.hpp:10728
@ MC12_aslb
Definition allins.hpp:10557
@ MC12_swi
Definition allins.hpp:10730
@ MC12_dec
Definition allins.hpp:10608
@ NEC_78K_0S_bnc
Definition allins.hpp:12904
@ NEC_78K_0S_bf
Definition allins.hpp:12908
@ NEC_78K_0S_not1
Definition allins.hpp:12898
@ NEC_78K_0S_set1
Definition allins.hpp:12896
@ NEC_78K_0S_reti
Definition allins.hpp:12892
@ NEC_78K_0S_DI
Definition allins.hpp:12912
@ NEC_78K_0S_incw
Definition allins.hpp:12883
@ NEC_78K_0S_xch
Definition allins.hpp:12894
@ NEC_78K_0S_inc
Definition allins.hpp:12881
@ NEC_78K_0S_clr1
Definition allins.hpp:12897
@ NEC_78K_0S_nop
Definition allins.hpp:12910
@ NEC_78K_0S_ret
Definition allins.hpp:12891
@ NEC_78K_0S_bz
Definition allins.hpp:12905
@ NEC_78K_0S_dec
Definition allins.hpp:12882
@ NEC_78K_0S_addc
Definition allins.hpp:12876
@ NEC_78K_0S_br
Definition allins.hpp:12902
@ NEC_78K_0S_ror
Definition allins.hpp:12885
@ NEC_78K_0S_addw
Definition allins.hpp:12879
@ NEC_78K_0S_push
Definition allins.hpp:12899
@ NEC_78K_0S_pop
Definition allins.hpp:12900
@ NEC_78K_0S_rorc
Definition allins.hpp:12887
@ NEC_78K_0S_mov
Definition allins.hpp:12893
@ NEC_78K_0S_rol
Definition allins.hpp:12886
@ NEC_78K_0S_HALT
Definition allins.hpp:12913
@ NEC_78K_0S_add
Definition allins.hpp:12874
@ NEC_78K_0S_STOP
Definition allins.hpp:12914
@ NEC_78K_0S_bc
Definition allins.hpp:12903
@ NEC_78K_0S_or
Definition allins.hpp:12873
@ NEC_78K_0S_subc
Definition allins.hpp:12877
@ NEC_78K_0S_subw
Definition allins.hpp:12878
@ NEC_78K_0S_and
Definition allins.hpp:12872
@ NEC_78K_0S_sub
Definition allins.hpp:12875
@ NEC_78K_0S_bnz
Definition allins.hpp:12906
@ NEC_78K_0S_cmpw
Definition allins.hpp:12880
@ NEC_78K_0S_call
Definition allins.hpp:12889
@ NEC_78K_0S_last
Definition allins.hpp:12915
@ NEC_78K_0S_rolc
Definition allins.hpp:12888
@ NEC_78K_0S_dbnz
Definition allins.hpp:12909
@ NEC_78K_0S_decw
Definition allins.hpp:12884
@ NEC_78K_0S_xor
Definition allins.hpp:12871
@ NEC_78K_0S_xchw
Definition allins.hpp:12895
@ NEC_78K_0S_EI
Definition allins.hpp:12911
@ NEC_78K_0S_bt
Definition allins.hpp:12907
@ NEC_78K_0S_cmp
Definition allins.hpp:12870
@ NEC_78K_0S_movw
Definition allins.hpp:12901
@ NEC_78K_0S_callt
Definition allins.hpp:12890
@ NEC_78K_0S_null
Definition allins.hpp:12869
@ PPC_vmaxfp
Definition allins.hpp:16105
@ PPC_zvmhsuiaahs
Definition allins.hpp:18166
@ PPC_evmheusianw
Definition allins.hpp:15663
@ PPC_evlhhousplat
Definition allins.hpp:15622
@ PPC_copy
Definition allins.hpp:17554
@ PPC_efsadd
Definition allins.hpp:15799
@ PPC_evsubfwogsi
Definition allins.hpp:17137
@ PPC_sle
Definition allins.hpp:15549
@ PPC_evsad4ub
Definition allins.hpp:17224
@ PPC_rlwinm
Definition allins.hpp:15283
@ PPC_evmaxmagws
Definition allins.hpp:16837
@ PPC_hwacceli
Definition allins.hpp:17783
@ PPC_tlbia
Definition allins.hpp:15337
@ PPC_zmhegsi
Definition allins.hpp:18031
@ PPC_zvmhuusuiaa
Definition allins.hpp:18303
@ PPC_evfscfuf
Definition allins.hpp:15828
@ PPC_vdiveuq
Definition allins.hpp:18601
@ PPC_zvmhulgwsmfraa
Definition allins.hpp:18225
@ PPC_dcbz_l
Definition allins.hpp:16487
@ PPC_evminbu
Definition allins.hpp:17285
@ PPC_evstdhmx
Definition allins.hpp:16982
@ PPC_evsetltbu
Definition allins.hpp:17216
@ PPC_tdlt
Definition allins.hpp:15393
@ PPC_xssubdp
Definition allins.hpp:16251
@ PPC_evpkswshs
Definition allins.hpp:17249
@ PPC_zmheosiaa
Definition allins.hpp:18112
@ PPC_evdotphausiaaw
Definition allins.hpp:16655
@ PPC_evldbmx
Definition allins.hpp:16952
@ PPC_psq_stu
Definition allins.hpp:16491
@ PPC_efdcfuid
Definition allins.hpp:15774
@ PPC_evdotpwausiaa3
Definition allins.hpp:16726
@ PPC_vorc
Definition allins.hpp:17360
@ PPC_evsubfwxss
Definition allins.hpp:17093
@ PPC_lwax
Definition allins.hpp:15232
@ PPC_tdgti
Definition allins.hpp:15401
@ PPC_zvmhuluiaas
Definition allins.hpp:18349
@ PPC_lvx
Definition allins.hpp:16057
@ PPC_zmhosuiaa
Definition allins.hpp:18119
@ PPC_evsplatfih
Definition allins.hpp:16856
@ PPC_crnot
Definition allins.hpp:15423
@ PPC_zlhgwsfx
Definition allins.hpp:17936
@ PPC_xsnabsdp
Definition allins.hpp:16237
@ PPC_lhax
Definition allins.hpp:15220
@ PPC_dssall
Definition allins.hpp:16351
@ PPC_evmwhsmfa
Definition allins.hpp:15692
@ PPC_veqv
Definition allins.hpp:17358
@ PPC_slq
Definition allins.hpp:15554
@ PPC_evsubfaddw
Definition allins.hpp:17096
@ PPC_stvehx
Definition allins.hpp:16062
@ PPC_ldbrw
Definition allins.hpp:17759
@ PPC_evdotpwaumiaa3
Definition allins.hpp:16730
@ PPC_xvcvspuxds
Definition allins.hpp:16274
@ PPC_dcmpo
Definition allins.hpp:15877
@ PPC_zaddwss
Definition allins.hpp:17828
@ PPC_zmhogsmfan
Definition allins.hpp:18065
@ PPC_zvaddh
Definition allins.hpp:17808
@ PPC_efdtsteq
Definition allins.hpp:15791
@ PPC_evsrois
Definition allins.hpp:16919
@ PPC_evdotphihcssfaaw
Definition allins.hpp:16615
@ PPC_vspltb
Definition allins.hpp:16171
@ PPC_dcbst
Definition allins.hpp:15150
@ PPC_vmuleuw
Definition allins.hpp:17347
@ PPC_efdcfh
Definition allins.hpp:17795
@ PPC_zvmhulsuian
Definition allins.hpp:18305
@ PPC_evfscfsf
Definition allins.hpp:15826
@ PPC_evsl
Definition allins.hpp:16838
@ PPC_evavghsr
Definition allins.hpp:17306
@ PPC_lbzcix
Definition allins.hpp:16038
@ PPC_lxvrbx
Definition allins.hpp:18561
@ PPC_evrndwnhss
Definition allins.hpp:16788
@ PPC_efdcth
Definition allins.hpp:17796
@ PPC_bctar
Definition allins.hpp:17317
@ PPC_msgclrp
Definition allins.hpp:17432
@ PPC_evdotp4hgssmfaa
Definition allins.hpp:16711
@ PPC_vextractqm
Definition allins.hpp:18625
@ PPC_xxsel
Definition allins.hpp:16342
@ PPC_mfmsr
Definition allins.hpp:15243
@ PPC_xscvsxddp
Definition allins.hpp:16227
@ PPC_zmhouians
Definition allins.hpp:18146
@ PPC_xscvsqqp
Definition allins.hpp:18680
@ PPC_mfdsisr
Definition allins.hpp:15444
@ PPC_pmxvi8ger4spp
Definition allins.hpp:18535
@ PPC_extlwi
Definition allins.hpp:15489
@ PPC_stfs
Definition allins.hpp:15310
@ PPC_cbcdtd
Definition allins.hpp:15870
@ PPC_evdotpwasumiaa3
Definition allins.hpp:16732
@ PPC_mtvscr
Definition allins.hpp:16060
@ PPC_lwsync
Definition allins.hpp:16421
@ PPC_xvcvdpsxds
Definition allins.hpp:16267
@ PPC_evdotpwgssmfaa
Definition allins.hpp:16585
@ PPC_efdctuiz
Definition allins.hpp:15785
@ PPC_psq_stux
Definition allins.hpp:16476
@ PPC_zsthex
Definition allins.hpp:18008
@ PPC_evldbu
Definition allins.hpp:16953
@ PPC_twlti
Definition allins.hpp:15383
@ PPC_lxvw4x
Definition allins.hpp:16212
@ PPC_xscvdpqp
Definition allins.hpp:17660
@ PPC_balways
Definition allins.hpp:15467
@ PPC_dtstexq
Definition allins.hpp:15918
@ PPC_xscvqpudz
Definition allins.hpp:17664
@ PPC_evsubifh
Definition allins.hpp:16751
@ PPC_zmhesians
Definition allins.hpp:18132
@ PPC_pmxvf32gernp
Definition allins.hpp:18519
@ PPC_zvmhuiaahs
Definition allins.hpp:18167
@ PPC_addwus
Definition allins.hpp:17489
@ PPC_evstddmx
Definition allins.hpp:16978
@ PPC_lbz
Definition allins.hpp:15200
@ PPC_xscvdpsxws
Definition allins.hpp:16223
@ PPC_evmhesmiaaw
Definition allins.hpp:15650
@ PPC_evdotpwxgasmf
Definition allins.hpp:16546
@ PPC_crnand
Definition allins.hpp:15142
@ PPC_evsad2sha
Definition allins.hpp:17233
@ PPC_evnegbo
Definition allins.hpp:16762
@ PPC_vstrihl
Definition allins.hpp:18673
@ PPC_zmwsfrans
Definition allins.hpp:18212
@ PPC_zstdwx
Definition allins.hpp:18004
@ PPC_evstwbo
Definition allins.hpp:16941
@ PPC_stxvl
Definition allins.hpp:17650
@ PPC_zsatswuw
Definition allins.hpp:17866
@ PPC_ps_msub
Definition allins.hpp:16470
@ PPC_xvf32gerpp
Definition allins.hpp:18700
@ PPC_evdotphsssiaaw3
Definition allins.hpp:16636
@ PPC_twlei
Definition allins.hpp:15384
@ PPC_evavgbur
Definition allins.hpp:17303
@ PPC_evdotplohcssfra
Definition allins.hpp:16612
@ PPC_zvdotphgwasmfraa
Definition allins.hpp:18477
@ PPC_evdotphihcssiaaw3
Definition allins.hpp:16597
@ PPC_stdbrx
Definition allins.hpp:15856
@ PPC_slbfee
Definition allins.hpp:16044
@ PPC_stdepx
Definition allins.hpp:15975
@ PPC_zvmhsuiaah
Definition allins.hpp:18160
@ PPC_evneghos
Definition allins.hpp:16771
@ PPC_evxtrh
Definition allins.hpp:16886
@ PPC_stdu
Definition allins.hpp:15302
@ PPC_evdotpwxgasmfraa3
Definition allins.hpp:16560
@ PPC_zvmhsfraahs
Definition allins.hpp:18151
@ PPC_evadddus
Definition allins.hpp:17072
@ PPC_evmhessfaaw
Definition allins.hpp:15654
@ PPC_evstwho
Definition allins.hpp:15750
@ PPC_zmheogwsmfr
Definition allins.hpp:18070
@ PPC_vmulesb
Definition allins.hpp:16134
@ PPC_stq
Definition allins.hpp:16035
@ PPC_evlhhsplathx
Definition allins.hpp:16922
@ PPC_slbiag
Definition allins.hpp:17526
@ PPC_vdiveuw
Definition allins.hpp:18602
@ PPC_evsatswsh
Definition allins.hpp:16814
@ PPC_zstdwmx
Definition allins.hpp:18005
@ PPC_satshs
Definition allins.hpp:17508
@ PPC_dcmpoq
Definition allins.hpp:15878
@ PPC_evclrbo
Definition allins.hpp:16885
@ PPC_evdotphasumi
Definition allins.hpp:16628
@ PPC_evdotphihcsmiaaw3
Definition allins.hpp:16601
@ PPC_vavgsb
Definition allins.hpp:16079
@ PPC_evdotphassia
Definition allins.hpp:16645
@ PPC_xvmaddmdp
Definition allins.hpp:16288
@ PPC_vmsumubm
Definition allins.hpp:16131
@ PPC_evdotpwssmiaa3
Definition allins.hpp:16733
@ PPC_fsub
Definition allins.hpp:15196
@ PPC_evaddwss
Definition allins.hpp:17088
@ PPC_xvi16ger2spp
Definition allins.hpp:18709
@ PPC_evabsdifuw
Definition allins.hpp:17234
@ PPC_evrlbi
Definition allins.hpp:16902
@ PPC_evdivs
Definition allins.hpp:17129
@ PPC_zmwluiaas
Definition allins.hpp:18203
@ PPC_setb
Definition allins.hpp:17542
@ PPC_evsubfaddhss
Definition allins.hpp:17067
@ PPC_evsubfhhiuw
Definition allins.hpp:17141
@ PPC_xscmpodp
Definition allins.hpp:16218
@ PPC_vaddeuqm
Definition allins.hpp:17338
@ PPC_stxvrhx
Definition allins.hpp:18581
@ PPC_evnegbos
Definition allins.hpp:16769
@ PPC_efdtstgt
Definition allins.hpp:15792
@ PPC_vsr
Definition allins.hpp:16177
@ PPC_xvcvuxdsp
Definition allins.hpp:16281
@ PPC_evmbessianh
Definition allins.hpp:17182
@ PPC_pextd
Definition allins.hpp:18572
@ PPC_vctuxs
Definition allins.hpp:16101
@ PPC_mfdec
Definition allins.hpp:15446
@ PPC_vcmpuq
Definition allins.hpp:18591
@ PPC_evsubfsmiaa
Definition allins.hpp:17047
@ PPC_evaddsubfhxss
Definition allins.hpp:17069
@ PPC_lha
Definition allins.hpp:15217
@ PPC_or2i
Definition allins.hpp:16380
@ PPC_rotldi
Definition allins.hpp:16406
@ PPC_msgsync
Definition allins.hpp:17719
@ PPC_vsrab
Definition allins.hpp:16178
@ PPC_fcfid
Definition allins.hpp:15168
@ PPC_evmwumia
Definition allins.hpp:15722
@ PPC_vshasigmad
Definition allins.hpp:17370
@ PPC_vinswlx
Definition allins.hpp:18641
@ PPC_xvcvuxddp
Definition allins.hpp:16280
@ PPC_zmhegwsmfan
Definition allins.hpp:18075
@ PPC_vmaxsb
Definition allins.hpp:16106
@ PPC_evdotpwasmi
Definition allins.hpp:16723
@ PPC_zadddus
Definition allins.hpp:17807
@ PPC_rlwi
Definition allins.hpp:16383
@ PPC_efsmul
Definition allins.hpp:15814
@ PPC_pmxvbf16ger2pn
Definition allins.hpp:18510
@ PPC_zaddheuw
Definition allins.hpp:17819
@ PPC_zstwhx
Definition allins.hpp:18016
@ PPC_vdivsq
Definition allins.hpp:18604
@ PPC_subfe
Definition allins.hpp:15330
@ PPC_ps_neg
Definition allins.hpp:16477
@ PPC_zvdotphgasiaa
Definition allins.hpp:18371
@ PPC_evsum4bs
Definition allins.hpp:17106
@ PPC_zvmhxlsfans
Definition allins.hpp:18260
@ PPC_dsub
Definition allins.hpp:15911
@ PPC_evswaphlohi
Definition allins.hpp:16874
@ PPC_evpkuhubs
Definition allins.hpp:17250
@ PPC_dtstex
Definition allins.hpp:15917
@ PPC_stxsd
Definition allins.hpp:17643
@ PPC_zvaddhus
Definition allins.hpp:17810
@ PPC_add2is
Definition allins.hpp:16370
@ PPC_evunpklohui
Definition allins.hpp:16803
@ PPC_evmwlumianw
Definition allins.hpp:15706
@ PPC_rfsvc
Definition allins.hpp:15543
@ PPC_subfb
Definition allins.hpp:17776
@ PPC_evlwhsplatwu
Definition allins.hpp:16973
@ PPC_zlwhosd
Definition allins.hpp:17970
@ PPC_xvrdpic
Definition allins.hpp:16313
@ PPC_zvdotphgwasmfran
Definition allins.hpp:18479
@ PPC_xvmsubadp
Definition allins.hpp:16294
@ PPC_evlbbsplatb
Definition allins.hpp:16929
@ PPC_cmpldi
Definition allins.hpp:15358
@ PPC_evfsdiv
Definition allins.hpp:15839
@ PPC_zstdw
Definition allins.hpp:18002
@ PPC_vctsxs
Definition allins.hpp:16100
@ PPC_tlbie
Definition allins.hpp:15338
@ PPC_stxvp
Definition allins.hpp:18577
@ PPC_xsmulsp
Definition allins.hpp:17404
@ PPC_stmw
Definition allins.hpp:15319
@ PPC_xscmpoqp
Definition allins.hpp:17657
@ PPC_zvdotphgasmfan
Definition allins.hpp:18383
@ PPC_zslwss
Definition allins.hpp:17879
@ PPC_evaddsubfwx
Definition allins.hpp:17098
@ PPC_zvmhxlgwsmfran
Definition allins.hpp:18236
@ PPC_zvmhulsfr
Definition allins.hpp:18249
@ PPC_xvbf16ger2
Definition allins.hpp:18684
@ PPC_zvdotphgssi
Definition allins.hpp:18386
@ PPC_evmwssf
Definition allins.hpp:15717
@ PPC_xsnegqp
Definition allins.hpp:17674
@ PPC_clrlwi
Definition allins.hpp:15498
@ PPC_evstdb
Definition allins.hpp:16931
@ PPC_vctzh
Definition allins.hpp:17593
@ PPC_evdotpwxgasmfa
Definition allins.hpp:16570
@ PPC_evdotphihcssfra
Definition allins.hpp:16611
@ PPC_zlwhedmx
Definition allins.hpp:17965
@ PPC_ldepx
Definition allins.hpp:15974
@ PPC_ddivq
Definition allins.hpp:15888
@ PPC_xsmuldp
Definition allins.hpp:16236
@ PPC_zvmhllsuianps
Definition allins.hpp:18346
@ PPC_evcntlsw
Definition allins.hpp:15605
@ PPC_evdotpwssmi
Definition allins.hpp:16725
@ PPC_evstddx
Definition allins.hpp:15743
@ PPC_evmwhssfanw
Definition allins.hpp:17198
@ PPC_plxssp
Definition allins.hpp:18504
@ PPC_evaddsubfhx
Definition allins.hpp:17068
@ PPC_sthdcbx
Definition allins.hpp:17742
@ PPC_vexpandbm
Definition allins.hpp:18609
@ PPC_ldbrx
Definition allins.hpp:15854
@ PPC_zmhouian
Definition allins.hpp:18128
@ PPC_zmhogui
Definition allins.hpp:18038
@ PPC_stwepx
Definition allins.hpp:15973
@ PPC_evswaphlo
Definition allins.hpp:16877
@ PPC_zmhosfr
Definition allins.hpp:18089
@ PPC_zmhegui
Definition allins.hpp:18030
@ PPC_evdotp4hgasumiaa
Definition allins.hpp:16708
@ PPC_xssqrtqp
Definition allins.hpp:17677
@ PPC_vspltw
Definition allins.hpp:16176
@ PPC_evpopcntb
Definition allins.hpp:16795
@ PPC_zstwh
Definition allins.hpp:18014
@ PPC_pmxvf16ger2pp
Definition allins.hpp:18516
@ PPC_zvmhlluiaa
Definition allins.hpp:18314
@ PPC_evsum2hsaaw
Definition allins.hpp:17124
@ PPC_vcmpequb
Definition allins.hpp:16089
@ PPC_vdivesq
Definition allins.hpp:18598
@ PPC_evlwbosu
Definition allins.hpp:16991
@ PPC_zvmhsiaah
Definition allins.hpp:18159
@ PPC_drintx
Definition allins.hpp:15902
@ PPC_efdcfsid
Definition allins.hpp:15771
@ PPC_bpermd
Definition allins.hpp:15851
@ PPC_maskir
Definition allins.hpp:15537
@ PPC_zmheosuiaa
Definition allins.hpp:18118
@ PPC_evrndhbus
Definition allins.hpp:16780
@ PPC_fsel
Definition allins.hpp:15193
@ PPC_evsetltwu
Definition allins.hpp:17220
@ PPC_dstt
Definition allins.hpp:16353
@ PPC_ldcix
Definition allins.hpp:16039
@ PPC_mffsl
Definition allins.hpp:17735
@ PPC_zsatswsh
Definition allins.hpp:17864
@ PPC_xvnegsp
Definition allins.hpp:16303
@ PPC_xsnabsqp
Definition allins.hpp:17673
@ PPC_evldw
Definition allins.hpp:15616
@ PPC_evaddbss
Definition allins.hpp:17061
@ PPC_evfssub
Definition allins.hpp:15843
@ PPC_evsetlthu
Definition allins.hpp:17218
@ PPC_mfsrin
Definition allins.hpp:15246
@ PPC_ldat
Definition allins.hpp:17556
@ PPC_evsubfssiaa
Definition allins.hpp:17045
@ PPC_zmheogsiaa
Definition allins.hpp:18052
@ PPC_sraw
Definition allins.hpp:15292
@ PPC_evrndhnb
Definition allins.hpp:16785
@ PPC_lxsdx
Definition allins.hpp:16209
@ PPC_mdoom
Definition allins.hpp:17452
@ PPC_zvneghs
Definition allins.hpp:17848
@ PPC_bclri
Definition allins.hpp:16384
@ PPC_cnttzdm
Definition allins.hpp:18555
@ PPC_plxv
Definition allins.hpp:18505
@ PPC_evdotphasmiaaw
Definition allins.hpp:16662
@ PPC_evdotp4hgssmf
Definition allins.hpp:16672
@ PPC_evavgbu
Definition allins.hpp:17295
@ PPC_evdotphihcssiaaw
Definition allins.hpp:16613
@ PPC_sat
Definition allins.hpp:17494
@ PPC_znegws
Definition allins.hpp:17849
@ PPC_evstdd
Definition allins.hpp:15742
@ PPC_tdlgti
Definition allins.hpp:15396
@ PPC_zabsw
Definition allins.hpp:17803
@ PPC_evdotpwsssiaa3
Definition allins.hpp:16729
@ PPC_lxvwsx
Definition allins.hpp:17641
@ PPC_xnop
Definition allins.hpp:16415
@ PPC_evdotp4hgssmiaa
Definition allins.hpp:16710
@ PPC_zmheosfans
Definition allins.hpp:18094
@ PPC_evmbosumiaah
Definition allins.hpp:17162
@ PPC_zvdotphasians
Definition allins.hpp:18441
@ PPC_vslh
Definition allins.hpp:16168
@ PPC_mtxer
Definition allins.hpp:15427
@ PPC_fmadd
Definition allins.hpp:15177
@ PPC_evmwhssfraaw
Definition allins.hpp:17167
@ PPC_dcbtls
Definition allins.hpp:15576
@ PPC_vexptefp
Definition allins.hpp:16102
@ PPC_evstwheu
Definition allins.hpp:16993
@ PPC_evavgwu
Definition allins.hpp:17293
@ PPC_xsmulqp
Definition allins.hpp:17672
@ PPC_lmw
Definition allins.hpp:15226
@ PPC_evlbbsplatbu
Definition allins.hpp:16977
@ PPC_mcrfs
Definition allins.hpp:15239
@ PPC_and
Definition allins.hpp:15125
@ PPC_slwi
Definition allins.hpp:15496
@ PPC_dcffix
Definition allins.hpp:15875
@ PPC_slbmfee
Definition allins.hpp:15546
@ PPC_evswaphhilo
Definition allins.hpp:16873
@ PPC_zmwlsiaas
Definition allins.hpp:18201
@ PPC_evsum2hu
Definition allins.hpp:17107
@ PPC_cmpb
Definition allins.hpp:15858
@ PPC_xsdivsp
Definition allins.hpp:17399
@ PPC_evsrhs
Definition allins.hpp:16904
@ PPC_sleep
Definition allins.hpp:16045
@ PPC_stdux
Definition allins.hpp:15303
@ PPC_evdotphsssfa
Definition allins.hpp:16648
@ PPC_evdotpwassiaa3
Definition allins.hpp:16727
@ PPC_evmwsmia
Definition allins.hpp:15714
@ PPC_vbpermd
Definition allins.hpp:17583
@ PPC_zbrminc
Definition allins.hpp:17799
@ PPC_evdotphasusi
Definition allins.hpp:16623
@ PPC_dcbtstt
Definition allins.hpp:16420
@ PPC_evdotpwxgssmfaa
Definition allins.hpp:16586
@ PPC_mfvtb
Definition allins.hpp:17449
@ PPC_abssw
Definition allins.hpp:17518
@ PPC_icread
Definition allins.hpp:15510
@ PPC_evsplatid
Definition allins.hpp:16845
@ PPC_vmsummbm
Definition allins.hpp:16128
@ PPC_lxvl
Definition allins.hpp:17639
@ PPC_zvmhsfranhs
Definition allins.hpp:18152
@ PPC_evswapho
Definition allins.hpp:16878
@ PPC_evsubfhhisw
Definition allins.hpp:17142
@ PPC_popcntd
Definition allins.hpp:15863
@ PPC_sub2i
Definition allins.hpp:16399
@ PPC_zvmhuusuian
Definition allins.hpp:18307
@ PPC_evdotp4hgssmfa
Definition allins.hpp:16698
@ PPC_evmhogsmfaa
Definition allins.hpp:15664
@ PPC_xvrspic
Definition allins.hpp:16320
@ PPC_efdcfs
Definition allins.hpp:15768
@ PPC_zvselh
Definition allins.hpp:17872
@ PPC_zvmhsuih
Definition allins.hpp:18154
@ PPC_cmplwi
Definition allins.hpp:15354
@ PPC_evsum4bua
Definition allins.hpp:17113
@ PPC_efscmplt
Definition allins.hpp:15806
@ PPC_xsminjdp
Definition allins.hpp:17692
@ PPC_stfdpx
Definition allins.hpp:15999
@ PPC_evfsmin
Definition allins.hpp:16500
@ PPC_fcmpo
Definition allins.hpp:15169
@ PPC_absub
Definition allins.hpp:17507
@ PPC_evdotp4hgasmi
Definition allins.hpp:16668
@ PPC_drintn
Definition allins.hpp:15900
@ PPC_evfsaddsubx
Definition allins.hpp:16509
@ PPC_zvdotphxasfraas
Definition allins.hpp:18406
@ PPC_evabs
Definition allins.hpp:15591
@ PPC_vrfiz
Definition allins.hpp:16159
@ PPC_xscpsgnqp
Definition allins.hpp:17659
@ PPC_vcuxwfp
Definition allins.hpp:16443
@ PPC_zmhosfans
Definition allins.hpp:18095
@ PPC_zrndwh
Definition allins.hpp:17859
@ PPC_evfssubx
Definition allins.hpp:16508
@ PPC_stxvrdx
Definition allins.hpp:18580
@ PPC_mfppr32
Definition allins.hpp:17445
@ PPC_zvdotphgasui
Definition allins.hpp:18365
@ PPC_evlhhsplathmx
Definition allins.hpp:16956
@ PPC_vmrglw
Definition allins.hpp:16127
@ PPC_add2i
Definition allins.hpp:16369
@ PPC_evfsnmsub
Definition allins.hpp:16498
@ PPC_evmwhssfa
Definition allins.hpp:15696
@ PPC_zvdotphasi
Definition allins.hpp:18411
@ PPC_sraq
Definition allins.hpp:15556
@ PPC_stxsspx
Definition allins.hpp:17393
@ PPC_xvf16ger2pn
Definition allins.hpp:18694
@ PPC_vcmpgtfp
Definition allins.hpp:16093
@ PPC_lmvsrrw
Definition allins.hpp:16531
@ PPC_psq_st
Definition allins.hpp:16490
@ PPC_stwat
Definition allins.hpp:17559
@ PPC_xvi8ger4pp
Definition allins.hpp:18713
@ PPC_zvmhxlsuian
Definition allins.hpp:18308
@ PPC_zvslh
Definition allins.hpp:17873
@ PPC_zstwhmx
Definition allins.hpp:18017
@ PPC_evmhosmfa
Definition allins.hpp:15671
@ PPC_zsubfwus
Definition allins.hpp:17913
@ PPC_yield
Definition allins.hpp:17453
@ PPC_lscbx
Definition allins.hpp:15535
@ PPC_zstho
Definition allins.hpp:18010
@ PPC_evstwhou
Definition allins.hpp:16997
@ PPC_zvmergelohih
Definition allins.hpp:17844
@ PPC_evmhoumiaaw
Definition allins.hpp:15686
@ PPC_zmheosfraas
Definition allins.hpp:18097
@ PPC_stqw
Definition allins.hpp:17757
@ PPC_evdotp4hxgasmf
Definition allins.hpp:16674
@ PPC_vexpanddm
Definition allins.hpp:18610
@ PPC_evmhosmi
Definition allins.hpp:15674
@ PPC_vinswrx
Definition allins.hpp:18642
@ PPC_zcircinc
Definition allins.hpp:17800
@ PPC_zvdotphgsuiaa
Definition allins.hpp:18389
@ PPC_zvmhsihs
Definition allins.hpp:18156
@ PPC_xvbf16ger2pp
Definition allins.hpp:18688
@ PPC_mffs
Definition allins.hpp:15242
@ PPC_byterevw
Definition allins.hpp:17780
@ PPC_zvmhulgwsmfran
Definition allins.hpp:18233
@ PPC_zmwgsuiaas
Definition allins.hpp:18182
@ PPC_stmvsrrw
Definition allins.hpp:16532
@ PPC_cmph16i
Definition allins.hpp:16375
@ PPC_mtdcrux
Definition allins.hpp:15943
@ PPC_zvdotphxasuiaa
Definition allins.hpp:18420
@ PPC_vsubcuw
Definition allins.hpp:16185
@ PPC_stwu
Definition allins.hpp:15325
@ PPC_xscvhpdp
Definition allins.hpp:17707
@ PPC_dcffixqq
Definition allins.hpp:18556
@ PPC_sradi
Definition allins.hpp:15291
@ PPC_evsetltws
Definition allins.hpp:17221
@ PPC_zlwhosdmx
Definition allins.hpp:17973
@ PPC_evmhsusi
Definition allins.hpp:17010
@ PPC_vmsumudm
Definition allins.hpp:17729
@ PPC_xxsldwi
Definition allins.hpp:16343
@ PPC_zaddhosw
Definition allins.hpp:17820
@ PPC_vpkudus
Definition allins.hpp:17330
@ PPC_vsrb
Definition allins.hpp:16181
@ PPC_ldwbrw
Definition allins.hpp:17760
@ PPC_vinserth
Definition allins.hpp:17612
@ PPC_evcmpltds
Definition allins.hpp:16869
@ PPC_efdmul
Definition allins.hpp:15787
@ PPC_evdotphsssfraaw3
Definition allins.hpp:16643
@ PPC_evsrbis
Definition allins.hpp:16898
@ PPC_evaddwus
Definition allins.hpp:17076
@ PPC_zsthou
Definition allins.hpp:18011
@ PPC_xsnmsubmsp
Definition allins.hpp:17408
@ PPC_zmhogwsmf
Definition allins.hpp:18068
@ PPC_vcmpeqfp
Definition allins.hpp:16088
@ PPC_vclzdm
Definition allins.hpp:18586
@ PPC_xvrspi
Definition allins.hpp:16319
@ PPC_vsum4sbs
Definition allins.hpp:16197
@ PPC_zstddmx
Definition allins.hpp:17997
@ PPC_zmhegwsmf
Definition allins.hpp:18066
@ PPC_evdotp4hgasumi
Definition allins.hpp:16669
@ PPC_zvmhuluians
Definition allins.hpp:18353
@ PPC_xxperm
Definition allins.hpp:17697
@ PPC_evsplatida
Definition allins.hpp:16852
@ PPC_efsmax
Definition allins.hpp:16516
@ PPC_zmhesui
Definition allins.hpp:18105
@ PPC_efscth
Definition allins.hpp:16524
@ PPC_evldhmx
Definition allins.hpp:16950
@ PPC_vminsh
Definition allins.hpp:16116
@ PPC_vminud
Definition allins.hpp:17354
@ PPC_zmhosf
Definition allins.hpp:18086
@ PPC_evpkswgswfrs
Definition allins.hpp:17260
@ PPC_rfci
Definition allins.hpp:15513
@ PPC_evdivws
Definition allins.hpp:15607
@ PPC_cpabort
Definition allins.hpp:17560
@ PPC_vdivuq
Definition allins.hpp:18607
@ PPC_xvf32gerpn
Definition allins.hpp:18699
@ PPC_mtcrf
Definition allins.hpp:15248
@ PPC_vinsertd
Definition allins.hpp:17614
@ PPC_mtvsrhm
Definition allins.hpp:18568
@ PPC_efdctsi
Definition allins.hpp:15779
@ PPC_ps_add
Definition allins.hpp:16465
@ PPC_fctid
Definition allins.hpp:15171
@ PPC_evsum4bu
Definition allins.hpp:17105
@ PPC_zlwhgwsfd
Definition allins.hpp:17966
@ PPC_evmwohgsmfan
Definition allins.hpp:17206
@ PPC_lbepx
Definition allins.hpp:15962
@ PPC_vavguw
Definition allins.hpp:16084
@ PPC_evfsmul
Definition allins.hpp:15840
@ PPC_evdotp4hxgasmiaa3
Definition allins.hpp:16686
@ PPC_mtic
Definition allins.hpp:17446
@ PPC_evdotpbasmiaaw3
Definition allins.hpp:16689
@ PPC_vslw
Definition allins.hpp:16170
@ PPC_evdivwuf
Definition allins.hpp:17128
@ PPC_evcmpgtds
Definition allins.hpp:16867
@ PPC_evpkswshilvfrs
Definition allins.hpp:17255
@ PPC_vdivesw
Definition allins.hpp:18599
@ PPC_xvcmpgesp
Definition allins.hpp:16261
@ PPC_rlw
Definition allins.hpp:16382
@ PPC_stqcx
Definition allins.hpp:17418
@ PPC_vmulosh
Definition allins.hpp:16139
@ PPC_bclr
Definition allins.hpp:15132
@ PPC_evlbbsplatbx
Definition allins.hpp:16928
@ PPC_dcbtstls
Definition allins.hpp:15577
@ PPC_zvmhlluianps
Definition allins.hpp:18358
@ PPC_zvdotphssfrans
Definition allins.hpp:18450
@ PPC_zmwluiaa
Definition allins.hpp:18197
@ PPC_sraiq
Definition allins.hpp:15555
@ PPC_vmrghh
Definition allins.hpp:16123
@ PPC_zvdotphxgaui
Definition allins.hpp:18362
@ PPC_zvmhulgwsmfranp
Definition allins.hpp:18241
@ PPC_zsubfheuw
Definition allins.hpp:17898
@ PPC_evdotpbaumi
Definition allins.hpp:16675
@ PPC_lfdx
Definition allins.hpp:15212
@ PPC_evsad4sbaaw
Definition allins.hpp:17243
@ PPC_evdotpwcsmi
Definition allins.hpp:16542
@ PPC_xvf64gernp
Definition allins.hpp:18703
@ PPC_xsxexpqp
Definition allins.hpp:17679
@ PPC_mtsrr1
Definition allins.hpp:15434
@ PPC_lbzux
Definition allins.hpp:15202
@ PPC_vpkshus
Definition allins.hpp:16148
@ PPC_xxgenpcvhm
Definition allins.hpp:18723
@ PPC_xxmfacc
Definition allins.hpp:18725
@ PPC_efscfui
Definition allins.hpp:15803
@ PPC_vsrad
Definition allins.hpp:17364
@ PPC_evdotpwaumiaa
Definition allins.hpp:16745
@ PPC_vavgub
Definition allins.hpp:16082
@ PPC_evlwbosx
Definition allins.hpp:16936
@ PPC_macchw
Definition allins.hpp:16007
@ PPC_zmheosians
Definition allins.hpp:18133
@ PPC_zvpkswshs
Definition allins.hpp:17854
@ PPC_zvdotphxgasiaa
Definition allins.hpp:18372
@ PPC_xvresp
Definition allins.hpp:16318
@ PPC_mfic
Definition allins.hpp:17447
@ PPC_xsrdpic
Definition allins.hpp:16244
@ PPC_evdotpwgasmfaa
Definition allins.hpp:16581
@ PPC_lvrxl
Definition allins.hpp:16361
@ PPC_clcs
Definition allins.hpp:15525
@ PPC_evfsctsi
Definition allins.hpp:15834
@ PPC_evdotp4hxgssmf
Definition allins.hpp:16679
@ PPC_evmhegumiaa
Definition allins.hpp:15642
@ PPC_evcmpltu
Definition allins.hpp:15604
@ PPC_evdotpwgssmfraa
Definition allins.hpp:16587
@ PPC_evsubfhx
Definition allins.hpp:17054
@ PPC_satuws
Definition allins.hpp:17515
@ PPC_zvdotphxasiaas
Definition allins.hpp:18436
@ PPC_rotrwi
Definition allins.hpp:15494
@ PPC_zmheogsui
Definition allins.hpp:18036
@ PPC_evdotpwcssfr
Definition allins.hpp:16543
@ PPC_zvdotphssfraas
Definition allins.hpp:18449
@ PPC_clrbhrb
Definition allins.hpp:17318
@ PPC_vsubsbs
Definition allins.hpp:16187
@ PPC_zlwhsplatwdu
Definition allins.hpp:17983
@ PPC_evsubfhxss
Definition allins.hpp:17055
@ PPC_evdotp4hxgasmfaa3
Definition allins.hpp:16687
@ PPC_pmxvbf16ger2pp
Definition allins.hpp:18511
@ PPC_xvcvsxddp
Definition allins.hpp:16276
@ PPC_xxblendvh
Definition allins.hpp:18718
@ PPC_zlhhe
Definition allins.hpp:17938
@ PPC_zvmhxlsians
Definition allins.hpp:18332
@ PPC_dcbtep
Definition allins.hpp:15956
@ PPC_vslq
Definition allins.hpp:18667
@ PPC_evlwwsplat
Definition allins.hpp:15632
@ PPC_vrfim
Definition allins.hpp:16156
@ PPC_dcbzep
Definition allins.hpp:15958
@ PPC_evmwhsmia
Definition allins.hpp:15694
@ PPC_evldb
Definition allins.hpp:16921
@ PPC_evabsdifuh
Definition allins.hpp:17238
@ PPC_evdotplohcssf
Definition allins.hpp:16592
@ PPC_evunpkhihf
Definition allins.hpp:16806
@ PPC_zmwgsuiaa
Definition allins.hpp:18176
@ PPC_zlddmx
Definition allins.hpp:17925
@ PPC_zvdotphasiaas
Definition allins.hpp:18435
@ PPC_zmwlsis
Definition allins.hpp:18192
@ PPC_addbss
Definition allins.hpp:17484
@ PPC_zvmhllsfans
Definition allins.hpp:18258
@ PPC_subf
Definition allins.hpp:15328
@ PPC_nmacchw
Definition allins.hpp:16025
@ PPC_lwat
Definition allins.hpp:17557
@ PPC_zvdotphauis
Definition allins.hpp:18427
@ PPC_evdotphihcsmia
Definition allins.hpp:16609
@ PPC_zvdotphxgwasmfraa
Definition allins.hpp:18478
@ PPC_fneg
Definition allins.hpp:15185
@ PPC_xxbrw
Definition allins.hpp:17715
@ PPC_zvdotphssfaas
Definition allins.hpp:18447
@ PPC_mfsrr1
Definition allins.hpp:15448
@ PPC_ldw
Definition allins.hpp:17754
@ PPC_evdotphsssiaaw
Definition allins.hpp:16659
@ PPC_xxlandc
Definition allins.hpp:16335
@ PPC_pnop
Definition allins.hpp:18536
@ PPC_zvdotphsuians
Definition allins.hpp:18466
@ PPC_stxsdx
Definition allins.hpp:16213
@ PPC_xscvqpuwz
Definition allins.hpp:17665
@ PPC_zvdotphxgasmfan
Definition allins.hpp:18384
@ PPC_evsubfwogsf
Definition allins.hpp:17138
@ PPC_zlwhoudx
Definition allins.hpp:17976
@ PPC_evdotp4hxgasmfaa
Definition allins.hpp:16713
@ PPC_evmhogumiaa
Definition allins.hpp:15668
@ PPC_vncipherlast
Definition allins.hpp:17368
@ PPC_vcfuged
Definition allins.hpp:18583
@ PPC_zaddwus
Definition allins.hpp:17830
@ PPC_efdcmpgt
Definition allins.hpp:15776
@ PPC_fcpsgn
Definition allins.hpp:16000
@ PPC_lddx
Definition allins.hpp:15926
@ PPC_lhcbx
Definition allins.hpp:17746
@ PPC_evpkshsbs
Definition allins.hpp:17247
@ PPC_vmodsw
Definition allins.hpp:18647
@ PPC_evmbesusianh
Definition allins.hpp:17183
@ PPC_rrib
Definition allins.hpp:15545
@ PPC_zvdotphxasi
Definition allins.hpp:18412
@ PPC_tabortdci
Definition allins.hpp:17425
@ PPC_zstwhodx
Definition allins.hpp:18024
@ PPC_std
Definition allins.hpp:15300
@ PPC_evaddwegsi
Definition allins.hpp:17131
@ PPC_vprtybw
Definition allins.hpp:17622
@ PPC_zvnegh
Definition allins.hpp:17845
@ PPC_xsiexpqp
Definition allins.hpp:17669
@ PPC_brh
Definition allins.hpp:18551
@ PPC_zvdotphssuis
Definition allins.hpp:18462
@ PPC_plfs
Definition allins.hpp:18497
@ PPC_zvmhuugwsmfraa
Definition allins.hpp:18227
@ PPC_ori
Definition allins.hpp:15272
@ PPC_evsatuwuh
Definition allins.hpp:16813
@ PPC_zmwsfans
Definition allins.hpp:18210
@ PPC_vinsertb
Definition allins.hpp:17611
@ PPC_evdotpbasmi
Definition allins.hpp:16676
@ PPC_zvmhulsiaas
Definition allins.hpp:18325
@ PPC_evmhosmfaaw
Definition allins.hpp:15672
@ PPC_vextduwvrx
Definition allins.hpp:18621
@ PPC_xsaddsp
Definition allins.hpp:17394
@ PPC_zmheoguian
Definition allins.hpp:18051
@ PPC_nmachhw
Definition allins.hpp:16027
@ PPC_vmuleuh
Definition allins.hpp:16137
@ PPC_zstdhx
Definition allins.hpp:18000
@ PPC_vdiveud
Definition allins.hpp:18600
@ PPC_tdgt
Definition allins.hpp:15391
@ PPC_fre
Definition allins.hpp:16001
@ PPC_evmwssfa
Definition allins.hpp:15718
@ PPC_dquaq
Definition allins.hpp:15898
@ PPC_xvf32gernn
Definition allins.hpp:18697
@ PPC_zvpkswuhs
Definition allins.hpp:17855
@ PPC_abs
Definition allins.hpp:15524
@ PPC_xxpermdi
Definition allins.hpp:16341
@ PPC_evdivu
Definition allins.hpp:17130
@ PPC_vrldmi
Definition allins.hpp:17628
@ PPC_vextsb2d
Definition allins.hpp:17601
@ PPC_xvnmaddmdp
Definition allins.hpp:16306
@ PPC_evsatuwsw
Definition allins.hpp:16818
@ PPC_fnmadd
Definition allins.hpp:15186
@ PPC_stfdux
Definition allins.hpp:15307
@ PPC_evaddw
Definition allins.hpp:15597
@ PPC_subfwss
Definition allins.hpp:17497
@ PPC_evdotp4hgssmiaa3
Definition allins.hpp:16684
@ PPC_zlhhex
Definition allins.hpp:17940
@ PPC_zvdotphxasui
Definition allins.hpp:18414
@ PPC_stdwwt
Definition allins.hpp:17761
@ PPC_xvtstdcsp
Definition allins.hpp:17703
@ PPC_vpkuhus
Definition allins.hpp:16152
@ PPC_vpmsumh
Definition allins.hpp:17374
@ PPC_vextduwvlx
Definition allins.hpp:18620
@ PPC_evlddmx
Definition allins.hpp:16946
@ PPC_evminbs
Definition allins.hpp:17286
@ PPC_subic
Definition allins.hpp:15417
@ PPC_tdllt
Definition allins.hpp:15387
@ PPC_lfiwzx
Definition allins.hpp:15995
@ PPC_dcffixq
Definition allins.hpp:15876
@ PPC_subfze
Definition allins.hpp:15333
@ PPC_evmwlsmianw3
Definition allins.hpp:17200
@ PPC_absuw
Definition allins.hpp:17519
@ PPC_evdlvoh
Definition allins.hpp:17274
@ PPC_vgbbd
Definition allins.hpp:17377
@ PPC_dmul
Definition allins.hpp:15893
@ PPC_xsrdpi
Definition allins.hpp:16243
@ PPC_subfbss
Definition allins.hpp:17495
@ PPC_vinsbvlx
Definition allins.hpp:18631
@ PPC_evdotphassi
Definition allins.hpp:16622
@ PPC_mffscrn
Definition allins.hpp:17733
@ PPC_dcbflp
Definition allins.hpp:16418
@ PPC_srad
Definition allins.hpp:15290
@ PPC_vmodsd
Definition allins.hpp:18645
@ PPC_evdotphassiaaw3
Definition allins.hpp:16633
@ PPC_xxbrh
Definition allins.hpp:17713
@ PPC_vcmpgtsh
Definition allins.hpp:16095
@ PPC_xsxsigdp
Definition allins.hpp:17705
@ PPC_evmr
Definition allins.hpp:16425
@ PPC_satshu
Definition allins.hpp:17510
@ PPC_xvcmpeqdp
Definition allins.hpp:16258
@ PPC_subfhss
Definition allins.hpp:17496
@ PPC_zvsubfaddhxss
Definition allins.hpp:17892
@ PPC_vextuhlx
Definition allins.hpp:17607
@ PPC_evmhessianw
Definition allins.hpp:15657
@ PPC_vsubuhs
Definition allins.hpp:16193
@ PPC_zcntlsw
Definition allins.hpp:17838
@ PPC_zvdotphgwasmfr
Definition allins.hpp:18471
@ PPC_neg
Definition allins.hpp:15268
@ PPC_vmulesh
Definition allins.hpp:16135
@ PPC_maclhwsu
Definition allins.hpp:16017
@ PPC_evmhesusiaaw
Definition allins.hpp:17147
@ PPC_mulchwu
Definition allins.hpp:16020
@ PPC_evmwhsmf
Definition allins.hpp:15691
@ PPC_zmhosuians
Definition allins.hpp:18140
@ PPC_evminwpud
Definition allins.hpp:16835
@ PPC_zvmhllgwsmfraa
Definition allins.hpp:18226
@ PPC_vupkhpx
Definition allins.hpp:16201
@ PPC_zvdotphxgasuiaa
Definition allins.hpp:18374
@ PPC_evdotpwcssfaaw
Definition allins.hpp:16580
@ PPC_zaddd
Definition allins.hpp:17805
@ PPC_zvmhllsfr
Definition allins.hpp:18250
@ PPC_evfscmpgt
Definition allins.hpp:15831
@ PPC_xsiexpdp
Definition allins.hpp:17688
@ PPC_evdotpwxgssmfraa3
Definition allins.hpp:16564
@ PPC_cnttzd
Definition allins.hpp:17535
@ PPC_xvf16ger2pp
Definition allins.hpp:18695
@ PPC_zmheguian
Definition allins.hpp:18043
@ PPC_icbi
Definition allins.hpp:15198
@ PPC_xvnmaddasp
Definition allins.hpp:16305
@ PPC_vpkpx
Definition allins.hpp:16146
@ PPC_zvdotphgsui
Definition allins.hpp:18385
@ PPC_evsplatib
Definition allins.hpp:16841
@ PPC_evstwbx
Definition allins.hpp:16942
@ PPC_vpermr
Definition allins.hpp:17621
@ PPC_satuhu
Definition allins.hpp:17511
@ PPC_xxbrd
Definition allins.hpp:17712
@ PPC_zvrlhi
Definition allins.hpp:17858
@ PPC_dozi
Definition allins.hpp:15532
@ PPC_xxblendvw
Definition allins.hpp:18719
@ PPC_evmheusiaaw
Definition allins.hpp:15662
@ PPC_evmbesumia
Definition allins.hpp:17026
@ PPC_zvsubifh
Definition allins.hpp:17915
@ PPC_evmwohgsmfraa
Definition allins.hpp:17175
@ PPC_evadddss
Definition allins.hpp:17057
@ PPC_evmbossianh
Definition allins.hpp:17185
@ PPC_evmbesumianh
Definition allins.hpp:17189
@ PPC_evdotphaumiaaw3
Definition allins.hpp:16638
@ PPC_iselgt
Definition allins.hpp:15573
@ PPC_evlwhsplatwx
Definition allins.hpp:16926
@ PPC_evaddhlosw
Definition allins.hpp:17144
@ PPC_zmhesuiaa
Definition allins.hpp:18117
@ PPC_plxsd
Definition allins.hpp:18503
@ PPC_zvdotphgasmf
Definition allins.hpp:18367
@ PPC_stvx
Definition allins.hpp:16064
@ PPC_vmoduq
Definition allins.hpp:18649
@ PPC_xvnegdp
Definition allins.hpp:16302
@ PPC_pmxvi16ger2
Definition allins.hpp:18527
@ PPC_fnmadds
Definition allins.hpp:15187
@ PPC_zmhosiaas
Definition allins.hpp:18131
@ PPC_zvmhuugwsmfaa
Definition allins.hpp:18223
@ PPC_pstd
Definition allins.hpp:18538
@ PPC_zvmhuugwsmfran
Definition allins.hpp:18235
@ PPC_zmwgui
Definition allins.hpp:18173
@ PPC_efdctsf
Definition allins.hpp:15778
@ PPC_mtspr
Definition allins.hpp:15255
@ PPC_efsabs
Definition allins.hpp:15798
@ PPC_xxpermr
Definition allins.hpp:17698
@ PPC_xxmrglw
Definition allins.hpp:16340
@ PPC_vmrghb
Definition allins.hpp:16122
@ PPC_mfdcrx
Definition allins.hpp:15942
@ PPC_evdotpbasmia
Definition allins.hpp:16702
@ PPC_bcdsetsgn
Definition allins.hpp:17572
@ PPC_evlwbeu
Definition allins.hpp:16987
@ PPC_zmhegwsmfraa
Definition allins.hpp:18078
@ PPC_vupklpx
Definition allins.hpp:16204
@ PPC_evnegho
Definition allins.hpp:16764
@ PPC_zvmhllsfranps
Definition allins.hpp:18274
@ PPC_zvdotphssian
Definition allins.hpp:18458
@ PPC_xvcvsxwdp
Definition allins.hpp:16278
@ PPC_evsrbu
Definition allins.hpp:16895
@ PPC_setnbcr
Definition allins.hpp:18576
@ PPC_lhzx
Definition allins.hpp:15225
@ PPC_vmuleub
Definition allins.hpp:16136
@ PPC_zvsubfaddhss
Definition allins.hpp:17890
@ PPC_evsubfhxus
Definition allins.hpp:17087
@ PPC_evsrhiu
Definition allins.hpp:16905
@ PPC_efsctsiz
Definition allins.hpp:15809
@ PPC_maddhd
Definition allins.hpp:17538
@ PPC_evfsneg
Definition allins.hpp:15842
@ PPC_evrndhnbss
Definition allins.hpp:16790
@ PPC_vnot
Definition allins.hpp:17438
@ PPC_wrteei
Definition allins.hpp:15518
@ PPC_evdotphaumiaaw
Definition allins.hpp:16661
@ PPC_xxspltd
Definition allins.hpp:16430
@ PPC_frin
Definition allins.hpp:16003
@ PPC_sub16i
Definition allins.hpp:16398
@ PPC_zmheuiaas
Definition allins.hpp:18141
@ PPC_evfssqrt
Definition allins.hpp:16496
@ PPC_evlwheu
Definition allins.hpp:16963
@ PPC_xvadddp
Definition allins.hpp:16256
@ PPC_evmhssfr
Definition allins.hpp:17013
@ PPC_dctdp
Definition allins.hpp:15881
@ PPC_xssubqp
Definition allins.hpp:17678
@ PPC_stop
Definition allins.hpp:17552
@ PPC_vinshvrx
Definition allins.hpp:18639
@ PPC_zmwlsian
Definition allins.hpp:18198
@ PPC_mtvsrws
Definition allins.hpp:17549
@ PPC_fnmsubs
Definition allins.hpp:15189
@ PPC_psq_lu
Definition allins.hpp:16489
@ PPC_cntlzd
Definition allins.hpp:15137
@ PPC_stxssp
Definition allins.hpp:17646
@ PPC_cmpw
Definition allins.hpp:15353
@ PPC_lfs
Definition allins.hpp:15213
@ PPC_evsubfaddwx
Definition allins.hpp:17100
@ PPC_evaddhxss
Definition allins.hpp:17053
@ PPC_msgclr
Definition allins.hpp:15951
@ PPC_subpcis
Definition allins.hpp:17531
@ PPC_vmaxub
Definition allins.hpp:16109
@ PPC_zvmhxlsfaas
Definition allins.hpp:18256
@ PPC_xvnmsubmsp
Definition allins.hpp:16311
@ PPC_addwss
Definition allins.hpp:17486
@ PPC_zvmhxluian
Definition allins.hpp:18320
@ PPC_evdotplohcsmi
Definition allins.hpp:16594
@ PPC_stfdepx
Definition allins.hpp:15969
@ PPC_crorc
Definition allins.hpp:15145
@ PPC_zmhogwsmfran
Definition allins.hpp:18083
@ PPC_evdotplohcssfraaw3
Definition allins.hpp:16604
@ PPC_evinsh
Definition allins.hpp:16883
@ PPC_twle
Definition allins.hpp:15374
@ PPC_lxvkq
Definition allins.hpp:18558
@ PPC_vmulhud
Definition allins.hpp:18656
@ PPC_evaddwogsi
Definition allins.hpp:17135
@ PPC_evminhpsw
Definition allins.hpp:16832
@ PPC_fctiwuz
Definition allins.hpp:15991
@ PPC_zvmhxlgwsmfanp
Definition allins.hpp:18240
@ PPC_lqarx
Definition allins.hpp:17417
@ PPC_macchwsu
Definition allins.hpp:16009
@ PPC_mtvsrwm
Definition allins.hpp:18570
@ PPC_evunpklowgsf
Definition allins.hpp:16807
@ PPC_vsldbi
Definition allins.hpp:18666
@ PPC_sreq
Definition allins.hpp:15559
@ PPC_xsrdpip
Definition allins.hpp:16246
@ PPC_xscvdphp
Definition allins.hpp:17706
@ PPC_vsubshs
Definition allins.hpp:16188
@ PPC_evdotphassfa
Definition allins.hpp:16647
@ PPC_zstdh
Definition allins.hpp:17998
@ PPC_vinsbvrx
Definition allins.hpp:18632
@ PPC_brd
Definition allins.hpp:18550
@ PPC_zunpkwgsf
Definition allins.hpp:17920
@ PPC_evsumwsa
Definition allins.hpp:17112
@ PPC_tsuspend
Definition allins.hpp:17440
@ PPC_tdlti
Definition allins.hpp:15403
@ PPC_mtsrr0
Definition allins.hpp:15433
@ PPC_vpmsumb
Definition allins.hpp:17372
@ PPC_evsplatfiho
Definition allins.hpp:16857
@ PPC_vsplth
Definition allins.hpp:16172
@ PPC_evdotphassfaaw3
Definition allins.hpp:16635
@ PPC_plxvp
Definition allins.hpp:18506
@ PPC_lhbr
Definition allins.hpp:17767
@ PPC_addb
Definition allins.hpp:17772
@ PPC_bmaski
Definition allins.hpp:16388
@ PPC_sriq
Definition allins.hpp:15560
@ PPC_vmaxsh
Definition allins.hpp:16107
@ PPC_evdotpwgssmfraa3
Definition allins.hpp:16563
@ PPC_zmheogui
Definition allins.hpp:18034
@ PPC_popcntb
Definition allins.hpp:15541
@ PPC_zvdotphxasians
Definition allins.hpp:18442
@ PPC_cmpdi
Definition allins.hpp:15356
@ PPC_xor
Definition allins.hpp:15342
@ PPC_beq
Definition allins.hpp:15479
@ PPC_xvtdivsp
Definition allins.hpp:16331
@ PPC_vextsb2w
Definition allins.hpp:17600
@ PPC_evdotphsssf
Definition allins.hpp:16625
@ PPC_zvmhllsianp
Definition allins.hpp:18298
@ PPC_sthbrx
Definition allins.hpp:15315
@ PPC_evsubfaddhxss
Definition allins.hpp:17071
@ PPC_zvdotphasuiaa
Definition allins.hpp:18419
@ PPC_zvmhuusiaas
Definition allins.hpp:18327
@ PPC_evmhumi
Definition allins.hpp:17012
@ PPC_evlwhouu
Definition allins.hpp:16967
@ PPC_zstwwx
Definition allins.hpp:18028
@ PPC_evsaduwa
Definition allins.hpp:17228
@ PPC_evaddhxus
Definition allins.hpp:17085
@ PPC_zvsubfaddhx
Definition allins.hpp:17891
@ PPC_vsum4shs
Definition allins.hpp:16198
@ PPC_evsubfdus
Definition allins.hpp:17074
@ PPC_vsldoi
Definition allins.hpp:16167
@ PPC_xscvsxdsp
Definition allins.hpp:17397
@ PPC_zvdotphgaui
Definition allins.hpp:18361
@ PPC_evmwohgsmf
Definition allins.hpp:17036
@ PPC_evlddu
Definition allins.hpp:16947
@ PPC_mtsle
Definition allins.hpp:17320
@ PPC_stqdbrw
Definition allins.hpp:17765
@ PPC_evmhosmf
Definition allins.hpp:15670
@ PPC_slliq
Definition allins.hpp:15552
@ PPC_evmaxdu
Definition allins.hpp:17283
@ PPC_evnegh
Definition allins.hpp:16763
@ PPC_evsplatie
Definition allins.hpp:16840
@ PPC_evlhhossplat
Definition allins.hpp:15620
@ PPC_mfctr
Definition allins.hpp:15443
@ PPC_zvmhllsiaa
Definition allins.hpp:18290
@ PPC_zstwwu
Definition allins.hpp:18027
@ PPC_evfsmulx
Definition allins.hpp:16511
@ PPC_evsad2uha
Definition allins.hpp:17232
@ PPC_lwzcix
Definition allins.hpp:16041
@ PPC_evsrs
Definition allins.hpp:16912
@ PPC_zvdotphauians
Definition allins.hpp:18439
@ PPC_zmwgsmfraa
Definition allins.hpp:18190
@ PPC_vaddudm
Definition allins.hpp:17336
@ PPC_zvmhuusfanps
Definition allins.hpp:18263
@ PPC_evlhhousplatmx
Definition allins.hpp:16958
@ PPC_evmhesmfanw
Definition allins.hpp:15647
@ PPC_zstwhu
Definition allins.hpp:18015
@ PPC_zvmhxlgwsmfaa
Definition allins.hpp:18224
@ PPC_xsredp
Definition allins.hpp:16248
@ PPC_vctzb
Definition allins.hpp:17592
@ PPC_vpksdss
Definition allins.hpp:17328
@ PPC_zvdotphgauiaa
Definition allins.hpp:18369
@ PPC_zmhouiaa
Definition allins.hpp:18125
@ PPC_zmhosfrans
Definition allins.hpp:18101
@ PPC_clrldi
Definition allins.hpp:16411
@ PPC_ldux
Definition allins.hpp:15207
@ PPC_lwdcbx
Definition allins.hpp:17740
@ PPC_vpkswss
Definition allins.hpp:16149
@ PPC_evsaduw
Definition allins.hpp:17222
@ PPC_evxtrd
Definition allins.hpp:16894
@ PPC_maclhws
Definition allins.hpp:16016
@ PPC_zvslhiss
Definition allins.hpp:17876
@ PPC_zdivwsf
Definition allins.hpp:17840
@ PPC_evsubfb
Definition allins.hpp:17062
@ PPC_li
Definition allins.hpp:15419
@ PPC_xsaddqp
Definition allins.hpp:17655
@ PPC_evlwhoumx
Definition allins.hpp:16966
@ PPC_insrwi
Definition allins.hpp:15492
@ PPC_evdotphsssfraaw
Definition allins.hpp:16666
@ PPC_diexq
Definition allins.hpp:15892
@ PPC_xsrsqrtedp
Definition allins.hpp:16249
@ PPC_vextubrx
Definition allins.hpp:17606
@ PPC_ps_sub
Definition allins.hpp:16464
@ PPC_zvunpkhgwsf
Definition allins.hpp:17916
@ PPC_zlwhedx
Definition allins.hpp:17964
@ PPC_mtmsr
Definition allins.hpp:15253
@ PPC_zlhhosx
Definition allins.hpp:17944
@ PPC_vclzh
Definition allins.hpp:17379
@ PPC_icbt
Definition allins.hpp:15508
@ PPC_xscmpgtdp
Definition allins.hpp:17687
@ PPC_evlwwsplatx
Definition allins.hpp:15633
@ PPC_xsdivqp
Definition allins.hpp:17668
@ PPC_evmhossfa
Definition allins.hpp:15679
@ PPC_evnegds
Definition allins.hpp:16772
@ PPC_evrnddwss
Definition allins.hpp:16783
@ PPC_bgt
Definition allins.hpp:15481
@ PPC_zvmhxlui
Definition allins.hpp:18288
@ PPC_evdotphassfraaw3
Definition allins.hpp:16641
@ PPC_evsubfbus
Definition allins.hpp:17075
@ PPC_zvmhsiaahs
Definition allins.hpp:18165
@ PPC_vextublx
Definition allins.hpp:17605
@ PPC_zvmhulsiaa
Definition allins.hpp:18289
@ PPC_addhu
Definition allins.hpp:17775
@ PPC_evdotplohcssiaaw3
Definition allins.hpp:16598
@ PPC_evmhusi
Definition allins.hpp:17008
@ PPC_evclrbe
Definition allins.hpp:16884
@ PPC_evabsdifub
Definition allins.hpp:17236
@ PPC_machhw
Definition allins.hpp:16011
@ PPC_zlhgwsfmx
Definition allins.hpp:17937
@ PPC_xvbf16ger2pn
Definition allins.hpp:18687
@ PPC_evnegb
Definition allins.hpp:16761
@ PPC_twlt
Definition allins.hpp:15373
@ PPC_evmwlssianw3
Definition allins.hpp:17194
@ PPC_evmwlusiaaw3
Definition allins.hpp:17163
@ PPC_xvcvdpsxws
Definition allins.hpp:16268
@ PPC_vaddcuq
Definition allins.hpp:17339
@ PPC_evdotplohcssfr
Definition allins.hpp:16596
@ PPC_evselbitm0
Definition allins.hpp:16888
@ PPC_evmwumiaa
Definition allins.hpp:15723
@ PPC_evlwhe
Definition allins.hpp:15624
@ PPC_zvmhuluianps
Definition allins.hpp:18357
@ PPC_evaddh
Definition allins.hpp:17048
@ PPC_xvxexpdp
Definition allins.hpp:17708
@ PPC_ps_sum0
Definition allins.hpp:16457
@ PPC_ps_nmadd
Definition allins.hpp:16473
@ PPC_zvmhllsuians
Definition allins.hpp:18342
@ PPC_evnor
Definition allins.hpp:15727
@ PPC_evdotphasusiaaw
Definition allins.hpp:16657
@ PPC_vmulosb
Definition allins.hpp:16138
@ PPC_evmindu
Definition allins.hpp:17291
@ PPC_evextsh
Definition allins.hpp:15611
@ PPC_zvmhsih
Definition allins.hpp:18153
@ PPC_lbzu
Definition allins.hpp:15201
@ PPC_zlwhed
Definition allins.hpp:17962
@ PPC_pmxvi16ger2s
Definition allins.hpp:18529
@ PPC_evmra
Definition allins.hpp:15690
@ PPC_xvrdpip
Definition allins.hpp:16315
@ PPC_zvdotphgssuian
Definition allins.hpp:18395
@ PPC_evmhosmiaaw
Definition allins.hpp:15676
@ PPC_evrndhnbus
Definition allins.hpp:16789
@ PPC_evdotpwassi
Definition allins.hpp:16720
@ PPC_evmergehilo
Definition allins.hpp:15635
@ PPC_lmvgprw
Definition allins.hpp:16527
@ PPC_bcdsub
Definition allins.hpp:17388
@ PPC_vcntmbw
Definition allins.hpp:18595
@ PPC_tdllei
Definition allins.hpp:15400
@ PPC_zvmhuugwsmf
Definition allins.hpp:18215
@ PPC_evsaduwaa
Definition allins.hpp:17240
@ PPC_zmheosf
Definition allins.hpp:18085
@ PPC_zstdhu
Definition allins.hpp:17999
@ PPC_xsmaddadp
Definition allins.hpp:16230
@ PPC_vmrgow
Definition allins.hpp:17335
@ PPC_vcmpnezb
Definition allins.hpp:17587
@ PPC_vsubuwm
Definition allins.hpp:16194
@ PPC_twge
Definition allins.hpp:15372
@ PPC_zvdotphssis
Definition allins.hpp:18461
@ PPC_zvmhllui
Definition allins.hpp:18286
@ PPC_drdpq
Definition allins.hpp:15899
@ PPC_evdotpwgasmfraa3
Definition allins.hpp:16559
@ PPC_zlwhsplatd
Definition allins.hpp:17978
@ PPC_zvsrhu
Definition allins.hpp:17888
@ PPC_zmwluian
Definition allins.hpp:18200
@ PPC_evmwhumi
Definition allins.hpp:15697
@ PPC_subfbus
Definition allins.hpp:17498
@ PPC_xvabsdp
Definition allins.hpp:16254
@ PPC_evsubfwss
Definition allins.hpp:17089
@ PPC_dcbf
Definition allins.hpp:15148
@ PPC_nand
Definition allins.hpp:15267
@ PPC_dqua
Definition allins.hpp:15895
@ PPC_zvdotphsuian
Definition allins.hpp:18457
@ PPC_zvmhuusfranps
Definition allins.hpp:18275
@ PPC_absuh
Definition allins.hpp:17513
@ PPC_zvmhlluianp
Definition allins.hpp:18322
@ PPC_evdotphsssfr
Definition allins.hpp:16631
@ PPC_evstwhemx
Definition allins.hpp:16992
@ PPC_srq
Definition allins.hpp:15563
@ PPC_vrlwnm
Definition allins.hpp:17625
@ PPC_zmheogwsmfraa
Definition allins.hpp:18079
@ PPC_evmhossiaaw
Definition allins.hpp:15682
@ PPC_zvmhuuuiaas
Definition allins.hpp:18351
@ PPC_tlbwe
Definition allins.hpp:15516
@ PPC_evsubfhlosw
Definition allins.hpp:17146
@ PPC_lhzcix
Definition allins.hpp:16040
@ PPC_slbmfev
Definition allins.hpp:15547
@ PPC_vextractd
Definition allins.hpp:17599
@ PPC_evmheumiaaw
Definition allins.hpp:15660
@ PPC_zvmhllsian
Definition allins.hpp:18294
@ PPC_zmhoguian
Definition allins.hpp:18059
@ PPC_vupkhsh
Definition allins.hpp:16203
@ PPC_zmheogsmfan
Definition allins.hpp:18057
@ PPC_zvcmpgths
Definition allins.hpp:17833
@ PPC_vextuhrx
Definition allins.hpp:17608
@ PPC_zmheuians
Definition allins.hpp:18144
@ PPC_zvmhuusfaas
Definition allins.hpp:18255
@ PPC_zvsubfw
Definition allins.hpp:17905
@ PPC_stvewx
Definition allins.hpp:16063
@ PPC_vinswvrx
Definition allins.hpp:18644
@ PPC_tdi
Definition allins.hpp:15336
@ PPC_vsraq
Definition allins.hpp:18668
@ PPC_xsmaxjdp
Definition allins.hpp:17690
@ PPC_zmhoguiaa
Definition allins.hpp:18058
@ PPC_xsmaxdp
Definition allins.hpp:16232
@ PPC_vextsw2d
Definition allins.hpp:17604
@ PPC_zvdotphgasuiaa
Definition allins.hpp:18373
@ PPC_evdotpwgasmfraa
Definition allins.hpp:16583
@ PPC_evldwu
Definition allins.hpp:16949
@ PPC_vrld
Definition allins.hpp:17361
@ PPC_evsplatiha
Definition allins.hpp:16850
@ PPC_vpermwi
Definition allins.hpp:16448
@ PPC_xvmaddmsp
Definition allins.hpp:16289
@ PPC_lwcbx
Definition allins.hpp:17747
@ PPC_zsthe
Definition allins.hpp:18006
@ PPC_zvaddsubfh
Definition allins.hpp:17814
@ PPC_vupkhsw
Definition allins.hpp:17332
@ PPC_zvdotphasian
Definition allins.hpp:18423
@ PPC_evdotphassiaaw
Definition allins.hpp:16656
@ PPC_mtfsfi
Definition allins.hpp:15252
@ PPC_ps_div
Definition allins.hpp:16463
@ PPC_xsmsubasp
Definition allins.hpp:17402
@ PPC_evstdwu
Definition allins.hpp:16981
@ PPC_cmpld
Definition allins.hpp:15359
@ PPC_nap
Definition allins.hpp:16042
@ PPC_lxvd2x
Definition allins.hpp:16210
@ PPC_vsubuws
Definition allins.hpp:16195
@ PPC_vsum4ubs
Definition allins.hpp:16199
@ PPC_xvmaddasp
Definition allins.hpp:16287
@ PPC_doz
Definition allins.hpp:15531
@ PPC_evsubfh
Definition allins.hpp:17050
@ PPC_xscmpgtqp
Definition allins.hpp:18677
@ PPC_stfsux
Definition allins.hpp:15312
@ PPC_zmhegsui
Definition allins.hpp:18032
@ PPC_lhz
Definition allins.hpp:15222
@ PPC_evsum2hisa
Definition allins.hpp:17118
@ PPC_plfd
Definition allins.hpp:18496
@ PPC_evdotpwausi
Definition allins.hpp:16719
@ PPC_evsubfumiaaw
Definition allins.hpp:15758
@ PPC_evdotphasumiaaw
Definition allins.hpp:16663
@ PPC_pmxvf32ger
Definition allins.hpp:18517
@ PPC_zvaddsubfhxss
Definition allins.hpp:17817
@ PPC_xsmaddmsp
Definition allins.hpp:17401
@ PPC_zvmhuih
Definition allins.hpp:18155
@ PPC_clrrdi
Definition allins.hpp:16412
@ PPC_lxsspx
Definition allins.hpp:17390
@ PPC_zvdotphasuian
Definition allins.hpp:18425
@ PPC_ici
Definition allins.hpp:15940
@ PPC_xvrdpi
Definition allins.hpp:16312
@ PPC_maclhw
Definition allins.hpp:16015
@ PPC_evsplatfid
Definition allins.hpp:16858
@ PPC_xvcvspdp
Definition allins.hpp:16271
@ PPC_xxgenpcvdm
Definition allins.hpp:18722
@ PPC_cmph
Definition allins.hpp:16374
@ PPC_zvcmplths
Definition allins.hpp:17835
@ PPC_vmodsq
Definition allins.hpp:18646
@ PPC_stxv
Definition allins.hpp:17647
@ PPC_zvmergehiloh
Definition allins.hpp:17842
@ PPC_evabsd
Definition allins.hpp:16755
@ PPC_evdotpbaumia
Definition allins.hpp:16701
@ PPC_lvlx
Definition allins.hpp:16358
@ PPC_lmvdsrrw
Definition allins.hpp:16535
@ PPC_dtstdg
Definition allins.hpp:15915
@ PPC_xsmaddqp
Definition allins.hpp:17670
@ PPC_lxsibzx
Definition allins.hpp:17634
@ PPC_pmxvf32gerpn
Definition allins.hpp:18520
@ PPC_evmboumiaah
Definition allins.hpp:17160
@ PPC_evdlvoeh
Definition allins.hpp:17276
@ PPC_evfscfsi
Definition allins.hpp:15827
@ PPC_zlwhedu
Definition allins.hpp:17963
@ PPC_clrlslwi
Definition allins.hpp:15500
@ PPC_stxvrbx
Definition allins.hpp:18579
@ PPC_xvrspim
Definition allins.hpp:16321
@ PPC_vaddubs
Definition allins.hpp:16072
@ PPC_evmwohgsmfa
Definition allins.hpp:17041
@ PPC_zmhesi
Definition allins.hpp:18102
@ PPC_xscvsdqp
Definition allins.hpp:17666
@ PPC_pld
Definition allins.hpp:18495
@ PPC_zvsrhs
Definition allins.hpp:17887
@ PPC_pstfs
Definition allins.hpp:18540
@ PPC_zmhosi
Definition allins.hpp:18104
@ PPC_zlwwu
Definition allins.hpp:17987
@ PPC_stfdx
Definition allins.hpp:15308
@ PPC_modsd
Definition allins.hpp:17543
@ PPC_pmxvf64gernp
Definition allins.hpp:18524
@ PPC_evmbosumianh
Definition allins.hpp:17192
@ PPC_evdotpwassia
Definition allins.hpp:16735
@ PPC_evstwbmx
Definition allins.hpp:17002
@ PPC_evilvhih
Definition allins.hpp:17263
@ PPC_xsmincdp
Definition allins.hpp:17691
@ PPC_xvnmaddmsp
Definition allins.hpp:16307
@ PPC_ps_nmsub
Definition allins.hpp:16472
@ PPC_zvmhuluiaa
Definition allins.hpp:18313
@ PPC_evavgdur
Definition allins.hpp:17307
@ PPC_evsubfhlouw
Definition allins.hpp:17145
@ PPC_evmwhssfranw
Definition allins.hpp:17197
@ PPC_evfscmpeq
Definition allins.hpp:15830
@ PPC_mcrf
Definition allins.hpp:15238
@ PPC_evsriu
Definition allins.hpp:16913
@ PPC_lvewx
Definition allins.hpp:16054
@ PPC_tabortwci
Definition allins.hpp:17423
@ PPC_evsplati
Definition allins.hpp:15737
@ PPC_vpopcntw
Definition allins.hpp:17385
@ PPC_waitrsv
Definition allins.hpp:16423
@ PPC_zvmhuugwsmfr
Definition allins.hpp:18219
@ PPC_fcfidus
Definition allins.hpp:15987
@ PPC_xvf16ger2nn
Definition allins.hpp:18692
@ PPC_ps_merge01
Definition allins.hpp:16484
@ PPC_zvsatuhsh
Definition allins.hpp:17868
@ PPC_lfdux
Definition allins.hpp:15211
@ PPC_mpure
Definition allins.hpp:17787
@ PPC_evmwhumia
Definition allins.hpp:15698
@ PPC_evmhegsmfaa
Definition allins.hpp:15638
@ PPC_zvsplatih
Definition allins.hpp:17884
@ PPC_dcbtst
Definition allins.hpp:15152
@ PPC_lfdpx
Definition allins.hpp:15997
@ PPC_evdotpwxgssmfra
Definition allins.hpp:16576
@ PPC_mfar
Definition allins.hpp:16394
@ PPC_lmvsprw
Definition allins.hpp:16529
@ PPC_evpkswgshefrs
Definition allins.hpp:17253
@ PPC_xxbrq
Definition allins.hpp:17714
@ PPC_b
Definition allins.hpp:15129
@ PPC_zvdotphxasiaa
Definition allins.hpp:18418
@ PPC_pmxvi8ger4
Definition allins.hpp:18533
@ PPC_denbcd
Definition allins.hpp:15889
@ PPC_vminfp
Definition allins.hpp:16114
@ PPC_xsrdpim
Definition allins.hpp:16245
@ PPC_vsrq
Definition allins.hpp:18670
@ PPC_cli
Definition allins.hpp:15527
@ PPC_evstdbx
Definition allins.hpp:16930
@ PPC_lwbr
Definition allins.hpp:17766
@ PPC_evsad4sb
Definition allins.hpp:17225
@ PPC_cmpwi
Definition allins.hpp:15352
@ PPC_xvrdpiz
Definition allins.hpp:16316
@ PPC_zvdotphxasfs
Definition allins.hpp:18398
@ PPC_zmwguiaas
Definition allins.hpp:18184
@ PPC_xvf64gerpn
Definition allins.hpp:18704
@ PPC_mfsri
Definition allins.hpp:15538
@ PPC_evfststlt
Definition allins.hpp:15846
@ PPC_evavgbsr
Definition allins.hpp:17304
@ PPC_evavgds
Definition allins.hpp:17300
@ PPC_evrndhbss
Definition allins.hpp:16781
@ PPC_pstxvp
Definition allins.hpp:18547
@ PPC_evrnddnwss
Definition allins.hpp:16792
@ PPC_fsubs
Definition allins.hpp:15197
@ PPC_lxvh8x
Definition allins.hpp:17638
@ PPC_vmulesd
Definition allins.hpp:18652
@ PPC_mtvsrwz
Definition allins.hpp:17325
@ PPC_wrtee
Definition allins.hpp:15517
@ PPC_evstwwox
Definition allins.hpp:15755
@ PPC_evsetgthu
Definition allins.hpp:17210
@ PPC_evfsnmadd
Definition allins.hpp:16497
@ PPC_zvdotphxgasian
Definition allins.hpp:18380
@ PPC_mfspr
Definition allins.hpp:15244
@ PPC_vsrd
Definition allins.hpp:17363
@ PPC_zvsubfhus
Definition allins.hpp:17902
@ PPC_zvmhuusianps
Definition allins.hpp:18335
@ PPC_vcipher
Definition allins.hpp:17365
@ PPC_evorc
Definition allins.hpp:15729
@ PPC_zvmhulgwsmfanp
Definition allins.hpp:18237
@ PPC_waitimpl
Definition allins.hpp:16424
@ PPC_pmxvf16ger2nn
Definition allins.hpp:18513
@ PPC_zvmhxlsiaas
Definition allins.hpp:18328
@ PPC_vcfpsxws
Definition allins.hpp:16440
@ PPC_evdotplohcsmiaaw3
Definition allins.hpp:16602
@ PPC_zvaddhxss
Definition allins.hpp:17812
@ PPC_evavgwsr
Definition allins.hpp:17302
@ PPC_evdotpwcsmia
Definition allins.hpp:16566
@ PPC_stbx
Definition allins.hpp:15299
@ PPC_evlwbosmx
Definition allins.hpp:16990
@ PPC_lqdbrw
Definition allins.hpp:17764
@ PPC_evdotp4hgaumiaa
Definition allins.hpp:16706
@ PPC_evsad2uhaaw
Definition allins.hpp:17244
@ PPC_stwbrx
Definition allins.hpp:15323
@ PPC_mr
Definition allins.hpp:15414
@ PPC_evclrh
Definition allins.hpp:16887
@ PPC_zvdotphaui
Definition allins.hpp:18409
@ PPC_efdcfui
Definition allins.hpp:15773
@ PPC_evmwehgsmf
Definition allins.hpp:17034
@ PPC_vrlb
Definition allins.hpp:16160
@ PPC_vspltish
Definition allins.hpp:16174
@ PPC_evmwsmian
Definition allins.hpp:15716
@ PPC_subis
Definition allins.hpp:15418
@ PPC_dctfix
Definition allins.hpp:15882
@ PPC_tweq
Definition allins.hpp:15368
@ PPC_dctqpq
Definition allins.hpp:15884
@ PPC_zmwluis
Definition allins.hpp:18194
@ PPC_vpkuwus
Definition allins.hpp:16154
@ PPC_efdctuidz
Definition allins.hpp:15784
@ PPC_evlwhosu
Definition allins.hpp:16969
@ PPC_evavghu
Definition allins.hpp:17297
@ PPC_vmsumshs
Definition allins.hpp:16130
@ PPC_ddedpdq
Definition allins.hpp:15886
@ PPC_zmhogsian
Definition allins.hpp:18061
@ PPC_vextddvlx
Definition allins.hpp:18614
@ PPC_evsplatfiha
Definition allins.hpp:16863
@ PPC_divd
Definition allins.hpp:15154
@ PPC_evcmpgtu
Definition allins.hpp:15602
@ PPC_evdotp4hgasumia
Definition allins.hpp:16695
@ PPC_zmhogwsmfan
Definition allins.hpp:18077
@ PPC_stmvcsrrw
Definition allins.hpp:16534
@ PPC_evmhosusianw
Definition allins.hpp:17178
@ PPC_msgsndp
Definition allins.hpp:17431
@ PPC_evstdwx
Definition allins.hpp:15747
@ PPC_evnegbs
Definition allins.hpp:16768
@ PPC_zvsplatfih
Definition allins.hpp:17883
@ PPC_dlmzb
Definition allins.hpp:16032
@ PPC_vinsdlx
Definition allins.hpp:18634
@ PPC_byterevh
Definition allins.hpp:17781
@ PPC_nabs
Definition allins.hpp:15540
@ PPC_addic
Definition allins.hpp:15121
@ PPC_tsr
Definition allins.hpp:17426
@ PPC_stbcx
Definition allins.hpp:15866
@ PPC_zmhogsui
Definition allins.hpp:18040
@ PPC_stwcx
Definition allins.hpp:15324
@ PPC_vcmpequh
Definition allins.hpp:16090
@ PPC_efddiv
Definition allins.hpp:15786
@ PPC_evmhogsmfan
Definition allins.hpp:15665
@ PPC_vdivuw
Definition allins.hpp:18608
@ PPC_zvaddhss
Definition allins.hpp:17809
@ PPC_subi
Definition allins.hpp:15416
@ PPC_evsubfhss
Definition allins.hpp:17051
@ PPC_fmuls
Definition allins.hpp:15183
@ PPC_vsbox
Definition allins.hpp:17369
@ PPC_frsqrtes
Definition allins.hpp:15533
@ PPC_evdotp4hxgasmi
Definition allins.hpp:16673
@ PPC_zvmhxluiaas
Definition allins.hpp:18352
@ PPC_zvmhuiaah
Definition allins.hpp:18161
@ PPC_zvmhxluians
Definition allins.hpp:18356
@ PPC_evsad4uba
Definition allins.hpp:17230
@ PPC_lxvdsx
Definition allins.hpp:16211
@ PPC_evaddiw
Definition allins.hpp:15592
@ PPC_ptesync
Definition allins.hpp:16422
@ PPC_stfddx
Definition allins.hpp:15932
@ PPC_zmheogsi
Definition allins.hpp:18035
@ PPC_evmwohgsmfra
Definition allins.hpp:17040
@ PPC_zvmhllsi
Definition allins.hpp:18278
@ PPC_moduw
Definition allins.hpp:17546
@ PPC_mfpmr
Definition allins.hpp:15977
@ PPC_zvcntlsh
Definition allins.hpp:17837
@ PPC_clrrwi
Definition allins.hpp:15499
@ PPC_zvmhxlsi
Definition allins.hpp:18280
@ PPC_isel
Definition allins.hpp:15571
@ PPC_evnand
Definition allins.hpp:15725
@ PPC_evminds
Definition allins.hpp:17292
@ PPC_fctidz
Definition allins.hpp:15172
@ PPC_rfscv
Definition allins.hpp:17551
@ PPC_evabshs
Definition allins.hpp:16758
@ PPC_vsubfp
Definition allins.hpp:16186
@ PPC_zvdotphgasuian
Definition allins.hpp:18381
@ PPC_mtsprg3
Definition allins.hpp:15438
@ PPC_twu
Definition allins.hpp:17314
@ PPC_vaddsbs
Definition allins.hpp:16068
@ PPC_vmulhsd
Definition allins.hpp:18654
@ PPC_evmhegsmian
Definition allins.hpp:15641
@ PPC_pmxvi4ger8
Definition allins.hpp:18531
@ PPC_dtstdgq
Definition allins.hpp:15916
@ PPC_mulhhw
Definition allins.hpp:16021
@ PPC_mcrxr
Definition allins.hpp:15240
@ PPC_evpkswshfrs
Definition allins.hpp:17254
@ PPC_evrlh
Definition allins.hpp:16908
@ PPC_zstwhed
Definition allins.hpp:18018
@ PPC_evadd2subf2hss
Definition allins.hpp:17081
@ PPC_zlwhoud
Definition allins.hpp:17974
@ PPC_lfd
Definition allins.hpp:15209
@ PPC_evsatshub
Definition allins.hpp:16811
@ PPC_crandc
Definition allins.hpp:15140
@ PPC_zvabsh
Definition allins.hpp:17801
@ PPC_vmaxuw
Definition allins.hpp:16111
@ PPC_evsetltbs
Definition allins.hpp:17217
@ PPC_lfddx
Definition allins.hpp:15927
@ PPC_zmwgsiaas
Definition allins.hpp:18180
@ PPC_zvmhxlgwsmfan
Definition allins.hpp:18232
@ PPC_zvsubfaddw
Definition allins.hpp:17906
@ PPC_zvdotphasiaa
Definition allins.hpp:18417
@ PPC_evsumwsaa
Definition allins.hpp:17120
@ PPC_xvredp
Definition allins.hpp:16317
@ PPC_xscvqpdp
Definition allins.hpp:17661
@ PPC_mtocrf
Definition allins.hpp:15567
@ PPC_zmwgsmfr
Definition allins.hpp:18187
@ PPC_mtsr
Definition allins.hpp:15256
@ PPC_evmaxhu
Definition allins.hpp:17279
@ PPC_vsubuqm
Definition allins.hpp:17342
@ PPC_addhss
Definition allins.hpp:17485
@ PPC_evlwhsplat
Definition allins.hpp:15630
@ PPC_zmheogwsmfan
Definition allins.hpp:18076
@ PPC_xxinsertw
Definition allins.hpp:17696
@ PPC_rotrdi
Definition allins.hpp:16407
@ PPC_vupklsb
Definition allins.hpp:16205
@ PPC_xvtlsbb
Definition allins.hpp:18715
@ PPC_cmpli
Definition allins.hpp:15136
@ PPC_zstww
Definition allins.hpp:18026
@ PPC_evaddhus
Definition allins.hpp:17084
@ PPC_zvdotphxgwasmfaa
Definition allins.hpp:18474
@ PPC_zmhogsmf
Definition allins.hpp:18041
@ PPC_orc
Definition allins.hpp:15271
@ PPC_xvbf16ger2np
Definition allins.hpp:18686
@ PPC_evmhosmia
Definition allins.hpp:15675
@ PPC_pmxvf16ger2pn
Definition allins.hpp:18515
@ PPC_evdotpwasusi
Definition allins.hpp:16721
@ PPC_stb
Definition allins.hpp:15296
@ PPC_evdotpwxgssmfaa3
Definition allins.hpp:16562
@ PPC_zvdotphsuiaas
Definition allins.hpp:18463
@ PPC_lwa
Definition allins.hpp:15229
@ PPC_evmhoumianw
Definition allins.hpp:15687
@ PPC_evmbosusianh
Definition allins.hpp:17186
@ PPC_mftb
Definition allins.hpp:15247
@ PPC_xxlorc
Definition allins.hpp:17416
@ PPC_evdotpwasumia
Definition allins.hpp:16739
@ PPC_zlhhoumx
Definition allins.hpp:17949
@ PPC_vexpandqm
Definition allins.hpp:18612
@ PPC_evmhossf
Definition allins.hpp:15678
@ PPC_sth
Definition allins.hpp:15314
@ PPC_zvmhxlsianp
Definition allins.hpp:18300
@ PPC_mftbu
Definition allins.hpp:15454
@ PPC_xxmtacc
Definition allins.hpp:18726
@ PPC_evdotplohcsmiaaw
Definition allins.hpp:16618
@ PPC_evslb
Definition allins.hpp:16899
@ PPC_lxsiwax
Definition allins.hpp:17389
@ PPC_ps_muls0
Definition allins.hpp:16459
@ PPC_evdlveoh
Definition allins.hpp:17272
@ PPC_vxor
Definition allins.hpp:16207
@ PPC_evmbesumi
Definition allins.hpp:17018
@ PPC_zlhhsplat
Definition allins.hpp:17950
@ PPC_evmhosumianw
Definition allins.hpp:17180
@ PPC_evsubfwus
Definition allins.hpp:17078
@ PPC_zvdotphxgasuian
Definition allins.hpp:18382
@ PPC_zvmhulsui
Definition allins.hpp:18281
@ PPC_evlwbsplatwx
Definition allins.hpp:16924
@ PPC_tlbsrx
Definition allins.hpp:15983
@ PPC_mulhss
Definition allins.hpp:17490
@ PPC_zlwwosdmx
Definition allins.hpp:17993
@ PPC_tend
Definition allins.hpp:17420
@ PPC_vpkd3d
Definition allins.hpp:16449
@ PPC_evselbit
Definition allins.hpp:16890
@ PPC_vsumsws
Definition allins.hpp:16200
@ PPC_evnegs
Definition allins.hpp:16766
@ PPC_evlhhesplatx
Definition allins.hpp:15619
@ PPC_evsplatfibo
Definition allins.hpp:16855
@ PPC_addbu
Definition allins.hpp:17773
@ PPC_xxeval
Definition allins.hpp:18720
@ PPC_dnh
Definition allins.hpp:15946
@ PPC_mftbl
Definition allins.hpp:15453
@ PPC_vmsum3fp
Definition allins.hpp:16445
@ PPC_drintnq
Definition allins.hpp:15901
@ PPC_zvdotphgwssmfaa
Definition allins.hpp:18483
@ PPC_efscfsi
Definition allins.hpp:15801
@ PPC_nmachhws
Definition allins.hpp:16028
@ PPC_evmwlusianw
Definition allins.hpp:15708
@ PPC_xscmpgedp
Definition allins.hpp:17686
@ PPC_rotld
Definition allins.hpp:16408
@ PPC_vsrh
Definition allins.hpp:16182
@ PPC_rotlw
Definition allins.hpp:15495
@ PPC_evmbosusiaah
Definition allins.hpp:17156
@ PPC_plha
Definition allins.hpp:18498
@ PPC_sld
Definition allins.hpp:15288
@ PPC_zvsatshuh
Definition allins.hpp:17863
@ PPC_srw
Definition allins.hpp:15295
@ PPC_mfsprg3
Definition allins.hpp:15452
@ PPC_vmulesw
Definition allins.hpp:17346
@ PPC_dcbfep
Definition allins.hpp:15954
@ PPC_vmrghw
Definition allins.hpp:16124
@ PPC_drrnd
Definition allins.hpp:15904
@ PPC_evilveh
Definition allins.hpp:17261
@ PPC_psq_l
Definition allins.hpp:16488
@ PPC_evaddhx
Definition allins.hpp:17052
@ PPC_zvdotphsui
Definition allins.hpp:18451
@ PPC_evabsb
Definition allins.hpp:16753
@ PPC_evmwohgsmfran
Definition allins.hpp:17205
@ PPC_evaddwx
Definition allins.hpp:17090
@ PPC_evlwbos
Definition allins.hpp:16937
@ PPC_zvdotphasfaas
Definition allins.hpp:18401
@ PPC_zvdotphgssmfan
Definition allins.hpp:18396
@ PPC_evstwwomx
Definition allins.hpp:17004
@ PPC_evdiff2his
Definition allins.hpp:17109
@ PPC_evdotpwcssiaaw
Definition allins.hpp:16577
@ PPC_stvxl
Definition allins.hpp:16065
@ PPC_evnot
Definition allins.hpp:16426
@ PPC_evstwwex
Definition allins.hpp:15753
@ PPC_evdotphasumiaaw3
Definition allins.hpp:16640
@ PPC_evsthb
Definition allins.hpp:16945
@ PPC_rlwnm
Definition allins.hpp:15284
@ PPC_tweqi
Definition allins.hpp:15378
@ PPC_evabsds
Definition allins.hpp:16759
@ PPC_evdotphaumia
Definition allins.hpp:16649
@ PPC_evdlvoeb
Definition allins.hpp:17275
@ PPC_dcbstep
Definition allins.hpp:15955
@ PPC_evrnddnw
Definition allins.hpp:16786
@ PPC_zldw
Definition allins.hpp:17930
@ PPC_evminwu
Definition allins.hpp:17289
@ PPC_zmwgsuians
Definition allins.hpp:18183
@ PPC_evsplatfio
Definition allins.hpp:16853
@ PPC_evsthbu
Definition allins.hpp:17007
@ PPC_evpksdswfrs
Definition allins.hpp:17256
@ PPC_zvmhuusuiaas
Definition allins.hpp:18339
@ PPC_evfssum
Definition allins.hpp:16503
@ PPC_zvmhxlsfanps
Definition allins.hpp:18264
@ PPC_xvcvdpuxds
Definition allins.hpp:16269
@ PPC_hnop
Definition allins.hpp:16416
@ PPC_evrlwi
Definition allins.hpp:15731
@ PPC_evpkuwuhs
Definition allins.hpp:17251
@ PPC_zsubfwss
Definition allins.hpp:17911
@ PPC_tlbre
Definition allins.hpp:15514
@ PPC_xscvdpuxds
Definition allins.hpp:16224
@ PPC_evaddsubfh
Definition allins.hpp:17064
@ PPC_zlhhemx
Definition allins.hpp:17941
@ PPC_xscvudqp
Definition allins.hpp:17667
@ PPC_vncipher
Definition allins.hpp:17367
@ PPC_xsrqpxp
Definition allins.hpp:17682
@ PPC_evdotp4hxgssmiaa
Definition allins.hpp:16717
@ PPC_evsubfaddwxss
Definition allins.hpp:17101
@ PPC_pmxvi16ger2spp
Definition allins.hpp:18530
@ PPC_satubu
Definition allins.hpp:17505
@ PPC_lwaux
Definition allins.hpp:15231
@ PPC_evmhesmi
Definition allins.hpp:15648
@ PPC_zvdotphauian
Definition allins.hpp:18421
@ PPC_evmbosmiaah
Definition allins.hpp:17161
@ PPC_evsel
Definition allins.hpp:15733
@ PPC_zabsws
Definition allins.hpp:17804
@ PPC_evmwhssfraaw3
Definition allins.hpp:17165
@ PPC_zmhesian
Definition allins.hpp:18114
@ PPC_vpdepd
Definition allins.hpp:18661
@ PPC_zmheogwsmfran
Definition allins.hpp:18082
@ PPC_zlwhoudu
Definition allins.hpp:17975
@ PPC_zvmhuugwsmfanp
Definition allins.hpp:18239
@ PPC_vextuwrx
Definition allins.hpp:17610
@ PPC_msgsnd
Definition allins.hpp:15952
@ PPC_lxv
Definition allins.hpp:17636
@ PPC_evabsdifsh
Definition allins.hpp:17239
@ PPC_zvdotphasis
Definition allins.hpp:18429
@ PPC_evdotp4hgssmfaa3
Definition allins.hpp:16685
@ PPC_rlwimi
Definition allins.hpp:15282
@ PPC_efscmpeq
Definition allins.hpp:15804
@ PPC_zmhouiaas
Definition allins.hpp:18143
@ PPC_evsplath
Definition allins.hpp:16881
@ PPC_evsrhu
Definition allins.hpp:16903
@ PPC_evmbosmia
Definition allins.hpp:17028
@ PPC_zsatsduw
Definition allins.hpp:17862
@ PPC_efststgt
Definition allins.hpp:15819
@ PPC_lxvrdx
Definition allins.hpp:18562
@ PPC_mtvsrd
Definition allins.hpp:17323
@ PPC_dtstdcq
Definition allins.hpp:15914
@ PPC_vextdubvlx
Definition allins.hpp:18616
@ PPC_vupklsw
Definition allins.hpp:17333
@ PPC_vnmsubfp
Definition allins.hpp:16142
@ PPC_evsplatfida
Definition allins.hpp:16865
@ PPC_zmhosuian
Definition allins.hpp:18122
@ PPC_zvdotphgwssmfran
Definition allins.hpp:18486
@ PPC_xvtdivdp
Definition allins.hpp:16330
@ PPC_rldimi
Definition allins.hpp:15281
@ PPC_evmwssfaa
Definition allins.hpp:15719
@ PPC_zvdotphgasmfaa
Definition allins.hpp:18375
@ PPC_xxspltw
Definition allins.hpp:16344
@ PPC_evlwbsplatwmx
Definition allins.hpp:16964
@ PPC_zvmhsuihs
Definition allins.hpp:18157
@ PPC_evmbeumia
Definition allins.hpp:17024
@ PPC_bc
Definition allins.hpp:15130
@ PPC_efdcfuf
Definition allins.hpp:15772
@ PPC_evlddepx
Definition allins.hpp:15959
@ PPC_evdotpwcssfraaw3
Definition allins.hpp:16555
@ PPC_bne
Definition allins.hpp:15482
@ PPC_efsctuiz
Definition allins.hpp:15812
@ PPC_xsnmsubqp
Definition allins.hpp:17676
@ PPC_vpopcntb
Definition allins.hpp:17382
@ PPC_setbc
Definition allins.hpp:18573
@ PPC_stxsiwx
Definition allins.hpp:17392
@ PPC_eciwx
Definition allins.hpp:15158
@ PPC_evcntlzh
Definition allins.hpp:16793
@ PPC_srliq
Definition allins.hpp:15561
@ PPC_zvmhuihs
Definition allins.hpp:18158
@ PPC_vexpandhm
Definition allins.hpp:18611
@ PPC_evaddwogsf
Definition allins.hpp:17136
@ PPC_xvxsigdp
Definition allins.hpp:17710
@ PPC_xsrdpiz
Definition allins.hpp:16247
@ PPC_xvabssp
Definition allins.hpp:16255
@ PPC_divde
Definition allins.hpp:15852
@ PPC_rfebb
Definition allins.hpp:17428
@ PPC_evunpkhihui
Definition allins.hpp:16799
@ PPC_zlwhsplatwd
Definition allins.hpp:17982
@ PPC_xxspltib
Definition allins.hpp:17699
@ PPC_zvmhuugwsmfranp
Definition allins.hpp:18243
@ PPC_evmhosumia
Definition allins.hpp:17023
@ PPC_zvdotphxgasi
Definition allins.hpp:18364
@ PPC_xscvdpsxds
Definition allins.hpp:16222
@ PPC_evlhhsplath
Definition allins.hpp:16923
@ PPC_eveqv
Definition allins.hpp:15609
@ PPC_plwa
Definition allins.hpp:18501
@ PPC_cmprb
Definition allins.hpp:17533
@ PPC_psq_stx
Definition allins.hpp:16456
@ PPC_stmvsprw
Definition allins.hpp:16530
@ PPC_mfvscr
Definition allins.hpp:16059
@ PPC_evdotphihcssfaaw3
Definition allins.hpp:16599
@ PPC_zlwgsfdx
Definition allins.hpp:17956
@ PPC_mttbu
Definition allins.hpp:15440
@ PPC_evmwhssfaaw
Definition allins.hpp:17168
@ PPC_dccci
Definition allins.hpp:15506
@ PPC_evdotphihcssfr
Definition allins.hpp:16595
@ PPC_zvdotphxgwasmfran
Definition allins.hpp:18480
@ PPC_evcntlsh
Definition allins.hpp:16794
@ PPC_xstsqrtdp
Definition allins.hpp:16253
@ PPC_xsmsubadp
Definition allins.hpp:16234
@ PPC_zvdotphxauiaas
Definition allins.hpp:18434
@ PPC_evsatsbub
Definition allins.hpp:16823
@ PPC_ps_abs
Definition allins.hpp:16482
@ PPC_evstdh
Definition allins.hpp:15744
@ PPC_vextracthm
Definition allins.hpp:18624
@ PPC_subfic
Definition allins.hpp:15331
@ PPC_vmuluwm
Definition allins.hpp:17350
@ PPC_evpkshubs
Definition allins.hpp:17246
@ PPC_xssubsp
Definition allins.hpp:17413
@ PPC_zvmhllsfaas
Definition allins.hpp:18254
@ PPC_zmheosfaas
Definition allins.hpp:18091
@ PPC_pmxvf64gerpp
Definition allins.hpp:18526
@ PPC_tdlei
Definition allins.hpp:15404
@ PPC_evslwi
Definition allins.hpp:15735
@ PPC_xscvqpsdz
Definition allins.hpp:17662
@ PPC_zvsubfwss
Definition allins.hpp:17912
@ PPC_evsubfaddhx
Definition allins.hpp:17070
@ PPC_evmbousianh
Definition allins.hpp:17184
@ PPC_evmbesmianh
Definition allins.hpp:17188
@ PPC_stbwtx
Definition allins.hpp:17748
@ PPC_zrndwhss
Definition allins.hpp:17860
@ PPC_mulhhwu
Definition allins.hpp:16022
@ PPC_zvunpkhsi
Definition allins.hpp:17918
@ PPC_evdotp4hxgssmiaa3
Definition allins.hpp:16691
@ PPC_zvsubfaddwss
Definition allins.hpp:17907
@ PPC_evdotp4hgasmf
Definition allins.hpp:16670
@ PPC_zmheouiaa
Definition allins.hpp:18124
@ PPC_evmhogsmiaa
Definition allins.hpp:15666
@ PPC_evdotpwxgssmf
Definition allins.hpp:16550
@ PPC_vcntmbd
Definition allins.hpp:18593
@ PPC_zmheui
Definition allins.hpp:18108
@ PPC_evmheumianw
Definition allins.hpp:15661
@ PPC_efdsqrt
Definition allins.hpp:17794
@ PPC_zmheogsuian
Definition allins.hpp:18055
@ PPC_evsthbx
Definition allins.hpp:16944
@ PPC_tabort
Definition allins.hpp:17421
@ PPC_ps_madds0
Definition allins.hpp:16461
@ PPC_evextsbh
Definition allins.hpp:16774
@ PPC_zlwwx
Definition allins.hpp:17988
@ PPC_dcblc
Definition allins.hpp:15575
@ PPC_evdotp4hgasmfa
Definition allins.hpp:16696
@ PPC_xxspltiw
Definition allins.hpp:18731
@ PPC_xvcpsgndp
Definition allins.hpp:16264
@ PPC_evdotpwasmiaa3
Definition allins.hpp:16731
@ PPC_evcmplts
Definition allins.hpp:15603
@ PPC_evmbosumi
Definition allins.hpp:17021
@ PPC_stswi
Definition allins.hpp:15320
@ PPC_bdzt
Definition allins.hpp:15474
@ PPC_evdotp4hgssmia
Definition allins.hpp:16697
@ PPC_zlwwosdu
Definition allins.hpp:17991
@ PPC_evmboumianh
Definition allins.hpp:17190
@ PPC_zlhhouu
Definition allins.hpp:17947
@ PPC_dcbt
Definition allins.hpp:15151
@ PPC_evdotpwcssfraaw
Definition allins.hpp:16579
@ PPC_fctiwu
Definition allins.hpp:15990
@ PPC_evdiff2hisa
Definition allins.hpp:17117
@ PPC_evdotpwcssfa
Definition allins.hpp:16568
@ PPC_vlogefp
Definition allins.hpp:16103
@ PPC_mfsprg2
Definition allins.hpp:15451
@ PPC_evabss
Definition allins.hpp:16756
@ PPC_lhbrx
Definition allins.hpp:15221
@ PPC_stvrx
Definition allins.hpp:16364
@ PPC_vcmpbfp
Definition allins.hpp:16087
@ PPC_lqw
Definition allins.hpp:17756
@ PPC_zxtrw
Definition allins.hpp:17921
@ PPC_slbie
Definition allins.hpp:15287
@ PPC_zmheouian
Definition allins.hpp:18127
@ PPC_zvmhsianhs
Definition allins.hpp:18168
@ PPC_vnegd
Definition allins.hpp:17620
@ PPC_vmul10euq
Definition allins.hpp:17616
@ PPC_cmp
Definition allins.hpp:15133
@ PPC_cmphl16i
Definition allins.hpp:16377
@ PPC_efscfuf
Definition allins.hpp:15802
@ PPC_xsrsqrtesp
Definition allins.hpp:17411
@ PPC_zvdotphgssiaa
Definition allins.hpp:18390
@ PPC_vrlimi
Definition allins.hpp:16450
@ PPC_mttbl
Definition allins.hpp:15439
@ PPC_vrfin
Definition allins.hpp:16157
@ PPC_zmhogsuiaa
Definition allins.hpp:18062
@ PPC_evdotpwgasmfra
Definition allins.hpp:16571
@ PPC_last_basic
Definition allins.hpp:15346
@ PPC_vandc
Definition allins.hpp:16078
@ PPC_zvmhuuuians
Definition allins.hpp:18355
@ PPC_zvmhulsuianp
Definition allins.hpp:18309
@ PPC_evdotpwcssfaaw3
Definition allins.hpp:16556
@ PPC_evdotpwssmiaa
Definition allins.hpp:16748
@ PPC_vaddecuq
Definition allins.hpp:17340
@ PPC_stdx
Definition allins.hpp:15304
@ PPC_ldwcb
Definition allins.hpp:17758
@ PPC_zmwsfaas
Definition allins.hpp:18209
@ PPC_evmbeumi
Definition allins.hpp:17016
@ PPC_evstdwmx
Definition allins.hpp:16980
@ PPC_stxvb16x
Definition allins.hpp:17648
@ PPC_evsad4ubaaw
Definition allins.hpp:17242
@ PPC_evslbi
Definition allins.hpp:16901
@ PPC_osmcmd
Definition allins.hpp:17786
@ PPC_xvrsqrtesp
Definition allins.hpp:16325
@ PPC_evstwbou
Definition allins.hpp:16999
@ PPC_evdotphihcssf
Definition allins.hpp:16591
@ PPC_evdlveh
Definition allins.hpp:17270
@ PPC_vdivsw
Definition allins.hpp:18605
@ PPC_xvf64gerpp
Definition allins.hpp:18705
@ PPC_vsubudm
Definition allins.hpp:17341
@ PPC_zlhheu
Definition allins.hpp:17939
@ PPC_treclaim
Definition allins.hpp:17429
@ PPC_lhaux
Definition allins.hpp:15219
@ PPC_vinshlx
Definition allins.hpp:18636
@ PPC_xxland
Definition allins.hpp:16334
@ PPC_evrndwhss
Definition allins.hpp:16779
@ PPC_zvdotphxaui
Definition allins.hpp:18410
@ PPC_dscli
Definition allins.hpp:15907
@ PPC_efststeq
Definition allins.hpp:15818
@ PPC_zvmhllgwsmfranp
Definition allins.hpp:18242
@ PPC_mull2i
Definition allins.hpp:16379
@ PPC_dsncb
Definition allins.hpp:17751
@ PPC_zvdotphssians
Definition allins.hpp:18467
@ PPC_zvmhulgwsmf
Definition allins.hpp:18213
@ PPC_zvdotphssui
Definition allins.hpp:18453
@ PPC_evfsdiff
Definition allins.hpp:16504
@ PPC_addze
Definition allins.hpp:15124
@ PPC_zvmhllsui
Definition allins.hpp:18282
@ PPC_zvmhului
Definition allins.hpp:18285
@ PPC_xxmrgld
Definition allins.hpp:16432
@ PPC_zmheuian
Definition allins.hpp:18126
@ PPC_zldd
Definition allins.hpp:17922
@ PPC_lwdx
Definition allins.hpp:15929
@ PPC_evrndwnh
Definition allins.hpp:16784
@ PPC_evminwpsd
Definition allins.hpp:16836
@ PPC_evdotpwxgasmfra
Definition allins.hpp:16572
@ PPC_evmwsmfa
Definition allins.hpp:15710
@ PPC_nmaclhw
Definition allins.hpp:16029
@ PPC_evmwehgsmfa
Definition allins.hpp:17039
@ PPC_vrlqnm
Definition allins.hpp:18665
@ PPC_xvi16ger2
Definition allins.hpp:18706
@ PPC_sub2is
Definition allins.hpp:16400
@ PPC_efssub
Definition allins.hpp:15817
@ PPC_or2is
Definition allins.hpp:16381
@ PPC_xvcpsgnsp
Definition allins.hpp:16265
@ PPC_zmwlsuians
Definition allins.hpp:18205
@ PPC_vcipherlast
Definition allins.hpp:17366
@ PPC_xxlnand
Definition allins.hpp:17415
@ PPC_efsctui
Definition allins.hpp:15811
@ PPC_vmodud
Definition allins.hpp:18648
@ PPC_evmwlumia
Definition allins.hpp:15704
@ PPC_evsadswa
Definition allins.hpp:17229
@ PPC_zvdotphsuis
Definition allins.hpp:18460
@ PPC_zlhhos
Definition allins.hpp:17942
@ PPC_zmhosui
Definition allins.hpp:18107
@ PPC_evdotpwgasmfr
Definition allins.hpp:16547
@ PPC_zvmhulsfaas
Definition allins.hpp:18253
@ PPC_pmxvf16ger2
Definition allins.hpp:18512
@ PPC_extsb
Definition allins.hpp:15162
@ PPC_extrwi
Definition allins.hpp:15490
@ PPC_xvmindp
Definition allins.hpp:16292
@ PPC_evaddsmiaa
Definition allins.hpp:17046
@ PPC_zvmhuusui
Definition allins.hpp:18283
@ PPC_mtctr
Definition allins.hpp:15429
@ PPC_lbdcbx
Definition allins.hpp:17738
@ PPC_sthx
Definition allins.hpp:15318
@ PPC_evdotphssmia
Definition allins.hpp:16653
@ PPC_addex
Definition allins.hpp:17728
@ PPC_pmxvi16ger2pp
Definition allins.hpp:18528
@ PPC_zmheogsuiaa
Definition allins.hpp:18054
@ PPC_creqv
Definition allins.hpp:15141
@ PPC_vsubsws
Definition allins.hpp:16189
@ PPC_evmwohgsmfaa
Definition allins.hpp:17176
@ PPC_evsad2uh
Definition allins.hpp:17226
@ PPC_zvabshs
Definition allins.hpp:17802
@ PPC_xvdivdp
Definition allins.hpp:16284
@ PPC_subfc
Definition allins.hpp:15329
@ PPC_efsnmsub
Definition allins.hpp:16522
@ PPC_evmaxwu
Definition allins.hpp:17281
@ PPC_zvdotphssuiaas
Definition allins.hpp:18465
@ PPC_evaddhlouw
Definition allins.hpp:17143
@ PPC_zvunpkhsf
Definition allins.hpp:17917
@ PPC_drsp
Definition allins.hpp:15906
@ PPC_evrnddw
Definition allins.hpp:16777
@ PPC_fres
Definition allins.hpp:15190
@ PPC_vaddfp
Definition allins.hpp:16067
@ PPC_zaddhouw
Definition allins.hpp:17821
@ PPC_evlwbouu
Definition allins.hpp:16989
@ PPC_zmwgsmfran
Definition allins.hpp:18191
@ PPC_evdotpwasumiaa
Definition allins.hpp:16747
@ PPC_evsatubsb
Definition allins.hpp:16824
@ PPC_evaddwxus
Definition allins.hpp:17077
@ PPC_evfsmule
Definition allins.hpp:16512
@ PPC_zvmhllsfrans
Definition allins.hpp:18270
@ PPC_xxspltidp
Definition allins.hpp:18730
@ PPC_zmhegsiaa
Definition allins.hpp:18044
@ PPC_bdnzt
Definition allins.hpp:15471
@ PPC_efsdiv
Definition allins.hpp:15813
@ PPC_stvebx
Definition allins.hpp:16061
@ PPC_xsnmaddmdp
Definition allins.hpp:16240
@ PPC_evdivwu
Definition allins.hpp:15608
@ PPC_extsw
Definition allins.hpp:15164
@ PPC_xststdcqp
Definition allins.hpp:17681
@ PPC_vclrlb
Definition allins.hpp:18584
@ PPC_xvf16ger2
Definition allins.hpp:18691
@ PPC_zsubfhesw
Definition allins.hpp:17897
@ PPC_scv
Definition allins.hpp:17550
@ PPC_sc
Definition allins.hpp:15285
@ PPC_evcmpltdu
Definition allins.hpp:16868
@ PPC_insrdi
Definition allins.hpp:16405
@ PPC_evdotp4hgaumiaa3
Definition allins.hpp:16680
@ PPC_vavguh
Definition allins.hpp:16083
@ PPC_vmhraddshs
Definition allins.hpp:16113
@ PPC_xviexpsp
Definition allins.hpp:17694
@ PPC_zvmhxlsian
Definition allins.hpp:18296
@ PPC_pmxvi8ger4pp
Definition allins.hpp:18534
@ PPC_evaddwxss
Definition allins.hpp:17091
@ PPC_evmboumi
Definition allins.hpp:17019
@ PPC_evstwbox
Definition allins.hpp:16940
@ PPC_xvi16ger2s
Definition allins.hpp:18708
@ PPC_dsn
Definition allins.hpp:15924
@ PPC_evmwsmf
Definition allins.hpp:15709
@ PPC_evsum2huaaw
Definition allins.hpp:17123
@ PPC_evswaphhi
Definition allins.hpp:16876
@ PPC_stfsu
Definition allins.hpp:15311
@ PPC_clrlsldi
Definition allins.hpp:16413
@ PPC_zvdotphasuiaas
Definition allins.hpp:18437
@ PPC_sthux
Definition allins.hpp:15317
@ PPC_evmhesumi
Definition allins.hpp:17014
@ PPC_evsplatfia
Definition allins.hpp:16859
@ PPC_rfmci
Definition allins.hpp:15937
@ PPC_vinshvlx
Definition allins.hpp:18638
@ PPC_vsld
Definition allins.hpp:17362
@ PPC_zvdotphxasfans
Definition allins.hpp:18404
@ PPC_fcfids
Definition allins.hpp:15985
@ PPC_bdnzf
Definition allins.hpp:15472
@ PPC_dtstsfq
Definition allins.hpp:15920
@ PPC_diex
Definition allins.hpp:15891
@ PPC_evfsnabs
Definition allins.hpp:15841
@ PPC_evmwlumiaaw
Definition allins.hpp:15705
@ PPC_dscriq
Definition allins.hpp:15910
@ PPC_evlwhosx
Definition allins.hpp:15627
@ PPC_mtsprg0
Definition allins.hpp:15435
@ PPC_lvrx
Definition allins.hpp:16360
@ PPC_abssh
Definition allins.hpp:17512
@ PPC_xsmincqp
Definition allins.hpp:18683
@ PPC_zvdotphxgauian
Definition allins.hpp:18378
@ PPC_evstwbe
Definition allins.hpp:16939
@ PPC_rldic
Definition allins.hpp:15278
@ PPC_evmaxbpuh
Definition allins.hpp:16827
@ PPC_zvsubfaddh
Definition allins.hpp:17889
@ PPC_evavgws
Definition allins.hpp:17294
@ PPC_evfsmax
Definition allins.hpp:16499
@ PPC_evaddib
Definition allins.hpp:16750
@ PPC_evsubfssiaaw
Definition allins.hpp:15757
@ PPC_vcmpnezh
Definition allins.hpp:17589
@ PPC_twlgti
Definition allins.hpp:15376
@ PPC_extzh
Definition allins.hpp:16392
@ PPC_mbar
Definition allins.hpp:15936
@ PPC_evstwb
Definition allins.hpp:16943
@ PPC_zlhhosmx
Definition allins.hpp:17945
@ PPC_zlwgsfdmx
Definition allins.hpp:17957
@ PPC_evmwlssianw
Definition allins.hpp:15702
@ PPC_rldicr
Definition allins.hpp:15280
@ PPC_zvdotphgauian
Definition allins.hpp:18377
@ PPC_zvaddhx
Definition allins.hpp:17811
@ PPC_tw
Definition allins.hpp:15340
@ PPC_zmwlsuiaas
Definition allins.hpp:18202
@ PPC_zsatuwsw
Definition allins.hpp:17869
@ PPC_evaddusiaaw
Definition allins.hpp:15596
@ PPC_dcbtt
Definition allins.hpp:16419
@ PPC_evdotpbasumi
Definition allins.hpp:16677
@ PPC_evdotpwxgssmfr
Definition allins.hpp:16552
@ PPC_zmheouians
Definition allins.hpp:18145
@ PPC_zvdotphgssmf
Definition allins.hpp:18388
@ PPC_zvdotphgwssmfr
Definition allins.hpp:18482
@ PPC_lxssp
Definition allins.hpp:17633
@ PPC_evsubfwx
Definition allins.hpp:17092
@ PPC_dcblq
Definition allins.hpp:17433
@ PPC_btsti
Definition allins.hpp:16390
@ PPC_evlhhossplatu
Definition allins.hpp:16961
@ PPC_and2is
Definition allins.hpp:16372
@ PPC_zmhesf
Definition allins.hpp:18084
@ PPC_lfsux
Definition allins.hpp:15215
@ PPC_dni
Definition allins.hpp:17522
@ PPC_evsatswuw
Definition allins.hpp:16821
@ PPC_lfdepx
Definition allins.hpp:15963
@ PPC_tdui
Definition allins.hpp:17311
@ PPC_dxex
Definition allins.hpp:15921
@ PPC_zvmhulsfrans
Definition allins.hpp:18269
@ PPC_evmbesusiaah
Definition allins.hpp:17153
@ PPC_mtcr
Definition allins.hpp:16427
@ PPC_rfi
Definition allins.hpp:15274
@ PPC_lhepx
Definition allins.hpp:15964
@ PPC_setnbc
Definition allins.hpp:18575
@ PPC_evunpkhibsi
Definition allins.hpp:16798
@ PPC_evdotplohcssfraaw
Definition allins.hpp:16620
@ PPC_zldh
Definition allins.hpp:17926
@ PPC_xxmrghd
Definition allins.hpp:16431
@ PPC_cmpi
Definition allins.hpp:15134
@ PPC_evstdhu
Definition allins.hpp:16983
@ PPC_vminuw
Definition allins.hpp:16120
@ PPC_mtdar
Definition allins.hpp:15431
@ PPC_ps_merge00
Definition allins.hpp:16483
@ PPC_evdotpwgssmfaa3
Definition allins.hpp:16561
@ PPC_vpextd
Definition allins.hpp:18662
@ PPC_mulli
Definition allins.hpp:15265
@ PPC_vminuh
Definition allins.hpp:16119
@ PPC_evswapbhilo
Definition allins.hpp:16871
@ PPC_evperm3
Definition allins.hpp:16893
@ PPC_zmhosfaas
Definition allins.hpp:18092
@ PPC_vsraw
Definition allins.hpp:16180
@ PPC_evdotphihcssfraaw
Definition allins.hpp:16619
@ PPC_evavgwur
Definition allins.hpp:17301
@ PPC_mfvsrd
Definition allins.hpp:17321
@ PPC_vabsduw
Definition allins.hpp:17582
@ PPC_zvmergeloh
Definition allins.hpp:17843
@ PPC_ble
Definition allins.hpp:15478
@ PPC_evldd
Definition allins.hpp:15612
@ PPC_evfsctuf
Definition allins.hpp:15836
@ PPC_vmaddfp
Definition allins.hpp:16104
@ PPC_tdu
Definition allins.hpp:17312
@ PPC_lvepxl
Definition allins.hpp:15966
@ PPC_evmhessfanw
Definition allins.hpp:15655
@ PPC_slbmte
Definition allins.hpp:15548
@ PPC_stfiwx
Definition allins.hpp:15309
@ PPC_xsxsigqp
Definition allins.hpp:17680
@ PPC_vmsumshm
Definition allins.hpp:16129
@ PPC_vcfux
Definition allins.hpp:16086
@ PPC_zsubfwgsf
Definition allins.hpp:17908
@ PPC_divdeu
Definition allins.hpp:15853
@ PPC_plq
Definition allins.hpp:18500
@ PPC_vpksdus
Definition allins.hpp:17329
@ PPC_evsubfw
Definition allins.hpp:15760
@ PPC_mffscrni
Definition allins.hpp:17734
@ PPC_addi
Definition allins.hpp:15120
@ PPC_cdtbcd
Definition allins.hpp:15871
@ PPC_crxor
Definition allins.hpp:15146
@ PPC_stxvw4x
Definition allins.hpp:16215
@ PPC_zvmhlluian
Definition allins.hpp:18318
@ PPC_zlwhsplatdx
Definition allins.hpp:17980
@ PPC_zmheoui
Definition allins.hpp:18109
@ PPC_vcmpgtud
Definition allins.hpp:17357
@ PPC_evstwbomx
Definition allins.hpp:16998
@ PPC_zmhesfrans
Definition allins.hpp:18099
@ PPC_zlwhgwsfdmx
Definition allins.hpp:17969
@ PPC_zvdotphauiaas
Definition allins.hpp:18433
@ PPC_xvcvbf16spn
Definition allins.hpp:18689
@ PPC_vminub
Definition allins.hpp:16118
@ PPC_zvpkswshfrs
Definition allins.hpp:17853
@ PPC_vmulouw
Definition allins.hpp:17349
@ PPC_zmhegwsmfr
Definition allins.hpp:18069
@ PPC_extsh
Definition allins.hpp:15163
@ PPC_evdotphassfaaw
Definition allins.hpp:16658
@ PPC_zmhosians
Definition allins.hpp:18134
@ PPC_pstw
Definition allins.hpp:18543
@ PPC_zldwx
Definition allins.hpp:17932
@ PPC_xvi4ger8pp
Definition allins.hpp:18711
@ PPC_xvmovsp
Definition allins.hpp:16429
@ PPC_mfdar
Definition allins.hpp:15445
@ PPC_zaddhesw
Definition allins.hpp:17818
@ PPC_stbdx
Definition allins.hpp:15930
@ PPC_zvdotphgssmfaa
Definition allins.hpp:18392
@ PPC_zvdotphxauiaa
Definition allins.hpp:18416
@ PPC_zmwgsian
Definition allins.hpp:18175
@ PPC_zlwgsfdu
Definition allins.hpp:17955
@ PPC_evilvlohih
Definition allins.hpp:17266
@ PPC_tdne
Definition allins.hpp:15395
@ PPC_prtyd
Definition allins.hpp:15855
@ PPC_zstwhedx
Definition allins.hpp:18020
@ PPC_mftmr
Definition allins.hpp:15980
@ PPC_evmbosmianh
Definition allins.hpp:17191
@ PPC_mttmr
Definition allins.hpp:15981
@ PPC_stwux
Definition allins.hpp:15326
@ PPC_xvsqrtdp
Definition allins.hpp:16326
@ PPC_zvslhi
Definition allins.hpp:17874
@ PPC_zvmhsuianhs
Definition allins.hpp:18169
@ PPC_zmheuiaa
Definition allins.hpp:18123
@ PPC_stdat
Definition allins.hpp:17558
@ PPC_bcdtrunc
Definition allins.hpp:17577
@ PPC_vsubuhm
Definition allins.hpp:16192
@ PPC_zmwsfr
Definition allins.hpp:18208
@ PPC_zvmhulsfans
Definition allins.hpp:18257
@ PPC_mcrxrx
Definition allins.hpp:17541
@ PPC_vpermxor
Definition allins.hpp:17376
@ PPC_psq_lx
Definition allins.hpp:16455
@ PPC_evrnddwus
Definition allins.hpp:16782
@ PPC_evlwboumx
Definition allins.hpp:16988
@ PPC_zvaddsubfw
Definition allins.hpp:17823
@ PPC_evstwweu
Definition allins.hpp:17001
@ PPC_xvcvspuxws
Definition allins.hpp:16275
@ PPC_evmhosmianw
Definition allins.hpp:15677
@ PPC_mtsrin
Definition allins.hpp:15259
@ PPC_zlwhx
Definition allins.hpp:17960
@ PPC_xsnegdp
Definition allins.hpp:16238
@ PPC_bgeni
Definition allins.hpp:16387
@ PPC_evdotplohcssi
Definition allins.hpp:16590
@ PPC_fsqrt
Definition allins.hpp:15194
@ PPC_plhz
Definition allins.hpp:18499
@ PPC_xvcmpgedp
Definition allins.hpp:16260
@ PPC_xvnmsubmdp
Definition allins.hpp:16310
@ PPC_sldi
Definition allins.hpp:16409
@ PPC_sre
Definition allins.hpp:15557
@ PPC_stdwbrw
Definition allins.hpp:17763
@ PPC_evfscmplt
Definition allins.hpp:15832
@ PPC_evdotpwassiaa
Definition allins.hpp:16742
@ PPC_evlwhsplatmx
Definition allins.hpp:16974
@ PPC_evsplatfiba
Definition allins.hpp:16861
@ PPC_stxvd2x
Definition allins.hpp:16214
@ PPC_evavghs
Definition allins.hpp:17298
@ PPC_ordhwaccel
Definition allins.hpp:17784
@ PPC_evdotphausi
Definition allins.hpp:16621
@ PPC_vmuleud
Definition allins.hpp:18653
@ PPC_lvsr
Definition allins.hpp:16056
@ PPC_vinsdrx
Definition allins.hpp:18635
@ PPC_ldarx
Definition allins.hpp:15205
@ PPC_vcmpgtuw
Definition allins.hpp:16099
@ PPC_brinc
Definition allins.hpp:15590
@ PPC_stbcix
Definition allins.hpp:16046
@ PPC_evaddd
Definition allins.hpp:17056
@ PPC_msgclru
Definition allins.hpp:18488
@ PPC_evabsh
Definition allins.hpp:16754
@ PPC_evlwhsplatx
Definition allins.hpp:15631
@ PPC_evlwbex
Definition allins.hpp:16932
@ PPC_evfststgt
Definition allins.hpp:15845
@ PPC_frip
Definition allins.hpp:16004
@ PPC_evmbeumianh
Definition allins.hpp:17187
@ PPC_fmrgew
Definition allins.hpp:17326
@ PPC_evfssumdiff
Definition allins.hpp:16505
@ PPC_evmheumi
Definition allins.hpp:15658
@ PPC_efssqrt
Definition allins.hpp:16520
@ PPC_lmvcsrrw
Definition allins.hpp:16533
@ PPC_zvdotphasfrans
Definition allins.hpp:18407
@ PPC_xori
Definition allins.hpp:15343
@ PPC_psq_lux
Definition allins.hpp:16475
@ PPC_zmwlsuis
Definition allins.hpp:18193
@ PPC_pstq
Definition allins.hpp:18542
@ PPC_evlwbe
Definition allins.hpp:16933
@ PPC_mtppr
Definition allins.hpp:17442
@ PPC_dctfixqq
Definition allins.hpp:18557
@ PPC_evsumwua
Definition allins.hpp:17111
@ PPC_zlwwosd
Definition allins.hpp:17990
@ PPC_bcdcpsgn
Definition allins.hpp:17573
@ PPC_evneg
Definition allins.hpp:15726
@ PPC_efdsub
Definition allins.hpp:15790
@ PPC_vclzd
Definition allins.hpp:17381
@ PPC_zvaddsubfhss
Definition allins.hpp:17815
@ PPC_vstribr
Definition allins.hpp:18672
@ PPC_evsadswaa
Definition allins.hpp:17241
@ PPC_zvdotphssfrs
Definition allins.hpp:18446
@ PPC_evmaxwpud
Definition allins.hpp:16829
@ PPC_zldhmx
Definition allins.hpp:17929
@ PPC_lwz
Definition allins.hpp:15234
@ PPC_vnand
Definition allins.hpp:17359
@ PPC_tlbsync
Definition allins.hpp:15339
@ PPC_dcread
Definition allins.hpp:15507
@ PPC_evsroiu
Definition allins.hpp:16917
@ PPC_subfwus
Definition allins.hpp:17500
@ PPC_evnegwos
Definition allins.hpp:16767
@ PPC_fcmpu
Definition allins.hpp:15170
@ PPC_evmwlumiaaw3
Definition allins.hpp:17169
@ PPC_pmxvf64gernn
Definition allins.hpp:18523
@ PPC_mtvsrwa
Definition allins.hpp:17324
@ PPC_xvmuldp
Definition allins.hpp:16298
@ PPC_evunpklobsi
Definition allins.hpp:16802
@ PPC_zvdotphasfans
Definition allins.hpp:18403
@ PPC_fsqrts
Definition allins.hpp:15195
@ PPC_lvxl
Definition allins.hpp:16058
@ PPC_evmwlusianw3
Definition allins.hpp:17193
@ PPC_xvcvdpuxws
Definition allins.hpp:16270
@ PPC_evunpklohf
Definition allins.hpp:16805
@ PPC_mfvsrwz
Definition allins.hpp:17322
@ PPC_fctiwz
Definition allins.hpp:15174
@ PPC_twui
Definition allins.hpp:17313
@ PPC_vadduhs
Definition allins.hpp:16074
@ PPC_vcmpgtsd
Definition allins.hpp:17356
@ PPC_evdotpwxgasmfraa
Definition allins.hpp:16584
@ PPC_mtdcr
Definition allins.hpp:15512
@ PPC_xvmaddadp
Definition allins.hpp:16286
@ PPC_evaddwegsf
Definition allins.hpp:17132
@ PPC_zvmhulsfraas
Definition allins.hpp:18265
@ PPC_evdotp4hgaumi
Definition allins.hpp:16667
@ PPC_dmulq
Definition allins.hpp:15894
@ PPC_evaddumiaaw
Definition allins.hpp:15595
@ PPC_evdotphihcssfraaw3
Definition allins.hpp:16603
@ PPC_evaddssiaaw
Definition allins.hpp:15594
@ PPC_zvdotphgwasmfaa
Definition allins.hpp:18473
@ PPC_evstwwemx
Definition allins.hpp:17000
@ PPC_zsubfdus
Definition allins.hpp:17895
@ PPC_dcmpu
Definition allins.hpp:15879
@ PPC_vmsum4fp
Definition allins.hpp:16446
@ PPC_srwi
Definition allins.hpp:15497
@ PPC_twlgt
Definition allins.hpp:15366
@ PPC_addhus
Definition allins.hpp:17488
@ PPC_zvmhuuuianps
Definition allins.hpp:18359
@ PPC_zvdotphxasuian
Definition allins.hpp:18426
@ PPC_divs
Definition allins.hpp:15530
@ PPC_vmul10cuq
Definition allins.hpp:17617
@ PPC_vcmpneh
Definition allins.hpp:17588
@ PPC_icbiep
Definition allins.hpp:15961
@ PPC_evsplatihe
Definition allins.hpp:16844
@ PPC_evseteqb
Definition allins.hpp:17207
@ PPC_fmadds
Definition allins.hpp:15178
@ PPC_evmhegumian
Definition allins.hpp:15643
@ PPC_zsubfhosw
Definition allins.hpp:17899
@ PPC_vpopcntd
Definition allins.hpp:17383
@ PPC_evsetgtbu
Definition allins.hpp:17214
@ PPC_vcmpgtsq
Definition allins.hpp:18588
@ PPC_lfsx
Definition allins.hpp:15216
@ PPC_evmwhssfanw3
Definition allins.hpp:17196
@ PPC_ps_merge11
Definition allins.hpp:16486
@ PPC_xxleqv
Definition allins.hpp:17414
@ PPC_tresume
Definition allins.hpp:17441
@ PPC_zvslhus
Definition allins.hpp:17877
@ PPC_extzb
Definition allins.hpp:16391
@ PPC_mtdcrx
Definition allins.hpp:15944
@ PPC_tlbld
Definition allins.hpp:15585
@ PPC_evmwlusiaaw
Definition allins.hpp:15707
@ PPC_evmwehgsmfra
Definition allins.hpp:17038
@ PPC_evdotphausiaaw3
Definition allins.hpp:16632
@ PPC_sthbr
Definition allins.hpp:17769
@ PPC_evsrwu
Definition allins.hpp:15741
@ PPC_vinsd
Definition allins.hpp:18633
@ PPC_vmulhsw
Definition allins.hpp:18655
@ PPC_zlhhsplatu
Definition allins.hpp:17951
@ PPC_zvdotphgwssmfan
Definition allins.hpp:18484
@ PPC_evsplatih
Definition allins.hpp:16843
@ PPC_evaddsubfw
Definition allins.hpp:17094
@ PPC_evlvsl
Definition allins.hpp:16915
@ PPC_evsplatiea
Definition allins.hpp:16847
@ PPC_bdzf
Definition allins.hpp:15475
@ PPC_evsrbiu
Definition allins.hpp:16897
@ PPC_zvcmplthu
Definition allins.hpp:17836
@ PPC_xsmindp
Definition allins.hpp:16233
@ PPC_cmpd
Definition allins.hpp:15357
@ PPC_evmbesmiaah
Definition allins.hpp:17158
@ PPC_xvf32gernp
Definition allins.hpp:18698
@ PPC_zstddu
Definition allins.hpp:17995
@ PPC_vor
Definition allins.hpp:16144
@ PPC_xssqrtdp
Definition allins.hpp:16250
@ PPC_pstb
Definition allins.hpp:18537
@ PPC_mtpmr
Definition allins.hpp:15978
@ PPC_efscfsf
Definition allins.hpp:15800
@ PPC_zvaddsubfwss
Definition allins.hpp:17824
@ PPC_pdepd
Definition allins.hpp:18571
@ PPC_zmwgsians
Definition allins.hpp:18181
@ PPC_psth
Definition allins.hpp:18541
@ PPC_efsmsub
Definition allins.hpp:16519
@ PPC_vrlw
Definition allins.hpp:16162
@ PPC_xoris
Definition allins.hpp:15344
@ PPC_evseteqw
Definition allins.hpp:17209
@ PPC_mtvsrdm
Definition allins.hpp:18567
@ PPC_stswx
Definition allins.hpp:15321
@ PPC_xxlor
Definition allins.hpp:16337
@ PPC_vcmpgtsw
Definition allins.hpp:16096
@ PPC_evdotpwgasmfa
Definition allins.hpp:16569
@ PPC_zlhhoux
Definition allins.hpp:17948
@ PPC_vmladduhm
Definition allins.hpp:16121
@ PPC_twi
Definition allins.hpp:15341
@ PPC_evdotpwausiaa
Definition allins.hpp:16741
@ PPC_evslw
Definition allins.hpp:15734
@ PPC_zvmhxlgwsmf
Definition allins.hpp:18216
@ PPC_mfvsrld
Definition allins.hpp:17547
@ PPC_zmhegsmfan
Definition allins.hpp:18049
@ PPC_evrlb
Definition allins.hpp:16900
@ PPC_twgt
Definition allins.hpp:15371
@ PPC_evmhousiaaw
Definition allins.hpp:15688
@ PPC_zvmhsfrh
Definition allins.hpp:18148
@ PPC_twlle
Definition allins.hpp:15370
@ PPC_pmxvf32gernn
Definition allins.hpp:18518
@ PPC_evand
Definition allins.hpp:15598
@ PPC_evsli
Definition allins.hpp:16839
@ PPC_zvdotphasui
Definition allins.hpp:18413
@ PPC_evlhhossplatmx
Definition allins.hpp:16960
@ PPC_evsetlths
Definition allins.hpp:17219
@ PPC_bdz
Definition allins.hpp:15473
@ PPC_twllei
Definition allins.hpp:15380
@ PPC_evdotphasmia
Definition allins.hpp:16650
@ PPC_sleq
Definition allins.hpp:15550
@ PPC_crclr
Definition allins.hpp:15425
@ PPC_evstwbu
Definition allins.hpp:17003
@ PPC_zvdotphxasfrs
Definition allins.hpp:18400
@ PPC_mulhwu
Definition allins.hpp:15263
@ PPC_zvmhuuuianp
Definition allins.hpp:18323
@ PPC_cntlzw
Definition allins.hpp:15138
@ PPC_xscvspdp
Definition allins.hpp:16226
@ PPC_machhwu
Definition allins.hpp:16014
@ PPC_zmwgsmf
Definition allins.hpp:18186
@ PPC_lnia
Definition allins.hpp:17530
@ PPC_zvdotphgssuiaa
Definition allins.hpp:18391
@ PPC_ehpriv
Definition allins.hpp:15948
@ PPC_ecowx
Definition allins.hpp:15159
@ PPC_dstst
Definition allins.hpp:16354
@ PPC_zsthemx
Definition allins.hpp:18009
@ PPC_macchwu
Definition allins.hpp:16010
@ PPC_mfdcrux
Definition allins.hpp:15941
@ PPC_zvdotphxasuiaas
Definition allins.hpp:18438
@ PPC_mffsce
Definition allins.hpp:17730
@ PPC_stw
Definition allins.hpp:15322
@ PPC_xvmovdp
Definition allins.hpp:16428
@ PPC_xvmsubmdp
Definition allins.hpp:16296
@ PPC_vrfip
Definition allins.hpp:16158
@ PPC_plbz
Definition allins.hpp:18494
@ PPC_vmaxsd
Definition allins.hpp:17351
@ PPC_mul
Definition allins.hpp:15539
@ PPC_add
Definition allins.hpp:15117
@ PPC_bcdus
Definition allins.hpp:17575
@ PPC_evadd2subf2h
Definition allins.hpp:17080
@ PPC_vctzdm
Definition allins.hpp:18596
@ PPC_divdu
Definition allins.hpp:15155
@ PPC_evmergelo
Definition allins.hpp:15636
@ PPC_pmxvf32gerpp
Definition allins.hpp:18521
@ PPC_evdotphsssfaaw3
Definition allins.hpp:16637
@ PPC_zvdotphasfraas
Definition allins.hpp:18405
@ PPC_lxvp
Definition allins.hpp:18559
@ PPC_evilvloh
Definition allins.hpp:17265
@ PPC_zmwgsui
Definition allins.hpp:18172
@ PPC_evilvoh
Definition allins.hpp:17268
@ PPC_xstdivdp
Definition allins.hpp:16252
@ PPC_tdle
Definition allins.hpp:15394
@ PPC_zslwiss
Definition allins.hpp:17880
@ PPC_evmbesmi
Definition allins.hpp:17017
@ PPC_mfsrr0
Definition allins.hpp:15447
@ PPC_inslwi
Definition allins.hpp:15491
@ PPC_zvneghos
Definition allins.hpp:17847
@ PPC_efdadd
Definition allins.hpp:15767
@ PPC_efscfd
Definition allins.hpp:15794
@ PPC_zvsrhiu
Definition allins.hpp:17886
@ PPC_evldh
Definition allins.hpp:15614
@ PPC_zmheosfr
Definition allins.hpp:18088
@ PPC_lvebx
Definition allins.hpp:16052
@ PPC_tlbilx
Definition allins.hpp:15938
@ PPC_xscvdpuxws
Definition allins.hpp:16225
@ PPC_lbzx
Definition allins.hpp:15203
@ PPC_evminbpuh
Definition allins.hpp:16833
@ PPC_evavghur
Definition allins.hpp:17305
@ PPC_xscmpexpdp
Definition allins.hpp:17685
@ PPC_zvmhuuui
Definition allins.hpp:18287
@ PPC_zvmhuusfr
Definition allins.hpp:18251
@ PPC_sync
Definition allins.hpp:15334
@ PPC_zstdd
Definition allins.hpp:17994
@ PPC_xvsqrtsp
Definition allins.hpp:16327
@ PPC_frsqrte
Definition allins.hpp:15192
@ PPC_paste
Definition allins.hpp:17555
@ PPC_vprtybd
Definition allins.hpp:17623
@ PPC_lxvx
Definition allins.hpp:17642
@ PPC_lxvrhx
Definition allins.hpp:18563
@ PPC_vcmpequw
Definition allins.hpp:16091
@ PPC_mullw
Definition allins.hpp:15266
@ PPC_zlwwmx
Definition allins.hpp:17989
@ PPC_stmvdsrrw
Definition allins.hpp:16536
@ PPC_xvminsp
Definition allins.hpp:16293
@ PPC_vextsd2q
Definition allins.hpp:18627
@ PPC_zvdotphsuiaa
Definition allins.hpp:18454
@ PPC_evsplatfihoa
Definition allins.hpp:16864
@ PPC_evabsdifsb
Definition allins.hpp:17237
@ PPC_evdotp4hxgasmfa
Definition allins.hpp:16700
@ PPC_xsmsubmsp
Definition allins.hpp:17403
@ PPC_zvpkuwuhs
Definition allins.hpp:17856
@ PPC_vmaxsw
Definition allins.hpp:16108
@ PPC_zmwlsiaa
Definition allins.hpp:18195
@ PPC_zmhosian
Definition allins.hpp:18116
@ PPC_evavgdsr
Definition allins.hpp:17308
@ PPC_evsetgtws
Definition allins.hpp:17213
@ PPC_evmhegsmfan
Definition allins.hpp:15639
@ PPC_ftdiv
Definition allins.hpp:15992
@ PPC_vmhaddshs
Definition allins.hpp:16112
@ PPC_evfsmulo
Definition allins.hpp:16513
@ PPC_efdctui
Definition allins.hpp:15783
@ PPC_evsplatfib
Definition allins.hpp:16854
@ PPC_zmheosui
Definition allins.hpp:18106
@ PPC_stwbr
Definition allins.hpp:17768
@ PPC_zvmhulsians
Definition allins.hpp:18329
@ PPC_evdlveob
Definition allins.hpp:17271
@ PPC_cmpl16i
Definition allins.hpp:16378
@ PPC_crmove
Definition allins.hpp:15424
@ PPC_stxvpx
Definition allins.hpp:18578
@ PPC_trechkpt
Definition allins.hpp:17430
@ PPC_cmpeqb
Definition allins.hpp:17532
@ PPC_ps_mul
Definition allins.hpp:16468
@ PPC_zlwhu
Definition allins.hpp:17959
@ PPC_vaddsws
Definition allins.hpp:16070
@ PPC_andc
Definition allins.hpp:15126
@ PPC_vadduwm
Definition allins.hpp:16075
@ PPC_vextduhvlx
Definition allins.hpp:18618
@ PPC_evsum2hisaaw
Definition allins.hpp:17126
@ PPC_bns
Definition allins.hpp:15484
@ PPC_evlhhousplatx
Definition allins.hpp:15623
@ PPC_vbpermq
Definition allins.hpp:17386
@ PPC_evdiff2hisaaw
Definition allins.hpp:17125
@ PPC_vcfpuxws
Definition allins.hpp:16441
@ PPC_cror
Definition allins.hpp:15144
@ PPC_evlhhossplatx
Definition allins.hpp:15621
@ PPC_ps_madd
Definition allins.hpp:16471
@ PPC_vclzw
Definition allins.hpp:17380
@ PPC_zvdotphxasian
Definition allins.hpp:18424
@ PPC_zmhegsuiaa
Definition allins.hpp:18046
@ PPC_lbarx
Definition allins.hpp:15861
@ PPC_zmhogsi
Definition allins.hpp:18039
@ PPC_lxsihzx
Definition allins.hpp:17635
@ PPC_evsum4bsa
Definition allins.hpp:17114
@ PPC_evmheumia
Definition allins.hpp:15659
@ PPC_evdotphasusiaaw3
Definition allins.hpp:16634
@ PPC_xsdivdp
Definition allins.hpp:16229
@ PPC_stfdu
Definition allins.hpp:15306
@ PPC_vmrglb
Definition allins.hpp:16125
@ PPC_mtvtb
Definition allins.hpp:17448
@ PPC_zlwhsplatwdx
Definition allins.hpp:17984
@ PPC_zvmhsfanhs
Definition allins.hpp:18150
@ PPC_addme
Definition allins.hpp:15123
@ PPC_evdotphausia
Definition allins.hpp:16644
@ PPC_nmaclhws
Definition allins.hpp:16030
@ PPC_vsel
Definition allins.hpp:16164
@ PPC_vsro
Definition allins.hpp:16183
@ PPC_evmaxwpsd
Definition allins.hpp:16830
@ PPC_xxlxor
Definition allins.hpp:16338
@ PPC_vspltisw
Definition allins.hpp:16175
@ PPC_mffscdrn
Definition allins.hpp:17731
@ PPC_evsrwis
Definition allins.hpp:15738
@ PPC_evmhosmfanw
Definition allins.hpp:15673
@ PPC_evsplatfioa
Definition allins.hpp:16860
@ PPC_cnttzw
Definition allins.hpp:17534
@ PPC_zvmhuusian
Definition allins.hpp:18295
@ PPC_xvmulsp
Definition allins.hpp:16299
@ PPC_xvcvhpsp
Definition allins.hpp:17716
@ PPC_evmwusiw
Definition allins.hpp:17030
@ PPC_evcmpeqd
Definition allins.hpp:16870
@ PPC_evmaxbs
Definition allins.hpp:17278
@ PPC_zsatuduw
Definition allins.hpp:17867
@ PPC_zmwluians
Definition allins.hpp:18206
@ PPC_evsum2his
Definition allins.hpp:17110
@ PPC_mdoio
Definition allins.hpp:17451
@ PPC_zlwhsplatdmx
Definition allins.hpp:17981
@ PPC_vextsh2d
Definition allins.hpp:17603
@ PPC_zlwhsplatwdmx
Definition allins.hpp:17985
@ PPC_evmbesumiaah
Definition allins.hpp:17159
@ PPC_mtmsrd
Definition allins.hpp:15254
@ PPC_icblc
Definition allins.hpp:15578
@ PPC_evsplatb
Definition allins.hpp:16882
@ PPC_evminws
Definition allins.hpp:17290
@ PPC_fctiduz
Definition allins.hpp:15989
@ PPC_sub
Definition allins.hpp:16396
@ PPC_stxvx
Definition allins.hpp:17652
@ PPC_efdtstlt
Definition allins.hpp:15793
@ PPC_zmhegwsmfran
Definition allins.hpp:18081
@ PPC_zvmhxlsuianps
Definition allins.hpp:18348
@ PPC_mfsr
Definition allins.hpp:15245
@ PPC_evmhesusianw
Definition allins.hpp:17177
@ PPC_mulchw
Definition allins.hpp:16019
@ PPC_lxvpx
Definition allins.hpp:18560
@ PPC_evmhogsmian
Definition allins.hpp:15667
@ PPC_evsatswuh
Definition allins.hpp:16815
@ PPC_evfsctuiz
Definition allins.hpp:15838
@ PPC_zstdwu
Definition allins.hpp:18003
@ PPC_null
Definition allins.hpp:15116
@ PPC_zvslhius
Definition allins.hpp:17878
@ PPC_evmwlsmiaaw
Definition allins.hpp:15699
@ PPC_divw
Definition allins.hpp:15156
@ PPC_mulwss
Definition allins.hpp:17491
@ PPC_nmacchws
Definition allins.hpp:16026
@ PPC_xscvqpsqz
Definition allins.hpp:18678
@ PPC_evdotp4hxgasmiaa
Definition allins.hpp:16712
@ PPC_evrndwnhus
Definition allins.hpp:16787
@ PPC_fcfidu
Definition allins.hpp:15986
@ PPC_fmrgow
Definition allins.hpp:17327
@ PPC_zvslhss
Definition allins.hpp:17875
@ PPC_zsatuwuh
Definition allins.hpp:17871
@ PPC_efscfh
Definition allins.hpp:16523
@ PPC_xvcvuxwdp
Definition allins.hpp:16282
@ PPC_zvmhuianh
Definition allins.hpp:18164
@ PPC_ps_sel
Definition allins.hpp:16466
@ PPC_subfhu
Definition allins.hpp:17779
@ PPC_xvcvspsxws
Definition allins.hpp:16273
@ PPC_zvmhuusf
Definition allins.hpp:18247
@ PPC_evfsctsf
Definition allins.hpp:15833
@ PPC_twgti
Definition allins.hpp:15381
@ PPC_zmheouiaas
Definition allins.hpp:18142
@ PPC_andi
Definition allins.hpp:15127
@ PPC_evdotphsssfra
Definition allins.hpp:16654
@ PPC_vcmpsq
Definition allins.hpp:18590
@ PPC_zvmhuianhs
Definition allins.hpp:18170
@ PPC_vcmpequq
Definition allins.hpp:18587
@ PPC_maddld
Definition allins.hpp:17540
@ PPC_evaddsmiaaw
Definition allins.hpp:15593
@ PPC_zvmhsfh
Definition allins.hpp:18147
@ PPC_zldhu
Definition allins.hpp:17927
@ PPC_evmhesumia
Definition allins.hpp:17022
@ PPC_vprtybq
Definition allins.hpp:17624
@ PPC_zvdotphxauians
Definition allins.hpp:18440
@ PPC_evstdbu
Definition allins.hpp:16985
@ PPC_zvmhxlgwsmfr
Definition allins.hpp:18220
@ PPC_xscmpudp
Definition allins.hpp:16219
@ PPC_evabsdifsw
Definition allins.hpp:17235
@ PPC_evlbbsplatbmx
Definition allins.hpp:16976
@ PPC_evsru
Definition allins.hpp:16911
@ PPC_paddi
Definition allins.hpp:18493
@ PPC_zvmhulsf
Definition allins.hpp:18245
@ PPC_vmuloud
Definition allins.hpp:18660
@ PPC_cntlzdm
Definition allins.hpp:18554
@ PPC_stxvrwx
Definition allins.hpp:18582
@ PPC_evdotphihcssfa
Definition allins.hpp:16607
@ PPC_mtvsrdd
Definition allins.hpp:17548
@ PPC_zlhgwsf
Definition allins.hpp:17934
@ PPC_zvmhllsuianp
Definition allins.hpp:18310
@ PPC_mtar
Definition allins.hpp:16395
@ PPC_cmp16i
Definition allins.hpp:16373
@ PPC_zvdotphxgasmfaa
Definition allins.hpp:18376
@ PPC_xxmrghw
Definition allins.hpp:16339
@ PPC_evmwhssfr
Definition allins.hpp:17032
@ PPC_twllt
Definition allins.hpp:15367
@ PPC_zvmhllgwsmfaa
Definition allins.hpp:18222
@ PPC_xvrdpim
Definition allins.hpp:16314
@ PPC_vminsb
Definition allins.hpp:16115
@ PPC_stbu
Definition allins.hpp:15297
@ PPC_evpkswuhs
Definition allins.hpp:17248
@ PPC_evsetgtbs
Definition allins.hpp:17215
@ PPC_stdcix
Definition allins.hpp:16047
@ PPC_trapd
Definition allins.hpp:15365
@ PPC_zvdotphgssian
Definition allins.hpp:18394
@ PPC_stbdcbx
Definition allins.hpp:17741
@ PPC_evfsctsiz
Definition allins.hpp:15835
@ PPC_satubs
Definition allins.hpp:17503
@ PPC_evlwbemx
Definition allins.hpp:16986
@ PPC_evsris
Definition allins.hpp:16914
@ PPC_evdotphasmiaaw3
Definition allins.hpp:16639
@ PPC_zvmhuusfans
Definition allins.hpp:18259
@ PPC_evmhosumi
Definition allins.hpp:17015
@ PPC_evfsdiffsum
Definition allins.hpp:16506
@ PPC_evsad4sba
Definition allins.hpp:17231
@ PPC_evfststeq
Definition allins.hpp:15844
@ PPC_isellt
Definition allins.hpp:15572
@ PPC_zvdotphssiaas
Definition allins.hpp:18464
@ PPC_zvdotphssuiaa
Definition allins.hpp:18456
@ PPC_evdivwsf
Definition allins.hpp:17127
@ PPC_evslh
Definition allins.hpp:16907
@ PPC_zvdotphxasuis
Definition allins.hpp:18432
@ PPC_evextzb
Definition allins.hpp:16773
@ PPC_evdotphihcssia
Definition allins.hpp:16605
@ PPC_evmwsmfaa
Definition allins.hpp:15711
@ PPC_evstwwo
Definition allins.hpp:15754
@ PPC_efdcfsf
Definition allins.hpp:15769
@ PPC_evdotpwasmia
Definition allins.hpp:16738
@ PPC_xssqrtsp
Definition allins.hpp:17412
@ PPC_xsmaddmdp
Definition allins.hpp:16231
@ PPC_vrlqmi
Definition allins.hpp:18664
@ PPC_evmhogumian
Definition allins.hpp:15669
@ PPC_bcdadd
Definition allins.hpp:17387
@ PPC_xxlnor
Definition allins.hpp:16336
@ PPC_xxgenpcvbm
Definition allins.hpp:18721
@ PPC_xscvqpswz
Definition allins.hpp:17663
@ PPC_evmhesmianw
Definition allins.hpp:15651
@ PPC_vinsbrx
Definition allins.hpp:18630
@ PPC_vmaxud
Definition allins.hpp:17352
@ PPC_evstdhx
Definition allins.hpp:15745
@ PPC_cfuged
Definition allins.hpp:18553
@ PPC_zmhesiaa
Definition allins.hpp:18111
@ PPC_evabsbs
Definition allins.hpp:16757
@ PPC_zslwus
Definition allins.hpp:17881
@ PPC_vaddshs
Definition allins.hpp:16069
@ PPC_zvmhulsuiaas
Definition allins.hpp:18337
@ PPC_evavgdu
Definition allins.hpp:17299
@ PPC_xvcvsphp
Definition allins.hpp:17717
@ PPC_vsrah
Definition allins.hpp:16179
@ PPC_ps_cmpo1
Definition allins.hpp:16480
@ PPC_evsum2hs
Definition allins.hpp:17108
@ PPC_evsrhis
Definition allins.hpp:16906
@ PPC_evor
Definition allins.hpp:15728
@ PPC_xvxsigsp
Definition allins.hpp:17711
@ PPC_evdotp4hgssmi
Definition allins.hpp:16671
@ PPC_evmhossianw
Definition allins.hpp:15683
@ PPC_zvmhllsuiaa
Definition allins.hpp:18302
@ PPC_evmhssf
Definition allins.hpp:17011
@ PPC_evlddx
Definition allins.hpp:15613
@ PPC_stbepx
Definition allins.hpp:15968
@ PPC_maclhwu
Definition allins.hpp:16018
@ PPC_vand
Definition allins.hpp:16077
@ PPC_rfid
Definition allins.hpp:15275
@ PPC_xsmsubqp
Definition allins.hpp:17671
@ PPC_evdotpwcssiaaw3
Definition allins.hpp:16553
@ PPC_vrsqrtefp
Definition allins.hpp:16163
@ PPC_zvmhxlsfrans
Definition allins.hpp:18272
@ PPC_zvdotphssuian
Definition allins.hpp:18459
@ PPC_zvmhxlsuians
Definition allins.hpp:18344
@ PPC_evsubfhus
Definition allins.hpp:17086
@ PPC_sthdx
Definition allins.hpp:15933
@ PPC_evdotpwgssmfr
Definition allins.hpp:16551
@ PPC_zvmhllgwsmfan
Definition allins.hpp:18230
@ PPC_evdotplohcsmia
Definition allins.hpp:16610
@ PPC_mfppr
Definition allins.hpp:17443
@ PPC_vgnb
Definition allins.hpp:18628
@ PPC_zmheogsmfaa
Definition allins.hpp:18056
@ PPC_evldbx
Definition allins.hpp:16920
@ PPC_macchws
Definition allins.hpp:16008
@ PPC_ld
Definition allins.hpp:15204
@ PPC_zldwu
Definition allins.hpp:17931
@ PPC_stvepx
Definition allins.hpp:15971
@ PPC_efsnmadd
Definition allins.hpp:16521
@ PPC_vsububm
Definition allins.hpp:16190
@ PPC_vpmsumw
Definition allins.hpp:17375
@ PPC_vslv
Definition allins.hpp:17629
@ PPC_zvmhuusians
Definition allins.hpp:18331
@ PPC_evsatsdsw
Definition allins.hpp:16810
@ PPC_zmwsf
Definition allins.hpp:18207
@ PPC_tlbsx
Definition allins.hpp:15515
@ PPC_evmergehi
Definition allins.hpp:15634
@ PPC_evdotp4hxgssmfaa
Definition allins.hpp:16718
@ PPC_vinshrx
Definition allins.hpp:18637
@ PPC_zmhegsuian
Definition allins.hpp:18047
@ PPC_twnei
Definition allins.hpp:15385
@ PPC_fmr
Definition allins.hpp:15179
@ PPC_evavgbs
Definition allins.hpp:17296
@ PPC_evaddhss
Definition allins.hpp:17049
@ PPC_evfsmsub
Definition allins.hpp:16495
@ PPC_dss
Definition allins.hpp:16350
@ PPC_zsatswuh
Definition allins.hpp:17865
@ PPC_evmaxhpuw
Definition allins.hpp:16825
@ PPC_evmhoumi
Definition allins.hpp:15684
@ PPC_zvmhxlsf
Definition allins.hpp:18248
@ PPC_evsum4buaaw
Definition allins.hpp:17121
@ PPC_lwepx
Definition allins.hpp:15967
@ PPC_evstwhe
Definition allins.hpp:15748
@ PPC_mulhw
Definition allins.hpp:15262
@ PPC_mfbhrbe
Definition allins.hpp:17319
@ PPC_evlwhsplatu
Definition allins.hpp:16975
@ PPC_or
Definition allins.hpp:15270
@ PPC_zvdotphxasis
Definition allins.hpp:18430
@ PPC_tdgei
Definition allins.hpp:15402
@ PPC_evdotphassf
Definition allins.hpp:16624
@ PPC_lhdcbx
Definition allins.hpp:17739
@ PPC_xvnmsubasp
Definition allins.hpp:16309
@ PPC_stwdcbx
Definition allins.hpp:17743
@ PPC_ldx
Definition allins.hpp:15208
@ PPC_vctzd
Definition allins.hpp:17595
@ PPC_zmhoui
Definition allins.hpp:18110
@ PPC_evmwlsmianw
Definition allins.hpp:15700
@ PPC_evsatswgsdf
Definition allins.hpp:16822
@ PPC_evsplatia
Definition allins.hpp:16846
@ PPC_tdlle
Definition allins.hpp:15390
@ PPC_vcntmbh
Definition allins.hpp:18594
@ PPC_xsmaxcdp
Definition allins.hpp:17689
@ PPC_srlq
Definition allins.hpp:15562
@ PPC_evswaphe
Definition allins.hpp:16875
@ PPC_fmsub
Definition allins.hpp:15180
@ PPC_mulld
Definition allins.hpp:15264
@ PPC_xsnmaddasp
Definition allins.hpp:17405
@ PPC_srawi
Definition allins.hpp:15293
@ PPC_mtvsrbmi
Definition allins.hpp:18566
@ PPC_evsad2sh
Definition allins.hpp:17227
@ PPC_xxblendvb
Definition allins.hpp:18716
@ PPC_ps_cmpu1
Definition allins.hpp:16478
@ PPC_sthwtx
Definition allins.hpp:17749
@ PPC_dtstsfi
Definition allins.hpp:17563
@ PPC_vextractwm
Definition allins.hpp:18626
@ PPC_zmwgsi
Definition allins.hpp:18171
@ PPC_evsum4bsaaw
Definition allins.hpp:17122
@ PPC_zvsubfwus
Definition allins.hpp:17914
@ PPC_vabsduh
Definition allins.hpp:17581
@ PPC_zmhesfaas
Definition allins.hpp:18090
@ PPC_evmaxbpsh
Definition allins.hpp:16828
@ PPC_tcheck
Definition allins.hpp:17427
@ PPC_fmsubs
Definition allins.hpp:15181
@ PPC_zmwlsuiaa
Definition allins.hpp:18196
@ PPC_evxtrb
Definition allins.hpp:16880
@ PPC_maskg
Definition allins.hpp:15536
@ PPC_dtstdc
Definition allins.hpp:15913
@ PPC_zvaddsubfhx
Definition allins.hpp:17816
@ PPC_zvmhxluianps
Definition allins.hpp:18360
@ PPC_modsw
Definition allins.hpp:17545
@ PPC_evextsw
Definition allins.hpp:16775
@ PPC_evdotpwgasmf
Definition allins.hpp:16545
@ PPC_tdlge
Definition allins.hpp:15389
@ PPC_lxvll
Definition allins.hpp:17640
@ PPC_xxsetaccz
Definition allins.hpp:18728
@ PPC_zlhhsplatx
Definition allins.hpp:17952
@ PPC_zvsubfhxss
Definition allins.hpp:17904
@ PPC_dquaiq
Definition allins.hpp:15897
@ PPC_evdotpbasumiaaw
Definition allins.hpp:16716
@ PPC_vsum2sws
Definition allins.hpp:16196
@ PPC_evdotphaumi
Definition allins.hpp:16626
@ PPC_vsubeuqm
Definition allins.hpp:17343
@ PPC_evlwbou
Definition allins.hpp:16935
@ PPC_mfpvr
Definition allins.hpp:15455
@ PPC_bcctr
Definition allins.hpp:15131
@ PPC_stxsihx
Definition allins.hpp:17645
@ PPC_xscpsgndp
Definition allins.hpp:16220
@ PPC_evmhessfa
Definition allins.hpp:15653
@ PPC_evdotpwasusiaa
Definition allins.hpp:16743
@ PPC_xsnmaddadp
Definition allins.hpp:16239
@ PPC_eqv
Definition allins.hpp:15161
@ PPC_lfdu
Definition allins.hpp:15210
@ PPC_icblq
Definition allins.hpp:17434
@ PPC_evlwwsplatu
Definition allins.hpp:16971
@ PPC_zvmhllsfanps
Definition allins.hpp:18262
@ PPC_mtmsree
Definition allins.hpp:16437
@ PPC_vcntmbb
Definition allins.hpp:18592
@ PPC_zvsubfhx
Definition allins.hpp:17903
@ PPC_xxextractuw
Definition allins.hpp:17695
@ PPC_vpkuwum
Definition allins.hpp:16153
@ PPC_evlwhosmx
Definition allins.hpp:16968
@ PPC_zvmhuugwsmfan
Definition allins.hpp:18231
@ PPC_evsatuhsh
Definition allins.hpp:16820
@ PPC_xvi4ger8
Definition allins.hpp:18710
@ PPC_evmwehgsmfr
Definition allins.hpp:17033
@ PPC_vmul10ecuq
Definition allins.hpp:17618
@ PPC_evlwwsplatmx
Definition allins.hpp:16970
@ PPC_slbieg
Definition allins.hpp:17525
@ PPC_evmhegsmiaa
Definition allins.hpp:15640
@ PPC_blt
Definition allins.hpp:15477
@ PPC_stdcx
Definition allins.hpp:15301
@ PPC_brw
Definition allins.hpp:18552
@ PPC_evdotphihcssi
Definition allins.hpp:16589
@ PPC_xvcvsxwsp
Definition allins.hpp:16279
@ PPC_tdeq
Definition allins.hpp:15388
@ PPC_evpksdsws
Definition allins.hpp:17259
@ PPC_lxvrwx
Definition allins.hpp:18564
@ PPC_divwe
Definition allins.hpp:15859
@ PPC_dst
Definition allins.hpp:16352
@ PPC_lxsiwzx
Definition allins.hpp:17391
@ PPC_evsumws
Definition allins.hpp:17104
@ PPC_zvmhulsuians
Definition allins.hpp:18341
@ PPC_evsubfd
Definition allins.hpp:17058
@ PPC_and2i
Definition allins.hpp:16371
@ PPC_evdotp4hgasmfaa
Definition allins.hpp:16709
@ PPC_vsubecuq
Definition allins.hpp:17345
@ PPC_satuwu
Definition allins.hpp:17517
@ PPC_tlbivax
Definition allins.hpp:15580
@ PPC_not
Definition allins.hpp:15413
@ PPC_xscvdpspn
Definition allins.hpp:17395
@ PPC_bcdcfn
Definition allins.hpp:17566
@ PPC_xsmsubmdp
Definition allins.hpp:16235
@ PPC_evmaxds
Definition allins.hpp:17284
@ PPC_stmvmcsrrw
Definition allins.hpp:16538
@ PPC_zvmhuusianp
Definition allins.hpp:18299
@ PPC_zvdotphssi
Definition allins.hpp:18452
@ PPC_zsubfwgui
Definition allins.hpp:17910
@ PPC_stvrxl
Definition allins.hpp:16365
@ PPC_evsplatiba
Definition allins.hpp:16848
@ PPC_pmxvf64gerpn
Definition allins.hpp:18525
@ PPC_evmwhssf
Definition allins.hpp:15695
@ PPC_evlhhesplat
Definition allins.hpp:15618
@ PPC_evdotp4hgasmia
Definition allins.hpp:16694
@ PPC_evmar
Definition allins.hpp:17102
@ PPC_vpopcnth
Definition allins.hpp:17384
@ PPC_xvf64ger
Definition allins.hpp:18701
@ PPC_evmbosumia
Definition allins.hpp:17029
@ PPC_zaddwgui
Definition allins.hpp:17827
@ PPC_twlge
Definition allins.hpp:15369
@ PPC_xvtsqrtdp
Definition allins.hpp:16332
@ PPC_zvmhxlsuianp
Definition allins.hpp:18312
@ PPC_evsubfbss
Definition allins.hpp:17063
@ PPC_vpkudum
Definition allins.hpp:17331
@ PPC_xscmpexpqp
Definition allins.hpp:17656
@ PPC_efdneg
Definition allins.hpp:15789
@ PPC_evdotpwcssi
Definition allins.hpp:16541
@ PPC_evdotphasmi
Definition allins.hpp:16627
@ PPC_vclzb
Definition allins.hpp:17378
@ PPC_twgei
Definition allins.hpp:15382
@ PPC_stfsx
Definition allins.hpp:15313
@ PPC_evmwumian
Definition allins.hpp:15724
@ PPC_zlwhgwsfdx
Definition allins.hpp:17968
@ PPC_zvdotphgwasmfan
Definition allins.hpp:18475
@ PPC_stdbrw
Definition allins.hpp:17762
@ PPC_vminsd
Definition allins.hpp:17353
@ PPC_evdotp4hxgssmfaa3
Definition allins.hpp:16692
@ PPC_mflr
Definition allins.hpp:15442
@ PPC_zvmhuuuiaa
Definition allins.hpp:18315
@ PPC_frim
Definition allins.hpp:16002
@ PPC_zlwhsplatdu
Definition allins.hpp:17979
@ PPC_zvmhllsf
Definition allins.hpp:18246
@ PPC_evsadsw
Definition allins.hpp:17223
@ PPC_evmwsmfan
Definition allins.hpp:15712
@ PPC_zvmhxlsfraas
Definition allins.hpp:18268
@ PPC_evsatsduw
Definition allins.hpp:16809
@ PPC_zvdotphxauian
Definition allins.hpp:18422
@ PPC_mulhd
Definition allins.hpp:15260
@ PPC_evdotphasusia
Definition allins.hpp:16646
@ PPC_vrefp
Definition allins.hpp:16155
@ PPC_zvmhulsian
Definition allins.hpp:18293
@ PPC_evdotpwaumi
Definition allins.hpp:16722
@ PPC_evsrwiu
Definition allins.hpp:15739
@ PPC_xvdivsp
Definition allins.hpp:16285
@ PPC_fnmsub
Definition allins.hpp:15188
@ PPC_xvi8ger4
Definition allins.hpp:18712
@ PPC_lis
Definition allins.hpp:15420
@ PPC_efdmax
Definition allins.hpp:17792
@ PPC_evdotpwausia
Definition allins.hpp:16734
@ PPC_stdwc
Definition allins.hpp:17771
@ PPC_zstdhmx
Definition allins.hpp:18001
@ PPC_evmwssfan
Definition allins.hpp:15720
@ PPC_subfhus
Definition allins.hpp:17499
@ PPC_zvmhulgwsmfr
Definition allins.hpp:18217
@ PPC_zmhogwsmfaa
Definition allins.hpp:18074
@ PPC_pmxvf16ger2np
Definition allins.hpp:18514
@ PPC_xsnmsubadp
Definition allins.hpp:16241
@ PPC_efdmin
Definition allins.hpp:17793
@ PPC_evdotp4hgasmiaa3
Definition allins.hpp:16681
@ PPC_vmulosd
Definition allins.hpp:18659
@ PPC_evmwohgsmfr
Definition allins.hpp:17035
@ PPC_evmwhsmi
Definition allins.hpp:15693
@ PPC_zvmhlluiaas
Definition allins.hpp:18350
@ PPC_tdlgei
Definition allins.hpp:15399
@ PPC_efdnabs
Definition allins.hpp:15788
@ PPC_mfocrf
Definition allins.hpp:15568
@ PPC_ddedpd
Definition allins.hpp:15885
@ PPC_wait
Definition allins.hpp:16346
@ PPC_evsrbs
Definition allins.hpp:16896
@ PPC_vspltisb
Definition allins.hpp:16173
@ PPC_ps_madds1
Definition allins.hpp:16462
@ PPC_stddx
Definition allins.hpp:15931
@ PPC_addc
Definition allins.hpp:15118
@ PPC_vinsertw
Definition allins.hpp:17613
@ PPC_plwz
Definition allins.hpp:18502
@ PPC_evmwsmiaa
Definition allins.hpp:15715
@ PPC_evpkuduws
Definition allins.hpp:17258
@ PPC_xxsplti32dx
Definition allins.hpp:18729
@ PPC_evmbosmi
Definition allins.hpp:17020
@ PPC_zvmhlluians
Definition allins.hpp:18354
@ PPC_evcmpgtdu
Definition allins.hpp:16866
@ PPC_zvmhulsfranps
Definition allins.hpp:18273
@ PPC_stwx
Definition allins.hpp:15327
@ PPC_evmwehgsmfan
Definition allins.hpp:17204
@ PPC_evsubfwegsi
Definition allins.hpp:17133
@ PPC_pmxvbf16ger2
Definition allins.hpp:18507
@ PPC_evilvhiloh
Definition allins.hpp:17264
@ PPC_evdotphssmiaaw
Definition allins.hpp:16665
@ PPC_mtppr32
Definition allins.hpp:17444
@ PPC_lwzux
Definition allins.hpp:15236
@ PPC_zvdotphasuians
Definition allins.hpp:18443
@ PPC_xscmpgeqp
Definition allins.hpp:18676
@ PPC_evlwhsplatwmx
Definition allins.hpp:16972
@ PPC_evsatshsb
Definition allins.hpp:16812
@ PPC_evmwhssfranw3
Definition allins.hpp:17195
@ PPC_evrlhi
Definition allins.hpp:16910
@ PPC_bf
Definition allins.hpp:15469
@ PPC_efsctsi
Definition allins.hpp:15808
@ PPC_zvsrhis
Definition allins.hpp:17885
@ PPC_zmhegsmfaa
Definition allins.hpp:18048
@ PPC_evmhssi
Definition allins.hpp:17009
@ PPC_xvxexpsp
Definition allins.hpp:17709
@ PPC_evmbessiaah
Definition allins.hpp:17152
@ PPC_stbux
Definition allins.hpp:15298
@ PPC_evmwhssfra
Definition allins.hpp:17037
@ PPC_zvsubfhss
Definition allins.hpp:17901
@ PPC_cmplw
Definition allins.hpp:15355
@ PPC_evneghs
Definition allins.hpp:16770
@ PPC_isync
Definition allins.hpp:15199
@ PPC_lwzx
Definition allins.hpp:15237
@ PPC_evdotpbaumiaaw3
Definition allins.hpp:16688
@ PPC_evsthbmx
Definition allins.hpp:17006
@ PPC_vnegw
Definition allins.hpp:17619
@ PPC_evsplatibea
Definition allins.hpp:16849
@ PPC_evsumwu
Definition allins.hpp:17103
@ PPC_zvmhllgwsmf
Definition allins.hpp:18214
@ PPC_zvmhxlsui
Definition allins.hpp:18284
@ PPC_lvlxl
Definition allins.hpp:16359
@ PPC_stxsibx
Definition allins.hpp:17644
@ PPC_srdi
Definition allins.hpp:16410
@ PPC_evmwhssfaaw3
Definition allins.hpp:17166
@ PPC_xvsubsp
Definition allins.hpp:16329
@ PPC_evsubfaddwss
Definition allins.hpp:17097
@ PPC_zlww
Definition allins.hpp:17986
@ PPC_xvrsqrtedp
Definition allins.hpp:16324
@ PPC_evsplatfiboa
Definition allins.hpp:16862
@ PPC_vextdubvrx
Definition allins.hpp:18617
@ PPC_xsabsdp
Definition allins.hpp:16216
@ PPC_zvnegho
Definition allins.hpp:17846
@ PPC_vshasigmaw
Definition allins.hpp:17371
@ PPC_evlhhousplatu
Definition allins.hpp:16959
@ PPC_xscmpuqp
Definition allins.hpp:17658
@ PPC_rotlwi
Definition allins.hpp:15493
@ PPC_evdotphssmiaaw3
Definition allins.hpp:16642
@ PPC_zvcmpgthu
Definition allins.hpp:17834
@ PPC_trap
Definition allins.hpp:15361
@ PPC_zstwwmx
Definition allins.hpp:18029
@ PPC_addpcis
Definition allins.hpp:17529
@ PPC_addg6s
Definition allins.hpp:15869
@ PPC_evsum2hsa
Definition allins.hpp:17116
@ PPC_ps_sum1
Definition allins.hpp:16458
@ PPC_evlhhsplathu
Definition allins.hpp:16957
@ PPC_vextuwlx
Definition allins.hpp:17609
@ PPC_lharx
Definition allins.hpp:15862
@ PPC_zmhesuians
Definition allins.hpp:18138
@ PPC_lswx
Definition allins.hpp:15228
@ PPC_xvnmaddadp
Definition allins.hpp:16304
@ PPC_evdotphassfra
Definition allins.hpp:16652
@ PPC_evlwhsplatw
Definition allins.hpp:16927
@ PPC_evsubf2add2h
Definition allins.hpp:17082
@ PPC_evdotphsssfaaw
Definition allins.hpp:16660
@ PPC_tlbli
Definition allins.hpp:15586
@ PPC_vpkshss
Definition allins.hpp:16147
@ PPC_xsrsp
Definition allins.hpp:17410
@ PPC_mtsrdin
Definition allins.hpp:15258
@ PPC_vsrdbi
Definition allins.hpp:18669
@ PPC_evlhhesplatmx
Definition allins.hpp:16954
@ PPC_evmergelohi
Definition allins.hpp:15637
@ PPC_evunpklobui
Definition allins.hpp:16801
@ PPC_iccci
Definition allins.hpp:15509
@ PPC_zmhosiaa
Definition allins.hpp:18113
@ PPC_zvdotphauiaa
Definition allins.hpp:18415
@ PPC_evdotpwxgasmfaa3
Definition allins.hpp:16558
@ PPC_zvmhulgwsmfaa
Definition allins.hpp:18221
@ PPC_xvi16ger2pp
Definition allins.hpp:18707
@ PPC_addbus
Definition allins.hpp:17487
@ PPC_xvcvspsxds
Definition allins.hpp:16272
@ PPC_vmrgew
Definition allins.hpp:17334
@ PPC_nop
Definition allins.hpp:15412
@ PPC_vexpandwm
Definition allins.hpp:18613
@ PPC_efsneg
Definition allins.hpp:15816
@ PPC_zlddx
Definition allins.hpp:17924
@ PPC_lwarx
Definition allins.hpp:15230
@ PPC_fdivs
Definition allins.hpp:15176
@ PPC_evmaxhs
Definition allins.hpp:17280
@ PPC_dtstsf
Definition allins.hpp:15919
@ PPC_zmheosuiaas
Definition allins.hpp:18136
@ PPC_zmheogsian
Definition allins.hpp:18053
@ PPC_lvehx
Definition allins.hpp:16053
@ PPC_zvmhuusiaa
Definition allins.hpp:18291
@ PPC_evldwmx
Definition allins.hpp:16948
@ PPC_bcdutrunc
Definition allins.hpp:17578
@ PPC_lhdx
Definition allins.hpp:15928
@ PPC_zmhogsiaa
Definition allins.hpp:18060
@ PPC_tendall
Definition allins.hpp:17439
@ PPC_xststdcdp
Definition allins.hpp:17700
@ PPC_evmhessiaaw
Definition allins.hpp:15656
@ PPC_evmwlssiaaw
Definition allins.hpp:15701
@ PPC_xvf32ger
Definition allins.hpp:18696
@ PPC_zmhegsian
Definition allins.hpp:18045
@ PPC_vmaddcfp
Definition allins.hpp:16444
@ PPC_evdotplohcssfa
Definition allins.hpp:16608
@ PPC_stfdp
Definition allins.hpp:15998
@ PPC_vcmpgtuq
Definition allins.hpp:18589
@ PPC_mffscdrni
Definition allins.hpp:17732
@ PPC_zvmhllsians
Definition allins.hpp:18330
@ PPC_evsplatibe
Definition allins.hpp:16842
@ PPC_vrlwmi
Definition allins.hpp:17626
@ PPC_evfscfui
Definition allins.hpp:15829
@ PPC_evmwehgsmfran
Definition allins.hpp:17203
@ PPC_ordhwacceli
Definition allins.hpp:17785
@ PPC_evaddsubfhss
Definition allins.hpp:17065
@ PPC_vperm
Definition allins.hpp:16145
@ PPC_extswsli
Definition allins.hpp:17537
@ PPC_zvdotphxgasui
Definition allins.hpp:18366
@ PPC_evrndw
Definition allins.hpp:15732
@ PPC_vcmpgefp
Definition allins.hpp:16092
@ PPC_evmwssiaa
Definition allins.hpp:17172
@ PPC_bcdcfz
Definition allins.hpp:17567
@ PPC_zmwguians
Definition allins.hpp:18185
@ PPC_evmwusiaa
Definition allins.hpp:17171
@ PPC_xvnabsdp
Definition allins.hpp:16300
@ PPC_zvdotphgasi
Definition allins.hpp:18363
@ PPC_vdivsd
Definition allins.hpp:18603
@ PPC_vrlq
Definition allins.hpp:18663
@ PPC_zvmhxlsuiaas
Definition allins.hpp:18340
@ PPC_mpusync
Definition allins.hpp:17789
@ PPC_zvmhxluianp
Definition allins.hpp:18324
@ PPC_stxvll
Definition allins.hpp:17651
@ PPC_evdotp4hxgasmia
Definition allins.hpp:16699
@ PPC_evdotplohcssiaaw
Definition allins.hpp:16614
@ PPC_zmhegsmf
Definition allins.hpp:18033
@ PPC_xxblendvd
Definition allins.hpp:18717
@ PPC_hrfid
Definition allins.hpp:15534
@ PPC_evseteqh
Definition allins.hpp:17208
@ PPC_xvmaxsp
Definition allins.hpp:16291
@ PPC_evmbeusianh
Definition allins.hpp:17181
@ PPC_tdge
Definition allins.hpp:15392
@ PPC_dcbtstep
Definition allins.hpp:15957
@ PPC_evmaxbu
Definition allins.hpp:17277
@ PPC_last
Definition allins.hpp:18733
@ PPC_xscvuxdsp
Definition allins.hpp:17398
@ PPC_zmwgsmfaa
Definition allins.hpp:18188
@ PPC_evpkswshilvs
Definition allins.hpp:17252
@ PPC_evfssubaddx
Definition allins.hpp:16510
@ PPC_evandc
Definition allins.hpp:15599
@ PPC_evmwssiw
Definition allins.hpp:17031
@ PPC_evldhu
Definition allins.hpp:16951
@ PPC_doze
Definition allins.hpp:16037
@ PPC_zvmhllgwsmfran
Definition allins.hpp:18234
@ PPC_bdnz
Definition allins.hpp:15470
@ PPC_vstribl
Definition allins.hpp:18671
@ PPC_zstwhod
Definition allins.hpp:18022
@ PPC_evstwhox
Definition allins.hpp:15751
@ PPC_vsububs
Definition allins.hpp:16191
@ PPC_evfsaddsub
Definition allins.hpp:16501
@ PPC_zlhhsplatmx
Definition allins.hpp:17953
@ PPC_zvaddw
Definition allins.hpp:17822
@ PPC_stwcix
Definition allins.hpp:16049
@ PPC_zvmhulsuiaa
Definition allins.hpp:18301
@ PPC_efdctsiz
Definition allins.hpp:15781
@ PPC_vpmsumd
Definition allins.hpp:17373
@ PPC_xscvspdpn
Definition allins.hpp:17396
@ PPC_rldcr
Definition allins.hpp:15277
@ PPC_sthu
Definition allins.hpp:15316
@ PPC_efsmadd
Definition allins.hpp:16518
@ PPC_evunpklohsi
Definition allins.hpp:16804
@ PPC_evmhesmf
Definition allins.hpp:15644
@ PPC_evminhpuw
Definition allins.hpp:16831
@ PPC_div
Definition allins.hpp:15529
@ PPC_cmpl
Definition allins.hpp:15135
@ PPC_zvmhuuuian
Definition allins.hpp:18319
@ PPC_vminsw
Definition allins.hpp:16117
@ PPC_evstdw
Definition allins.hpp:15746
@ PPC_bseti
Definition allins.hpp:16389
@ PPC_evmbeusiaah
Definition allins.hpp:17151
@ PPC_vavgsw
Definition allins.hpp:16081
@ PPC_sllq
Definition allins.hpp:15553
@ PPC_lq
Definition allins.hpp:16034
@ PPC_zvaddwus
Definition allins.hpp:17831
@ PPC_evaddbus
Definition allins.hpp:17073
@ PPC_vmsumuhs
Definition allins.hpp:16133
@ PPC_zstwhedmx
Definition allins.hpp:18021
@ PPC_subfh
Definition allins.hpp:17778
@ PPC_evstddu
Definition allins.hpp:16979
@ PPC_zstwhedu
Definition allins.hpp:18019
@ PPC_tdnei
Definition allins.hpp:15405
@ PPC_dci
Definition allins.hpp:15939
@ PPC_mtdec
Definition allins.hpp:15432
@ PPC_evmhosumiaaw
Definition allins.hpp:17150
@ PPC_evfsmadd
Definition allins.hpp:16494
@ PPC_vmoduw
Definition allins.hpp:18650
@ PPC_evlwboux
Definition allins.hpp:16934
@ PPC_rldcl
Definition allins.hpp:15276
@ PPC_fadds
Definition allins.hpp:15167
@ PPC_evsatshuh
Definition allins.hpp:16819
@ PPC_evsubfdss
Definition allins.hpp:17059
@ PPC_zpkswgswfrs
Definition allins.hpp:17852
@ PPC_addh
Definition allins.hpp:17774
@ PPC_vrlh
Definition allins.hpp:16161
@ PPC_evlvsr
Definition allins.hpp:16916
@ PPC_efscmpgt
Definition allins.hpp:15805
@ PPC_subfme
Definition allins.hpp:15332
@ PPC_evrndhb
Definition allins.hpp:16776
@ PPC_addis
Definition allins.hpp:15122
@ PPC_xscmpeqdp
Definition allins.hpp:17684
@ PPC_vextddvrx
Definition allins.hpp:18615
@ PPC_evmwlumi
Definition allins.hpp:15703
@ PPC_bcdctn
Definition allins.hpp:17568
@ PPC_dscri
Definition allins.hpp:15909
@ PPC_vrldnm
Definition allins.hpp:17627
@ PPC_crset
Definition allins.hpp:15422
@ PPC_zmhegwsmfaa
Definition allins.hpp:18072
@ PPC_zvmhuluian
Definition allins.hpp:18317
@ PPC_evdotpwxgasmfr
Definition allins.hpp:16548
@ PPC_ps_merge10
Definition allins.hpp:16485
@ PPC_vdivesd
Definition allins.hpp:18597
@ PPC_dcbz128
Definition allins.hpp:16436
@ PPC_xsnmsubmdp
Definition allins.hpp:16242
@ PPC_tbegin
Definition allins.hpp:17419
@ PPC_evaddsubfwxss
Definition allins.hpp:17099
@ PPC_zvcntlzh
Definition allins.hpp:17839
@ PPC_zvmhxlsuiaa
Definition allins.hpp:18304
@ PPC_vsubcuq
Definition allins.hpp:17344
@ PPC_mfdcr
Definition allins.hpp:15511
@ PPC_evdlveb
Definition allins.hpp:17269
@ PPC_efststlt
Definition allins.hpp:15820
@ PPC_sthcx
Definition allins.hpp:15867
@ PPC_fdiv
Definition allins.hpp:15175
@ PPC_zlwhosdx
Definition allins.hpp:17972
@ PPC_setbcr
Definition allins.hpp:18574
@ PPC_mtvsrbm
Definition allins.hpp:18565
@ PPC_pmxvi4ger8pp
Definition allins.hpp:18532
@ PPC_slw
Definition allins.hpp:15289
@ PPC_xvcvspbf16
Definition allins.hpp:18690
@ PPC_evlwhos
Definition allins.hpp:15626
@ PPC_pstxv
Definition allins.hpp:18546
@ PPC_dctfixq
Definition allins.hpp:15883
@ PPC_evmhesmfaaw
Definition allins.hpp:15646
@ PPC_xvbf16ger2nn
Definition allins.hpp:18685
@ PPC_satsbs
Definition allins.hpp:17502
@ PPC_extrdi
Definition allins.hpp:16404
@ PPC_dadd
Definition allins.hpp:15873
@ PPC_vcmpnew
Definition allins.hpp:17590
@ PPC_evnegd
Definition allins.hpp:16765
@ PPC_eieio
Definition allins.hpp:15160
@ PPC_lbcbx
Definition allins.hpp:17745
@ PPC_xststdcsp
Definition allins.hpp:17701
@ PPC_evcntlzw
Definition allins.hpp:15606
@ PPC_evdotpwasusiaa3
Definition allins.hpp:16728
@ PPC_vcmpnezw
Definition allins.hpp:17591
@ PPC_zvmhuusuians
Definition allins.hpp:18343
@ PPC_zsubfwgsi
Definition allins.hpp:17909
@ PPC_vadduqm
Definition allins.hpp:17337
@ PPC_evstwhomx
Definition allins.hpp:16996
@ PPC_maddhdu
Definition allins.hpp:17539
@ PPC_evminhu
Definition allins.hpp:17287
@ PPC_xvcvdpsp
Definition allins.hpp:16266
@ PPC_zlwh
Definition allins.hpp:17958
@ PPC_evsubfwxus
Definition allins.hpp:17079
@ PPC_zvmhuusfrans
Definition allins.hpp:18271
@ PPC_evlwhoux
Definition allins.hpp:15629
@ PPC_ftsqrt
Definition allins.hpp:15993
@ PPC_evsubfaddh
Definition allins.hpp:17066
@ PPC_sthcix
Definition allins.hpp:16048
@ PPC_bge
Definition allins.hpp:15480
@ PPC_evdotpbaumiaaw
Definition allins.hpp:16714
@ PPC_zmhesiaas
Definition allins.hpp:18129
@ PPC_evlhhesplatu
Definition allins.hpp:16955
@ PPC_efdcmplt
Definition allins.hpp:15777
@ PPC_evmboumia
Definition allins.hpp:17027
@ PPC_zvmergehih
Definition allins.hpp:17841
@ PPC_zvdotphasfrs
Definition allins.hpp:18399
@ PPC_iseleq
Definition allins.hpp:15574
@ PPC_zvmhllgwsmfr
Definition allins.hpp:18218
@ PPC_zmwlsians
Definition allins.hpp:18204
@ PPC_evdotpwcssia
Definition allins.hpp:16565
@ PPC_vupkd3d
Definition allins.hpp:16451
@ PPC_zldwmx
Definition allins.hpp:17933
@ PPC_evminbpsh
Definition allins.hpp:16834
@ PPC_evstdbmx
Definition allins.hpp:16984
@ PPC_evmbeumiaah
Definition allins.hpp:17157
@ PPC_add16i
Definition allins.hpp:16368
@ PPC_lwbrx
Definition allins.hpp:15233
@ PPC_evsplatihea
Definition allins.hpp:16851
@ PPC_evdotpwgssmf
Definition allins.hpp:16549
@ PPC_xscvuxddp
Definition allins.hpp:16228
@ PPC_evdotphassfr
Definition allins.hpp:16629
@ PPC_twne
Definition allins.hpp:15375
@ PPC_evdotpwaumia
Definition allins.hpp:16737
@ PPC_evfssubadd
Definition allins.hpp:16502
@ PPC_tdeqi
Definition allins.hpp:15398
@ PPC_zmhesuian
Definition allins.hpp:18120
@ PPC_ps_muls1
Definition allins.hpp:16460
@ PPC_pstxssp
Definition allins.hpp:18545
@ PPC_zvdotphgssui
Definition allins.hpp:18387
@ PPC_evsrws
Definition allins.hpp:15740
@ PPC_zvdotphxasfrans
Definition allins.hpp:18408
@ PPC_vupkhsb
Definition allins.hpp:16202
@ PPC_zvmhxlgwsmfranp
Definition allins.hpp:18244
@ PPC_zvunpkhui
Definition allins.hpp:17919
@ PPC_zvdotphxgauiaa
Definition allins.hpp:18370
@ PPC_zvmhulsi
Definition allins.hpp:18277
@ PPC_vcmpgtsb
Definition allins.hpp:16094
@ PPC_evfsctui
Definition allins.hpp:15837
@ PPC_vextsh2w
Definition allins.hpp:17602
@ PPC_vmsumcud
Definition allins.hpp:18651
@ PPC_xsresp
Definition allins.hpp:17409
@ PPC_vpkswus
Definition allins.hpp:16150
@ PPC_zvdotphgwssmf
Definition allins.hpp:18481
@ PPC_evmbesmia
Definition allins.hpp:17025
@ PPC_xvcmpgtsp
Definition allins.hpp:16263
@ PPC_evdotplohcssia
Definition allins.hpp:16606
@ PPC_stfd
Definition allins.hpp:15305
@ PPC_zmhogsuian
Definition allins.hpp:18063
@ PPC_evmwehgsmfaa
Definition allins.hpp:17174
@ PPC_machhwsu
Definition allins.hpp:16013
@ PPC_lhzux
Definition allins.hpp:15224
@ PPC_evdotplohcssfaaw3
Definition allins.hpp:16600
@ PPC_xvi8ger4spp
Definition allins.hpp:18714
@ PPC_evinsb
Definition allins.hpp:16879
@ PPC_mfsprg1
Definition allins.hpp:15450
@ PPC_zmhosfraas
Definition allins.hpp:18098
@ PPC_crnor
Definition allins.hpp:15143
@ PPC_zvdotphxgasmf
Definition allins.hpp:18368
@ PPC_evrnddnwus
Definition allins.hpp:16791
@ PPC_zvdotphasfs
Definition allins.hpp:18397
@ PPC_lhau
Definition allins.hpp:15218
@ PPC_pstxsd
Definition allins.hpp:18544
@ PPC_zmheogsmf
Definition allins.hpp:18037
@ PPC_xsnmaddqp
Definition allins.hpp:17675
@ PPC_evmwusian
Definition allins.hpp:17201
@ PPC_dcbfl
Definition allins.hpp:16417
@ PPC_evmhesumianw
Definition allins.hpp:17179
@ PPC_evdotpwasmiaa
Definition allins.hpp:16746
@ PPC_mtfsb0
Definition allins.hpp:15249
@ PPC_vsrw
Definition allins.hpp:16184
@ PPC_zvaddih
Definition allins.hpp:17813
@ PPC_zslwius
Definition allins.hpp:17882
@ PPC_vavgsh
Definition allins.hpp:16080
@ PPC_xsnmaddmsp
Definition allins.hpp:17406
@ PPC_vmuloub
Definition allins.hpp:16140
@ PPC_xvtstdcdp
Definition allins.hpp:17702
@ PPC_bcdctz
Definition allins.hpp:17569
@ PPC_evmwssian
Definition allins.hpp:17202
@ PPC_urfid
Definition allins.hpp:18490
@ PPC_dcbi
Definition allins.hpp:15149
@ PPC_xvrspiz
Definition allins.hpp:16323
@ PPC_mpuwe
Definition allins.hpp:17788
@ PPC_evlwhemx
Definition allins.hpp:16962
@ PPC_evmwlumianw3
Definition allins.hpp:17199
@ PPC_evaddusiaa
Definition allins.hpp:17042
@ PPC_zvmhsianh
Definition allins.hpp:18162
@ PPC_vmrglh
Definition allins.hpp:16126
@ PPC_evstwbeu
Definition allins.hpp:16995
@ PPC_evaddih
Definition allins.hpp:16749
@ PPC_zvdotphgwssmfraa
Definition allins.hpp:18485
@ PPC_zvmhuusi
Definition allins.hpp:18279
@ PPC_evdotplohcssfaaw
Definition allins.hpp:16616
@ PPC_dscliq
Definition allins.hpp:15908
@ PPC_vclzlsbb
Definition allins.hpp:17584
@ PPC_xvcmpeqsp
Definition allins.hpp:16259
@ PPC_crand
Definition allins.hpp:15139
@ PPC_vadduws
Definition allins.hpp:16076
@ PPC_evmaxhpsw
Definition allins.hpp:16826
@ PPC_zvmhllsianps
Definition allins.hpp:18334
@ PPC_evsubifb
Definition allins.hpp:16752
@ PPC_mullhwu
Definition allins.hpp:16024
@ PPC_xvcvuxwsp
Definition allins.hpp:16283
@ PPC_mtdsisr
Definition allins.hpp:15430
@ PPC_evmbossiaah
Definition allins.hpp:17155
@ PPC_vcmpgtub
Definition allins.hpp:16097
@ PPC_zvmhxlsianps
Definition allins.hpp:18336
@ PPC_ps_rsqrte
Definition allins.hpp:16469
@ PPC_efdcmpeq
Definition allins.hpp:15775
@ PPC_dcmpuq
Definition allins.hpp:15880
@ PPC_evaddhhiuw
Definition allins.hpp:17139
@ PPC_adde
Definition allins.hpp:15119
@ PPC_efsnabs
Definition allins.hpp:15815
@ PPC_evdotp4hxgssmi
Definition allins.hpp:16678
@ PPC_evmhessf
Definition allins.hpp:15652
@ PPC_rvwinkle
Definition allins.hpp:16043
@ PPC_zmwgsmfan
Definition allins.hpp:18189
@ PPC_stxvh8x
Definition allins.hpp:17649
@ PPC_evextsb
Definition allins.hpp:15610
@ PPC_evstwhex
Definition allins.hpp:15749
@ PPC_zmheoguiaa
Definition allins.hpp:18050
@ PPC_xviexpdp
Definition allins.hpp:17693
@ PPC_zlddu
Definition allins.hpp:17923
@ PPC_evfscfh
Definition allins.hpp:16514
@ PPC_zlwgsfd
Definition allins.hpp:17954
@ PPC_dststt
Definition allins.hpp:16355
@ PPC_xsnmsubasp
Definition allins.hpp:17407
@ PPC_evdotphihcsmiaaw
Definition allins.hpp:16617
@ PPC_lvepx
Definition allins.hpp:15965
@ PPC_stdw
Definition allins.hpp:17755
@ PPC_evstwwou
Definition allins.hpp:17005
@ PPC_circinc
Definition allins.hpp:16796
@ PPC_tabortdc
Definition allins.hpp:17424
@ PPC_zvmhuluianp
Definition allins.hpp:18321
@ PPC_zmheosian
Definition allins.hpp:18115
@ PPC_zvaddwss
Definition allins.hpp:17829
@ PPC_vcmpneb
Definition allins.hpp:17586
@ PPC_vinsw
Definition allins.hpp:18640
@ PPC_mullhw
Definition allins.hpp:16023
@ PPC_evfsaddx
Definition allins.hpp:16507
@ PPC_drintxq
Definition allins.hpp:15903
@ PPC_evslhi
Definition allins.hpp:16909
@ PPC_clf
Definition allins.hpp:15526
@ PPC_stvlxl
Definition allins.hpp:16363
@ PPC_zmhogsmfaa
Definition allins.hpp:18064
@ PPC_td
Definition allins.hpp:15335
@ PPC_slbsync
Definition allins.hpp:17527
@ PPC_rfgi
Definition allins.hpp:15949
@ PPC_evmhosusiaaw
Definition allins.hpp:17148
@ PPC_zmwgsiaa
Definition allins.hpp:18174
@ PPC_zldhx
Definition allins.hpp:17928
@ PPC_tlbiel
Definition allins.hpp:16050
@ PPC_rldicl
Definition allins.hpp:15279
@ PPC_dquai
Definition allins.hpp:15896
@ PPC_xvf64gernn
Definition allins.hpp:18702
@ PPC_evdotp4hgasumiaa3
Definition allins.hpp:16682
@ PPC_zlwhosdu
Definition allins.hpp:17971
@ PPC_rfdi
Definition allins.hpp:15581
@ PPC_vclrrb
Definition allins.hpp:18585
@ PPC_xvmaxdp
Definition allins.hpp:16290
@ PPC_zvmhsfaahs
Definition allins.hpp:18149
@ PPC_xvmsubasp
Definition allins.hpp:16295
@ PPC_bt
Definition allins.hpp:15468
@ PPC_dxexq
Definition allins.hpp:15922
@ PPC_oris
Definition allins.hpp:15273
@ PPC_evsubfusiaaw
Definition allins.hpp:15759
@ PPC_xsabsqp
Definition allins.hpp:17654
@ PPC_vmr
Definition allins.hpp:17437
@ PPC_srd
Definition allins.hpp:15294
@ PPC_lwzu
Definition allins.hpp:15235
@ PPC_divweu
Definition allins.hpp:15860
@ PPC_evldhx
Definition allins.hpp:15615
@ PPC_evsad2shaaw
Definition allins.hpp:17245
@ PPC_cmphl
Definition allins.hpp:16376
@ PPC_evstwbemx
Definition allins.hpp:16994
@ PPC_mtsprg1
Definition allins.hpp:15436
@ PPC_divwu
Definition allins.hpp:15157
@ PPC_xvnmsubadp
Definition allins.hpp:16308
@ PPC_evstddepx
Definition allins.hpp:15960
@ PPC_friz
Definition allins.hpp:16005
@ PPC_prtyw
Definition allins.hpp:15865
@ PPC_mulhus
Definition allins.hpp:17492
@ PPC_evaddb
Definition allins.hpp:17060
@ PPC_evdotp4hgasmiaa
Definition allins.hpp:16707
@ PPC_evdotpwasumi
Definition allins.hpp:16724
@ PPC_zvmhuusfraas
Definition allins.hpp:18267
@ PPC_vextractbm
Definition allins.hpp:18622
@ PPC_evdotpwcssfra
Definition allins.hpp:16567
@ PPC_evminhs
Definition allins.hpp:17288
@ PPC_evrndwhus
Definition allins.hpp:16778
@ PPC_rac
Definition allins.hpp:15542
@ PPC_evmhesmia
Definition allins.hpp:15649
@ PPC_dcba
Definition allins.hpp:15147
@ PPC_evsatuhub
Definition allins.hpp:16816
@ PPC_zvmhllsuiaas
Definition allins.hpp:18338
@ PPC_vaddcuw
Definition allins.hpp:16066
@ PPC_evmhossfaaw
Definition allins.hpp:15680
@ PPC_satswu
Definition allins.hpp:17516
@ PPC_evlwbsplatw
Definition allins.hpp:16925
@ PPC_evperm2
Definition allins.hpp:16892
@ PPC_vslb
Definition allins.hpp:16166
@ PPC_vmulld
Definition allins.hpp:18658
@ PPC_evdotpwxgssmfraa
Definition allins.hpp:16588
@ PPC_zmheosi
Definition allins.hpp:18103
@ PPC_evmhousianw
Definition allins.hpp:15689
@ PPC_zsatuwsh
Definition allins.hpp:17870
@ PPC_zvmhulsuianps
Definition allins.hpp:18345
@ PPC_bcdctsq
Definition allins.hpp:17570
@ PPC_zvcmpeqh
Definition allins.hpp:17832
@ PPC_mfsprg0
Definition allins.hpp:15449
@ PPC_evdotpwgasmfaa3
Definition allins.hpp:16557
@ PPC_lfsu
Definition allins.hpp:15214
@ PPC_evldwx
Definition allins.hpp:15617
@ PPC_mulwus
Definition allins.hpp:17493
@ PPC_fctidu
Definition allins.hpp:15988
@ PPC_ps_mr
Definition allins.hpp:16479
@ PPC_evmhesumiaaw
Definition allins.hpp:17149
@ PPC_xvsubdp
Definition allins.hpp:16328
@ PPC_dcbz
Definition allins.hpp:15153
@ PPC_xxswapd
Definition allins.hpp:16433
@ PPC_srea
Definition allins.hpp:15558
@ PPC_zvdotphssfs
Definition allins.hpp:18445
@ PPC_modud
Definition allins.hpp:17544
@ PPC_evlwbsplatwu
Definition allins.hpp:16965
@ PPC_zvmhllgwsmfanp
Definition allins.hpp:18238
@ PPC_zmhogwsmfr
Definition allins.hpp:18071
@ PPC_xsrqpi
Definition allins.hpp:17683
@ PPC_zmhesfans
Definition allins.hpp:18093
@ PPC_zvmhxlsfr
Definition allins.hpp:18252
@ PPC_efdabs
Definition allins.hpp:15766
@ PPC_xscmpeqqp
Definition allins.hpp:18675
@ PPC_zvmhxlsiaa
Definition allins.hpp:18292
@ PPC_xsmaddasp
Definition allins.hpp:17400
@ PPC_evdotpbasumia
Definition allins.hpp:16703
@ PPC_evsetgths
Definition allins.hpp:17211
@ PPC_vmulhuw
Definition allins.hpp:18657
@ PPC_zvmhulsianps
Definition allins.hpp:18333
@ PPC_vcsxwfp
Definition allins.hpp:16442
@ PPC_mtvsrqm
Definition allins.hpp:18569
@ PPC_xvnabssp
Definition allins.hpp:16301
@ PPC_zmhosuiaas
Definition allins.hpp:18137
@ PPC_xvaddsp
Definition allins.hpp:16257
@ PPC_vmulfp
Definition allins.hpp:16447
@ PPC_stmvgprw
Definition allins.hpp:16528
@ PPC_evdotp4hxgssmia
Definition allins.hpp:16704
@ PPC_evdotphasumia
Definition allins.hpp:16651
@ PPC_evdotpwgssmfa
Definition allins.hpp:16573
@ PPC_bso
Definition allins.hpp:15483
@ PPC_evdotpwxgasmfaa
Definition allins.hpp:16582
@ PPC_twlgei
Definition allins.hpp:15379
@ PPC_zlwwosdx
Definition allins.hpp:17992
@ PPC_evmwsmi
Definition allins.hpp:15713
@ PPC_vsrv
Definition allins.hpp:17630
@ PPC_zlwhmx
Definition allins.hpp:17961
@ PPC_zvrlh
Definition allins.hpp:17857
@ PPC_zmwguian
Definition allins.hpp:18179
@ PPC_vextractuw
Definition allins.hpp:17598
@ PPC_pmxvbf16ger2np
Definition allins.hpp:18509
@ PPC_evfsadd
Definition allins.hpp:15825
@ PPC_zlhhou
Definition allins.hpp:17946
@ PPC_zvmhsuianh
Definition allins.hpp:18163
@ PPC_satsws
Definition allins.hpp:17514
@ PPC_xvmsubmsp
Definition allins.hpp:16297
@ PPC_vextractdm
Definition allins.hpp:18623
@ PPC_evmhesmfa
Definition allins.hpp:15645
@ PPC_lmvmcsrrw
Definition allins.hpp:16537
@ PPC_popcntw
Definition allins.hpp:15864
@ PPC_zvdotphxasfaas
Definition allins.hpp:18402
@ PPC_evdotp4hgasmfaa3
Definition allins.hpp:16683
@ PPC_evsubifw
Definition allins.hpp:15761
@ PPC_zvmhllsfraas
Definition allins.hpp:18266
@ PPC_daddq
Definition allins.hpp:15874
@ PPC_efdctuf
Definition allins.hpp:15782
@ PPC_evdotphassfraaw
Definition allins.hpp:16664
@ PPC_ps_res
Definition allins.hpp:16467
@ PPC_zstwhodu
Definition allins.hpp:18023
@ PPC_evunpkhiwgsf
Definition allins.hpp:16808
@ PPC_evilvoeh
Definition allins.hpp:17267
@ PPC_zvmhxlgwsmfraa
Definition allins.hpp:18228
@ PPC_evunpkhihsi
Definition allins.hpp:16800
@ PPC_zvmhxluiaa
Definition allins.hpp:18316
@ PPC_vmul10uq
Definition allins.hpp:17615
@ PPC_tdllti
Definition allins.hpp:15397
@ PPC_stvepxl
Definition allins.hpp:15972
@ PPC_zadddss
Definition allins.hpp:17806
@ PPC_vextractub
Definition allins.hpp:17596
@ PPC_mtsprg2
Definition allins.hpp:15437
@ PPC_evaddsubfwss
Definition allins.hpp:17095
@ PPC_zvmhulsianp
Definition allins.hpp:18297
@ PPC_zvdotphxgwasmfan
Definition allins.hpp:18476
@ PPC_rlmi
Definition allins.hpp:15544
@ PPC_mfxer
Definition allins.hpp:15441
@ PPC_zpkswgshfrs
Definition allins.hpp:17851
@ PPC_zstddx
Definition allins.hpp:17996
@ PPC_evsumwuaa
Definition allins.hpp:17119
@ PPC_satsbu
Definition allins.hpp:17504
@ PPC_ps_cmpu0
Definition allins.hpp:16454
@ PPC_mfcr
Definition allins.hpp:15241
@ PPC_zvdotphgsuian
Definition allins.hpp:18393
@ PPC_evnegwo
Definition allins.hpp:16760
@ PPC_zvmhxlsfranps
Definition allins.hpp:18276
@ PPC_vextduhvrx
Definition allins.hpp:18619
@ PPC_vnor
Definition allins.hpp:16143
@ PPC_zvmhulsfanps
Definition allins.hpp:18261
@ PPC_vadduhm
Definition allins.hpp:16073
@ PPC_icbtls
Definition allins.hpp:15579
@ PPC_lxvb16x
Definition allins.hpp:17637
@ PPC_tabortwc
Definition allins.hpp:17422
@ PPC_drrndq
Definition allins.hpp:15905
@ PPC_lswi
Definition allins.hpp:15227
@ PPC_zvdotphxgwasmfr
Definition allins.hpp:18472
@ PPC_zsthomx
Definition allins.hpp:18013
@ PPC_ddiv
Definition allins.hpp:15887
@ PPC_vsl
Definition allins.hpp:16165
@ PPC_ldwar
Definition allins.hpp:17770
@ PPC_xvtsqrtsp
Definition allins.hpp:16333
@ PPC_evsplatfi
Definition allins.hpp:15736
@ PPC_zvdotphxauis
Definition allins.hpp:18428
@ PPC_zvsubfh
Definition allins.hpp:17896
@ PPC_zsthox
Definition allins.hpp:18012
@ PPC_xsadddp
Definition allins.hpp:16217
@ PPC_xscvdpsp
Definition allins.hpp:16221
@ PPC_evswapblohi
Definition allins.hpp:16872
@ PPC_zvdotphxgwasmf
Definition allins.hpp:18470
@ PPC_zsatsdsw
Definition allins.hpp:17861
@ PPC_bcdsr
Definition allins.hpp:17576
@ PPC_lbdx
Definition allins.hpp:15925
@ PPC_zvmhulgwsmfan
Definition allins.hpp:18229
@ PPC_fctiw
Definition allins.hpp:15173
@ PPC_ps_cmpo0
Definition allins.hpp:16474
@ PPC_evdotpwxgssmfa
Definition allins.hpp:16574
@ PPC_zaddwgsf
Definition allins.hpp:17825
@ PPC_vctzlsbb
Definition allins.hpp:17585
@ PPC_evxor
Definition allins.hpp:15762
@ PPC_zsubfd
Definition allins.hpp:17893
@ PPC_evsubfsmiaaw
Definition allins.hpp:15756
@ PPC_zaddwgsi
Definition allins.hpp:17826
@ PPC_evsatuduw
Definition allins.hpp:16817
@ PPC_zvdotphssfans
Definition allins.hpp:18448
@ PPC_zmhesuiaas
Definition allins.hpp:18135
@ PPC_evcmpeq
Definition allins.hpp:15600
@ PPC_evdotp4hxgssmfa
Definition allins.hpp:16705
@ PPC_fmul
Definition allins.hpp:15182
@ PPC_zmhesfraas
Definition allins.hpp:18096
@ PPC_evdotphihcsmi
Definition allins.hpp:16593
@ PPC_xxpermx
Definition allins.hpp:18727
@ PPC_zmheosuians
Definition allins.hpp:18139
@ PPC_zlwhoudmx
Definition allins.hpp:17977
@ PPC_ldu
Definition allins.hpp:15206
@ PPC_subfbu
Definition allins.hpp:17777
@ PPC_msgsndu
Definition allins.hpp:18489
@ PPC_evdotpwcssf
Definition allins.hpp:16544
@ PPC_efsctuf
Definition allins.hpp:15810
@ PPC_vinswvlx
Definition allins.hpp:18643
@ PPC_vcmpgtuh
Definition allins.hpp:16098
@ PPC_vstrihr
Definition allins.hpp:18674
@ PPC_lvsl
Definition allins.hpp:16055
@ PPC_stwdx
Definition allins.hpp:15934
@ PPC_zmheguiaa
Definition allins.hpp:18042
@ PPC_evlwhou
Definition allins.hpp:15628
@ PPC_xvf16ger2np
Definition allins.hpp:18693
@ PPC_evdotp4hgaumia
Definition allins.hpp:16693
@ PPC_dtstsfiq
Definition allins.hpp:17564
@ PPC_vmulouh
Definition allins.hpp:16141
@ PPC_xvcvsxdsp
Definition allins.hpp:16277
@ PPC_zlhhosu
Definition allins.hpp:17943
@ PPC_evsum2hua
Definition allins.hpp:17115
@ PPC_evcmpgts
Definition allins.hpp:15601
@ PPC_xscvuqqp
Definition allins.hpp:18681
@ PPC_bcdcfsq
Definition allins.hpp:17571
@ PPC_evaddhhisw
Definition allins.hpp:17140
@ PPC_efsctsf
Definition allins.hpp:15807
@ PPC_evmwehgsmfraa
Definition allins.hpp:17173
@ PPC_evstwbex
Definition allins.hpp:16938
@ PPC_zsubfdss
Definition allins.hpp:17894
@ PPC_stvlx
Definition allins.hpp:16362
@ PPC_vmaxuh
Definition allins.hpp:16110
@ PPC_xvrspip
Definition allins.hpp:16322
@ PPC_mtfsb1
Definition allins.hpp:15250
@ PPC_stwwtx
Definition allins.hpp:17750
@ PPC_evpksdshefrs
Definition allins.hpp:17257
@ PPC_lhzu
Definition allins.hpp:15223
@ PPC_dclst
Definition allins.hpp:15528
@ PPC_slbia
Definition allins.hpp:15286
@ PPC_zmwsfraas
Definition allins.hpp:18211
@ PPC_evdotpwasusia
Definition allins.hpp:16736
@ PPC_zmwguiaa
Definition allins.hpp:18178
@ PPC_zvmhuusuianps
Definition allins.hpp:18347
@ PPC_zmhesfr
Definition allins.hpp:18087
@ PPC_evdotpwgssmfra
Definition allins.hpp:16575
@ PPC_fnabs
Definition allins.hpp:15184
@ PPC_dsubq
Definition allins.hpp:15912
@ PPC_evfscth
Definition allins.hpp:16515
@ PPC_zvdotphssuians
Definition allins.hpp:18468
@ PPC_wait30
Definition allins.hpp:17561
@ PPC_nor
Definition allins.hpp:15269
@ PPC_zmheosiaas
Definition allins.hpp:18130
@ PPC_mtsrd
Definition allins.hpp:15257
@ PPC_twllti
Definition allins.hpp:15377
@ PPC_evdotpwcsmiaaw3
Definition allins.hpp:16554
@ PPC_evaddssiaa
Definition allins.hpp:17043
@ PPC_zvmhllsiaas
Definition allins.hpp:18326
@ PPC_evdotpbasumiaaw3
Definition allins.hpp:16690
@ PPC_zvdotphxasuians
Definition allins.hpp:18444
@ PPC_vctzw
Definition allins.hpp:17594
@ PPC_xsxexpdp
Definition allins.hpp:17704
@ PPC_zmheosfrans
Definition allins.hpp:18100
@ PPC_zstheu
Definition allins.hpp:18007
@ PPC_evsubfwegsf
Definition allins.hpp:17134
@ PPC_evdotpwcsmiaaw
Definition allins.hpp:16578
@ PPC_vdivud
Definition allins.hpp:18606
@ PPC_evunpkhibui
Definition allins.hpp:16797
@ PPC_mtlr
Definition allins.hpp:15428
@ PPC_evsubf2add2hss
Definition allins.hpp:17083
@ PPC_zvdotphasuis
Definition allins.hpp:18431
@ PPC_vmsumuhm
Definition allins.hpp:16132
@ PPC_illegal
Definition allins.hpp:16393
@ PPC_zvdotphssiaa
Definition allins.hpp:18455
@ PPC_evsetgtwu
Definition allins.hpp:17212
@ PPC_pstfd
Definition allins.hpp:18539
@ PPC_frsp
Definition allins.hpp:15191
@ PPC_zsubfhouw
Definition allins.hpp:17900
@ PPC_bcds
Definition allins.hpp:17574
@ PPC_xsmaxcqp
Definition allins.hpp:18682
@ PPC_evdotpwssmia
Definition allins.hpp:16740
@ PPC_vpkuhum
Definition allins.hpp:16151
@ PPC_xscvqpuqz
Definition allins.hpp:18679
@ PPC_evstwwe
Definition allins.hpp:15752
@ PPC_zvmhuusuianp
Definition allins.hpp:18311
@ PPC_zlwhgwsfdu
Definition allins.hpp:17967
@ PPC_fabs
Definition allins.hpp:15165
@ PPC_zmheogwsmfaa
Definition allins.hpp:18073
@ PPC_evmbousiaah
Definition allins.hpp:17154
@ PPC_satuhs
Definition allins.hpp:17509
@ PPC_fadd
Definition allins.hpp:15166
@ PPC_darn
Definition allins.hpp:17536
@ PPC_denbcdq
Definition allins.hpp:15890
@ PPC_extldi
Definition allins.hpp:16403
@ PPC_evselbitm1
Definition allins.hpp:16889
@ PPC_lxsd
Definition allins.hpp:17632
@ PPC_lfiwax
Definition allins.hpp:15994
@ PPC_evrlw
Definition allins.hpp:15730
@ PPC_vinsblx
Definition allins.hpp:18629
@ PPC_pmxvf64ger
Definition allins.hpp:18522
@ PPC_ps_nabs
Definition allins.hpp:16481
@ PPC_evmhoumia
Definition allins.hpp:15685
@ PPC_evfsabs
Definition allins.hpp:15824
@ PPC_vslo
Definition allins.hpp:16169
@ PPC_vaddubm
Definition allins.hpp:16071
@ PPC_evmwumi
Definition allins.hpp:15721
@ PPC_vabsdub
Definition allins.hpp:17580
@ PPC_zmhogwsmfraa
Definition allins.hpp:18080
@ PPC_evdotpwsssiaa
Definition allins.hpp:16744
@ PPC_zmheogwsmf
Definition allins.hpp:18067
@ PPC_zvpkshgwshfrs
Definition allins.hpp:17850
@ PPC_evsubfusiaa
Definition allins.hpp:17044
@ PPC_miso
Definition allins.hpp:17450
@ PPC_zvmhllsuian
Definition allins.hpp:18306
@ PPC_andis
Definition allins.hpp:15128
@ PPC_sliq
Definition allins.hpp:15551
@ PPC_xxgenpcvwm
Definition allins.hpp:18724
@ PPC_zvdotphgasian
Definition allins.hpp:18379
@ PPC_evmwlssiaaw3
Definition allins.hpp:17164
@ PPC_evperm
Definition allins.hpp:16891
@ PPC_zmheosuian
Definition allins.hpp:18121
@ PPC_zmwgsuian
Definition allins.hpp:18177
@ PPC_xvcmpgtdp
Definition allins.hpp:16262
@ PPC_abssb
Definition allins.hpp:17506
@ PPC_tdlgt
Definition allins.hpp:15386
@ PPC_zmwlsuian
Definition allins.hpp:18199
@ PPC_evmwlsmiaaw3
Definition allins.hpp:17170
@ PPC_zvdotphgwasmf
Definition allins.hpp:18469
@ PPC_efsmin
Definition allins.hpp:16517
@ PPC_evsloi
Definition allins.hpp:16918
@ PPC_zstwhodmx
Definition allins.hpp:18025
@ PPC_evdotphssmi
Definition allins.hpp:16630
@ PPC_evlwhex
Definition allins.hpp:15625
@ PPC_evdlvob
Definition allins.hpp:17273
@ PPC_evmhossfanw
Definition allins.hpp:15681
@ PPC_zlhgwsfu
Definition allins.hpp:17935
@ PPC_efdctsidz
Definition allins.hpp:15780
@ PPC_vmulosw
Definition allins.hpp:17348
@ PPC_lfdp
Definition allins.hpp:15996
@ PPC_hwaccel
Definition allins.hpp:17782
@ PPC_vupklsh
Definition allins.hpp:16206
@ PPC_mtfsf
Definition allins.hpp:15251
@ PPC_vextractuh
Definition allins.hpp:17597
@ PPC_vcmpequd
Definition allins.hpp:17355
@ PPC_evmaxws
Definition allins.hpp:17282
@ PPC_efdcfsi
Definition allins.hpp:15770
@ PPC_pmxvbf16ger2nn
Definition allins.hpp:18508
@ PPC_evilveoh
Definition allins.hpp:17262
@ PPC_vcfsx
Definition allins.hpp:16085
@ PPC_machhws
Definition allins.hpp:16012
@ PPC_sthepx
Definition allins.hpp:15970
@ PPC_evdotpbasmiaaw
Definition allins.hpp:16715
@ PPC_mulhdu
Definition allins.hpp:15261
@ MIPS_daddiu
Definition allins.hpp:6418
@ MIPS_ginvt
Definition allins.hpp:8136
@ MIPS_bc2f
Definition allins.hpp:6469
@ PSP_vcrsp
Definition allins.hpp:7032
@ MIPS_shll_qb
Definition allins.hpp:7369
@ MIPS_brsc
Definition allins.hpp:8175
@ PSP_mtv
Definition allins.hpp:7010
@ MIPS_phmadh
Definition allins.hpp:6780
@ MIPS_preceu_ph_qbl
Definition allins.hpp:7339
@ MIPS_sbx
Definition allins.hpp:8124
@ MIPS_msa_fslt_d
Definition allins.hpp:7988
@ MIPS_ldc2
Definition allins.hpp:6514
@ MIPS_psrlvw
Definition allins.hpp:6755
@ MIPS_msa_fsule_w
Definition allins.hpp:7993
@ MIPS_msa_sat_s_d
Definition allins.hpp:7721
@ MIPS_msa_ldi_b
Definition allins.hpp:7959
@ MIPS_addwc
Definition allins.hpp:7249
@ MIPS_vadd
Definition allins.hpp:6671
@ MIPS_move_balc
Definition allins.hpp:8157
@ PSP_bvf
Definition allins.hpp:7013
@ MIPS_msub_ps
Definition allins.hpp:6884
@ MIPS_psravw
Definition allins.hpp:6757
@ MIPS_msa_maxi_s_b
Definition allins.hpp:7634
@ MIPS_psrah
Definition allins.hpp:6820
@ MIPS_msa_fmsub_d
Definition allins.hpp:8006
@ MIPS_tltu
Definition allins.hpp:6428
@ MIPS_msa_ceqi_d
Definition allins.hpp:7677
@ PSP_vmfvc
Definition allins.hpp:7060
@ MIPS_drotr32
Definition allins.hpp:6941
@ MIPS_exts32
Definition allins.hpp:6958
@ MIPS_msa_sra_d
Definition allins.hpp:7561
@ MIPS_maq_s_w_qhll
Definition allins.hpp:7447
@ MIPS_fround_l
Definition allins.hpp:6559
@ MIPS_preceq_pw_qhl
Definition allins.hpp:7356
@ MIPS_mul_s_ph
Definition allins.hpp:7512
@ MIPS_vrndn
Definition allins.hpp:6660
@ MIPS_msa_addv_h
Definition allins.hpp:7615
@ MIPS_msa_div_s_w
Definition allins.hpp:7796
@ MIPS_mtsah
Definition allins.hpp:6722
@ MIPS_dmfc0
Definition allins.hpp:6434
@ MIPS_dla
Definition allins.hpp:6852
@ MIPS_precrqu_s_ob_qh
Definition allins.hpp:7328
@ MIPS_dpsq_sa_l_w
Definition allins.hpp:7432
@ MIPS_msa_srai_h
Definition allins.hpp:7563
@ MIPS_bc
Definition allins.hpp:8154
@ MIPS_vnxor
Definition allins.hpp:6698
@ MIPS_msa_splati_h
Definition allins.hpp:7841
@ MIPS_lbv
Definition allins.hpp:6631
@ MIPS_cins
Definition allins.hpp:6953
@ MIPS_shllv_ph
Definition allins.hpp:7375
@ MIPS_fc_eq
Definition allins.hpp:6572
@ MIPS_mtdr
Definition allins.hpp:6989
@ MIPS_mul
Definition allins.hpp:6862
@ MIPS_msa_fcor_w
Definition allins.hpp:8021
@ MIPS_cop1
Definition allins.hpp:6463
@ MIPS_msa_mulv_d
Definition allins.hpp:7785
@ MIPS_pceqw
Definition allins.hpp:6753
@ MIPS_lhu
Definition allins.hpp:6519
@ MIPS_msa_min_s_w
Definition allins.hpp:7648
@ MIPS_cachee
Definition allins.hpp:8096
@ MIPS_pexow
Definition allins.hpp:6814
@ MIPS_msa_sat_u_b
Definition allins.hpp:7722
@ MIPS_muleq_s_pw_qhl
Definition allins.hpp:7276
@ MIPS_preceu_ph_qbla
Definition allins.hpp:7344
@ MIPS_lpv
Definition allins.hpp:6637
@ MIPS_exts
Definition allins.hpp:6957
@ MIPS_bltic
Definition allins.hpp:8167
@ MIPS_msa_min_s_d
Definition allins.hpp:7649
@ MIPS_msa_mini_u_w
Definition allins.hpp:7660
@ MIPS_drotrv
Definition allins.hpp:6942
@ PSP_vrsq
Definition allins.hpp:7087
@ MIPS_msa_ld_h
Definition allins.hpp:7711
@ MIPS_shra_r_qb
Definition allins.hpp:7382
@ PSP_vsat1
Definition allins.hpp:7090
@ MIPS_msa_adds_a_h
Definition allins.hpp:7731
@ MIPS_fmula
Definition allins.hpp:6725
@ MIPS_msa_binsl_w
Definition allins.hpp:7600
@ MIPS_jalr
Definition allins.hpp:6499
@ MIPS_extrv_w
Definition allins.hpp:7462
@ MIPS_sdp
Definition allins.hpp:7224
@ MIPS_cmp_eq_ph
Definition allins.hpp:7287
@ PSP_vslt
Definition allins.hpp:7098
@ MIPS_mult
Definition allins.hpp:6456
@ MIPS_pmflo
Definition allins.hpp:6827
@ MIPS_vsac
Definition allins.hpp:6682
@ MIPS_msa_fill_d
Definition allins.hpp:7922
@ MIPS_msa_bnz_b
Definition allins.hpp:7951
@ MIPS_msa_ilvod_b
Definition allins.hpp:7864
@ MIPS_msa_nlzc_h
Definition allins.hpp:7932
@ MIPS_dinsm
Definition allins.hpp:6936
@ MIPS_vne
Definition allins.hpp:6687
@ MIPS_msa_andi_b
Definition allins.hpp:7901
@ MIPS_sh
Definition allins.hpp:6534
@ MIPS_maq_sa_w_qhlr
Definition allins.hpp:7438
@ MIPS_maq_s_w_qhlr
Definition allins.hpp:7451
@ MIPS_lwxc1
Definition allins.hpp:6606
@ MIPS_qmacs_00
Definition allins.hpp:7540
@ MIPS_msa_asub_u_h
Definition allins.hpp:7779
@ MIPS_swc2
Definition allins.hpp:6536
@ MIPS_jalx
Definition allins.hpp:6503
@ MIPS_msa_mini_u_h
Definition allins.hpp:7659
@ MIPS_fmin
Definition allins.hpp:6731
@ PSP_vwbn
Definition allins.hpp:7114
@ MIPS_prepend
Definition allins.hpp:7517
@ MIPS_ddivu
Definition allins.hpp:6451
@ MIPS_ddiv
Definition allins.hpp:6450
@ PSP_vmmul
Definition allins.hpp:7064
@ MIPS_msa_insert_b
Definition allins.hpp:7943
@ MIPS_syscall
Definition allins.hpp:6466
@ MIPS_msa_ilvod_d
Definition allins.hpp:7867
@ MIPS_msa_fmax_a_w
Definition allins.hpp:8019
@ MIPS_msa_mini_s_h
Definition allins.hpp:7651
@ MIPS_syncs
Definition allins.hpp:6973
@ MIPS_msa_subvi_d
Definition allins.hpp:7629
@ MIPS_lwle
Definition allins.hpp:8098
@ MIPS_msa_ave_s_b
Definition allins.hpp:7742
@ MIPS_vnor
Definition allins.hpp:6696
@ MIPS_mttgpr
Definition allins.hpp:7177
@ MIPS_extrv_r_w
Definition allins.hpp:7472
@ MIPS_msa_copy_u_w
Definition allins.hpp:7941
@ MIPS_shll_s_ph
Definition allins.hpp:7380
@ MIPS_madd
Definition allins.hpp:6858
@ MIPS_msa_pckev_b
Definition allins.hpp:7844
@ MIPS_mulq_s_w
Definition allins.hpp:7513
@ MIPS_rddsp
Definition allins.hpp:7465
@ PSP_vdiv
Definition allins.hpp:7035
@ MIPS_msa_splati_d
Definition allins.hpp:7843
@ MIPS_nmadd_ps
Definition allins.hpp:6887
@ MIPS_shrav_qh
Definition allins.hpp:7401
@ MIPS_lwm2
Definition allins.hpp:8182
@ MIPS_msa_cle_u_h
Definition allins.hpp:7703
@ MIPS_bc0fl
Definition allins.hpp:6471
@ MIPS_dextp
Definition allins.hpp:7482
@ MIPS_dextr_r_w
Definition allins.hpp:7488
@ MIPS_beq
Definition allins.hpp:6495
@ MIPS_precequ_pw_qhr
Definition allins.hpp:7359
@ MIPS_psubub
Definition allins.hpp:6801
@ MIPS_muleu_s_qh_obr
Definition allins.hpp:7282
@ MIPS_subq_s_qh
Definition allins.hpp:7283
@ MIPS_sdc2
Definition allins.hpp:6531
@ MIPS_msa_bz_h
Definition allins.hpp:7956
@ MIPS_bgtzl
Definition allins.hpp:6488
@ MIPS_msa_pckod_h
Definition allins.hpp:7849
@ MIPS_sub
Definition allins.hpp:6397
@ MIPS_ppach
Definition allins.hpp:6797
@ MIPS_shrav_ph
Definition allins.hpp:7377
@ MIPS_vinst
Definition allins.hpp:6707
@ MIPS_multu
Definition allins.hpp:6457
@ MIPS_deret
Definition allins.hpp:6869
@ MIPS_vmov
Definition allins.hpp:6700
@ MIPS_msa_bneg_d
Definition allins.hpp:7593
@ MIPS_lwpc
Definition allins.hpp:8139
@ MIPS_msa_sld_w
Definition allins.hpp:7830
@ MIPS_fc_ole
Definition allins.hpp:6576
@ MIPS_mtm0
Definition allins.hpp:6959
@ PSP_vsrt1
Definition allins.hpp:7101
@ MIPS_msa_hadd_u_w
Definition allins.hpp:7892
@ MIPS_pperm
Definition allins.hpp:7215
@ PSP_mfvc
Definition allins.hpp:7011
@ MIPS_msa_fmsub_w
Definition allins.hpp:8005
@ MIPS_muleq_s_pw_qhr
Definition allins.hpp:7278
@ MIPS_msa_srari_d
Definition allins.hpp:7879
@ MIPS_subuh_r_qb
Definition allins.hpp:7508
@ MIPS_msa_srari_w
Definition allins.hpp:7878
@ MIPS_ldm
Definition allins.hpp:7222
@ MIPS_msa_asub_s_d
Definition allins.hpp:7777
@ MIPS_cttc1
Definition allins.hpp:7173
@ MIPS_tlbinvf
Definition allins.hpp:8135
@ MIPS_slt
Definition allins.hpp:6395
@ MIPS_tnei
Definition allins.hpp:6449
@ MIPS_mulu
Definition allins.hpp:8113
@ MIPS_bc1any4f
Definition allins.hpp:7183
@ MIPS_fcabs_nge
Definition allins.hpp:7198
@ MIPS_dextrv_w
Definition allins.hpp:7480
@ MIPS_msa_srl_h
Definition allins.hpp:7567
@ MIPS_msa_mulv_b
Definition allins.hpp:7782
@ MIPS_vmudl
Definition allins.hpp:6669
@ MIPS_vmadn
Definition allins.hpp:6668
@ MIPS_fc_lt
Definition allins.hpp:6582
@ MIPS_msa_ceq_w
Definition allins.hpp:7672
@ MIPS_vmacq
Definition allins.hpp:6662
@ MIPS_msa_mulv_w
Definition allins.hpp:7784
@ PSP_vsbn
Definition allins.hpp:7091
@ MIPS_extr_s_h
Definition allins.hpp:7474
@ MIPS_subqh_w
Definition allins.hpp:7504
@ MIPS_nmsub_s
Definition allins.hpp:6623
@ MIPS_msa_ilvl_b
Definition allins.hpp:7852
@ MIPS_msa_ctcmsa
Definition allins.hpp:8077
@ MIPS_syncie
Definition allins.hpp:8150
@ MIPS_bgtz
Definition allins.hpp:6487
@ MIPS_msa_dotp_s_w
Definition allins.hpp:7811
@ MIPS_pmaxh
Definition allins.hpp:6764
@ MIPS_seq
Definition allins.hpp:6968
@ MIPS_vmulu_cn
Definition allins.hpp:6982
@ MIPS_pintoh
Definition allins.hpp:6771
@ MIPS_dsll32
Definition allins.hpp:6401
@ MIPS_insv
Definition allins.hpp:7240
@ MIPS_bltzl
Definition allins.hpp:6494
@ MIPS_msa_srar_b
Definition allins.hpp:7872
@ MIPS_msa_clti_u_w
Definition allins.hpp:7692
@ MIPS_msa_mul_q_w
Definition allins.hpp:8028
@ MIPS_tgeiu
Definition allins.hpp:6446
@ MIPS_msa_subs_s_h
Definition allins.hpp:7759
@ MIPS_shv
Definition allins.hpp:6651
@ MIPS_msa_min_a_b
Definition allins.hpp:7666
@ MIPS_bc2tl
Definition allins.hpp:6481
@ MIPS_dmult
Definition allins.hpp:6454
@ MIPS_slv
Definition allins.hpp:6645
@ MIPS_precequ_pw_qhla
Definition allins.hpp:7363
@ MIPS_null
Definition allins.hpp:6382
@ MIPS_msa_bnz_d
Definition allins.hpp:7954
@ MIPS_paddsb
Definition allins.hpp:6798
@ MIPS_vrcpl
Definition allins.hpp:6705
@ MIPS_psrlh
Definition allins.hpp:6819
@ MIPS_msa_sldi_w
Definition allins.hpp:7834
@ PSP_vt4444
Definition allins.hpp:7106
@ MIPS_cmpgu_le_qb
Definition allins.hpp:7303
@ MIPS_msa_cle_u_w
Definition allins.hpp:7704
@ MIPS_aluipc
Definition allins.hpp:8160
@ MIPS_pinth
Definition allins.hpp:6769
@ MIPS_paddsw
Definition allins.hpp:6776
@ MIPS_llwp
Definition allins.hpp:8142
@ MIPS_vrndp
Definition allins.hpp:6659
@ MIPS_msa_min_a_d
Definition allins.hpp:7669
@ MIPS_msa_srai_b
Definition allins.hpp:7562
@ MIPS_lasd
Definition allins.hpp:7529
@ MIPS_addu_s_ob
Definition allins.hpp:7274
@ MIPS_msa_bz_v
Definition allins.hpp:7918
@ MIPS_msa_fsune_d
Definition allins.hpp:8036
@ PSP_vf2h
Definition allins.hpp:7038
@ MIPS_msa_frint_d
Definition allins.hpp:8058
@ MIPS_b
Definition allins.hpp:6597
@ MIPS_cmpgdu_le_qb
Definition allins.hpp:7294
@ MIPS_msa_mulr_q_w
Definition allins.hpp:8040
@ MIPS_msa_slli_b
Definition allins.hpp:7554
@ PSP_mtvc
Definition allins.hpp:7012
@ MIPS_paddh
Definition allins.hpp:6758
@ PSP_vnop
Definition allins.hpp:7017
@ MIPS_lad
Definition allins.hpp:7524
@ MIPS_mul_ph
Definition allins.hpp:7511
@ MIPS_srav
Definition allins.hpp:6413
@ MIPS_msa_ldi_h
Definition allins.hpp:7960
@ MIPS_ltv
Definition allins.hpp:6642
@ MIPS_ftrunc_l
Definition allins.hpp:6560
@ MIPS_prevh
Definition allins.hpp:6811
@ MIPS_msa_dotp_u_h
Definition allins.hpp:7813
@ MIPS_msa_fsule_d
Definition allins.hpp:7994
@ MIPS_multp
Definition allins.hpp:7214
@ MIPS_dextr_l
Definition allins.hpp:7479
@ MIPS_shra_r_ph
Definition allins.hpp:7383
@ MIPS_sc
Definition allins.hpp:6532
@ MIPS_cmpgu_eq_qb
Definition allins.hpp:7297
@ PSP_vhdp
Definition allins.hpp:7046
@ MIPS_msa_max_a_h
Definition allins.hpp:7663
@ MIPS_precr_sra_r_ph_w
Definition allins.hpp:7307
@ MIPS_cfc2
Definition allins.hpp:6431
@ MIPS_addiupc
Definition allins.hpp:8158
@ MIPS_bitrevw
Definition allins.hpp:8177
@ MIPS_msa_div_s_b
Definition allins.hpp:7794
@ MIPS_vextn
Definition allins.hpp:6712
@ MIPS_swl
Definition allins.hpp:6526
@ PSP_vadd
Definition allins.hpp:7021
@ MIPS_fc_ueq
Definition allins.hpp:6573
@ MIPS_mtthi
Definition allins.hpp:7168
@ MIPS_rdpgpr
Definition allins.hpp:6894
@ PSP_vidt
Definition allins.hpp:7055
@ MIPS_msa_srli_w
Definition allins.hpp:7572
@ MIPS_msa_srlr_w
Definition allins.hpp:7882
@ MIPS_msa_bz_w
Definition allins.hpp:7957
@ MIPS_ualh
Definition allins.hpp:8148
@ MIPS_subu_s_ph
Definition allins.hpp:7258
@ MIPS_shra_qb
Definition allins.hpp:7379
@ MIPS_dmadd
Definition allins.hpp:7439
@ MIPS_dextr_s_h
Definition allins.hpp:7493
@ MIPS_mult3
Definition allins.hpp:6836
@ MIPS_msa_subsus_u_d
Definition allins.hpp:7769
@ MIPS_lbux
Definition allins.hpp:7414
@ MIPS_clz
Definition allins.hpp:6857
@ MIPS_vrcph
Definition allins.hpp:6703
@ MIPS_preceu_ph_qbra
Definition allins.hpp:7346
@ MIPS_addq_pw
Definition allins.hpp:7271
@ MIPS_dins
Definition allins.hpp:6935
@ MIPS_cmp_le_qh
Definition allins.hpp:7315
@ MIPS_msa_asub_u_b
Definition allins.hpp:7778
@ MIPS_cmpu_eq_ob
Definition allins.hpp:7308
@ MIPS_msa_fexupr_d
Definition allins.hpp:8064
@ MIPS_fcvt_l
Definition allins.hpp:6558
@ MIPS_msa_ave_u_d
Definition allins.hpp:7749
@ MIPS_shrlv_ob
Definition allins.hpp:7400
@ MIPS_mtp2
Definition allins.hpp:6964
@ MIPS_subqh_ph
Definition allins.hpp:7503
@ MIPS_shrlv_qb
Definition allins.hpp:7376
@ MIPS_seqi
Definition allins.hpp:6969
@ MIPS_cmpgdu_lt_qb
Definition allins.hpp:7291
@ MIPS_cmpu_lt_qb
Definition allins.hpp:7289
@ MIPS_shrav_r_ph
Definition allins.hpp:7389
@ MIPS_msa_subs_s_b
Definition allins.hpp:7758
@ MIPS_msa_dotp_s_d
Definition allins.hpp:7812
@ MIPS_msa_hsub_u_h
Definition allins.hpp:7897
@ MIPS_plzcw
Definition allins.hpp:6732
@ MIPS_tlbwi
Definition allins.hpp:6544
@ MIPS_scwp
Definition allins.hpp:8144
@ MIPS_msa_ffql_d
Definition allins.hpp:8066
@ MIPS_msa_splati_w
Definition allins.hpp:7842
@ MIPS_bgezals
Definition allins.hpp:7230
@ MIPS_dmfc2
Definition allins.hpp:6938
@ MIPS_dpaq_s_w_ph
Definition allins.hpp:7428
@ MIPS_fcabs_un
Definition allins.hpp:7186
@ MIPS_msa_sat_u_w
Definition allins.hpp:7724
@ MIPS_msa_st_w
Definition allins.hpp:7716
@ MIPS_addmiu
Definition allins.hpp:7125
@ MIPS_msa_srlr_h
Definition allins.hpp:7881
@ MIPS_absq_s_qb
Definition allins.hpp:7329
@ MIPS_dpsq_s_w_ph
Definition allins.hpp:7431
@ MIPS_pul
Definition allins.hpp:6891
@ MIPS_break
Definition allins.hpp:6465
@ MIPS_fcabs_f
Definition allins.hpp:7185
@ MIPS_packrl_ph
Definition allins.hpp:7304
@ MIPS_cmpgdu_eq_qb
Definition allins.hpp:7288
@ MIPS_mov
Definition allins.hpp:6590
@ MIPS_nmadd_d
Definition allins.hpp:6622
@ MIPS_msa_sld_h
Definition allins.hpp:7829
@ MIPS_tlbinv
Definition allins.hpp:8134
@ MIPS_pcpyh
Definition allins.hpp:6812
@ PSP_vlgb
Definition allins.hpp:7057
@ MIPS_msa_clei_s_w
Definition allins.hpp:7700
@ MIPS_beqc
Definition allins.hpp:8172
@ MIPS_msa_st_h
Definition allins.hpp:7715
@ MIPS_msa_or_v
Definition allins.hpp:7902
@ MIPS_msa_div_s_h
Definition allins.hpp:7795
@ MIPS_pmultw
Definition allins.hpp:6772
@ MIPS_msa_binsli_w
Definition allins.hpp:7604
@ MIPS_mthc0
Definition allins.hpp:8132
@ PSP_vdot
Definition allins.hpp:7036
@ MIPS_subq_s_w
Definition allins.hpp:7266
@ MIPS_vsubc
Definition allins.hpp:6676
@ MIPS_dlsa
Definition allins.hpp:8083
@ MIPS_fork
Definition allins.hpp:7148
@ MIPS_replv_qb
Definition allins.hpp:7334
@ MIPS_dextu
Definition allins.hpp:6934
@ MIPS_dpsqx_s_w_ph
Definition allins.hpp:7421
@ MIPS_msa_pckev_d
Definition allins.hpp:7847
@ MIPS_usd
Definition allins.hpp:6978
@ MIPS_vaccb
Definition allins.hpp:6679
@ MIPS_shxs
Definition allins.hpp:8126
@ PSP_vneg
Definition allins.hpp:7071
@ MIPS_fmax
Definition allins.hpp:6730
@ MIPS_msa_mod_u_w
Definition allins.hpp:7808
@ MIPS_balrsc
Definition allins.hpp:8176
@ MIPS_bltzal
Definition allins.hpp:6492
@ MIPS_msa_maxi_u_h
Definition allins.hpp:7643
@ MIPS_msa_ilvev_d
Definition allins.hpp:7863
@ MIPS_msa_fsune_w
Definition allins.hpp:8035
@ MIPS_mult1
Definition allins.hpp:6745
@ MIPS_pmultuw
Definition allins.hpp:6773
@ MIPS_msa_maxi_u_b
Definition allins.hpp:7642
@ MIPS_jr_hb
Definition allins.hpp:6879
@ MIPS_save
Definition allins.hpp:6911
@ MIPS_bc2t
Definition allins.hpp:6477
@ MIPS_pick_pw
Definition allins.hpp:7319
@ MIPS_msa_div_u_d
Definition allins.hpp:7801
@ MIPS_msa_hsub_s_d
Definition allins.hpp:7896
@ MIPS_msa_subsus_u_w
Definition allins.hpp:7768
@ MIPS_sadd
Definition allins.hpp:7126
@ MIPS_lhe
Definition allins.hpp:8088
@ MIPS_and
Definition allins.hpp:6388
@ MIPS_pextlh
Definition allins.hpp:6795
@ MIPS_maq_sa_w_phr
Definition allins.hpp:7423
@ MIPS_msa_bclr_b
Definition allins.hpp:7574
@ MIPS_msa_mod_s_b
Definition allins.hpp:7802
@ MIPS_min
Definition allins.hpp:7135
@ MIPS_laa
Definition allins.hpp:7520
@ MIPS_dpa_w_ph
Definition allins.hpp:7415
@ MIPS_msa_aver_s_b
Definition allins.hpp:7750
@ MIPS_pceqb
Definition allins.hpp:6770
@ PSP_vflush
Definition allins.hpp:7018
@ MIPS_msa_maxi_u_d
Definition allins.hpp:7645
@ MIPS_psllh
Definition allins.hpp:6818
@ MIPS_qfsrv
Definition allins.hpp:6805
@ MIPS_daddu
Definition allins.hpp:6390
@ MIPS_msa_ldi_w
Definition allins.hpp:7961
@ PSP_viim
Definition allins.hpp:7056
@ MIPS_msa_max_a_b
Definition allins.hpp:7662
@ MIPS_fcabs_ngle
Definition allins.hpp:7194
@ MIPS_bc1fl
Definition allins.hpp:6472
@ MIPS_cins32
Definition allins.hpp:6954
@ MIPS_vaddb
Definition allins.hpp:6677
@ MIPS_vlt
Definition allins.hpp:6685
@ MIPS_msa_flog2_w
Definition allins.hpp:8059
@ MIPS_fmovt
Definition allins.hpp:6618
@ MIPS_swm
Definition allins.hpp:7225
@ PSP_vsin
Definition allins.hpp:7097
@ MIPS_syncws
Definition allins.hpp:6975
@ MIPS_msa_fsult_d
Definition allins.hpp:7990
@ MIPS_msa_bclri_h
Definition allins.hpp:7579
@ PSP_vcmp
Definition allins.hpp:7029
@ MIPS_msa_frcp_w
Definition allins.hpp:8055
@ MIPS_laid
Definition allins.hpp:7527
@ MIPS_msa_subv_h
Definition allins.hpp:7623
@ MIPS_mftacx
Definition allins.hpp:7155
@ MIPS_R5900_last
Definition allins.hpp:6835
@ MIPS_bposge32
Definition allins.hpp:7242
@ MIPS_mtm2
Definition allins.hpp:6961
@ MIPS_lbu
Definition allins.hpp:6506
@ MIPS_dsrav
Definition allins.hpp:6410
@ MIPS_msa_cle_u_d
Definition allins.hpp:7705
@ MIPS_mulsaq_s_w_qh
Definition allins.hpp:7453
@ PSP_vpfxd
Definition allins.hpp:7076
@ MIPS_j
Definition allins.hpp:6500
@ MIPS_precrq_rs_ph_w
Definition allins.hpp:7302
@ MIPS_msa_fsqrt_d
Definition allins.hpp:8052
@ MIPS_bgezal
Definition allins.hpp:6484
@ PSP_svl
Definition allins.hpp:7007
@ MIPS_msa_ilvev_w
Definition allins.hpp:7862
@ MIPS_mtlhx
Definition allins.hpp:7213
@ MIPS_mftc2
Definition allins.hpp:7161
@ MIPS_extp
Definition allins.hpp:7463
@ MIPS_msa_msub_q_h
Definition allins.hpp:8031
@ MIPS_precrq_pw_l
Definition allins.hpp:7323
@ MIPS_vsum
Definition allins.hpp:6683
@ MIPS_mfc2
Definition allins.hpp:6440
@ MIPS_bposge64
Definition allins.hpp:7243
@ PSP_vmov
Definition allins.hpp:7066
@ MIPS_dmtc1
Definition allins.hpp:6907
@ PSP_vabs
Definition allins.hpp:7020
@ MIPS_paddsh
Definition allins.hpp:6789
@ MIPS_msa_ilvr_w
Definition allins.hpp:7858
@ MIPS_maddp
Definition allins.hpp:7211
@ MIPS_msa_mini_u_b
Definition allins.hpp:7658
@ MIPS_cmp_le_pw
Definition allins.hpp:7316
@ MIPS_msa_fadd_d
Definition allins.hpp:7996
@ MIPS_msa_cle_s_b
Definition allins.hpp:7694
@ MIPS_precrq_qb_ph
Definition allins.hpp:7298
@ MIPS_maq_s_w_qhrr
Definition allins.hpp:7459
@ MIPS_ldv
Definition allins.hpp:6634
@ MIPS_msa_fcule_w
Definition allins.hpp:7977
@ MIPS_msa_fcune_w
Definition allins.hpp:8023
@ MIPS_extend
Definition allins.hpp:6849
@ MIPS_shrav_r_w
Definition allins.hpp:7390
@ MIPS_llv
Definition allins.hpp:6633
@ MIPS_msa_ld_d
Definition allins.hpp:7713
@ MIPS_msa_nlzc_b
Definition allins.hpp:7931
@ MIPS_msa_ld_w
Definition allins.hpp:7712
@ MIPS_pextuh
Definition allins.hpp:6796
@ MIPS_bgec
Definition allins.hpp:8173
@ MIPS_mfthc1
Definition allins.hpp:7157
@ MIPS_bc0f
Definition allins.hpp:6467
@ MIPS_tlbp
Definition allins.hpp:6542
@ MIPS_qmac_00
Definition allins.hpp:7536
@ MIPS_msa_subvi_w
Definition allins.hpp:7628
@ MIPS_dsbh
Definition allins.hpp:6943
@ MIPS_msa_clt_u_w
Definition allins.hpp:7688
@ PSP_vmone
Definition allins.hpp:7065
@ MIPS_lb
Definition allins.hpp:6505
@ MIPS_msa_addv_d
Definition allins.hpp:7617
@ MIPS_swx
Definition allins.hpp:8127
@ MIPS_bnel
Definition allins.hpp:6498
@ MIPS_msa_min_s_b
Definition allins.hpp:7646
@ MIPS_fmsuba
Definition allins.hpp:6727
@ MIPS_addqh_ph
Definition allins.hpp:7500
@ MIPS_msa_clti_s_d
Definition allins.hpp:7685
@ MIPS_modu
Definition allins.hpp:8116
@ MIPS_tge
Definition allins.hpp:6425
@ MIPS_shrav_r_qb
Definition allins.hpp:7388
@ MIPS_msa_ilvr_b
Definition allins.hpp:7856
@ MIPS_subq_s_pw
Definition allins.hpp:7284
@ MIPS_msa_binsli_h
Definition allins.hpp:7603
@ MIPS_msa_aver_s_h
Definition allins.hpp:7751
@ MIPS_fceil_w
Definition allins.hpp:6565
@ MIPS_msa_fexupl_d
Definition allins.hpp:8062
@ MIPS_pmfhl
Definition allins.hpp:6828
@ MIPS_sb
Definition allins.hpp:6523
@ MIPS_ladd
Definition allins.hpp:7525
@ MIPS_lbue
Definition allins.hpp:8087
@ MIPS_vsut
Definition allins.hpp:6673
@ MIPS_msa_splat_h
Definition allins.hpp:7837
@ MIPS_mfhc2
Definition allins.hpp:6883
@ MIPS_fcvt_ps
Definition allins.hpp:6874
@ MIPS_mftdsp
Definition allins.hpp:7156
@ MIPS_absq_s_qh
Definition allins.hpp:7347
@ MIPS_muh
Definition allins.hpp:8112
@ MIPS_msa_pcnt_b
Definition allins.hpp:7923
@ MIPS_beqic
Definition allins.hpp:8161
@ MIPS_last
Definition allins.hpp:8185
@ MIPS_dmaddu
Definition allins.hpp:7452
@ MIPS_saad
Definition allins.hpp:6967
@ MIPS_bc3fl
Definition allins.hpp:6474
@ MIPS_fcabs_olt
Definition allins.hpp:7189
@ MIPS_crc32cw
Definition allins.hpp:8123
@ MIPS_pand
Definition allins.hpp:6783
@ MIPS_la
Definition allins.hpp:6600
@ MIPS_qmtc2
Definition allins.hpp:6437
@ MIPS_msa_adds_s_w
Definition allins.hpp:7736
@ MIPS_move
Definition allins.hpp:6850
@ MIPS_pdivbw
Definition allins.hpp:6742
@ MIPS_ssv
Definition allins.hpp:6644
@ MIPS_msa_hadd_s_w
Definition allins.hpp:7889
@ MIPS_crc32cb
Definition allins.hpp:8121
@ MIPS_seh
Definition allins.hpp:6898
@ MIPS_msa_shf_w
Definition allins.hpp:7916
@ MIPS_synci
Definition allins.hpp:6900
@ MIPS_msa_aver_u_w
Definition allins.hpp:7756
@ MIPS_msa_fsne_w
Definition allins.hpp:8037
@ MIPS_msa_fsun_w
Definition allins.hpp:7981
@ MIPS_mttc1
Definition allins.hpp:7172
@ MIPS_pextlw
Definition allins.hpp:6782
@ MIPS_msa_ave_s_d
Definition allins.hpp:7745
@ MIPS_mtsab
Definition allins.hpp:6721
@ MIPS_msa_max_a_w
Definition allins.hpp:7664
@ MIPS_divu
Definition allins.hpp:6453
@ MIPS_msa_fmin_w
Definition allins.hpp:8013
@ PSP_bvtl
Definition allins.hpp:7016
@ MIPS_msa_sldi_d
Definition allins.hpp:7835
@ MIPS_msa_mini_u_d
Definition allins.hpp:7661
@ PSP_vs2i
Definition allins.hpp:7088
@ MIPS_bclr
Definition allins.hpp:7129
@ MIPS_msa_min_a_h
Definition allins.hpp:7667
@ MIPS_mulsaq_s_w_ph
Definition allins.hpp:7433
@ MIPS_ldr
Definition allins.hpp:6508
@ MIPS_ginvi
Definition allins.hpp:8137
@ MIPS_clo
Definition allins.hpp:6856
@ MIPS_msa_msubv_d
Definition allins.hpp:7793
@ MIPS_dclo
Definition allins.hpp:6930
@ MIPS_msa_clt_s_d
Definition allins.hpp:7681
@ MIPS_msa_hadd_u_h
Definition allins.hpp:7891
@ MIPS_msa_fsub_d
Definition allins.hpp:7998
@ MIPS_shllv_s_ph
Definition allins.hpp:7386
@ MIPS_msa_min_u_d
Definition allins.hpp:7657
@ MIPS_ppac5
Definition allins.hpp:6816
@ MIPS_fc_le
Definition allins.hpp:6584
@ MIPS_mod
Definition allins.hpp:8115
@ MIPS_msa_srlri_w
Definition allins.hpp:7886
@ MIPS_sqc2
Definition allins.hpp:6832
@ MIPS_fcvt_pw_ps
Definition allins.hpp:7201
@ MIPS_addq_s_pw
Definition allins.hpp:7281
@ PSP_vsrt2
Definition allins.hpp:7102
@ MIPS_msa_dpsub_u_d
Definition allins.hpp:7827
@ MIPS_msa_nlzc_d
Definition allins.hpp:7934
@ MIPS_lawd
Definition allins.hpp:7531
@ MIPS_msa_fmadd_w
Definition allins.hpp:8003
@ MIPS_dsub
Definition allins.hpp:6391
@ MIPS_dbreak
Definition allins.hpp:6986
@ MIPS_mttc2
Definition allins.hpp:7175
@ MIPS_preceq_s_l_pwl
Definition allins.hpp:7357
@ MIPS_multu1
Definition allins.hpp:6746
@ MIPS_vmm0
Definition allins.hpp:6981
@ MIPS_msa_bseti_d
Definition allins.hpp:7589
@ MIPS_addqh_r_ph
Definition allins.hpp:7506
@ MIPS_dextr_rs_l
Definition allins.hpp:7494
@ MIPS_movf
Definition allins.hpp:6613
@ MIPS_msa_bset_d
Definition allins.hpp:7585
@ MIPS_preceq_w_phr
Definition allins.hpp:7341
@ MIPS_sbv
Definition allins.hpp:6643
@ MIPS_msa_nori_b
Definition allins.hpp:7905
@ PSP_vcmovf
Definition allins.hpp:7027
@ MIPS_shilo
Definition allins.hpp:7466
@ MIPS_subu_ph
Definition allins.hpp:7248
@ MIPS_copyw
Definition allins.hpp:8108
@ MIPS_msa_st_b
Definition allins.hpp:7714
@ MIPS_msa_nlzc_w
Definition allins.hpp:7933
@ MIPS_msa_subv_b
Definition allins.hpp:7622
@ MIPS_msa_mod_s_h
Definition allins.hpp:7803
@ MIPS_msa_madd_q_w
Definition allins.hpp:8030
@ MIPS_bneic
Definition allins.hpp:8165
@ MIPS_dextr_rs_w
Definition allins.hpp:7492
@ MIPS_bnezl
Definition allins.hpp:6594
@ MIPS_lh
Definition allins.hpp:6518
@ MIPS_vch
Definition allins.hpp:6690
@ MIPS_msa_insert_w
Definition allins.hpp:7945
@ MIPS_extrv_rs_w
Definition allins.hpp:7475
@ MIPS_crc32w
Definition allins.hpp:8120
@ MIPS_vabs
Definition allins.hpp:6674
@ MIPS_msa_bclr_h
Definition allins.hpp:7575
@ MIPS_msa_insve_b
Definition allins.hpp:7947
@ PSP_vdet
Definition allins.hpp:7034
@ MIPS_mflo1
Definition allins.hpp:6825
@ MIPS_msa_fclass_w
Definition allins.hpp:8045
@ MIPS_maq_s_l_pwl
Definition allins.hpp:7448
@ MIPS_msa_hsub_s_h
Definition allins.hpp:7894
@ MIPS_msa_mini_s_d
Definition allins.hpp:7653
@ MIPS_bltc
Definition allins.hpp:8170
@ PSP_lvr
Definition allins.hpp:7005
@ MIPS_msa_maxi_s_h
Definition allins.hpp:7635
@ MIPS_precrqu_s_qb_ph
Definition allins.hpp:7306
@ MIPS_pmfhi
Definition allins.hpp:6826
@ MIPS_lrv
Definition allins.hpp:6636
@ MIPS_crc32b
Definition allins.hpp:8118
@ MIPS_ucopyw
Definition allins.hpp:8109
@ MIPS_msa_sld_d
Definition allins.hpp:7831
@ MIPS_dextrv_s_h
Definition allins.hpp:7496
@ MIPS_bltzall
Definition allins.hpp:6493
@ MIPS_append
Definition allins.hpp:7515
@ MIPS_repl_pw
Definition allins.hpp:7351
@ MIPS_msa_sra_h
Definition allins.hpp:7559
@ MIPS_psubh
Definition allins.hpp:6761
@ MIPS_nmsub_ps
Definition allins.hpp:6888
@ MIPS_fcabs_lt
Definition allins.hpp:7197
@ MIPS_mtc1
Definition allins.hpp:6442
@ MIPS_mtlo1
Definition allins.hpp:6734
@ MIPS_msa_clti_s_w
Definition allins.hpp:7684
@ MIPS_msa_srari_h
Definition allins.hpp:7877
@ MIPS_msa_fmul_d
Definition allins.hpp:8000
@ MIPS_msa_subs_u_h
Definition allins.hpp:7763
@ MIPS_dextrv_r_l
Definition allins.hpp:7491
@ MIPS_dpsq_s_w_qh
Definition allins.hpp:7449
@ MIPS_dpau_h_obl
Definition allins.hpp:7442
@ MIPS_msa_dpsub_u_w
Definition allins.hpp:7826
@ MIPS_bteqz
Definition allins.hpp:6845
@ MIPS_mttc0
Definition allins.hpp:7165
@ PSP_bvfl
Definition allins.hpp:7015
@ PSP_vtfm4
Definition allins.hpp:7111
@ MIPS_msa_max_s_b
Definition allins.hpp:7630
@ MIPS_vinsq
Definition allins.hpp:6709
@ MIPS_msa_fmax_d
Definition allins.hpp:8018
@ MIPS_dinsv
Definition allins.hpp:7241
@ PSP_vmtvc
Definition allins.hpp:7068
@ MIPS_dnegu
Definition allins.hpp:6925
@ MIPS_qmacs_03
Definition allins.hpp:7543
@ MIPS_msa_maddv_b
Definition allins.hpp:7786
@ MIPS_msa_dpadd_s_h
Definition allins.hpp:7816
@ MIPS_psubb
Definition allins.hpp:6767
@ MIPS_absq_s_ph
Definition allins.hpp:7330
@ MIPS_scwpe
Definition allins.hpp:8145
@ MIPS_msa_binsr_b
Definition allins.hpp:7606
@ MIPS_msa_splat_w
Definition allins.hpp:7838
@ MIPS_msa_maddr_q_h
Definition allins.hpp:8041
@ MIPS_max
Definition allins.hpp:7136
@ MIPS_msa_ldi_d
Definition allins.hpp:7962
@ MIPS_shll_qh
Definition allins.hpp:7392
@ MIPS_shll_s_w
Definition allins.hpp:7381
@ MIPS_precequ_ph_qbl
Definition allins.hpp:7337
@ MIPS_absq_s_w
Definition allins.hpp:7331
@ MIPS_dmsub
Definition allins.hpp:7440
@ MIPS_daddi
Definition allins.hpp:6417
@ MIPS_R5900_first
Definition allins.hpp:6719
@ MIPS_dsubu
Definition allins.hpp:6392
@ PSP_svr
Definition allins.hpp:7008
@ MIPS_msa_ori_b
Definition allins.hpp:7903
@ MIPS_msa_fmul_w
Definition allins.hpp:7999
@ MIPS_las
Definition allins.hpp:7528
@ MIPS_bfins
Definition allins.hpp:7124
@ MIPS_msa_fsub_w
Definition allins.hpp:7997
@ MIPS_frsqrt2
Definition allins.hpp:7207
@ MIPS_tltiu
Definition allins.hpp:6448
@ PSP_vi2f
Definition allins.hpp:7051
@ MIPS_zcb
Definition allins.hpp:7544
@ MIPS_sdxc1
Definition allins.hpp:6607
@ MIPS_msa_dpsub_s_w
Definition allins.hpp:7823
@ PSP_vsbz
Definition allins.hpp:7092
@ MIPS_vxor
Definition allins.hpp:6697
@ MIPS_msa_binsri_w
Definition allins.hpp:7612
@ MIPS_maddu
Definition allins.hpp:6859
@ PSP_vrnds
Definition allins.hpp:7085
@ MIPS_cmpgu_eq_ob
Definition allins.hpp:7320
@ MIPS_dsra
Definition allins.hpp:6402
@ MIPS_msa_fsueq_d
Definition allins.hpp:7986
@ MIPS_modsub
Definition allins.hpp:7251
@ MIPS_suv
Definition allins.hpp:6650
@ MIPS_msa_binsl_d
Definition allins.hpp:7601
@ MIPS_dpsx_w_ph
Definition allins.hpp:7420
@ MIPS_pceqh
Definition allins.hpp:6763
@ MIPS_dpaq_sa_l_pw
Definition allins.hpp:7446
@ MIPS_msa_insert_d
Definition allins.hpp:7946
@ MIPS_dmultu
Definition allins.hpp:6455
@ MIPS_msa_pckev_w
Definition allins.hpp:7846
@ MIPS_vextq
Definition allins.hpp:6710
@ MIPS_sne
Definition allins.hpp:6970
@ MIPS_dshd
Definition allins.hpp:6944
@ MIPS_vinsn
Definition allins.hpp:6711
@ MIPS_fc_seq
Definition allins.hpp:6580
@ MIPS_vmacu
Definition allins.hpp:6658
@ MIPS_fc_ngt
Definition allins.hpp:6585
@ MIPS_pmtlo
Definition allins.hpp:6737
@ MIPS_vsaw
Definition allins.hpp:6684
@ MIPS_dextrv_l
Definition allins.hpp:7481
@ MIPS_msa_adds_s_h
Definition allins.hpp:7735
@ MIPS_msa_msub_q_w
Definition allins.hpp:8032
@ MIPS_or
Definition allins.hpp:6394
@ MIPS_msa_bclr_d
Definition allins.hpp:7577
@ MIPS_addq_s_qh
Definition allins.hpp:7280
@ MIPS_extw
Definition allins.hpp:8133
@ MIPS_pextub
Definition allins.hpp:6803
@ MIPS_preceq_pw_qhla
Definition allins.hpp:7364
@ MIPS_llwpe
Definition allins.hpp:8143
@ MIPS_msa_srlri_h
Definition allins.hpp:7885
@ MIPS_msa_slli_h
Definition allins.hpp:7555
@ MIPS_msa_fclt_d
Definition allins.hpp:7972
@ MIPS_extrv_s_h
Definition allins.hpp:7476
@ MIPS_shllv_qh
Definition allins.hpp:7398
@ PSP_vi2s
Definition allins.hpp:7052
@ MIPS_fc_ngl
Definition allins.hpp:6581
@ MIPS_msa_srlr_d
Definition allins.hpp:7883
@ MIPS_preceu_qh_obla
Definition allins.hpp:7365
@ MIPS_extr_rs_w
Definition allins.hpp:7473
@ MIPS_rotrv
Definition allins.hpp:6896
@ MIPS_msa_adds_u_w
Definition allins.hpp:7740
@ MIPS_msa_ftrunc_s_w
Definition allins.hpp:8047
@ MIPS_mtm1
Definition allins.hpp:6960
@ MIPS_vcr
Definition allins.hpp:6691
@ MIPS_cmpi
Definition allins.hpp:6848
@ MIPS_fmadda
Definition allins.hpp:6726
@ MIPS_subu_s_qb
Definition allins.hpp:7257
@ MIPS_msa_ceq_b
Definition allins.hpp:7670
@ MIPS_tlti
Definition allins.hpp:6447
@ MIPS_pcpyud
Definition allins.hpp:6775
@ PSP_mfic
Definition allins.hpp:6996
@ MIPS_addsc
Definition allins.hpp:7246
@ MIPS_msa_vshf_h
Definition allins.hpp:7869
@ MIPS_msa_clt_u_h
Definition allins.hpp:7687
@ MIPS_bitrev
Definition allins.hpp:7336
@ MIPS_dshilo
Definition allins.hpp:7484
@ MIPS_cmpu_le_ob
Definition allins.hpp:7314
@ MIPS_msa_fexupl_w
Definition allins.hpp:8061
@ MIPS_mulq_rs_qh
Definition allins.hpp:7285
@ MIPS_msa_maxi_s_d
Definition allins.hpp:7637
@ MIPS_paddw
Definition allins.hpp:6743
@ MIPS_cmp_lt_qh
Definition allins.hpp:7312
@ PSP_vpfxs
Definition allins.hpp:7077
@ MIPS_extpdpv
Definition allins.hpp:7468
@ MIPS_msa_clei_u_w
Definition allins.hpp:7708
@ MIPS_maddu_r5900
Definition allins.hpp:6834
@ MIPS_madd_s
Definition allins.hpp:6609
@ MIPS_extr_r_w
Definition allins.hpp:7471
@ MIPS_addq_s_ph
Definition allins.hpp:7261
@ MIPS_preceq_w_phl
Definition allins.hpp:7338
@ MIPS_msa_bz_b
Definition allins.hpp:7955
@ MIPS_fcabs_ngl
Definition allins.hpp:7196
@ MIPS_movtz
Definition allins.hpp:8104
@ MIPS_dextpdpv
Definition allins.hpp:7486
@ MIPS_msa_fclt_w
Definition allins.hpp:7971
@ MIPS_pick_qh
Definition allins.hpp:7318
@ MIPS_mfdr
Definition allins.hpp:6988
@ MIPS_cache
Definition allins.hpp:6504
@ MIPS_luv
Definition allins.hpp:6638
@ MIPS_lbe
Definition allins.hpp:8086
@ MIPS_fmovz
Definition allins.hpp:6620
@ MIPS_msa_addvi_w
Definition allins.hpp:7620
@ MIPS_msa_maxi_u_w
Definition allins.hpp:7644
@ PSP_mfv
Definition allins.hpp:7009
@ MIPS_laad
Definition allins.hpp:7521
@ MIPS_msa_srar_d
Definition allins.hpp:7875
@ MIPS_msa_binsr_d
Definition allins.hpp:7609
@ MIPS_addi
Definition allins.hpp:6415
@ MIPS_fcvt_d
Definition allins.hpp:6556
@ MIPS_vmulu
Definition allins.hpp:6657
@ PSP_vscmp
Definition allins.hpp:7094
@ MIPS_msa_madd_q_h
Definition allins.hpp:8029
@ MIPS_msa_adds_a_b
Definition allins.hpp:7730
@ MIPS_fcabs_sf
Definition allins.hpp:7193
@ MIPS_lwux
Definition allins.hpp:7535
@ MIPS_fmsub
Definition allins.hpp:6729
@ MIPS_vrsql
Definition allins.hpp:6706
@ MIPS_rdhwr
Definition allins.hpp:6893
@ MIPS_msa_srl_b
Definition allins.hpp:7566
@ MIPS_nmsub_d
Definition allins.hpp:6624
@ MIPS_msa_bset_b
Definition allins.hpp:7582
@ MIPS_fadda
Definition allins.hpp:6723
@ MIPS_msa_insve_h
Definition allins.hpp:7948
@ MIPS_msa_shf_b
Definition allins.hpp:7914
@ MIPS_swle
Definition allins.hpp:8100
@ MIPS_msa_copy_s_d
Definition allins.hpp:7938
@ MIPS_psraw
Definition allins.hpp:6823
@ MIPS_ffloor_l
Definition allins.hpp:6562
@ MIPS_sqv
Definition allins.hpp:6647
@ MIPS_msa_min_u_h
Definition allins.hpp:7655
@ MIPS_msa_fcne_w
Definition allins.hpp:8025
@ MIPS_msa_mulr_q_h
Definition allins.hpp:8039
@ MIPS_packrl_pw
Definition allins.hpp:7327
@ MIPS_dmtc0
Definition allins.hpp:6436
@ MIPS_tgeu
Definition allins.hpp:6426
@ MIPS_msa_clei_u_h
Definition allins.hpp:7707
@ MIPS_shll_pw
Definition allins.hpp:7393
@ MIPS_msa_adds_u_h
Definition allins.hpp:7739
@ MIPS_lui
Definition allins.hpp:6520
@ MIPS_jalrc
Definition allins.hpp:6913
@ MIPS_v3mulu
Definition allins.hpp:6980
@ MIPS_msa_ilvev_b
Definition allins.hpp:7860
@ MIPS_pcgtb
Definition allins.hpp:6768
@ MIPS_msa_fmin_a_w
Definition allins.hpp:8015
@ MIPS_alnv_ps
Definition allins.hpp:6868
@ MIPS_msa_bmzi_b
Definition allins.hpp:7911
@ MIPS_msa_binsr_h
Definition allins.hpp:7607
@ MIPS_sync
Definition allins.hpp:6537
@ MIPS_msa_bneg_w
Definition allins.hpp:7592
@ MIPS_msa_fcule_d
Definition allins.hpp:7978
@ MIPS_sdbbp
Definition allins.hpp:6863
@ MIPS_shrav_r_pw
Definition allins.hpp:7410
@ MIPS_jrc
Definition allins.hpp:6914
@ MIPS_tlbr
Definition allins.hpp:6543
@ MIPS_shllv_s_qh
Definition allins.hpp:7407
@ MIPS_msa_fsqrt_w
Definition allins.hpp:8051
@ MIPS_maq_sa_w_qhll
Definition allins.hpp:7437
@ MIPS_extr_w
Definition allins.hpp:7461
@ MIPS_msa_ftint_s_d
Definition allins.hpp:8070
@ MIPS_li
Definition allins.hpp:6599
@ PSP_vmmov
Definition allins.hpp:7063
@ MIPS_msa_clt_s_b
Definition allins.hpp:7678
@ MIPS_msa_ilvl_d
Definition allins.hpp:7855
@ MIPS_mfsa
Definition allins.hpp:6720
@ MIPS_msa_frcp_d
Definition allins.hpp:8056
@ MIPS_preceq_pw_qhr
Definition allins.hpp:7360
@ MIPS_sce
Definition allins.hpp:8095
@ MIPS_madd1
Definition allins.hpp:6747
@ MIPS_msa_clt_u_b
Definition allins.hpp:7686
@ MIPS_msa_splati_b
Definition allins.hpp:7840
@ MIPS_repl_qb
Definition allins.hpp:7332
@ MIPS_msa_clei_s_b
Definition allins.hpp:7698
@ MIPS_ctc0
Definition allins.hpp:6714
@ MIPS_beqzl
Definition allins.hpp:6596
@ MIPS_jals
Definition allins.hpp:7218
@ MIPS_mftgpr
Definition allins.hpp:7163
@ MIPS_msubu
Definition allins.hpp:6861
@ PSP_vocp
Definition allins.hpp:7074
@ MIPS_msa_hadd_s_h
Definition allins.hpp:7888
@ MIPS_msa_subs_u_b
Definition allins.hpp:7762
@ MIPS_vand
Definition allins.hpp:6693
@ MIPS_msa_mini_s_b
Definition allins.hpp:7650
@ MIPS_ssub
Definition allins.hpp:7127
@ MIPS_msa_min_s_h
Definition allins.hpp:7647
@ MIPS_maq_s_w_phr
Definition allins.hpp:7434
@ MIPS_precequ_ph_qbla
Definition allins.hpp:7343
@ MIPS_repl_qh
Definition allins.hpp:7350
@ MIPS_fmovn
Definition allins.hpp:6619
@ MIPS_ei
Definition allins.hpp:6872
@ MIPS_mfc0
Definition allins.hpp:6438
@ MIPS_fmadd
Definition allins.hpp:6728
@ MIPS_mthc1
Definition allins.hpp:6885
@ MIPS_msa_fsult_w
Definition allins.hpp:7989
@ MIPS_wait
Definition allins.hpp:6864
@ MIPS_pick_qb
Definition allins.hpp:7295
@ MIPS_plu
Definition allins.hpp:6890
@ PSP_vhtfm4
Definition allins.hpp:7049
@ MIPS_evpe
Definition allins.hpp:7145
@ MIPS_cmpgu_lt_qb
Definition allins.hpp:7300
@ MIPS_cmp_lt_ph
Definition allins.hpp:7290
@ MIPS_msa_subsus_u_h
Definition allins.hpp:7767
@ MIPS_mfhi
Definition allins.hpp:6460
@ MIPS_faddr
Definition allins.hpp:7180
@ MIPS_prefe
Definition allins.hpp:8097
@ MIPS_msa_fcne_d
Definition allins.hpp:8026
@ MIPS_msa_clt_u_d
Definition allins.hpp:7689
@ MIPS_restore
Definition allins.hpp:6912
@ PSP_vmzero
Definition allins.hpp:7070
@ MIPS_addu_s_ph
Definition allins.hpp:7254
@ MIPS_dextr_r_l
Definition allins.hpp:7489
@ MIPS_zeb
Definition allins.hpp:6916
@ MIPS_msa_binsr_w
Definition allins.hpp:7608
@ MIPS_lwr
Definition allins.hpp:6510
@ MIPS_pmaxw
Definition allins.hpp:6754
@ MIPS_bc3t
Definition allins.hpp:6478
@ MIPS_vmrg
Definition allins.hpp:6692
@ MIPS_precrq_rs_qh_pw
Definition allins.hpp:7325
@ MIPS_replv_pw
Definition allins.hpp:7354
@ MIPS_msa_asub_s_h
Definition allins.hpp:7775
@ MIPS_fc_ngle
Definition allins.hpp:6579
@ MIPS_msa_bseti_h
Definition allins.hpp:7587
@ MIPS_msa_mulv_h
Definition allins.hpp:7783
@ PSP_vrcp
Definition allins.hpp:7080
@ PSP_vtfm2
Definition allins.hpp:7109
@ PSP_vsub
Definition allins.hpp:7105
@ PSP_vmax
Definition allins.hpp:7059
@ MIPS_ctc2
Definition allins.hpp:6433
@ MIPS_msa_pcnt_d
Definition allins.hpp:7926
@ MIPS_subq_pw
Definition allins.hpp:7273
@ MIPS_shrlv_ph
Definition allins.hpp:7378
@ MIPS_padduh
Definition allins.hpp:6791
@ MIPS_lhxs
Definition allins.hpp:8129
@ PSP_vhtfm3
Definition allins.hpp:7048
@ MIPS_div1
Definition allins.hpp:6738
@ MIPS_tlt
Definition allins.hpp:6427
@ MIPS_dvpe
Definition allins.hpp:7144
@ MIPS_lwc2
Definition allins.hpp:6522
@ MIPS_precequ_pw_qhl
Definition allins.hpp:7355
@ MIPS_msa_ceqi_h
Definition allins.hpp:7675
@ MIPS_msa_fmax_a_d
Definition allins.hpp:8020
@ MIPS_blez
Definition allins.hpp:6489
@ MIPS_cmp_eq_qh
Definition allins.hpp:7309
@ MIPS_msa_fcaf_w
Definition allins.hpp:7963
@ MIPS_msa_sll_d
Definition allins.hpp:7553
@ MIPS_vmadm
Definition allins.hpp:6666
@ MIPS_ins
Definition allins.hpp:6877
@ MIPS_repl_ph
Definition allins.hpp:7333
@ MIPS_msa_copy_s_w
Definition allins.hpp:7937
@ MIPS_subuh_qb
Definition allins.hpp:7502
@ MIPS_msa_bnegi_w
Definition allins.hpp:7596
@ MIPS_paddub
Definition allins.hpp:6799
@ MIPS_lhuxs
Definition allins.hpp:8130
@ PSP_sv
Definition allins.hpp:7006
@ MIPS_usw
Definition allins.hpp:6979
@ MIPS_msa_fmin_a_d
Definition allins.hpp:8016
@ MIPS_repl_ob
Definition allins.hpp:7349
@ MIPS_subqh_r_w
Definition allins.hpp:7510
@ MIPS_cop0
Definition allins.hpp:6462
@ MIPS_mflo
Definition allins.hpp:6461
@ MIPS_mftc0
Definition allins.hpp:7151
@ MIPS_msa_fsne_d
Definition allins.hpp:8038
@ MIPS_msa_fsor_d
Definition allins.hpp:8034
@ MIPS_msa_fceq_w
Definition allins.hpp:7967
@ MIPS_msa_ilvr_d
Definition allins.hpp:7859
@ MIPS_msa_copy_u_h
Definition allins.hpp:7940
@ MIPS_extpv
Definition allins.hpp:7467
@ MIPS_msa_splat_d
Definition allins.hpp:7839
@ MIPS_msa_sld_b
Definition allins.hpp:7828
@ MIPS_muleu_s_ph_qbl
Definition allins.hpp:7260
@ MIPS_bc1any4t
Definition allins.hpp:7184
@ MIPS_msa_ftrunc_u_d
Definition allins.hpp:8050
@ PSP_lv
Definition allins.hpp:7003
@ MIPS_msub
Definition allins.hpp:6860
@ MIPS_pmsubh
Definition allins.hpp:6790
@ MIPS_msa_msubv_w
Definition allins.hpp:7792
@ MIPS_bc3f
Definition allins.hpp:6470
@ PSP_vsrt4
Definition allins.hpp:7104
@ MIPS_msa_hsub_s_w
Definition allins.hpp:7895
@ MIPS_xori
Definition allins.hpp:6423
@ MIPS_cmpgu_le_ob
Definition allins.hpp:7326
@ MIPS_movtn
Definition allins.hpp:8105
@ MIPS_pll
Definition allins.hpp:6889
@ MIPS_tgei
Definition allins.hpp:6445
@ MIPS_raddu_l_ob
Definition allins.hpp:7275
@ MIPS_movn
Definition allins.hpp:6615
@ MIPS_msa_ave_u_h
Definition allins.hpp:7747
@ MIPS_msa_mul_q_h
Definition allins.hpp:8027
@ MIPS_dpsqx_sa_w_ph
Definition allins.hpp:7427
@ MIPS_subq_qh
Definition allins.hpp:7272
@ MIPS_dli
Definition allins.hpp:7237
@ MIPS_vmulq
Definition allins.hpp:6661
@ MIPS_fc_olt
Definition allins.hpp:6574
@ MIPS_mttlo
Definition allins.hpp:7167
@ MIPS_msa_ftint_u_d
Definition allins.hpp:8072
@ MIPS_shll_s_qh
Definition allins.hpp:7403
@ MIPS_msa_vshf_w
Definition allins.hpp:7870
@ PSP_vi2uc
Definition allins.hpp:7053
@ MIPS_msa_aver_u_b
Definition allins.hpp:7754
@ MIPS_maq_s_w_qhrl
Definition allins.hpp:7455
@ MIPS_msa_mod_u_b
Definition allins.hpp:7806
@ PSP_vzero
Definition allins.hpp:7115
@ MIPS_msa_flog2_d
Definition allins.hpp:8060
@ MIPS_restore_jrc
Definition allins.hpp:8156
@ MIPS_pmthi
Definition allins.hpp:6736
@ MIPS_msa_fdiv_d
Definition allins.hpp:8002
@ PSP_vcos
Definition allins.hpp:7030
@ PSP_vpfxt
Definition allins.hpp:7078
@ MIPS_frecip
Definition allins.hpp:6626
@ MIPS_mtp0
Definition allins.hpp:6962
@ MIPS_psubuh
Definition allins.hpp:6794
@ MIPS_addu_ob
Definition allins.hpp:7268
@ MIPS_bitrevh
Definition allins.hpp:8178
@ MIPS_divu1
Definition allins.hpp:6739
@ MIPS_msa_fsle_d
Definition allins.hpp:7992
@ MIPS_msa_max_u_h
Definition allins.hpp:7639
@ PSP_vscl
Definition allins.hpp:7093
@ MIPS_swxs
Definition allins.hpp:8128
@ MIPS_bc3tl
Definition allins.hpp:6482
@ MIPS_msa_fceq_d
Definition allins.hpp:7968
@ MIPS_precr_sra_ph_w
Definition allins.hpp:7305
@ MIPS_dsra32
Definition allins.hpp:6403
@ MIPS_add
Definition allins.hpp:6386
@ MIPS_ssnop
Definition allins.hpp:6921
@ MIPS_fabs
Definition allins.hpp:6554
@ MIPS_msa_fcueq_w
Definition allins.hpp:7969
@ MIPS_msa_binsri_h
Definition allins.hpp:7611
@ MIPS_msa_dotp_u_d
Definition allins.hpp:7815
@ MIPS_puu
Definition allins.hpp:6892
@ MIPS_maq_sa_w_qhrr
Definition allins.hpp:7444
@ MIPS_pextlb
Definition allins.hpp:6802
@ MIPS_subq_s_ph
Definition allins.hpp:7265
@ MIPS_div
Definition allins.hpp:6452
@ MIPS_fcabs_ule
Definition allins.hpp:7192
@ MIPS_mtp1
Definition allins.hpp:6963
@ MIPS_bc1any2t
Definition allins.hpp:7182
@ MIPS_vge
Definition allins.hpp:6688
@ MIPS_msa_bseti_w
Definition allins.hpp:7588
@ PSP_vrndi
Definition allins.hpp:7084
@ MIPS_pick_ob
Definition allins.hpp:7317
@ MIPS_eretnc
Definition allins.hpp:8138
@ MIPS_teqi
Definition allins.hpp:6444
@ MIPS_dmt
Definition allins.hpp:7146
@ MIPS_msa_addv_w
Definition allins.hpp:7616
@ MIPS_balign
Definition allins.hpp:7516
@ MIPS_vnand
Definition allins.hpp:6694
@ MIPS_msa_srlri_d
Definition allins.hpp:7887
@ MIPS_msa_max_u_d
Definition allins.hpp:7641
@ MIPS_msa_ffint_u_w
Definition allins.hpp:8075
@ MIPS_pmsubw
Definition allins.hpp:6759
@ MIPS_psubw
Definition allins.hpp:6750
@ MIPS_diveu
Definition allins.hpp:7134
@ MIPS_seb
Definition allins.hpp:6897
@ MIPS_fceil_l
Definition allins.hpp:6561
@ MIPS_tne
Definition allins.hpp:6429
@ PSP_vmul
Definition allins.hpp:7069
@ MIPS_fcabs_eq
Definition allins.hpp:7187
@ PSP_vmscl
Definition allins.hpp:7067
@ MIPS_pmaddh
Definition allins.hpp:6777
@ PSP_vcrs
Definition allins.hpp:7031
@ MIPS_msa_subs_u_w
Definition allins.hpp:7764
@ MIPS_msa_ffql_w
Definition allins.hpp:8065
@ MIPS_ld
Definition allins.hpp:6511
@ MIPS_msa_shf_h
Definition allins.hpp:7915
@ MIPS_addu_qb
Definition allins.hpp:7244
@ MIPS_msa_bmnzi_b
Definition allins.hpp:7909
@ MIPS_bbit132
Definition allins.hpp:6952
@ MIPS_msa_bnegi_h
Definition allins.hpp:7595
@ MIPS_msa_bz_d
Definition allins.hpp:7958
@ MIPS_srlv
Definition allins.hpp:6414
@ MIPS_shra_ph
Definition allins.hpp:7372
@ MIPS_msa_nor_v
Definition allins.hpp:7904
@ MIPS_dmul
Definition allins.hpp:6955
@ MIPS_mtlo
Definition allins.hpp:6459
@ MIPS_msa_min_a_w
Definition allins.hpp:7668
@ MIPS_qmac_02
Definition allins.hpp:7538
@ MIPS_mtthc1
Definition allins.hpp:7171
@ MIPS_mftc1
Definition allins.hpp:7158
@ MIPS_padsbh
Definition allins.hpp:6760
@ MIPS_andi
Definition allins.hpp:6421
@ MIPS_msa_srar_w
Definition allins.hpp:7874
@ MIPS_msa_maxi_s_w
Definition allins.hpp:7636
@ MIPS_prot3w
Definition allins.hpp:6817
@ MIPS_lle
Definition allins.hpp:8094
@ MIPS_pminh
Definition allins.hpp:6765
@ MIPS_muleq_s_w_phl
Definition allins.hpp:7256
@ PSP_max
Definition allins.hpp:6994
@ MIPS_mthlip
Definition allins.hpp:7477
@ MIPS_msa_binsl_h
Definition allins.hpp:7599
@ MIPS_lwm
Definition allins.hpp:7221
@ MIPS_msa_cle_u_b
Definition allins.hpp:7702
@ MIPS_maddu3
Definition allins.hpp:7139
@ PSP_mtvme
Definition allins.hpp:7119
@ MIPS_msa_fmax_w
Definition allins.hpp:8017
@ MIPS_eret
Definition allins.hpp:6541
@ MIPS_lwxs
Definition allins.hpp:7210
@ MIPS_cttc2
Definition allins.hpp:7176
@ MIPS_wrpgpr
Definition allins.hpp:6901
@ MIPS_vnoop
Definition allins.hpp:6699
@ MIPS_fcabs_seq
Definition allins.hpp:7195
@ MIPS_fadd
Definition allins.hpp:6550
@ MIPS_raddu_w_qb
Definition allins.hpp:7255
@ MIPS_msa_pcnt_w
Definition allins.hpp:7925
@ MIPS_mfthi
Definition allins.hpp:7154
@ MIPS_lhx
Definition allins.hpp:7413
@ MIPS_zew
Definition allins.hpp:6918
@ MIPS_msa_sldi_h
Definition allins.hpp:7833
@ MIPS_bnez
Definition allins.hpp:6593
@ MIPS_vmacf
Definition allins.hpp:6656
@ MIPS_msa_srai_d
Definition allins.hpp:7565
@ PSP_vrndf2
Definition allins.hpp:7083
@ MIPS_pause
Definition allins.hpp:6926
@ MIPS_msa_dotp_s_h
Definition allins.hpp:7810
@ MIPS_pabsw
Definition allins.hpp:6807
@ PSP_vus2i
Definition allins.hpp:7113
@ MIPS_msa_clti_u_h
Definition allins.hpp:7691
@ MIPS_msa_ffint_u_d
Definition allins.hpp:8076
@ MIPS_dpsq_sa_l_pw
Definition allins.hpp:7450
@ MIPS_fsub
Definition allins.hpp:6551
@ MIPS_msa_mod_u_d
Definition allins.hpp:7809
@ MIPS_ffloor_w
Definition allins.hpp:6566
@ MIPS_msa_bclr_w
Definition allins.hpp:7576
@ MIPS_bltuc
Definition allins.hpp:8171
@ MIPS_cmpu_lt_ob
Definition allins.hpp:7311
@ MIPS_msa_msubr_q_h
Definition allins.hpp:8043
@ MIPS_mttacx
Definition allins.hpp:7169
@ MIPS_shrav_pw
Definition allins.hpp:7402
@ MIPS_vmudn
Definition allins.hpp:6667
@ MIPS_msa_bsel_v
Definition allins.hpp:7912
@ MIPS_bgeuc
Definition allins.hpp:8174
@ MIPS_msa_mod_s_w
Definition allins.hpp:7804
@ MIPS_fc_un
Definition allins.hpp:6571
@ MIPS_msa_subvi_h
Definition allins.hpp:7627
@ MIPS_uash
Definition allins.hpp:8149
@ MIPS_negu
Definition allins.hpp:6592
@ MIPS_vsucb
Definition allins.hpp:6680
@ MIPS_msa_bset_h
Definition allins.hpp:7583
@ MIPS_fmulr
Definition allins.hpp:7203
@ MIPS_frsqrt1
Definition allins.hpp:7206
@ MIPS_lhux
Definition allins.hpp:7534
@ MIPS_psllw
Definition allins.hpp:6821
@ MIPS_msa_fslt_w
Definition allins.hpp:7987
@ MIPS_dadd
Definition allins.hpp:6389
@ MIPS_preceu_qh_obra
Definition allins.hpp:7368
@ MIPS_lhue
Definition allins.hpp:8089
@ MIPS_msa_clti_s_b
Definition allins.hpp:7682
@ MIPS_msa_bclri_w
Definition allins.hpp:7580
@ PSP_vhtfm2
Definition allins.hpp:7047
@ MIPS_msa_fadd_w
Definition allins.hpp:7995
@ MIPS_swxc1
Definition allins.hpp:6608
@ MIPS_dinsu
Definition allins.hpp:6937
@ MIPS_msa_subsuu_s_h
Definition allins.hpp:7771
@ MIPS_fcvt_s
Definition allins.hpp:6555
@ MIPS_msa_sra_b
Definition allins.hpp:7558
@ MIPS_jalr_hb
Definition allins.hpp:6878
@ MIPS_msa_clti_u_b
Definition allins.hpp:7690
@ MIPS_msa_nloc_b
Definition allins.hpp:7927
@ MIPS_jr
Definition allins.hpp:6501
@ MIPS_msa_sra_w
Definition allins.hpp:7560
@ MIPS_mulq_rs_w
Definition allins.hpp:7514
@ MIPS_vmulf
Definition allins.hpp:6655
@ MIPS_cftc2
Definition allins.hpp:7162
@ PSP_mfvme
Definition allins.hpp:7118
@ MIPS_msa_bnegi_b
Definition allins.hpp:7594
@ MIPS_vcl
Definition allins.hpp:6689
@ MIPS_addq_qh
Definition allins.hpp:7270
@ MIPS_msa_splat_b
Definition allins.hpp:7836
@ MIPS_preceq_s_l_pwr
Definition allins.hpp:7361
@ MIPS_msa_copy_s_h
Definition allins.hpp:7936
@ MIPS_msa_ftrunc_s_d
Definition allins.hpp:8048
@ MIPS_msa_hadd_u_d
Definition allins.hpp:7893
@ MIPS_addu
Definition allins.hpp:6387
@ MIPS_msa_ffqr_w
Definition allins.hpp:8067
@ MIPS_shrav_r_qh
Definition allins.hpp:7409
@ MIPS_msa_fclass_d
Definition allins.hpp:8046
@ MIPS_sd
Definition allins.hpp:6529
@ PSP_vi2c
Definition allins.hpp:7050
@ MIPS_muleu_s_qh_obl
Definition allins.hpp:7279
@ MIPS_jalrc_hb
Definition allins.hpp:8159
@ MIPS_msa_st_d
Definition allins.hpp:7717
@ MIPS_msa_ffqr_d
Definition allins.hpp:8068
@ MIPS_ext
Definition allins.hpp:6873
@ MIPS_msa_bnz_h
Definition allins.hpp:7952
@ MIPS_msa_fcun_w
Definition allins.hpp:7965
@ MIPS_msa_sat_u_h
Definition allins.hpp:7723
@ MIPS_qmac_01
Definition allins.hpp:7537
@ MIPS_shra_qh
Definition allins.hpp:7395
@ MIPS_neg
Definition allins.hpp:6591
@ MIPS_dsrlv
Definition allins.hpp:6411
@ MIPS_msa_binsri_d
Definition allins.hpp:7613
@ MIPS_msa_add_a_b
Definition allins.hpp:7726
@ MIPS_dsll
Definition allins.hpp:6400
@ MIPS_psllvw
Definition allins.hpp:6752
@ MIPS_precequ_ph_qbra
Definition allins.hpp:7345
@ MIPS_msa_hsub_u_w
Definition allins.hpp:7898
@ MIPS_msa_hadd_s_d
Definition allins.hpp:7890
@ MIPS_lld
Definition allins.hpp:6512
@ MIPS_msa_fmin_d
Definition allins.hpp:8014
@ MIPS_msa_hsub_u_d
Definition allins.hpp:7899
@ PSP_vrexp2
Definition allins.hpp:7081
@ PSP_vsgn
Definition allins.hpp:7096
@ MIPS_vsub
Definition allins.hpp:6672
@ MIPS_msa_aver_s_w
Definition allins.hpp:7752
@ PSP_lvl
Definition allins.hpp:7004
@ PSP_vqmul
Definition allins.hpp:7079
@ MIPS_msa_max_u_w
Definition allins.hpp:7640
@ MIPS_mfthc0
Definition allins.hpp:7152
@ MIPS_bset
Definition allins.hpp:7130
@ MIPS_msa_pcnt_h
Definition allins.hpp:7924
@ MIPS_msa_copy_u_d
Definition allins.hpp:7942
@ MIPS_preceq_pw_qhra
Definition allins.hpp:7367
@ MIPS_addqh_r_w
Definition allins.hpp:7507
@ PSP_vf2iu
Definition allins.hpp:7041
@ MIPS_mtthc2
Definition allins.hpp:7174
@ MIPS_swe
Definition allins.hpp:8093
@ MIPS_maq_s_w_phl
Definition allins.hpp:7430
@ MIPS_madd_r5900
Definition allins.hpp:6833
@ MIPS_fmovf
Definition allins.hpp:6617
@ MIPS_cmp
Definition allins.hpp:6847
@ MIPS_maq_s_l_pwr
Definition allins.hpp:7456
@ MIPS_swv
Definition allins.hpp:6653
@ MIPS_msa_asub_u_w
Definition allins.hpp:7780
@ MIPS_msa_bmnz_v
Definition allins.hpp:7908
@ MIPS_msa_pckev_h
Definition allins.hpp:7845
@ MIPS_ehb
Definition allins.hpp:6871
@ MIPS_pop
Definition allins.hpp:6965
@ MIPS_dpau_h_obr
Definition allins.hpp:7457
@ MIPS_msa_div_u_b
Definition allins.hpp:7798
@ MIPS_precrq_ph_w
Definition allins.hpp:7299
@ MIPS_msa_srl_w
Definition allins.hpp:7568
@ MIPS_cfc1
Definition allins.hpp:6430
@ MIPS_msa_subv_w
Definition allins.hpp:7624
@ MIPS_msa_slli_d
Definition allins.hpp:7557
@ MIPS_wrdsp
Definition allins.hpp:7469
@ MIPS_dsrl
Definition allins.hpp:6404
@ MIPS_msa_max_u_b
Definition allins.hpp:7638
@ MIPS_wsbh
Definition allins.hpp:6902
@ PSP_vfad
Definition allins.hpp:7043
@ MIPS_msa_div_s_d
Definition allins.hpp:7797
@ MIPS_msa_cle_s_w
Definition allins.hpp:7696
@ MIPS_dpax_w_ph
Definition allins.hpp:7416
@ MIPS_shllv_pw
Definition allins.hpp:7399
@ PSP_vh2f
Definition allins.hpp:7045
@ MIPS_msa_adds_s_d
Definition allins.hpp:7737
@ MIPS_msa_ceq_d
Definition allins.hpp:7673
@ MIPS_lacd
Definition allins.hpp:7523
@ MIPS_msa_div_u_w
Definition allins.hpp:7800
@ MIPS_msa_insve_d
Definition allins.hpp:7950
@ MIPS_bnec
Definition allins.hpp:8169
@ MIPS_msa_sll_b
Definition allins.hpp:7550
@ MIPS_shra_r_qh
Definition allins.hpp:7405
@ MIPS_msa_maddr_q_w
Definition allins.hpp:8042
@ MIPS_msa_ftq_h
Definition allins.hpp:8011
@ MIPS_pxor
Definition allins.hpp:6787
@ MIPS_btst
Definition allins.hpp:7128
@ MIPS_dmfc1
Definition allins.hpp:6906
@ PSP_vcst
Definition allins.hpp:7033
@ MIPS_psubsb
Definition allins.hpp:6800
@ MIPS_madd_ps
Definition allins.hpp:6881
@ MIPS_msa_fcle_w
Definition allins.hpp:7975
@ MIPS_pabsh
Definition allins.hpp:6808
@ MIPS_msa_fcaf_d
Definition allins.hpp:7964
@ MIPS_msa_maddv_h
Definition allins.hpp:7787
@ MIPS_jalrs
Definition allins.hpp:7232
@ MIPS_sltiu
Definition allins.hpp:6420
@ MIPS_fcvt_w
Definition allins.hpp:6557
@ MIPS_msa_maddv_w
Definition allins.hpp:7788
@ PSP_vt5650
Definition allins.hpp:7108
@ MIPS_mthc2
Definition allins.hpp:6886
@ MIPS_msa_aver_s_d
Definition allins.hpp:7753
@ MIPS_precrq_ob_qh
Definition allins.hpp:7321
@ MIPS_pdivuw
Definition allins.hpp:6741
@ MIPS_mttr
Definition allins.hpp:7164
@ MIPS_msa_ffint_s_d
Definition allins.hpp:8074
@ MIPS_cmp_eq_pw
Definition allins.hpp:7310
@ MIPS_subu
Definition allins.hpp:6398
@ MIPS_msa_sll_w
Definition allins.hpp:7552
@ MIPS_vmadl
Definition allins.hpp:6670
@ MIPS_ulw
Definition allins.hpp:6977
@ MIPS_dps_w_ph
Definition allins.hpp:7419
@ MIPS_msa_fcor_d
Definition allins.hpp:8022
@ PSP_vrndf1
Definition allins.hpp:7082
@ MIPS_pref
Definition allins.hpp:6604
@ MIPS_frecip2
Definition allins.hpp:7205
@ MIPS_msa_ftrunc_u_w
Definition allins.hpp:8049
@ MIPS_bgezl
Definition allins.hpp:6486
@ PSP_vmidt
Definition allins.hpp:7061
@ MIPS_msa_asub_s_w
Definition allins.hpp:7776
@ MIPS_msa_srli_b
Definition allins.hpp:7570
@ MIPS_dpau_h_qbl
Definition allins.hpp:7425
@ PSP_vcmovt
Definition allins.hpp:7028
@ MIPS_sew
Definition allins.hpp:6915
@ MIPS_shll_ph
Definition allins.hpp:7370
@ MIPS_msa_copy_u_b
Definition allins.hpp:7939
@ MIPS_slti
Definition allins.hpp:6419
@ MIPS_msa_ftint_u_w
Definition allins.hpp:8071
@ MIPS_lsa
Definition allins.hpp:8082
@ MIPS_msa_clti_s_h
Definition allins.hpp:7683
@ PSP_vmin
Definition allins.hpp:7062
@ PSP_vlog2
Definition allins.hpp:7058
@ MIPS_vrcp
Definition allins.hpp:6701
@ MIPS_msa_fill_h
Definition allins.hpp:7920
@ MIPS_msa_ilvod_h
Definition allins.hpp:7865
@ PSP_vrot
Definition allins.hpp:7086
@ MIPS_shilov
Definition allins.hpp:7470
@ MIPS_fc_nge
Definition allins.hpp:6583
@ MIPS_mfhi1
Definition allins.hpp:6824
@ MIPS_nmadd_s
Definition allins.hpp:6621
@ MIPS_msa_nloc_d
Definition allins.hpp:7930
@ MIPS_pcgth
Definition allins.hpp:6762
@ MIPS_phmsbh
Definition allins.hpp:6793
@ MIPS_precrq_qh_pw
Definition allins.hpp:7322
@ MIPS_bbit032
Definition allins.hpp:6950
@ MIPS_zcbt
Definition allins.hpp:7545
@ MIPS_fcvt_s_pl
Definition allins.hpp:6875
@ MIPS_msa_fexp2_d
Definition allins.hpp:8008
@ MIPS_bc0t
Definition allins.hpp:6475
@ MIPS_msa_subsuu_s_b
Definition allins.hpp:7770
@ MIPS_msa_dpadd_u_w
Definition allins.hpp:7820
@ MIPS_preceu_qh_obl
Definition allins.hpp:7358
@ MIPS_msa_pckod_d
Definition allins.hpp:7851
@ MIPS_msub_s
Definition allins.hpp:6611
@ MIPS_msa_srlr_b
Definition allins.hpp:7880
@ MIPS_mflhxu
Definition allins.hpp:7212
@ PSP_vtfm3
Definition allins.hpp:7110
@ MIPS_msa_fsle_w
Definition allins.hpp:7991
@ MIPS_msa_maddv_d
Definition allins.hpp:7789
@ MIPS_maq_sa_w_qhrl
Definition allins.hpp:7441
@ MIPS_mfhc0
Definition allins.hpp:8131
@ MIPS_swr
Definition allins.hpp:6527
@ MIPS_bgez
Definition allins.hpp:6483
@ MIPS_msa_fsun_d
Definition allins.hpp:7982
@ MIPS_dclz
Definition allins.hpp:6931
@ MIPS_msa_frsqrt_w
Definition allins.hpp:8053
@ MIPS_dextpv
Definition allins.hpp:7485
@ MIPS_sra
Definition allins.hpp:6407
@ MIPS_msa_srli_h
Definition allins.hpp:7571
@ PSP_vavg
Definition allins.hpp:7023
@ MIPS_msa_addv_b
Definition allins.hpp:7614
@ MIPS_lqv
Definition allins.hpp:6635
@ MIPS_pextuw
Definition allins.hpp:6784
@ MIPS_pnor
Definition allins.hpp:6788
@ MIPS_ori
Definition allins.hpp:6422
@ MIPS_prefx
Definition allins.hpp:6625
@ MIPS_precr_qb_ph
Definition allins.hpp:7301
@ MIPS_msa_aver_u_d
Definition allins.hpp:7757
@ MIPS_msa_fill_w
Definition allins.hpp:7921
@ MIPS_sq
Definition allins.hpp:6830
@ MIPS_msa_bseli_b
Definition allins.hpp:7913
@ MIPS_msa_dpsub_s_d
Definition allins.hpp:7824
@ MIPS_cmp_le_ph
Definition allins.hpp:7293
@ MIPS_fcabs_ult
Definition allins.hpp:7190
@ MIPS_msa_binsli_d
Definition allins.hpp:7605
@ MIPS_sdm
Definition allins.hpp:7226
@ MIPS_dmthlip
Definition allins.hpp:7498
@ MIPS_msa_clei_u_d
Definition allins.hpp:7709
@ MIPS_bbeqzc
Definition allins.hpp:8162
@ MIPS_msa_ave_u_w
Definition allins.hpp:7748
@ MIPS_qmacs_02
Definition allins.hpp:7542
@ MIPS_psubsw
Definition allins.hpp:6779
@ MIPS_msa_asub_u_d
Definition allins.hpp:7781
@ MIPS_lwe
Definition allins.hpp:8090
@ PSP_vc2i
Definition allins.hpp:7026
@ MIPS_baddu
Definition allins.hpp:6948
@ MIPS_msa_aver_u_h
Definition allins.hpp:7755
@ MIPS_msa_bset_w
Definition allins.hpp:7584
@ MIPS_ftrunc_w
Definition allins.hpp:6564
@ MIPS_msa_binsli_b
Definition allins.hpp:7602
@ MIPS_msa_add_a_h
Definition allins.hpp:7727
@ MIPS_msa_dotp_u_w
Definition allins.hpp:7814
@ MIPS_fdiv
Definition allins.hpp:6553
@ MIPS_msa_dpadd_u_h
Definition allins.hpp:7819
@ MIPS_msub_d
Definition allins.hpp:6612
@ PSP_min
Definition allins.hpp:6995
@ MIPS_msa_fexdo_w
Definition allins.hpp:8010
@ MIPS_lwv
Definition allins.hpp:6641
@ PSP_vbfy1
Definition allins.hpp:7024
@ MIPS_msa_xor_v
Definition allins.hpp:7906
@ MIPS_fsuba
Definition allins.hpp:6724
@ PSP_wsbw
Definition allins.hpp:6998
@ MIPS_addq_s_w
Definition allins.hpp:7262
@ MIPS_msa_add_a_d
Definition allins.hpp:7729
@ MIPS_msa_subs_s_d
Definition allins.hpp:7761
@ MIPS_lqc2
Definition allins.hpp:6831
@ MIPS_msa_srari_b
Definition allins.hpp:7876
@ MIPS_shrl_qb
Definition allins.hpp:7371
@ PSP_sleep
Definition allins.hpp:6999
@ MIPS_lac
Definition allins.hpp:7522
@ MIPS_cmpu_le_qb
Definition allins.hpp:7292
@ PSP_vsat0
Definition allins.hpp:7089
@ MIPS_msa_ffint_s_w
Definition allins.hpp:8073
@ MIPS_msa_bseti_b
Definition allins.hpp:7586
@ MIPS_msa_dpadd_u_d
Definition allins.hpp:7821
@ MIPS_balc
Definition allins.hpp:8155
@ MIPS_shll_ob
Definition allins.hpp:7391
@ MIPS_msa_fcult_d
Definition allins.hpp:7974
@ MIPS_msa_max_s_w
Definition allins.hpp:7632
@ MIPS_padduw
Definition allins.hpp:6778
@ MIPS_ldx
Definition allins.hpp:7412
@ MIPS_lq
Definition allins.hpp:6829
@ MIPS_shllv_qb
Definition allins.hpp:7374
@ MIPS_msa_fexp2_w
Definition allins.hpp:8007
@ MIPS_mfthc2
Definition allins.hpp:7160
@ MIPS_msa_move_v
Definition allins.hpp:8079
@ MIPS_msa_adds_u_b
Definition allins.hpp:7738
@ MIPS_lai
Definition allins.hpp:7526
@ MIPS_msa_ceqi_w
Definition allins.hpp:7676
@ MIPS_vaddc
Definition allins.hpp:6675
@ MIPS_cmpu_eq_qb
Definition allins.hpp:7286
@ MIPS_dpsu_h_qbr
Definition allins.hpp:7436
@ MIPS_muleu_s_ph_qbr
Definition allins.hpp:7264
@ MIPS_bne
Definition allins.hpp:6497
@ MIPS_msa_ilvr_h
Definition allins.hpp:7857
@ MIPS_msa_adds_a_w
Definition allins.hpp:7732
@ MIPS_mthi1
Definition allins.hpp:6733
@ MIPS_pmthl_lw
Definition allins.hpp:6735
@ MIPS_bgeiuc
Definition allins.hpp:8164
@ PSP_vsge
Definition allins.hpp:7095
@ MIPS_sw
Definition allins.hpp:6533
@ PSP_vsync
Definition allins.hpp:7019
@ MIPS_sdv
Definition allins.hpp:6646
@ MIPS_stv
Definition allins.hpp:6654
@ MIPS_swp
Definition allins.hpp:7223
@ MIPS_shllv_s_w
Definition allins.hpp:7387
@ MIPS_lfv
Definition allins.hpp:6640
@ MIPS_msa_addvi_h
Definition allins.hpp:7619
@ MIPS_bbit0
Definition allins.hpp:6949
@ MIPS_vextt
Definition allins.hpp:6708
@ MIPS_bgeic
Definition allins.hpp:8163
@ MIPS_msa_fexupr_w
Definition allins.hpp:8063
@ MIPS_law
Definition allins.hpp:7530
@ MIPS_msa_clei_s_d
Definition allins.hpp:7701
@ MIPS_msa_fcle_d
Definition allins.hpp:7976
@ MIPS_msa_srl_d
Definition allins.hpp:7569
@ MIPS_synciobdma
Definition allins.hpp:6972
@ MIPS_dextrv_rs_l
Definition allins.hpp:7497
@ MIPS_dpaq_s_w_qh
Definition allins.hpp:7445
@ MIPS_scd
Definition allins.hpp:6528
@ PSP_vsocp
Definition allins.hpp:7099
@ MIPS_bs1f
Definition allins.hpp:7123
@ PSP_vnsin
Definition allins.hpp:7073
@ MIPS_msa_adds_a_d
Definition allins.hpp:7733
@ MIPS_msa_sat_s_w
Definition allins.hpp:7720
@ MIPS_beqzc
Definition allins.hpp:7229
@ MIPS_mftr
Definition allins.hpp:7150
@ MIPS_msa_add_a_w
Definition allins.hpp:7728
@ PSP_vasin
Definition allins.hpp:7022
@ MIPS_msa_fexdo_h
Definition allins.hpp:8009
@ MIPS_pick_ph
Definition allins.hpp:7296
@ MIPS_msa_pckod_b
Definition allins.hpp:7848
@ MIPS_dvp
Definition allins.hpp:8151
@ MIPS_msa_bnegi_d
Definition allins.hpp:7597
@ MIPS_shllv_ob
Definition allins.hpp:7397
@ MIPS_ldc1
Definition allins.hpp:6513
@ MIPS_msa_clt_s_w
Definition allins.hpp:7680
@ MIPS_ppacb
Definition allins.hpp:6804
@ MIPS_msa_fmadd_d
Definition allins.hpp:8004
@ MIPS_msa_fsueq_w
Definition allins.hpp:7985
@ MIPS_bgezall
Definition allins.hpp:6485
@ MIPS_msa_fseq_d
Definition allins.hpp:7984
@ MIPS_msa_mini_s_w
Definition allins.hpp:7652
@ MIPS_msa_ave_s_h
Definition allins.hpp:7743
@ MIPS_absq_s_pw
Definition allins.hpp:7348
@ MIPS_byterevw
Definition allins.hpp:8180
@ MIPS_movt
Definition allins.hpp:6614
@ MIPS_vrsqh
Definition allins.hpp:6704
@ MIPS_msa_fsaf_w
Definition allins.hpp:7979
@ MIPS_msa_msubv_h
Definition allins.hpp:7791
@ MIPS_lwre
Definition allins.hpp:8099
@ MIPS_dmtc2
Definition allins.hpp:6939
@ MIPS_psubuw
Definition allins.hpp:6781
@ MIPS_nop
Definition allins.hpp:6589
@ MIPS_msa_subsuu_s_d
Definition allins.hpp:7773
@ MIPS_msa_bclri_b
Definition allins.hpp:7578
@ MIPS_qmacs_01
Definition allins.hpp:7541
@ MIPS_vmudh
Definition allins.hpp:6663
@ MIPS_msa_bmz_v
Definition allins.hpp:7910
@ MIPS_beql
Definition allins.hpp:6496
@ MIPS_sdr
Definition allins.hpp:6525
@ MIPS_sdc1
Definition allins.hpp:6530
@ MIPS_dive
Definition allins.hpp:7133
@ MIPS_vrsq
Definition allins.hpp:6702
@ MIPS_pmulth
Definition allins.hpp:6806
@ MIPS_mulq_s_ph
Definition allins.hpp:7263
@ MIPS_veq
Definition allins.hpp:6686
@ MIPS_msa_dpsub_s_h
Definition allins.hpp:7822
@ MIPS_fcvt_ps_pw
Definition allins.hpp:7202
@ MIPS_msa_dpsub_u_h
Definition allins.hpp:7825
@ MIPS_msa_vshf_d
Definition allins.hpp:7871
@ MIPS_msa_bnz_w
Definition allins.hpp:7953
@ MIPS_msa_slli_w
Definition allins.hpp:7556
@ MIPS_ll
Definition allins.hpp:6515
@ MIPS_msa_clei_u_b
Definition allins.hpp:7706
@ MIPS_msa_bnz_v
Definition allins.hpp:7917
@ MIPS_dsrl32
Definition allins.hpp:6405
@ MIPS_snei
Definition allins.hpp:6971
@ MIPS_crc32ch
Definition allins.hpp:8122
@ MIPS_dext
Definition allins.hpp:6932
@ MIPS_msa_sat_s_h
Definition allins.hpp:7719
@ MIPS_vmudm
Definition allins.hpp:6665
@ MIPS_dextrv_rs_w
Definition allins.hpp:7495
@ MIPS_li_d
Definition allins.hpp:6923
@ MIPS_swre
Definition allins.hpp:8101
@ MIPS_lw
Definition allins.hpp:6516
@ PSP_vi2us
Definition allins.hpp:7054
@ MIPS_por
Definition allins.hpp:6785
@ MIPS_extpdp
Definition allins.hpp:7464
@ PSP_vone
Definition allins.hpp:7075
@ MIPS_addiu
Definition allins.hpp:6416
@ MIPS_msa_sat_s_b
Definition allins.hpp:7718
@ MIPS_msa_frsqrt_d
Definition allins.hpp:8054
@ MIPS_msa_dpadd_s_d
Definition allins.hpp:7818
@ MIPS_msa_ave_s_w
Definition allins.hpp:7744
@ MIPS_msa_srli_d
Definition allins.hpp:7573
@ MIPS_adduh_r_qb
Definition allins.hpp:7505
@ MIPS_msubu3
Definition allins.hpp:7141
@ MIPS_msa_bclri_d
Definition allins.hpp:7581
@ MIPS_cmp_lt_pw
Definition allins.hpp:7313
@ MIPS_lwx
Definition allins.hpp:7411
@ MIPS_shra_r_pw
Definition allins.hpp:7406
@ MIPS_msa_copy_s_b
Definition allins.hpp:7935
@ MIPS_dextrv_r_w
Definition allins.hpp:7490
@ MIPS_dneg
Definition allins.hpp:6924
@ PSP_vf2iz
Definition allins.hpp:7042
@ MIPS_ctc1
Definition allins.hpp:6432
@ MIPS_pmaddw
Definition allins.hpp:6744
@ MIPS_pminw
Definition allins.hpp:6756
@ MIPS_dextpdp
Definition allins.hpp:7483
@ MIPS_mtc0
Definition allins.hpp:6441
@ MIPS_dpaq_sa_l_w
Definition allins.hpp:7429
@ MIPS_xor
Definition allins.hpp:6399
@ MIPS_mtsa
Definition allins.hpp:6718
@ MIPS_mfc1
Definition allins.hpp:6439
@ MIPS_qmfc2
Definition allins.hpp:6435
@ MIPS_emt
Definition allins.hpp:7147
@ MIPS_msa_subsus_u_b
Definition allins.hpp:7766
@ MIPS_mthi
Definition allins.hpp:6458
@ MIPS_msa_insert_h
Definition allins.hpp:7944
@ MIPS_ldp
Definition allins.hpp:7220
@ MIPS_mtc2
Definition allins.hpp:6443
@ MIPS_jraddiusp
Definition allins.hpp:7231
@ MIPS_vsubb
Definition allins.hpp:6678
@ MIPS_jalrs_hb
Definition allins.hpp:7233
@ MIPS_dret
Definition allins.hpp:6987
@ MIPS_bltz
Definition allins.hpp:6491
@ MIPS_msa_sll_h
Definition allins.hpp:7551
@ MIPS_msa_and_v
Definition allins.hpp:7900
@ MIPS_rotx
Definition allins.hpp:8141
@ MIPS_msa_fsaf_d
Definition allins.hpp:7980
@ MIPS_msa_vshf_b
Definition allins.hpp:7868
@ MIPS_shrl_ph
Definition allins.hpp:7373
@ MIPS_di
Definition allins.hpp:6870
@ MIPS_fc_ule
Definition allins.hpp:6577
@ MIPS_mtthc0
Definition allins.hpp:7166
@ MIPS_maq_sa_w_phl
Definition allins.hpp:7417
@ PSP_vbfy2
Definition allins.hpp:7025
@ MIPS_msa_adds_s_b
Definition allins.hpp:7734
@ MIPS_lbx
Definition allins.hpp:7533
@ MIPS_frsqrt
Definition allins.hpp:6627
@ MIPS_dshilov
Definition allins.hpp:7487
@ MIPS_msa_bneg_b
Definition allins.hpp:7590
@ MIPS_suxc1
Definition allins.hpp:6899
@ MIPS_fneg
Definition allins.hpp:6568
@ PSP_vsqrt
Definition allins.hpp:7100
@ MIPS_replv_ph
Definition allins.hpp:7335
@ PSP_vfim
Definition allins.hpp:7044
@ MIPS_lhv
Definition allins.hpp:6639
@ MIPS_replv_ob
Definition allins.hpp:7352
@ MIPS_msa_ceqi_b
Definition allins.hpp:7674
@ MIPS_msa_fcult_w
Definition allins.hpp:7973
@ MIPS_dpsu_h_qbl
Definition allins.hpp:7426
@ PSP_vf2id
Definition allins.hpp:7039
@ PSP_vsrt3
Definition allins.hpp:7103
@ MIPS_bltiuc
Definition allins.hpp:8168
@ MIPS_msa_fcueq_d
Definition allins.hpp:7970
@ MIPS_bltzals
Definition allins.hpp:7228
@ MIPS_bc1f
Definition allins.hpp:6468
@ MIPS_msa_addvi_d
Definition allins.hpp:7621
@ MIPS_msa_ilvod_w
Definition allins.hpp:7866
@ MIPS_msa_cle_s_d
Definition allins.hpp:7697
@ MIPS_msub3
Definition allins.hpp:7140
@ MIPS_pext5
Definition allins.hpp:6813
@ MIPS_zeh
Definition allins.hpp:6917
@ MIPS_msa_mod_s_d
Definition allins.hpp:7805
@ MIPS_bal
Definition allins.hpp:6598
@ MIPS_ldxc1
Definition allins.hpp:6605
@ MIPS_dpaqx_sa_w_ph
Definition allins.hpp:7424
@ MIPS_dmsubu
Definition allins.hpp:7460
@ MIPS_dpaqx_s_w_ph
Definition allins.hpp:7418
@ MIPS_pcgtw
Definition allins.hpp:6751
@ MIPS_rotr
Definition allins.hpp:6895
@ MIPS_msa_min_u_w
Definition allins.hpp:7656
@ PSP_vt5551
Definition allins.hpp:7107
@ MIPS_spv
Definition allins.hpp:6649
@ MIPS_dpau_h_qbr
Definition allins.hpp:7435
@ MIPS_subq_ph
Definition allins.hpp:7252
@ MIPS_bitrevb
Definition allins.hpp:8179
@ MIPS_msa_subs_u_d
Definition allins.hpp:7765
@ MIPS_msa_ceq_h
Definition allins.hpp:7671
@ MIPS_li_s
Definition allins.hpp:6922
@ MIPS_she
Definition allins.hpp:8092
@ MIPS_bbit1
Definition allins.hpp:6951
@ MIPS_srv
Definition allins.hpp:6648
@ MIPS_shx
Definition allins.hpp:8125
@ MIPS_msa_srlri_b
Definition allins.hpp:7884
@ MIPS_cmpgu_lt_ob
Definition allins.hpp:7324
@ MIPS_preceu_ph_qbr
Definition allins.hpp:7342
@ MIPS_msa_dpadd_s_w
Definition allins.hpp:7817
@ MIPS_shra_r_w
Definition allins.hpp:7384
@ MIPS_msa_frint_w
Definition allins.hpp:8057
@ MIPS_sfv
Definition allins.hpp:6652
@ MIPS_msa_sldi_b
Definition allins.hpp:7832
@ MIPS_precequ_ph_qbr
Definition allins.hpp:7340
@ MIPS_shrav_qb
Definition allins.hpp:7385
@ MIPS_msa_xori_b
Definition allins.hpp:7907
@ MIPS_msa_clti_u_d
Definition allins.hpp:7693
@ MIPS_fmul
Definition allins.hpp:6552
@ MIPS_bbnezc
Definition allins.hpp:8166
@ MIPS_fc_f
Definition allins.hpp:6570
@ MIPS_vor
Definition allins.hpp:6695
@ MIPS_syncw
Definition allins.hpp:6974
@ MIPS_sltu
Definition allins.hpp:6396
@ MIPS_msa_nloc_w
Definition allins.hpp:7929
@ MIPS_msa_ilvev_h
Definition allins.hpp:7861
@ MIPS_msa_asub_s_b
Definition allins.hpp:7774
@ MIPS_sigrie
Definition allins.hpp:8153
@ MIPS_uld
Definition allins.hpp:6976
@ MIPS_msa_nloc_h
Definition allins.hpp:7928
@ MIPS_lwu
Definition allins.hpp:6517
@ MIPS_msa_pckod_w
Definition allins.hpp:7850
@ MIPS_msa_subv_d
Definition allins.hpp:7625
@ MIPS_lwc1
Definition allins.hpp:6521
@ MIPS_dextr_w
Definition allins.hpp:7478
@ MIPS_fcabs_le
Definition allins.hpp:7199
@ MIPS_bc2fl
Definition allins.hpp:6473
@ MIPS_msa_subsuu_s_w
Definition allins.hpp:7772
@ MIPS_pexoh
Definition allins.hpp:6809
@ MIPS_cftc1
Definition allins.hpp:7159
@ MIPS_msa_ilvl_w
Definition allins.hpp:7854
@ MIPS_muleq_s_w_phr
Definition allins.hpp:7259
@ MIPS_mulq_rs_ph
Definition allins.hpp:7267
@ MIPS_pmadduw
Definition allins.hpp:6749
@ MIPS_lsv
Definition allins.hpp:6632
@ MIPS_preceu_qh_obr
Definition allins.hpp:7362
@ MIPS_msa_ilvl_h
Definition allins.hpp:7853
@ MIPS_msa_sat_u_d
Definition allins.hpp:7725
@ MIPS_addu_s_qb
Definition allins.hpp:7253
@ MIPS_bc1tl
Definition allins.hpp:6480
@ MIPS_mulsaq_s_l_pw
Definition allins.hpp:7454
@ MIPS_dsllv
Definition allins.hpp:6409
@ MIPS_luxc1
Definition allins.hpp:6880
@ MIPS_msa_clei_s_h
Definition allins.hpp:7699
@ MIPS_bext
Definition allins.hpp:7132
@ MIPS_sbe
Definition allins.hpp:8091
@ MIPS_ac0iu
Definition allins.hpp:7122
@ MIPS_msa_max_s_d
Definition allins.hpp:7633
@ MIPS_bc0tl
Definition allins.hpp:6479
@ MIPS_jal
Definition allins.hpp:6502
@ MIPS_fmov
Definition allins.hpp:6567
@ MIPS_qmac_03
Definition allins.hpp:7539
@ MIPS_subu_ob
Definition allins.hpp:7269
@ MIPS_drotr
Definition allins.hpp:6940
@ MIPS_msa_div_u_h
Definition allins.hpp:7799
@ MIPS_frecip1
Definition allins.hpp:7204
@ MIPS_ppacw
Definition allins.hpp:6786
@ MIPS_tlbwr
Definition allins.hpp:6545
@ MIPS_ldl
Definition allins.hpp:6507
@ MIPS_msa_insve_w
Definition allins.hpp:7949
@ MIPS_bc1any2f
Definition allins.hpp:7181
@ MIPS_msa_ld_b
Definition allins.hpp:7710
@ PSP_vuc2i
Definition allins.hpp:7112
@ MIPS_yield
Definition allins.hpp:7149
@ MIPS_dpsu_h_obr
Definition allins.hpp:7458
@ MIPS_dextm
Definition allins.hpp:6933
@ MIPS_msa_cle_s_h
Definition allins.hpp:7695
@ PSP_vnrcp
Definition allins.hpp:7072
@ MIPS_madd_d
Definition allins.hpp:6610
@ MIPS_fsqrt
Definition allins.hpp:6569
@ MIPS_byterevh
Definition allins.hpp:8181
@ MIPS_mttdsp
Definition allins.hpp:7170
@ MIPS_lwp
Definition allins.hpp:7219
@ MIPS_maddu1
Definition allins.hpp:6748
@ MIPS_teq
Definition allins.hpp:6424
@ MIPS_msa_binsri_b
Definition allins.hpp:7610
@ MIPS_shllv_s_pw
Definition allins.hpp:7408
@ MIPS_msa_subvi_b
Definition allins.hpp:7626
@ MIPS_subu_s_ob
Definition allins.hpp:7277
@ MIPS_mulsa_w_ph
Definition allins.hpp:7422
@ MIPS_replv_qh
Definition allins.hpp:7353
@ MIPS_subu_qb
Definition allins.hpp:7247
@ MIPS_fcvt_s_pu
Definition allins.hpp:6876
@ MIPS_msa_fdiv_w
Definition allins.hpp:8001
@ MIPS_pexcw
Definition allins.hpp:6815
@ PSP_bvt
Definition allins.hpp:7014
@ MIPS_msa_msubv_b
Definition allins.hpp:7790
@ MIPS_addq_ph
Definition allins.hpp:7250
@ MIPS_msa_subs_s_w
Definition allins.hpp:7760
@ MIPS_msa_ave_u_b
Definition allins.hpp:7746
@ MIPS_shll_s_pw
Definition allins.hpp:7404
@ MIPS_vmadh
Definition allins.hpp:6664
@ MIPS_fcabs_ole
Definition allins.hpp:7191
@ MIPS_pcpyld
Definition allins.hpp:6774
@ MIPS_madd3
Definition allins.hpp:7138
@ MIPS_msa_fsor_w
Definition allins.hpp:8033
@ MIPS_fc_ult
Definition allins.hpp:6575
@ MIPS_sll
Definition allins.hpp:6406
@ MIPS_pdivw
Definition allins.hpp:6740
@ MIPS_msa_fseq_w
Definition allins.hpp:7983
@ MIPS_msa_adds_u_d
Definition allins.hpp:7741
@ PSP_vexp2
Definition allins.hpp:7037
@ MIPS_dpop
Definition allins.hpp:6956
@ MIPS_addu_ph
Definition allins.hpp:7245
@ MIPS_bnezc
Definition allins.hpp:7227
@ MIPS_msa_mod_u_h
Definition allins.hpp:7807
@ MIPS_not
Definition allins.hpp:6851
@ MIPS_sllv
Definition allins.hpp:6412
@ MIPS_vsad
Definition allins.hpp:6681
@ MIPS_mftlo
Definition allins.hpp:7153
@ MIPS_nor
Definition allins.hpp:6393
@ MIPS_msa_binsl_b
Definition allins.hpp:7598
@ MIPS_fc_sf
Definition allins.hpp:6578
@ MIPS_psubsh
Definition allins.hpp:6792
@ PSP_mtic
Definition allins.hpp:6997
@ MIPS_shra_pw
Definition allins.hpp:7396
@ MIPS_blezl
Definition allins.hpp:6490
@ MIPS_msa_min_u_b
Definition allins.hpp:7654
@ PSP_vf2in
Definition allins.hpp:7040
@ MIPS_cfc0
Definition allins.hpp:6713
@ MIPS_msa_fill_b
Definition allins.hpp:7919
@ MIPS_cop2
Definition allins.hpp:6464
@ MIPS_sdl
Definition allins.hpp:6524
@ MIPS_pexch
Definition allins.hpp:6810
@ PSP_bitrev
Definition allins.hpp:6993
@ MIPS_paddb
Definition allins.hpp:6766
@ MIPS_movep
Definition allins.hpp:7234
@ MIPS_multu3
Definition allins.hpp:6837
@ MIPS_evp
Definition allins.hpp:8152
@ MIPS_msa_clt_s_h
Definition allins.hpp:7679
@ MIPS_msa_bneg_h
Definition allins.hpp:7591
@ MIPS_msa_fcun_d
Definition allins.hpp:7966
@ MIPS_ualwm
Definition allins.hpp:8146
@ MIPS_precequ_pw_qhra
Definition allins.hpp:7366
@ MIPS_msa_msubr_q_w
Definition allins.hpp:8044
@ MIPS_crc32h
Definition allins.hpp:8119
@ MIPS_btnez
Definition allins.hpp:6846
@ MIPS_adduh_qb
Definition allins.hpp:7499
@ MIPS_dpsu_h_obl
Definition allins.hpp:7443
@ MIPS_movz
Definition allins.hpp:6616
@ MIPS_bins
Definition allins.hpp:7131
@ MIPS_beqz
Definition allins.hpp:6595
@ MIPS_msa_srai_w
Definition allins.hpp:7564
@ MIPS_addqh_w
Definition allins.hpp:7501
@ MIPS_swpc
Definition allins.hpp:8140
@ MIPS_swm2
Definition allins.hpp:8183
@ MIPS_muhu
Definition allins.hpp:8114
@ MIPS_msa_cfcmsa
Definition allins.hpp:8078
@ MIPS_msa_addvi_b
Definition allins.hpp:7618
@ MIPS_sov
Definition allins.hpp:8117
@ MIPS_msa_max_s_h
Definition allins.hpp:7631
@ MIPS_srl
Definition allins.hpp:6408
@ MIPS_saa
Definition allins.hpp:6966
@ MIPS_bc1t
Definition allins.hpp:6476
@ MIPS_swc1
Definition allins.hpp:6535
@ MIPS_uaswm
Definition allins.hpp:8147
@ MIPS_msa_ftq_w
Definition allins.hpp:8012
@ MIPS_mfhc1
Definition allins.hpp:6882
@ MIPS_psrlw
Definition allins.hpp:6822
@ MIPS_fcabs_ngt
Definition allins.hpp:7200
@ MIPS_subqh_r_ph
Definition allins.hpp:7509
@ MIPS_msa_fcune_d
Definition allins.hpp:8024
@ MIPS_fcabs_ueq
Definition allins.hpp:7188
@ MIPS_msa_ftint_s_w
Definition allins.hpp:8069
@ MIPS_msa_max_a_d
Definition allins.hpp:7665
@ MIPS_msa_srar_h
Definition allins.hpp:7873
@ MIPS_fround_w
Definition allins.hpp:6563
@ MIPS_shrl_ob
Definition allins.hpp:7394
@ MIPS_lwl
Definition allins.hpp:6509
@ IA64_cloop
Definition allins.hpp:10010
@ IA64_nm
Definition allins.hpp:10151
@ IA64_sum
Definition allins.hpp:10233
@ IA64_pavgsub1
Definition allins.hpp:10169
@ IA64_shladd
Definition allins.hpp:10212
@ IA64_or
Definition allins.hpp:10159
@ IA64_probe
Definition allins.hpp:10182
@ IA64_addp4
Definition allins.hpp:9994
@ IA64_xma
Definition allins.hpp:10263
@ IA64_add
Definition allins.hpp:9992
@ IA64_invala
Definition allins.hpp:10108
@ IA64_a
Definition allins.hpp:9990
@ IA64_unc
Definition allins.hpp:10246
@ IA64_cmp4
Definition allins.hpp:10014
@ IA64_ssm
Definition allins.hpp:10221
@ IA64_psad1
Definition allins.hpp:10183
@ IA64_nta
Definition allins.hpp:10157
@ IA64_fms
Definition allins.hpp:10060
@ IA64_rel
Definition allins.hpp:10197
@ IA64_fetchadd4
Definition allins.hpp:10049
@ IA64_ctop
Definition allins.hpp:10021
@ IA64_flushrs
Definition allins.hpp:10053
@ IA64_ord
Definition allins.hpp:10161
@ IA64_nop
Definition allins.hpp:10152
@ IA64_shrp
Definition allins.hpp:10215
@ IA64_xchg4
Definition allins.hpp:10260
@ IA64_itr
Definition allins.hpp:10110
@ IA64_s2
Definition allins.hpp:10206
@ IA64_s0
Definition allins.hpp:10204
@ IA64_mf
Definition allins.hpp:10135
@ IA64_tbit
Definition allins.hpp:10239
@ IA64_fchkf
Definition allins.hpp:10044
@ IA64_ptc
Definition allins.hpp:10193
@ IA64_ldfe
Definition allins.hpp:10119
@ IA64_xf
Definition allins.hpp:10262
@ IA64_call
Definition allins.hpp:10007
@ IA64_and
Definition allins.hpp:9997
@ IA64_fnegabs
Definition allins.hpp:10062
@ IA64_andcm
Definition allins.hpp:9998
@ IA64_fneg
Definition allins.hpp:10061
@ IA64_fand
Definition allins.hpp:10040
@ IA64_ldf8
Definition allins.hpp:10117
@ IA64_orcm
Definition allins.hpp:10160
@ IA64_lfetch
Definition allins.hpp:10126
@ IA64_ltu
Definition allins.hpp:10131
@ IA64_dptk
Definition allins.hpp:10027
@ IA64_clrrrb
Definition allins.hpp:10012
@ IA64_tnat
Definition allins.hpp:10241
@ IA64_fpabs
Definition allins.hpp:10067
@ IA64_fill
Definition allins.hpp:10052
@ IA64_acq
Definition allins.hpp:9991
@ IA64_pavg1
Definition allins.hpp:10167
@ IA64_xchg2
Definition allins.hpp:10259
@ IA64_raz
Definition allins.hpp:10196
@ IA64_fma
Definition allins.hpp:10054
@ IA64_loadrs
Definition allins.hpp:10127
@ IA64_st8
Definition allins.hpp:10226
@ IA64_cover
Definition allins.hpp:10020
@ IA64_pcmp4
Definition allins.hpp:10173
@ IA64_famax
Definition allins.hpp:10038
@ IA64_zxt1
Definition allins.hpp:10268
@ IA64_exp
Definition allins.hpp:10033
@ IA64_d
Definition allins.hpp:10024
@ IA64_cexit
Definition allins.hpp:10008
@ IA64_nt2
Definition allins.hpp:10156
@ IA64_fxor
Definition allins.hpp:10094
@ IA64_chk
Definition allins.hpp:10009
@ IA64_pack2
Definition allins.hpp:10162
@ IA64_fmix
Definition allins.hpp:10058
@ IA64_sxt4
Definition allins.hpp:10236
@ IA64_ld8
Definition allins.hpp:10115
@ IA64_padd1
Definition allins.hpp:10164
@ IA64_fpmpy
Definition allins.hpp:10077
@ IA64_fpcvt
Definition allins.hpp:10072
@ IA64_pack4
Definition allins.hpp:10163
@ IA64_fwb
Definition allins.hpp:10092
@ IA64_r
Definition allins.hpp:10195
@ IA64_fpamax
Definition allins.hpp:10069
@ IA64_st4
Definition allins.hpp:10225
@ IA64_fandcm
Definition allins.hpp:10041
@ IA64_fmpy
Definition allins.hpp:10059
@ IA64_trunc
Definition allins.hpp:10243
@ IA64_ne
Definition allins.hpp:10144
@ IA64_mux2
Definition allins.hpp:10142
@ IA64_fxu
Definition allins.hpp:10095
@ IA64_pmin1
Definition allins.hpp:10176
@ IA64_nc
Definition allins.hpp:10143
@ IA64_setf
Definition allins.hpp:10210
@ IA64_leu
Definition allins.hpp:10125
@ IA64_break
Definition allins.hpp:10002
@ IA64_fsetc
Definition allins.hpp:10088
@ IA64_extr
Definition allins.hpp:10034
@ IA64_uus
Definition allins.hpp:10252
@ IA64_xuf
Definition allins.hpp:10266
@ IA64_pmpyshr2
Definition allins.hpp:10179
@ IA64_rum
Definition allins.hpp:10201
@ IA64_g
Definition allins.hpp:10096
@ IA64_cmp
Definition allins.hpp:10013
@ IA64_e
Definition allins.hpp:10028
@ IA64_wexit
Definition allins.hpp:10255
@ IA64_famin
Definition allins.hpp:10039
@ IA64_ld2
Definition allins.hpp:10113
@ IA64_bias
Definition allins.hpp:10000
@ IA64_pmax2
Definition allins.hpp:10175
@ IA64_fpnegabs
Definition allins.hpp:10080
@ IA64_fpmax
Definition allins.hpp:10074
@ IA64_fpma
Definition allins.hpp:10073
@ IA64_st1
Definition allins.hpp:10223
@ IA64_dep
Definition allins.hpp:10025
@ IA64_ldfpd
Definition allins.hpp:10121
@ IA64_z
Definition allins.hpp:10267
@ IA64_unord
Definition allins.hpp:10247
@ IA64_epc
Definition allins.hpp:10029
@ IA64_wtop
Definition allins.hpp:10256
@ IA64_pr
Definition allins.hpp:10181
@ IA64_sub
Definition allins.hpp:10232
@ IA64_mix2
Definition allins.hpp:10137
@ IA64_mix1
Definition allins.hpp:10136
@ IA64_bsw
Definition allins.hpp:10005
@ IA64_pcmp1
Definition allins.hpp:10171
@ IA64_movl
Definition allins.hpp:10140
@ IA64_pshr4
Definition allins.hpp:10188
@ IA64_fclass
Definition allins.hpp:10045
@ IA64_fnmpy
Definition allins.hpp:10064
@ IA64_sxt2
Definition allins.hpp:10235
@ IA64_f
Definition allins.hpp:10035
@ IA64_loop
Definition allins.hpp:10128
@ IA64_exit
Definition allins.hpp:10032
@ IA64_br
Definition allins.hpp:10001
@ IA64_xor
Definition allins.hpp:10265
@ IA64_pmax1
Definition allins.hpp:10174
@ IA64_ldf
Definition allins.hpp:10116
@ IA64_fc
Definition allins.hpp:10043
@ IA64_psub4
Definition allins.hpp:10192
@ IA64_fnma
Definition allins.hpp:10063
@ IA64_fsub
Definition allins.hpp:10089
@ IA64_mov
Definition allins.hpp:10139
@ IA64_fprsqrta
Definition allins.hpp:10084
@ IA64_h
Definition allins.hpp:10103
@ IA64_fpmin
Definition allins.hpp:10076
@ IA64_thash
Definition allins.hpp:10240
@ IA64_lr
Definition allins.hpp:10129
@ IA64_pcmp2
Definition allins.hpp:10172
@ IA64_stfd
Definition allins.hpp:10229
@ IA64_1
Definition allins.hpp:9989
@ IA64_pshladd2
Definition allins.hpp:10186
@ IA64_geu
Definition allins.hpp:10100
@ IA64_se
Definition allins.hpp:10209
@ IA64_ldfd
Definition allins.hpp:10118
@ IA64_st2
Definition allins.hpp:10224
@ IA64_pshradd2
Definition allins.hpp:10189
@ IA64_xchg8
Definition allins.hpp:10261
@ IA64_cmpxchg4
Definition allins.hpp:10017
@ IA64_ld1
Definition allins.hpp:10112
@ IA64_fabs
Definition allins.hpp:10036
@ IA64_fselect
Definition allins.hpp:10087
@ IA64_stf8
Definition allins.hpp:10228
@ IA64_alloc
Definition allins.hpp:9996
@ IA64_addl
Definition allins.hpp:9993
@ IA64_fcvt
Definition allins.hpp:10048
@ IA64_cmpxchg2
Definition allins.hpp:10016
@ IA64_pmpy2
Definition allins.hpp:10178
@ IA64_sync
Definition allins.hpp:10237
@ IA64_ge
Definition allins.hpp:10098
@ IA64_ns
Definition allins.hpp:10154
@ IA64_fnorm
Definition allins.hpp:10065
@ IA64_ldfps
Definition allins.hpp:10122
@ IA64_null
Definition allins.hpp:9987
@ IA64_shladdp4
Definition allins.hpp:10213
@ IA64_hu
Definition allins.hpp:10104
@ IA64_czx1
Definition allins.hpp:10022
@ IA64_b
Definition allins.hpp:9999
@ IA64_fprcpa
Definition allins.hpp:10083
@ IA64_uuu
Definition allins.hpp:10253
@ IA64_imp
Definition allins.hpp:10107
@ IA64_excl
Definition allins.hpp:10031
@ IA64_getf
Definition allins.hpp:10099
@ IA64_ga
Definition allins.hpp:10097
@ IA64_fpamin
Definition allins.hpp:10070
@ IA64_nr
Definition allins.hpp:10153
@ IA64_fmax
Definition allins.hpp:10055
@ IA64_fetchadd8
Definition allins.hpp:10050
@ IA64_l
Definition allins.hpp:10111
@ IA64_nl
Definition allins.hpp:10148
@ IA64_czx2
Definition allins.hpp:10023
@ IA64_frcpa
Definition allins.hpp:10085
@ IA64_brl
Definition allins.hpp:10003
@ IA64_pshl2
Definition allins.hpp:10184
@ IA64_s
Definition allins.hpp:10203
@ IA64_shr
Definition allins.hpp:10214
@ IA64_psub1
Definition allins.hpp:10190
@ IA64_mux1
Definition allins.hpp:10141
@ IA64_tak
Definition allins.hpp:10238
@ IA64_for
Definition allins.hpp:10066
@ IA64_fsxt
Definition allins.hpp:10091
@ IA64_xmpy
Definition allins.hpp:10264
@ IA64_spnt
Definition allins.hpp:10218
@ IA64_sig
Definition allins.hpp:10216
@ IA64_ld4
Definition allins.hpp:10114
@ IA64_unpack4
Definition allins.hpp:10250
@ IA64_zxt4
Definition allins.hpp:10270
@ IA64_rfi
Definition allins.hpp:10199
@ IA64_clr
Definition allins.hpp:10011
@ IA64_eq
Definition allins.hpp:10030
@ IA64_pshl4
Definition allins.hpp:10185
@ IA64_nle
Definition allins.hpp:10149
@ IA64_brp
Definition allins.hpp:10004
@ IA64_fpcmp
Definition allins.hpp:10071
@ IA64_fpms
Definition allins.hpp:10078
@ IA64_fpnmpy
Definition allins.hpp:10082
@ IA64_unpack2
Definition allins.hpp:10249
@ IA64_fx
Definition allins.hpp:10093
@ IA64_fpack
Definition allins.hpp:10068
@ IA64_last
Definition allins.hpp:10271
@ IA64_x
Definition allins.hpp:10257
@ IA64_cmpxchg8
Definition allins.hpp:10018
@ IA64_frsqrta
Definition allins.hpp:10086
@ IA64_padd2
Definition allins.hpp:10165
@ IA64_rsm
Definition allins.hpp:10200
@ IA64_ptr
Definition allins.hpp:10194
@ IA64_padd4
Definition allins.hpp:10166
@ IA64_psub2
Definition allins.hpp:10191
@ IA64_pavgsub2
Definition allins.hpp:10170
@ IA64_ngt
Definition allins.hpp:10147
@ IA64_u
Definition allins.hpp:10245
@ IA64_fpmerge
Definition allins.hpp:10075
@ IA64_c
Definition allins.hpp:10006
@ IA64_unpack1
Definition allins.hpp:10248
@ IA64_many
Definition allins.hpp:10134
@ IA64_le
Definition allins.hpp:10124
@ IA64_fpneg
Definition allins.hpp:10079
@ IA64_gtu
Definition allins.hpp:10102
@ IA64_lu
Definition allins.hpp:10132
@ IA64_fault
Definition allins.hpp:10042
@ IA64_ldfs
Definition allins.hpp:10123
@ IA64_nge
Definition allins.hpp:10146
@ IA64_lt
Definition allins.hpp:10130
@ IA64_stfe
Definition allins.hpp:10230
@ IA64_m
Definition allins.hpp:10133
@ IA64_fmerge
Definition allins.hpp:10056
@ IA64_spill
Definition allins.hpp:10217
@ IA64_sxt1
Definition allins.hpp:10234
@ IA64_nz
Definition allins.hpp:10158
@ IA64_ttag
Definition allins.hpp:10244
@ IA64_s3
Definition allins.hpp:10207
@ IA64_adds
Definition allins.hpp:9995
@ IA64_0
Definition allins.hpp:9988
@ IA64_ia
Definition allins.hpp:10106
@ IA64_ret
Definition allins.hpp:10198
@ IA64_zxt2
Definition allins.hpp:10269
@ IA64_w
Definition allins.hpp:10254
@ IA64_pavg2
Definition allins.hpp:10168
@ IA64_s1
Definition allins.hpp:10205
@ IA64_stfs
Definition allins.hpp:10231
@ IA64_i
Definition allins.hpp:10105
@ IA64_sa
Definition allins.hpp:10208
@ IA64_sss
Definition allins.hpp:10222
@ IA64_fadd
Definition allins.hpp:10037
@ IA64_srlz
Definition allins.hpp:10220
@ IA64_fswap
Definition allins.hpp:10090
@ IA64_mix4
Definition allins.hpp:10138
@ IA64_nlt
Definition allins.hpp:10150
@ IA64_dpnt
Definition allins.hpp:10026
@ IA64_fclrf
Definition allins.hpp:10046
@ IA64_popcnt
Definition allins.hpp:10180
@ IA64_fmin
Definition allins.hpp:10057
@ IA64_sptk
Definition allins.hpp:10219
@ IA64_tpa
Definition allins.hpp:10242
@ IA64_uss
Definition allins.hpp:10251
@ IA64_neq
Definition allins.hpp:10145
@ IA64_ldfp8
Definition allins.hpp:10120
@ IA64_shl
Definition allins.hpp:10211
@ IA64_fcmp
Definition allins.hpp:10047
@ IA64_pmin2
Definition allins.hpp:10177
@ IA64_cond
Definition allins.hpp:10019
@ IA64_pshr2
Definition allins.hpp:10187
@ IA64_xchg1
Definition allins.hpp:10258
@ IA64_few
Definition allins.hpp:10051
@ IA64_gt
Definition allins.hpp:10101
@ IA64_fpnma
Definition allins.hpp:10081
@ IA64_cmpxchg1
Definition allins.hpp:10015
@ IA64_itc
Definition allins.hpp:10109
@ IA64_nt1
Definition allins.hpp:10155
@ IA64_stf
Definition allins.hpp:10227
@ IA64_rw
Definition allins.hpp:10202
name_quick
Definition allins.hpp:4081
@ j_invokeinterface_quick
Definition allins.hpp:4097
@ j_getstatic_quick
Definition allins.hpp:4089
@ j_ldc2w_quick
Definition allins.hpp:4084
@ j_putfield_quick
Definition allins.hpp:4086
@ j_multianewarray_quick
Definition allins.hpp:4102
@ j_putfield_quick_w
Definition allins.hpp:4107
@ j_ldcw_quick
Definition allins.hpp:4083
@ j_invokevirtual_quick
Definition allins.hpp:4093
@ j_invokesuper_quick
Definition allins.hpp:4095
@ j_ldc_quick
Definition allins.hpp:4082
@ j_instanceof_quick
Definition allins.hpp:4104
@ j_invokevirtual_quick_w
Definition allins.hpp:4105
@ j_new_quick
Definition allins.hpp:4100
@ j_putfield2_quick
Definition allins.hpp:4088
@ j_putstatic2_quick
Definition allins.hpp:4092
@ j_invokevirtualobject_quick
Definition allins.hpp:4098
@ j_getstatic2_quick
Definition allins.hpp:4091
@ j_checkcast_quick
Definition allins.hpp:4103
@ j_getfield_quick_w
Definition allins.hpp:4106
@ j_getfield_quick
Definition allins.hpp:4085
@ j_putstatic_quick
Definition allins.hpp:4090
@ j_getfield2_quick
Definition allins.hpp:4087
@ j_invokenonvirtual_quick
Definition allins.hpp:4094
@ j_invokestatic_quick
Definition allins.hpp:4096
@ j_invokeignored_quick
Definition allins.hpp:4099
@ j_anewarray_quick
Definition allins.hpp:4101
@ j_quick_last
Definition allins.hpp:4108
@ NN_vpopcntd
Definition allins.hpp:1983
@ NN_vmgetinfo
Definition allins.hpp:1276
@ NN_setnb
Definition allins.hpp:192
@ NN_vcmpeq_usps
Definition allins.hpp:1408
@ NN_vpcmpnled
Definition allins.hpp:1739
@ NN_vptest
Definition allins.hpp:1225
@ NN_vpermt2pd
Definition allins.hpp:1602
@ NN_fxtract
Definition allins.hpp:321
@ NN_fnsave
Definition allins.hpp:357
@ NN_vpandd
Definition allins.hpp:1571
@ NN_fcmovu
Definition allins.hpp:275
@ NN_vpcomtrueb
Definition allins.hpp:1897
@ NN_vshuff64x2
Definition allins.hpp:1663
@ NN_fistp
Definition allins.hpp:296
@ NN_vpconflictq
Definition allins.hpp:1588
@ NN_vphaddbw
Definition allins.hpp:1849
@ NN_cvttsd2si
Definition allins.hpp:616
@ NN_pfmin
Definition allins.hpp:468
@ NN_jnc
Definition allins.hpp:82
@ NN_fdivrp
Definition allins.hpp:315
@ NN_pmovsxbq
Definition allins.hpp:793
@ NN_vcmpnltsd
Definition allins.hpp:1422
@ NN_cmovge
Definition allins.hpp:260
@ NN_vpbroadcastmw2d
Definition allins.hpp:1576
@ NN_cmpunordss
Definition allins.hpp:565
@ NN_vcvtpd2ps
Definition allins.hpp:950
@ NN_vpcmpnleq
Definition allins.hpp:1752
@ NN_vcmpless
Definition allins.hpp:1452
@ NN_kxnorb
Definition allins.hpp:1803
@ NN_vextracti64x4
Definition allins.hpp:1539
@ NN_vprotw
Definition allins.hpp:1878
@ NN_psignb
Definition allins.hpp:698
@ NN_vsubph
Definition allins.hpp:2165
@ NN_umonitor
Definition allins.hpp:2039
@ NN_cld
Definition allins.hpp:35
@ NN_vpcomneqb
Definition allins.hpp:1895
@ NN_cmpless
Definition allins.hpp:564
@ NN_invlpga
Definition allins.hpp:843
@ NN_blendpd
Definition allins.hpp:762
@ NN_kaddd
Definition allins.hpp:1766
@ NN_pfpnacc
Definition allins.hpp:575
@ NN_vbroadcasti32x2
Definition allins.hpp:1498
@ NN_vpmovsxdq
Definition allins.hpp:1177
@ NN_vgf2p8affineinvqb
Definition allins.hpp:2060
@ NN_setnz
Definition allins.hpp:203
@ NN_punpcklbw
Definition allins.hpp:441
@ NN_vfnmsub231sd
Definition allins.hpp:1032
@ NN_vpinsrd
Definition allins.hpp:1154
@ NN_vmcall
Definition allins.hpp:717
@ NN_xabort
Definition allins.hpp:1269
@ NN_vcmpngtss
Definition allins.hpp:1460
@ NN_vp4dpwssds
Definition allins.hpp:1982
@ NN_pmovzxbw
Definition allins.hpp:797
@ NN_vandps
Definition allins.hpp:932
@ NN_feni
Definition allins.hpp:363
@ NN_vfpclassph
Definition allins.hpp:2153
@ NN_verw
Definition allins.hpp:224
@ NN_jnb
Definition allins.hpp:80
@ NN_vcvtdq2ph
Definition allins.hpp:2108
@ NN_vcmple_oqpd
Definition allins.hpp:1369
@ NN_cmovbe
Definition allins.hpp:258
@ NN_vcmpordps
Definition allins.hpp:1391
@ NN_divpd
Definition allins.hpp:617
@ NN_pfnacc
Definition allins.hpp:574
@ NN_rorx
Definition allins.hpp:901
@ NN_pcmpeqd
Definition allins.hpp:415
@ NN_vgetexpsh
Definition allins.hpp:2202
@ NN_vscatterdps
Definition allins.hpp:1700
@ NN_fcomi
Definition allins.hpp:280
@ NN_std
Definition allins.hpp:217
@ NN_pmaxuw
Definition allins.hpp:786
@ NN_vcmpfalseps
Definition allins.hpp:1395
@ NN_vcmpunordsd
Definition allins.hpp:1420
@ NN_shrd
Definition allins.hpp:213
@ NN_unpcklpd
Definition allins.hpp:660
@ NN_loopq
Definition allins.hpp:123
@ NN_vldmxcsr
Definition allins.hpp:1046
@ NN_vpcomeqd
Definition allins.hpp:1912
@ NN_vpbroadcastd
Definition allins.hpp:1114
@ NN_vcvtpd2dq
Definition allins.hpp:949
@ NN_vpcomgtw
Definition allins.hpp:1901
@ NN_vrcp28ps
Definition allins.hpp:1709
@ NN_vunpcklps
Definition allins.hpp:1261
@ NN_loopd
Definition allins.hpp:122
@ NN_invept
Definition allins.hpp:854
@ NN_vpmaxud
Definition allins.hpp:1165
@ NN_vcmpfalse_osps
Definition allins.hpp:1411
@ NN_vpcmpneqd
Definition allins.hpp:1737
@ NN_vpmaddwd
Definition allins.hpp:1158
@ NN_phaddw
Definition allins.hpp:706
@ NN_vpcmpq
Definition allins.hpp:1581
@ NN_vpabsq
Definition allins.hpp:1570
@ NN_vcvtps2udq
Definition allins.hpp:1508
@ NN_vpcmpltd
Definition allins.hpp:1735
@ NN_vcmpnle_uqps
Definition allins.hpp:1406
@ NN_vcmpneqps
Definition allins.hpp:1388
@ NN_korw
Definition allins.hpp:1786
@ NN_vprorq
Definition allins.hpp:1649
@ NN_vfixupimmss
Definition allins.hpp:1543
@ NN_vmiretd
Definition allins.hpp:1287
@ NN_phsubsw
Definition allins.hpp:704
@ NN_vfmadd231pd
Definition allins.hpp:982
@ NN_vprord
Definition allins.hpp:1647
@ NN_v4fmaddss
Definition allins.hpp:1979
@ NN_vcmptrue_uspd
Definition allins.hpp:1382
@ NN_ficomp
Definition allins.hpp:328
@ NN_vcmpsh
Definition allins.hpp:2172
@ NN_vfnmadd132ph
Definition allins.hpp:2147
@ NN_vmovdqa32
Definition allins.hpp:1564
@ NN_vcvtph2w
Definition allins.hpp:2117
@ NN_vpslld
Definition allins.hpp:1202
@ NN_vcmple_oqps
Definition allins.hpp:1402
@ NN_vfrczss
Definition allins.hpp:1835
@ NN_cmpneqss
Definition allins.hpp:566
@ NN_sets
Definition allins.hpp:208
@ NN_vpshld
Definition allins.hpp:1884
@ NN_aam
Definition allins.hpp:15
@ NN_pmovzxbd
Definition allins.hpp:798
@ NN_setalc
Definition allins.hpp:384
@ NN_vpgatherqd
Definition allins.hpp:1144
@ NN_vcvttph2w
Definition allins.hpp:2125
@ NN_into
Definition allins.hpp:59
@ NN_movsd
Definition allins.hpp:637
@ NN_vpmovswb
Definition allins.hpp:1637
@ NN_kunpckwd
Definition allins.hpp:1780
@ NN_vcmpnge_uqpd
Definition allins.hpp:1376
@ NN_vprold
Definition allins.hpp:1643
@ NN_kaddq
Definition allins.hpp:1765
@ NN_vfmaddsub213pd
Definition allins.hpp:988
@ NN_vpermw
Definition allins.hpp:1590
@ NN_fucomp
Definition allins.hpp:377
@ NN_vpcmpnequq
Definition allins.hpp:1757
@ NN_fmulp
Definition allins.hpp:309
@ NN_vmulps
Definition allins.hpp:1085
@ NN_vphaddudq
Definition allins.hpp:1854
@ NN_vfmsubadd213pd
Definition allins.hpp:1006
@ NN_umwait
Definition allins.hpp:2040
@ NN_vpcomleub
Definition allins.hpp:1927
@ NN_pextrd
Definition allins.hpp:777
@ NN_jmp
Definition allins.hpp:98
@ NN_vpblendmb
Definition allins.hpp:1489
@ NN_fnstcw
Definition allins.hpp:348
@ NN_vcmpgt_oqsd
Definition allins.hpp:1447
@ NN_cldemote
Definition allins.hpp:2028
@ NN_invvpid
Definition allins.hpp:855
@ NN_vpternlogq
Definition allins.hpp:1667
@ NN_vrcpss
Definition allins.hpp:1236
@ NN_smsw
Definition allins.hpp:215
@ NN_enterq
Definition allins.hpp:51
@ NN_vfpclasspd
Definition allins.hpp:1544
@ NN_vminps
Definition allins.hpp:1055
@ NN_vpcomgew
Definition allins.hpp:1902
@ NN_vpcomequb
Definition allins.hpp:1930
@ NN_ror
Definition allins.hpp:167
@ NN_ffreep
Definition allins.hpp:586
@ NN_mul
Definition allins.hpp:139
@ NN_xsave
Definition allins.hpp:833
@ NN_vbroadcasti64x4
Definition allins.hpp:1502
@ NN_vcmpeq_uqsd
Definition allins.hpp:1425
@ NN_vphsubsw
Definition allins.hpp:1151
@ NN_vfmaddsub132ph
Definition allins.hpp:2137
@ NN_vinsertf64x4
Definition allins.hpp:1559
@ NN_setnc
Definition allins.hpp:194
@ NN_incsspd
Definition allins.hpp:1996
@ NN_wbinvd
Definition allins.hpp:238
@ NN_xend
Definition allins.hpp:1271
@ NN_vcvtuw2ph
Definition allins.hpp:2128
@ NN_vsqrtsd
Definition allins.hpp:1247
@ NN_vandnps
Definition allins.hpp:930
@ NN_cmpordpd
Definition allins.hpp:750
@ NN_vmulpd
Definition allins.hpp:1084
@ NN_vcvttpd2uqq
Definition allins.hpp:1517
@ NN_sqrtps
Definition allins.hpp:522
@ NN_vmovdqu64
Definition allins.hpp:1569
@ NN_maskmovq
Definition allins.hpp:543
@ NN_vfmaddps
Definition allins.hpp:1301
@ NN_pushfq
Definition allins.hpp:163
@ NN_vpsubd
Definition allins.hpp:1218
@ NN_vpcomlew
Definition allins.hpp:1900
@ NN_vcmpeq_usss
Definition allins.hpp:1474
@ NN_vmresume
Definition allins.hpp:720
@ NN_vcmpord_sss
Definition allins.hpp:1473
@ NN_vscatterpf1qps
Definition allins.hpp:1729
@ NN_wrussd
Definition allins.hpp:2004
@ NN_vpmuludq
Definition allins.hpp:1192
@ NN_movntsd
Definition allins.hpp:825
@ NN_setz
Definition allins.hpp:209
@ NN_cwd
Definition allins.hpp:41
@ NN_vmovntdqa
Definition allins.hpp:1073
@ NN_pusha
Definition allins.hpp:157
@ NN_vpcomleb
Definition allins.hpp:1891
@ NN_vfmadd213ss
Definition allins.hpp:981
@ NN_cmpordps
Definition allins.hpp:561
@ NN_vfmaddcph
Definition allins.hpp:2136
@ NN_vpcomfalsew
Definition allins.hpp:1905
@ NN_vroundsd
Definition allins.hpp:1239
@ NN_jnae
Definition allins.hpp:79
@ NN_monitorx
Definition allins.hpp:1964
@ NN_retfd
Definition allins.hpp:880
@ NN_lgdt
Definition allins.hpp:109
@ NN_pcmpgtd
Definition allins.hpp:418
@ NN_divss
Definition allins.hpp:500
@ NN_vcmpordss
Definition allins.hpp:1457
@ NN_vfpclassps
Definition allins.hpp:1545
@ NN_hlt
Definition allins.hpp:52
@ NN_bndstx
Definition allins.hpp:1326
@ NN_vpmovm2d
Definition allins.hpp:1615
@ NN_vpcmpistri
Definition allins.hpp:1128
@ NN_vaesenclast
Definition allins.hpp:926
@ NN_sarx
Definition allins.hpp:902
@ NN_vpmovqd
Definition allins.hpp:1627
@ NN_popfw
Definition allins.hpp:151
@ NN_vfnmsub231pd
Definition allins.hpp:1030
@ NN_vpcmpneqq
Definition allins.hpp:1750
@ NN_pblendvb
Definition allins.hpp:773
@ NN_vscatterpf1qpd
Definition allins.hpp:1731
@ NN_vpextrq
Definition allins.hpp:1140
@ NN_vptestmd
Definition allins.hpp:1670
@ NN_vpmovzxbw
Definition allins.hpp:1182
@ NN_vpcomtruew
Definition allins.hpp:1906
@ NN_vpermps
Definition allins.hpp:1136
@ NN_cvtps2dq
Definition allins.hpp:607
@ NN_aesdec
Definition allins.hpp:865
@ NN_vfmsubadd231ph
Definition allins.hpp:2145
@ NN_vpcomleq
Definition allins.hpp:1918
@ NN_vcvttph2udq
Definition allins.hpp:2122
@ NN_vminsh
Definition allins.hpp:2205
@ NN_psllq
Definition allins.hpp:425
@ NN_vpcmpestri
Definition allins.hpp:1122
@ NN_vpxor
Definition allins.hpp:1234
@ NN_vcmpneqsd
Definition allins.hpp:1421
@ NN_lfence
Definition allins.hpp:619
@ NN_vcmple_oqss
Definition allins.hpp:1468
@ NN_ltr
Definition allins.hpp:133
@ NN_vcmpeqps
Definition allins.hpp:1384
@ NN_jno
Definition allins.hpp:88
@ NN_vaeskeygenassist
Definition allins.hpp:928
@ NN_vcmpgepd
Definition allins.hpp:1364
@ NN_vreduceph
Definition allins.hpp:2160
@ NN_vpmullq
Definition allins.hpp:1639
@ NN_vfmsubsd
Definition allins.hpp:1308
@ NN_fcomp3
Definition allins.hpp:583
@ NN_subpd
Definition allins.hpp:656
@ NN_vpcomfalseud
Definition allins.hpp:1950
@ NN_vpmovzxbq
Definition allins.hpp:1181
@ NN_vpor
Definition allins.hpp:1193
@ NN_retf
Definition allins.hpp:172
@ NN_vphaddd
Definition allins.hpp:1146
@ NN_vmovlpd
Definition allins.hpp:1068
@ NN_vbroadcastf128
Definition allins.hpp:937
@ NN_pinsrb
Definition allins.hpp:780
@ NN_vpshldd
Definition allins.hpp:2079
@ NN_vrangesd
Definition allins.hpp:1678
@ NN_vpmacsdd
Definition allins.hpp:1862
@ NN_vpminuw
Definition allins.hpp:1172
@ NN_fscale
Definition allins.hpp:318
@ NN_vrndscaleph
Definition allins.hpp:2161
@ NN_psubd
Definition allins.hpp:433
@ NN_setg
Definition allins.hpp:186
@ NN_vcmpltps
Definition allins.hpp:1385
@ NN_vpmuldq
Definition allins.hpp:1186
@ NN_testui
Definition allins.hpp:2221
@ NN_vcmptruess
Definition allins.hpp:1465
@ NN_getsec
Definition allins.hpp:838
@ NN_vpexpandw
Definition allins.hpp:2077
@ NN_vcmpnge_uqsd
Definition allins.hpp:1442
@ NN_pext
Definition allins.hpp:900
@ NN_lsl
Definition allins.hpp:132
@ NN_fstp9
Definition allins.hpp:589
@ NN_vcmpph
Definition allins.hpp:2107
@ NN_vpcomfalsed
Definition allins.hpp:1914
@ NN_pi2fd
Definition allins.hpp:470
@ NN_vcmplt_oqss
Definition allins.hpp:1467
@ NN_vdbpsadbw
Definition allins.hpp:1529
@ NN_invd
Definition allins.hpp:237
@ NN_pfsubr
Definition allins.hpp:463
@ NN_vpcmpnleud
Definition allins.hpp:1746
@ NN_vfnmsub213ph
Definition allins.hpp:2151
@ NN_knotb
Definition allins.hpp:1783
@ NN_vcmpneq_ossd
Definition allins.hpp:1445
@ NN_pmaxsw
Definition allins.hpp:535
@ NN_pcmpestri
Definition allins.hpp:814
@ NN_pcmpestrm
Definition allins.hpp:815
@ NN_vpminud
Definition allins.hpp:1171
@ NN_cmpltpd
Definition allins.hpp:744
@ NN_vpmulhrsw
Definition allins.hpp:1187
@ NN_vshuff32x4
Definition allins.hpp:1662
@ NN_vinsertf32x8
Definition allins.hpp:1558
@ NN_vrcpps
Definition allins.hpp:1235
@ NN_vminsd
Definition allins.hpp:1056
@ NN_monitor
Definition allins.hpp:691
@ NN_senduipi
Definition allins.hpp:2223
@ NN_wrmsr
Definition allins.hpp:246
@ NN_popaw
Definition allins.hpp:147
@ NN_mwait
Definition allins.hpp:692
@ NN_vfmsubpd
Definition allins.hpp:1306
@ NN_vrcp14pd
Definition allins.hpp:1680
@ NN_vreducepd
Definition allins.hpp:1684
@ NN_popaq
Definition allins.hpp:150
@ NN_vxorpd
Definition allins.hpp:1262
@ NN_vfmsubaddps
Definition allins.hpp:1299
@ NN_knotw
Definition allins.hpp:1782
@ NN_psubusw
Definition allins.hpp:437
@ NN_vorpd
Definition allins.hpp:1088
@ NN_cmc
Definition allins.hpp:38
@ NN_vrsqrtph
Definition allins.hpp:2162
@ NN_enterw
Definition allins.hpp:48
@ NN_vpscatterdq
Definition allins.hpp:1652
@ NN_vpminsd
Definition allins.hpp:1168
@ NN_vpinsrb
Definition allins.hpp:1153
@ NN_vcmpneq_uspd
Definition allins.hpp:1371
@ NN_cmpnltss
Definition allins.hpp:567
@ NN_pandn
Definition allins.hpp:412
@ NN_pmuldq
Definition allins.hpp:803
@ NN_inc
Definition allins.hpp:56
@ NN_leaveq
Definition allins.hpp:108
@ NN_pfrcpit1
Definition allins.hpp:475
@ NN_fild
Definition allins.hpp:294
@ NN_repne
Definition allins.hpp:170
@ NN_sysexit
Definition allins.hpp:456
@ NN_pshufb
Definition allins.hpp:701
@ NN_vcmpnltpd
Definition allins.hpp:1356
@ NN_vpcmpequq
Definition allins.hpp:1754
@ NN_f2xm1
Definition allins.hpp:333
@ NN_psllw
Definition allins.hpp:423
@ NN_fnclex
Definition allins.hpp:352
@ NN_vpcomltw
Definition allins.hpp:1899
@ NN_vucomish
Definition allins.hpp:2215
@ NN_vrndscalesd
Definition allins.hpp:1689
@ NN_vcmpngt_uqss
Definition allins.hpp:1476
@ NN_roundpd
Definition allins.hpp:806
@ NN_vpextrd
Definition allins.hpp:1139
@ NN_vpmovqb
Definition allins.hpp:1621
@ NN_vmaxph
Definition allins.hpp:2156
@ NN_vmovw
Definition allins.hpp:2168
@ NN_vexpandps
Definition allins.hpp:1531
@ NN_lldt
Definition allins.hpp:116
@ NN_vmaskmovdqu
Definition allins.hpp:1047
@ NN_roundss
Definition allins.hpp:809
@ NN_vinsertf64x2
Definition allins.hpp:1557
@ NN_movsx
Definition allins.hpp:137
@ NN_test
Definition allins.hpp:222
@ NN_pcmpgtb
Definition allins.hpp:416
@ NN_fptan
Definition allins.hpp:331
@ NN_vmovaps
Definition allins.hpp:1059
@ NN_neg
Definition allins.hpp:140
@ NN_vpcomtrueq
Definition allins.hpp:1924
@ NN_vpcmpnltuq
Definition allins.hpp:1758
@ NN_vpunpckhwd
Definition allins.hpp:1229
@ NN_vpmulld
Definition allins.hpp:1190
@ NN_vfrczps
Definition allins.hpp:1833
@ NN_cmpnlesd
Definition allins.hpp:757
@ NN_cvtsd2ss
Definition allins.hpp:610
@ NN_movzx
Definition allins.hpp:138
@ NN_xsetbv
Definition allins.hpp:834
@ NN_bts
Definition allins.hpp:27
@ NN_vfmadd213sd
Definition allins.hpp:980
@ NN_fstsw
Definition allins.hpp:349
@ NN_vpsignd
Definition allins.hpp:1200
@ NN_cmpneqsd
Definition allins.hpp:755
@ NN_vmaskmovpd
Definition allins.hpp:1048
@ NN_pfcmpge
Definition allins.hpp:465
@ NN_kxnorw
Definition allins.hpp:1802
@ NN_rsldt
Definition allins.hpp:388
@ NN_mpsadbw
Definition allins.hpp:771
@ NN_vbroadcastsd
Definition allins.hpp:939
@ NN_vlddqu
Definition allins.hpp:1045
@ NN_vpsadbw
Definition allins.hpp:1194
@ NN_pinsrw
Definition allins.hpp:534
@ NN_vpcmpnequd
Definition allins.hpp:1744
@ NN_divps
Definition allins.hpp:499
@ NN_vblendmps
Definition allins.hpp:1488
@ NN_vcmpeq_uqpd
Definition allins.hpp:1359
@ NN_pabsb
Definition allins.hpp:711
@ NN_vfnmsub231sh
Definition allins.hpp:2200
@ NN_vextractf64x2
Definition allins.hpp:1533
@ NN_null
Definition allins.hpp:12
@ NN_bound
Definition allins.hpp:21
@ NN_emms
Definition allins.hpp:398
@ NN_prefetchnta
Definition allins.hpp:549
@ NN_vcmpeqss
Definition allins.hpp:1450
@ NN_vfmaddsub132pd
Definition allins.hpp:986
@ NN_fxsave
Definition allins.hpp:450
@ NN_vcvttph2uqq
Definition allins.hpp:2123
@ NN_cmpunordsd
Definition allins.hpp:754
@ NN_vpermil2pd
Definition allins.hpp:1845
@ NN_vpblendw
Definition allins.hpp:1112
@ NN_jecxz
Definition allins.hpp:71
@ NN_unpckhpd
Definition allins.hpp:659
@ NN_fstenv
Definition allins.hpp:353
@ NN_vcvtps2uqq
Definition allins.hpp:1510
@ NN_pfrcpit2
Definition allins.hpp:477
@ NN_psubq
Definition allins.hpp:650
@ NN_vpcompressq
Definition allins.hpp:1586
@ NN_vmovhpd
Definition allins.hpp:1065
@ NN_haddps
Definition allins.hpp:688
@ NN_fcomip
Definition allins.hpp:282
@ NN_vpshrdvd
Definition allins.hpp:2088
@ NN_lar
Definition allins.hpp:103
@ NN_fcom
Definition allins.hpp:324
@ NN_fisubr
Definition allins.hpp:307
@ NN_vbroadcastf64x2
Definition allins.hpp:1495
@ NN_divsd
Definition allins.hpp:618
@ NN_vblendpd
Definition allins.hpp:933
@ NN_vpbroadcastb
Definition allins.hpp:1113
@ NN_setpo
Definition allins.hpp:207
@ NN_jnbe
Definition allins.hpp:81
@ NN_vcmptrue_usps
Definition allins.hpp:1415
@ NN_vfmaddsub213ph
Definition allins.hpp:2138
@ NN_vpcmpnltud
Definition allins.hpp:1745
@ NN_vpcomnequq
Definition allins.hpp:1958
@ NN_vpermt2q
Definition allins.hpp:1600
@ NN_cdq
Definition allins.hpp:42
@ NN_vcompressps
Definition allins.hpp:1504
@ NN_cvtss2sd
Definition allins.hpp:612
@ NN_vfnmsubsd
Definition allins.hpp:1316
@ NN_vextracti128
Definition allins.hpp:972
@ NN_saveprevssp
Definition allins.hpp:2000
@ NN_pshuflw
Definition allins.hpp:647
@ NN_cmpeqsd
Definition allins.hpp:751
@ NN_vcmptrue_ussd
Definition allins.hpp:1448
@ NN_vpshlq
Definition allins.hpp:1885
@ NN_vpshufhw
Definition allins.hpp:1197
@ NN_vfmadd213sh
Definition allins.hpp:2188
@ NN_movhlps
Definition allins.hpp:507
@ NN_vpmovsdw
Definition allins.hpp:1634
@ NN_vmovdqu
Definition allins.hpp:1063
@ NN_vmaxsh
Definition allins.hpp:2204
@ NN_cmpeqss
Definition allins.hpp:562
@ NN_vcmpltss
Definition allins.hpp:1451
@ NN_mwaitx
Definition allins.hpp:1965
@ NN_fldz
Definition allins.hpp:336
@ NN_vpandnq
Definition allins.hpp:1574
@ NN_vcvtsd2si
Definition allins.hpp:955
@ NN_iretd
Definition allins.hpp:63
@ NN_cqo
Definition allins.hpp:43
@ NN_vcmpneq_osps
Definition allins.hpp:1412
@ NN_jmpni
Definition allins.hpp:100
@ NN_pop
Definition allins.hpp:146
@ NN_aad
Definition allins.hpp:14
@ NN_vfmsubadd132pd
Definition allins.hpp:1004
@ NN_orps
Definition allins.hpp:516
@ NN_dpps
Definition allins.hpp:767
@ NN_cvtpd2pi
Definition allins.hpp:604
@ NN_jc
Definition allins.hpp:69
@ NN_add
Definition allins.hpp:18
@ NN_vcvtqq2ph
Definition allins.hpp:2119
@ NN_pmovmskb
Definition allins.hpp:539
@ NN_vpsubw
Definition allins.hpp:1224
@ NN_fld
Definition allins.hpp:290
@ NN_vpcomltub
Definition allins.hpp:1926
@ NN_vcvtph2udq
Definition allins.hpp:2114
@ NN_fpatan
Definition allins.hpp:332
@ NN_packssdw
Definition allins.hpp:402
@ NN_vphminposuw
Definition allins.hpp:1149
@ NN_vpcmpgtq
Definition allins.hpp:1126
@ NN_vfmaddsub213ps
Definition allins.hpp:989
@ NN_paddd
Definition allins.hpp:406
@ NN_vfmsub213ss
Definition allins.hpp:999
@ NN_vpsignw
Definition allins.hpp:1201
@ NN_kshiftrq
Definition allins.hpp:1800
@ NN_clrssbsy
Definition allins.hpp:2007
@ NN_vpdpwssd
Definition allins.hpp:2070
@ NN_vfnmsub213sd
Definition allins.hpp:1028
@ NN_vpextrb
Definition allins.hpp:1138
@ NN_fdivr
Definition allins.hpp:314
@ NN_dppd
Definition allins.hpp:766
@ NN_vpandnd
Definition allins.hpp:1573
@ NN_aesenc
Definition allins.hpp:863
@ NN_vcmpnleps
Definition allins.hpp:1390
@ NN_sqrtpd
Definition allins.hpp:654
@ NN_popad
Definition allins.hpp:149
@ NN_jbe
Definition allins.hpp:68
@ NN_vpcmpltud
Definition allins.hpp:1742
@ NN_vpcomgtud
Definition allins.hpp:1946
@ NN_vpinsrq
Definition allins.hpp:1155
@ NN_vcvtsh2ss
Definition allins.hpp:2177
@ NN_vcmpgess
Definition allins.hpp:1463
@ NN_vmcli
Definition allins.hpp:1285
@ NN_vrcpsh
Definition allins.hpp:2208
@ NN_vpblendvb
Definition allins.hpp:1111
@ NN_movlps
Definition allins.hpp:510
@ NN_vpcmpnltq
Definition allins.hpp:1751
@ NN_vpmovm2q
Definition allins.hpp:1616
@ NN_vmdxenbl
Definition allins.hpp:1279
@ NN_fucomi
Definition allins.hpp:281
@ NN_vfmsubadd132ph
Definition allins.hpp:2143
@ NN_vpcomneqw
Definition allins.hpp:1904
@ NN_vpmaxub
Definition allins.hpp:1164
@ NN_psubsw
Definition allins.hpp:435
@ NN_vcvttpd2dq
Definition allins.hpp:961
@ NN_vgatherqps
Definition allins.hpp:1036
@ NN_jne
Definition allins.hpp:83
@ NN_fprem1
Definition allins.hpp:372
@ NN_kord
Definition allins.hpp:1789
@ NN_vpshufbitqmb
Definition allins.hpp:2094
@ NN_vfmadd132sh
Definition allins.hpp:2187
@ NN_vpshuflw
Definition allins.hpp:1198
@ NN_vmrun
Definition allins.hpp:849
@ NN_vpshab
Definition allins.hpp:1879
@ NN_kshiftlq
Definition allins.hpp:1796
@ NN_vmstr
Definition allins.hpp:1291
@ NN_pcommit
Definition allins.hpp:1342
@ NN_vcomiss
Definition allins.hpp:946
@ NN_fsubr
Definition allins.hpp:305
@ NN_vcmpnless
Definition allins.hpp:1456
@ NN_fabs
Definition allins.hpp:322
@ NN_vpmovdb
Definition allins.hpp:1630
@ NN_movsldup
Definition allins.hpp:676
@ NN_rsqrtps
Definition allins.hpp:519
@ NN_vpunpckldq
Definition allins.hpp:1231
@ NN_div
Definition allins.hpp:47
@ NN_vpunpcklwd
Definition allins.hpp:1233
@ NN_sfence
Definition allins.hpp:550
@ NN_vcvttsh2usi
Definition allins.hpp:2182
@ NN_pfrsqrt
Definition allins.hpp:473
@ NN_xsaves
Definition allins.hpp:1332
@ NN_fst
Definition allins.hpp:291
@ NN_vfnmaddpd
Definition allins.hpp:1310
@ NN_xadd
Definition allins.hpp:236
@ NN_vpcomgeuw
Definition allins.hpp:1938
@ NN_roundps
Definition allins.hpp:807
@ NN_wrussq
Definition allins.hpp:2005
@ NN_vsqrtps
Definition allins.hpp:1246
@ NN_movhps
Definition allins.hpp:508
@ NN_jnz
Definition allins.hpp:91
@ NN_vbroadcasti64x2
Definition allins.hpp:1500
@ NN_mfence
Definition allins.hpp:623
@ NN_movlhps
Definition allins.hpp:509
@ NN_popcnt
Definition allins.hpp:819
@ NN_vpsllvw
Definition allins.hpp:1656
@ NN_jz
Definition allins.hpp:97
@ NN_vmsldt
Definition allins.hpp:1290
@ NN_out
Definition allins.hpp:144
@ NN_vfixupimmpd
Definition allins.hpp:1540
@ NN_vmpopfd
Definition allins.hpp:1284
@ NN_cmpps
Definition allins.hpp:490
@ NN_vshufi32x4
Definition allins.hpp:1664
@ NN_vmsdte
Definition allins.hpp:1292
@ NN_vcmplepd
Definition allins.hpp:1353
@ NN_fcompp
Definition allins.hpp:326
@ NN_svdc
Definition allins.hpp:385
@ NN_pfrsqit1
Definition allins.hpp:476
@ NN_vpcomfalseq
Definition allins.hpp:1923
@ NN_vrndscaless
Definition allins.hpp:1691
@ NN_ktestd
Definition allins.hpp:1809
@ NN_syscall
Definition allins.hpp:665
@ NN_vcmptrue_usss
Definition allins.hpp:1481
@ NN_vpermi2pd
Definition allins.hpp:1596
@ NN_por
Definition allins.hpp:422
@ NN_psubb
Definition allins.hpp:431
@ NN_vpexpandd
Definition allins.hpp:1603
@ NN_vpdpwssds
Definition allins.hpp:2071
@ NN_vcmpnlesd
Definition allins.hpp:1423
@ NN_finit
Definition allins.hpp:343
@ NN_vpcmpuw
Definition allins.hpp:1584
@ NN_vcmpge_oqpd
Definition allins.hpp:1380
@ NN_pabsd
Definition allins.hpp:713
@ NN_vpcomeqw
Definition allins.hpp:1903
@ NN_vsqrtph
Definition allins.hpp:2164
@ NN_vcmpeq_ussd
Definition allins.hpp:1441
@ NN_packuswb
Definition allins.hpp:403
@ NN_movntdqa
Definition allins.hpp:770
@ NN_vphaddbq
Definition allins.hpp:1848
@ NN_fxch7
Definition allins.hpp:587
@ NN_vpcomq
Definition allins.hpp:1839
@ NN_vfnmadd231sh
Definition allins.hpp:2197
@ NN_fsubrp
Definition allins.hpp:306
@ NN_vpaddb
Definition allins.hpp:1097
@ NN_jae
Definition allins.hpp:66
@ NN_movdqu
Definition allins.hpp:629
@ NN_vfmsub231sh
Definition allins.hpp:2193
@ NN_fmul
Definition allins.hpp:308
@ NN_movaps
Definition allins.hpp:506
@ NN_vaesdeclast
Definition allins.hpp:924
@ NN_vmovhlps
Definition allins.hpp:1064
@ NN_callfi
Definition allins.hpp:29
@ NN_vpminsw
Definition allins.hpp:1169
@ NN_endbr32
Definition allins.hpp:2009
@ NN_jng
Definition allins.hpp:84
@ NN_rsdc
Definition allins.hpp:386
@ NN_vpcmpleuq
Definition allins.hpp:1756
@ NN_fsin
Definition allins.hpp:374
@ NN_cvtss2si
Definition allins.hpp:496
@ NN_gf2p8affineqb
Definition allins.hpp:2054
@ NN_pmullw
Definition allins.hpp:421
@ NN_vgetmantpd
Definition allins.hpp:1552
@ NN_vcmpnlt_uqsd
Definition allins.hpp:1438
@ NN_wait
Definition allins.hpp:225
@ NN_vmfunc
Definition allins.hpp:1992
@ NN_vaddph
Definition allins.hpp:2106
@ NN_sha1msg1
Definition allins.hpp:1819
@ NN_frndint
Definition allins.hpp:320
@ NN_vcvttps2qq
Definition allins.hpp:1519
@ NN_vcvtss2si
Definition allins.hpp:960
@ NN_movmskps
Definition allins.hpp:511
@ NN_int3
Definition allins.hpp:60
@ NN_jb
Definition allins.hpp:67
@ NN_fsubp
Definition allins.hpp:303
@ NN_vpcomltuq
Definition allins.hpp:1953
@ NN_vpunpcklbw
Definition allins.hpp:1230
@ NN_vpcomleud
Definition allins.hpp:1945
@ NN_vp2intersectd
Definition allins.hpp:2097
@ NN_ffree
Definition allins.hpp:361
@ NN_fldl2e
Definition allins.hpp:340
@ NN_vcmpgesd
Definition allins.hpp:1430
@ NN_vblendps
Definition allins.hpp:934
@ NN_xresldtrk
Definition allins.hpp:2048
@ NN_xlat
Definition allins.hpp:227
@ NN_phsubd
Definition allins.hpp:709
@ NN_setng
Definition allins.hpp:196
@ NN_maxsd
Definition allins.hpp:622
@ NN_lgs
Definition allins.hpp:111
@ NN_vfnmadd231ph
Definition allins.hpp:2149
@ NN_vexpandpd
Definition allins.hpp:1530
@ NN_sha1msg2
Definition allins.hpp:1820
@ NN_pswapd
Definition allins.hpp:577
@ NN_cvttps2pi
Definition allins.hpp:497
@ NN_fxsave64
Definition allins.hpp:2064
@ NN_vpcmpw
Definition allins.hpp:1583
@ NN_retnw
Definition allins.hpp:876
@ NN_vcvtsi2ss
Definition allins.hpp:958
@ NN_vpcomltb
Definition allins.hpp:1890
@ NN_wrpkru
Definition allins.hpp:1347
@ NN_v4fmaddps
Definition allins.hpp:1977
@ NN_fisub
Definition allins.hpp:304
@ NN_vcvtsd2usi
Definition allins.hpp:1513
@ NN_vpcmpub
Definition allins.hpp:1578
@ NN_vcmpeq_osps
Definition allins.hpp:1400
@ NN_vhsubps
Definition allins.hpp:1041
@ NN_pand
Definition allins.hpp:411
@ NN_pushaw
Definition allins.hpp:156
@ NN_xrstors
Definition allins.hpp:1330
@ NN_vcvtw2ph
Definition allins.hpp:2129
@ NN_vreducesh
Definition allins.hpp:2209
@ NN_call
Definition allins.hpp:28
@ NN_vpcomnequd
Definition allins.hpp:1949
@ NN_vpshldvq
Definition allins.hpp:2083
@ NN_vcvtsh2si
Definition allins.hpp:2176
@ NN_pshufhw
Definition allins.hpp:646
@ NN_vmdxdsbl
Definition allins.hpp:1278
@ NN_fbstp
Definition allins.hpp:298
@ NN_vcmpgt_oqss
Definition allins.hpp:1480
@ NN_vpshldvd
Definition allins.hpp:2082
@ NN_vfmsub132ph
Definition allins.hpp:2140
@ NN_vxorps
Definition allins.hpp:1263
@ NN_vfnmsub132ss
Definition allins.hpp:1025
@ NN_vrcp28sd
Definition allins.hpp:1708
@ NN_vpcomfalseuw
Definition allins.hpp:1941
@ NN_vpblendd
Definition allins.hpp:1110
@ NN_vpsravw
Definition allins.hpp:1672
@ NN_vprolvq
Definition allins.hpp:1646
@ NN_vcvtdq2ps
Definition allins.hpp:948
@ NN_vpmovzxwd
Definition allins.hpp:1184
@ NN_pabsw
Definition allins.hpp:712
@ NN_fxch
Definition allins.hpp:293
@ NN_vcvtsd2ss
Definition allins.hpp:956
@ NN_bndcn
Definition allins.hpp:1323
@ NN_and
Definition allins.hpp:19
@ NN_punpckhbw
Definition allins.hpp:438
@ NN_movnti
Definition allins.hpp:634
@ NN_pmaxsb
Definition allins.hpp:783
@ NN_vpdpbusds
Definition allins.hpp:2069
@ NN_vpgatherqq
Definition allins.hpp:1145
@ NN_vpcomw
Definition allins.hpp:1844
@ NN_vfmadd213ps
Definition allins.hpp:979
@ NN_xorpd
Definition allins.hpp:661
@ NN_xorps
Definition allins.hpp:530
@ NN_cmovl
Definition allins.hpp:261
@ NN_cvtdq2pd
Definition allins.hpp:601
@ NN_vpcmpltq
Definition allins.hpp:1748
@ NN_vgatherpf1qpd
Definition allins.hpp:1723
@ NN_vpmullw
Definition allins.hpp:1191
@ NN_vcvttps2uqq
Definition allins.hpp:1520
@ NN_fimul
Definition allins.hpp:310
@ NN_cmovnp
Definition allins.hpp:265
@ NN_vpaddusb
Definition allins.hpp:1102
@ NN_clzero
Definition allins.hpp:1969
@ NN_vscalefpd
Definition allins.hpp:1696
@ NN_shlx
Definition allins.hpp:903
@ NN_unpckhps
Definition allins.hpp:528
@ NN_pcmpistrm
Definition allins.hpp:817
@ NN_kshiftld
Definition allins.hpp:1797
@ NN_vpcext
Definition allins.hpp:1293
@ NN_vinserti64x4
Definition allins.hpp:1563
@ NN_valignd
Definition allins.hpp:1485
@ NN_loopwe
Definition allins.hpp:124
@ NN_vreducesd
Definition allins.hpp:1685
@ NN_vmovdqa
Definition allins.hpp:1062
@ NN_sub
Definition allins.hpp:221
@ NN_andn
Definition allins.hpp:891
@ NN_vpmovd2m
Definition allins.hpp:1619
@ NN_maxps
Definition allins.hpp:502
@ NN_vpopcntq
Definition allins.hpp:1984
@ NN_vcmpneq_oqsd
Definition allins.hpp:1429
@ NN_vcvtusi2sh
Definition allins.hpp:2183
@ NN_vmload
Definition allins.hpp:847
@ NN_v4fnmaddss
Definition allins.hpp:1980
@ NN_fcmovb
Definition allins.hpp:272
@ NN_vpmacssww
Definition allins.hpp:1869
@ NN_iretq
Definition allins.hpp:64
@ NN_vunpckhps
Definition allins.hpp:1259
@ NN_vpsraw
Definition allins.hpp:1210
@ NN_vcmpnge_uqps
Definition allins.hpp:1409
@ NN_vfmadd231ph
Definition allins.hpp:2135
@ NN_cmpnlepd
Definition allins.hpp:749
@ NN_vcmpunordpd
Definition allins.hpp:1354
@ NN_orpd
Definition allins.hpp:641
@ NN_retfw
Definition allins.hpp:879
@ NN_vcmpnle_uqpd
Definition allins.hpp:1373
@ NN_vpcomd
Definition allins.hpp:1838
@ NN_vgatherpf0qpd
Definition allins.hpp:1719
@ NN_vrsqrt14ss
Definition allins.hpp:1695
@ NN_vgetmantss
Definition allins.hpp:1555
@ NN_rstorssp
Definition allins.hpp:2001
@ NN_vperm2i128
Definition allins.hpp:1131
@ NN_vphaddwq
Definition allins.hpp:1858
@ NN_pause
Definition allins.hpp:643
@ NN_vextracti64x2
Definition allins.hpp:1537
@ NN_vmovntdq
Definition allins.hpp:1072
@ NN_vfnmadd231ss
Definition allins.hpp:1021
@ NN_pmaxsd
Definition allins.hpp:784
@ NN_vpxord
Definition allins.hpp:1674
@ NN_setl
Definition allins.hpp:188
@ NN_movbe
Definition allins.hpp:859
@ NN_rdtsc
Definition allins.hpp:249
@ NN_bndcl
Definition allins.hpp:1321
@ NN_vpcmpnleuq
Definition allins.hpp:1759
@ NN_jge
Definition allins.hpp:75
@ NN_vfmadd231sd
Definition allins.hpp:984
@ NN_vmovddup
Definition allins.hpp:1061
@ NN_aas
Definition allins.hpp:16
@ NN_fxrstor
Definition allins.hpp:451
@ NN_kortestb
Definition allins.hpp:1791
@ NN_sete
Definition allins.hpp:185
@ NN_sqrtss
Definition allins.hpp:523
@ NN_vpminub
Definition allins.hpp:1170
@ NN_ucomiss
Definition allins.hpp:527
@ NN_pavgw
Definition allins.hpp:532
@ NN_knotq
Definition allins.hpp:1784
@ NN_kandnb
Definition allins.hpp:1772
@ NN_vpsravd
Definition allins.hpp:1209
@ NN_vfnmadd213ss
Definition allins.hpp:1017
@ NN_vpacksswb
Definition allins.hpp:1094
@ NN_paddb
Definition allins.hpp:404
@ NN_cvtpd2dq
Definition allins.hpp:603
@ NN_insertps
Definition allins.hpp:769
@ NN_jo
Definition allins.hpp:92
@ NN_cvtsd2si
Definition allins.hpp:609
@ NN_vphsubdq
Definition allins.hpp:1860
@ NN_clflushopt
Definition allins.hpp:1340
@ NN_shl
Definition allins.hpp:176
@ NN_vpcomfalseub
Definition allins.hpp:1932
@ NN_maxpd
Definition allins.hpp:621
@ NN_setssbsy
Definition allins.hpp:2006
@ NN_clflush
Definition allins.hpp:597
@ NN_vfcmulcsh
Definition allins.hpp:2186
@ NN_sar
Definition allins.hpp:175
@ NN_vfmulcph
Definition allins.hpp:2146
@ NN_vprotq
Definition allins.hpp:1877
@ NN_rcpps
Definition allins.hpp:517
@ NN_vpshufd
Definition allins.hpp:1196
@ NN_vmclear
Definition allins.hpp:718
@ NN_vcvttps2dq
Definition allins.hpp:962
@ NN_vfmulcsh
Definition allins.hpp:2194
@ NN_movups
Definition allins.hpp:513
@ NN_vroundss
Definition allins.hpp:1240
@ NN_rdsspq
Definition allins.hpp:1999
@ NN_vcvtps2dq
Definition allins.hpp:952
@ NN_vfmsub213ph
Definition allins.hpp:2141
@ NN_vexp2ps
Definition allins.hpp:1706
@ NN_prefetchwt1
Definition allins.hpp:1336
@ NN_tpause
Definition allins.hpp:2038
@ NN_vpopcntw
Definition allins.hpp:2093
@ NN_popa
Definition allins.hpp:148
@ NN_pminsw
Definition allins.hpp:537
@ NN_cmova
Definition allins.hpp:256
@ NN_tzcnt
Definition allins.hpp:906
@ NN_jmpfi
Definition allins.hpp:99
@ NN_vpermi2ps
Definition allins.hpp:1595
@ NN_vfpclasssh
Definition allins.hpp:2201
@ NN_cvtpd2ps
Definition allins.hpp:605
@ NN_cvtps2pd
Definition allins.hpp:608
@ NN_cmovle
Definition allins.hpp:262
@ NN_xor
Definition allins.hpp:228
@ NN_psrad
Definition allins.hpp:427
@ NN_vpandn
Definition allins.hpp:1107
@ NN_pmaddwd
Definition allins.hpp:419
@ NN_loopdne
Definition allins.hpp:130
@ NN_cmpnleps
Definition allins.hpp:560
@ NN_vmsti
Definition allins.hpp:1286
@ NN_vpabsb
Definition allins.hpp:1090
@ NN_vpslldq
Definition allins.hpp:1203
@ NN_cmps
Definition allins.hpp:40
@ NN_fcomp5
Definition allins.hpp:585
@ NN_cmpnltsd
Definition allins.hpp:756
@ NN_idiv
Definition allins.hpp:53
@ NN_vcmplt_oqpd
Definition allins.hpp:1368
@ NN_vreducess
Definition allins.hpp:1687
@ NN_vpshldvw
Definition allins.hpp:2081
@ NN_vgetexppd
Definition allins.hpp:1548
@ NN_psignw
Definition allins.hpp:699
@ NN_vrangess
Definition allins.hpp:1679
@ NN_blendvpd
Definition allins.hpp:764
@ NN_vpermi2d
Definition allins.hpp:1593
@ NN_vpcompressd
Definition allins.hpp:1585
@ NN_sha1nexte
Definition allins.hpp:1818
@ NN_sgdt
Definition allins.hpp:210
@ NN_cmovs
Definition allins.hpp:270
@ NN_cmpnless
Definition allins.hpp:568
@ NN_vpshad
Definition allins.hpp:1880
@ NN_vmovmskpd
Definition allins.hpp:1070
@ NN_extractps
Definition allins.hpp:768
@ NN_vpmovb2m
Definition allins.hpp:1617
@ NN_shrx
Definition allins.hpp:904
@ NN_pfmax
Definition allins.hpp:469
@ NN_vpermi2b
Definition allins.hpp:1591
@ NN_vcvtph2psx
Definition allins.hpp:2112
@ NN_cmovo
Definition allins.hpp:268
@ NN_vmxoff
Definition allins.hpp:725
@ NN_vfnmadd213ph
Definition allins.hpp:2148
@ NN_minsd
Definition allins.hpp:625
@ NN_vmxon
Definition allins.hpp:726
@ NN_cmpnltps
Definition allins.hpp:559
@ NN_kshiftrb
Definition allins.hpp:1799
@ NN_vcmpfalsepd
Definition allins.hpp:1362
@ NN_phaddsw
Definition allins.hpp:705
@ NN_vinsertps
Definition allins.hpp:1044
@ NN_vptestnmq
Definition allins.hpp:1661
@ NN_vcmpngt_uqsd
Definition allins.hpp:1443
@ NN_vmovapd
Definition allins.hpp:1058
@ NN_vpmacsww
Definition allins.hpp:1871
@ NN_vpmacsdqh
Definition allins.hpp:1863
@ NN_fldpi
Definition allins.hpp:338
@ NN_vpscatterqq
Definition allins.hpp:1654
@ NN_cvtpi2pd
Definition allins.hpp:606
@ NN_vmulsd
Definition allins.hpp:1086
@ NN_vfmsub213pd
Definition allins.hpp:996
@ NN_vpcomtrueub
Definition allins.hpp:1933
@ NN_vcmpneqss
Definition allins.hpp:1454
@ NN_pushf
Definition allins.hpp:161
@ NN_pfrsqrtv
Definition allins.hpp:739
@ NN_vpsrldq
Definition allins.hpp:1212
@ NN_lmsw
Definition allins.hpp:117
@ NN_incsspq
Definition allins.hpp:1997
@ NN_vgetexpss
Definition allins.hpp:1551
@ NN_vmcpuid
Definition allins.hpp:1280
@ NN_pmulld
Definition allins.hpp:804
@ NN_pslld
Definition allins.hpp:424
@ NN_movss
Definition allins.hpp:512
@ NN_vcmpgtpd
Definition allins.hpp:1365
@ NN_vmovmskps
Definition allins.hpp:1071
@ NN_paddusb
Definition allins.hpp:409
@ NN_icebp
Definition allins.hpp:391
@ NN_vpshrdw
Definition allins.hpp:2084
@ NN_vaddsubpd
Definition allins.hpp:921
@ NN_cmovp
Definition allins.hpp:269
@ NN_vcmpngtps
Definition allins.hpp:1394
@ NN_vcmpngtsd
Definition allins.hpp:1427
@ NN_cmpsd
Definition allins.hpp:599
@ NN_lidt
Definition allins.hpp:110
@ NN_vpmovm2b
Definition allins.hpp:1613
@ NN_vcmpneq_oqss
Definition allins.hpp:1462
@ NN_fadd
Definition allins.hpp:299
@ NN_vcmptruepd
Definition allins.hpp:1366
@ NN_vfmaddsub231pd
Definition allins.hpp:990
@ NN_vmovlhps
Definition allins.hpp:1067
@ NN_vcvttpd2udq
Definition allins.hpp:1516
@ NN_vpunpckhdq
Definition allins.hpp:1227
@ NN_fnstenv
Definition allins.hpp:354
@ NN_fcmovnbe
Definition allins.hpp:278
@ NN_prefetcht2
Definition allins.hpp:548
@ NN_cmpnltpd
Definition allins.hpp:748
@ NN_endbr64
Definition allins.hpp:2008
@ NN_vprolvd
Definition allins.hpp:1644
@ NN_verr
Definition allins.hpp:223
@ NN_pminub
Definition allins.hpp:538
@ NN_cmovg
Definition allins.hpp:259
@ NN_pmulhuw
Definition allins.hpp:540
@ NN_vtestpd
Definition allins.hpp:1254
@ NN_vcmpeq_ossd
Definition allins.hpp:1433
@ NN_setnp
Definition allins.hpp:201
@ NN_sahf
Definition allins.hpp:173
@ NN_pshufw
Definition allins.hpp:542
@ NN_vrndscaleps
Definition allins.hpp:1690
@ NN_vpermpd
Definition allins.hpp:1135
@ NN_vmptrst
Definition allins.hpp:722
@ NN_not
Definition allins.hpp:142
@ NN_blendvps
Definition allins.hpp:765
@ NN_fstcw
Definition allins.hpp:347
@ NN_vaddsubps
Definition allins.hpp:922
@ NN_aesimc
Definition allins.hpp:867
@ NN_prefetchw
Definition allins.hpp:481
@ NN_clts
Definition allins.hpp:37
@ NN_jns
Definition allins.hpp:90
@ NN_vdpps
Definition allins.hpp:970
@ NN_vfixupimmsd
Definition allins.hpp:1542
@ NN_kshiftrw
Definition allins.hpp:1798
@ NN_cmpltps
Definition allins.hpp:555
@ NN_setno
Definition allins.hpp:200
@ NN_aesdeclast
Definition allins.hpp:866
@ NN_vrcp14ps
Definition allins.hpp:1682
@ NN_loope
Definition allins.hpp:125
@ NN_vfmadd213ph
Definition allins.hpp:2134
@ NN_vfmadd231ss
Definition allins.hpp:985
@ NN_kmovd
Definition allins.hpp:1778
@ NN_leaved
Definition allins.hpp:107
@ NN_vmaxpd
Definition allins.hpp:1050
@ NN_clwb
Definition allins.hpp:1341
@ NN_fldlg2
Definition allins.hpp:341
@ NN_vcmpnlt_uqpd
Definition allins.hpp:1372
@ NN_vfmsub132sh
Definition allins.hpp:2191
@ NN_swapgs
Definition allins.hpp:670
@ NN_vpshrdd
Definition allins.hpp:2085
@ NN_jp
Definition allins.hpp:93
@ NN_vcvtsi2sd
Definition allins.hpp:957
@ NN_palignr
Definition allins.hpp:710
@ NN_jpo
Definition allins.hpp:95
@ NN_minss
Definition allins.hpp:505
@ NN_cmpltss
Definition allins.hpp:563
@ NN_vcvtudq2pd
Definition allins.hpp:1523
@ NN_vphsubd
Definition allins.hpp:1150
@ NN_vphadddq
Definition allins.hpp:1850
@ NN_setae
Definition allins.hpp:181
@ NN_vextractf128
Definition allins.hpp:971
@ NN_vpcomnequw
Definition allins.hpp:1940
@ NN_vpcomgeb
Definition allins.hpp:1893
@ NN_vcmpneq_oqpd
Definition allins.hpp:1363
@ NN_vpcomgeuq
Definition allins.hpp:1956
@ NN_psubw
Definition allins.hpp:432
@ NN_vfmadd132ss
Definition allins.hpp:977
@ NN_pmuludq
Definition allins.hpp:644
@ NN_vucomisd
Definition allins.hpp:1256
@ NN_sha256rnds2
Definition allins.hpp:1821
@ NN_cmpxchg16b
Definition allins.hpp:681
@ NN_svldt
Definition allins.hpp:387
@ NN_fxch4
Definition allins.hpp:584
@ NN_fclex
Definition allins.hpp:351
@ NN_vpmovsxbw
Definition allins.hpp:1176
@ NN_vfmsub213ps
Definition allins.hpp:997
@ NN_vpcmpled
Definition allins.hpp:1736
@ NN_vptestnmw
Definition allins.hpp:1659
@ NN_vpcmpistrm
Definition allins.hpp:1129
@ NN_vperm2f128
Definition allins.hpp:1130
@ NN_vfnmsub132sd
Definition allins.hpp:1024
@ NN_phaddd
Definition allins.hpp:707
@ NN_pcmpgtw
Definition allins.hpp:417
@ NN_vminph
Definition allins.hpp:2157
@ NN_pmovzxwq
Definition allins.hpp:801
@ NN_vdivsh
Definition allins.hpp:2184
@ NN_cmpeqps
Definition allins.hpp:554
@ NN_vfnmadd231sd
Definition allins.hpp:1020
@ NN_xchg
Definition allins.hpp:226
@ NN_cmppd
Definition allins.hpp:598
@ NN_vmovsh
Definition allins.hpp:2206
@ NN_setnl
Definition allins.hpp:198
@ NN_das
Definition allins.hpp:45
@ NN_vbroadcastss
Definition allins.hpp:940
@ NN_rcr
Definition allins.hpp:165
@ NN_minpd
Definition allins.hpp:624
@ NN_vrsqrtps
Definition allins.hpp:1241
@ NN_bsr
Definition allins.hpp:23
@ NN_pminsd
Definition allins.hpp:788
@ NN_vpsubsw
Definition allins.hpp:1221
@ NN_vpshlw
Definition allins.hpp:1886
@ NN_vptestmq
Definition allins.hpp:1671
@ NN_vcvtph2uw
Definition allins.hpp:2116
@ NN_sidt
Definition allins.hpp:211
@ NN_pmovsxwq
Definition allins.hpp:795
@ NN_vcmpgtsd
Definition allins.hpp:1431
@ NN_lzcnt
Definition allins.hpp:827
@ NN_vpmovmskb
Definition allins.hpp:1173
@ NN_vcvtph2pd
Definition allins.hpp:2111
@ NN_vscatterdpd
Definition allins.hpp:1701
@ NN_vfmadd132sd
Definition allins.hpp:976
@ NN_vpcomfalseuq
Definition allins.hpp:1959
@ NN_vmexit
Definition allins.hpp:846
@ NN_vptestmw
Definition allins.hpp:1669
@ NN_vsubsh
Definition allins.hpp:2214
@ NN_frstor
Definition allins.hpp:358
@ NN_vcmpnlt_uqps
Definition allins.hpp:1405
@ NN_pfrcpv
Definition allins.hpp:738
@ NN_vfmaddsubps
Definition allins.hpp:1297
@ NN_pmaxub
Definition allins.hpp:536
@ NN_vpcomgtuw
Definition allins.hpp:1937
@ NN_vfnmsub132pd
Definition allins.hpp:1022
@ NN_vunpcklpd
Definition allins.hpp:1260
@ NN_vpcmpleud
Definition allins.hpp:1743
@ NN_vcvtss2sd
Definition allins.hpp:959
@ NN_vinserti32x4
Definition allins.hpp:1560
@ NN_vaesdec
Definition allins.hpp:923
@ NN_fiadd
Definition allins.hpp:301
@ NN_vfmaddsubpd
Definition allins.hpp:1298
@ NN_vfnmadd132ps
Definition allins.hpp:1011
@ NN_vpcomltud
Definition allins.hpp:1944
@ NN_femms
Definition allins.hpp:479
@ NN_vfmaddsub231ps
Definition allins.hpp:991
@ NN_vcvtudq2ps
Definition allins.hpp:1524
@ NN_vpermt2w
Definition allins.hpp:1598
@ NN_vcmpeq_uspd
Definition allins.hpp:1375
@ NN_paddusw
Definition allins.hpp:410
@ NN_vextractps
Definition allins.hpp:973
@ NN_vrsqrt14pd
Definition allins.hpp:1692
@ NN_vrcp28ss
Definition allins.hpp:1710
@ NN_sysenter
Definition allins.hpp:455
@ NN_vdppd
Definition allins.hpp:969
@ NN_vptestnmd
Definition allins.hpp:1660
@ NN_ldmxcsr
Definition allins.hpp:501
@ NN_daa
Definition allins.hpp:44
@ NN_leavew
Definition allins.hpp:105
@ NN_vpcomged
Definition allins.hpp:1911
@ NN_vmpsadbw
Definition allins.hpp:1083
@ NN_cmpunordps
Definition allins.hpp:557
@ NN_pxor
Definition allins.hpp:444
@ NN_vsubsd
Definition allins.hpp:1252
@ NN_rdpru
Definition allins.hpp:2024
@ NN_fcomp
Definition allins.hpp:325
@ NN_vpshrdvq
Definition allins.hpp:2089
@ NN_pminsb
Definition allins.hpp:787
@ NN_vphaddubw
Definition allins.hpp:1853
@ NN_vcmpord_sps
Definition allins.hpp:1407
@ NN_btr
Definition allins.hpp:26
@ NN_vcmplt_oqsd
Definition allins.hpp:1434
@ NN_vmulph
Definition allins.hpp:2158
@ NN_vfnmsub231ps
Definition allins.hpp:1031
@ NN_vcvtsd2sh
Definition allins.hpp:2174
@ NN_lss
Definition allins.hpp:112
@ NN_vfmsubadd231pd
Definition allins.hpp:1008
@ NN_movsp
Definition allins.hpp:135
@ NN_sal
Definition allins.hpp:174
@ NN_cmpunordpd
Definition allins.hpp:746
@ NN_vcvttph2uw
Definition allins.hpp:2124
@ NN_vshufps
Definition allins.hpp:1244
@ NN_fyl2x
Definition allins.hpp:334
@ NN_fprem
Definition allins.hpp:319
@ NN_cmpltsd
Definition allins.hpp:752
@ NN_vrndscalepd
Definition allins.hpp:1688
@ NN_vcmpnge_uqss
Definition allins.hpp:1475
@ NN_lahf
Definition allins.hpp:102
@ NN_rol
Definition allins.hpp:166
@ NN_vcvtneps2bf16
Definition allins.hpp:2102
@ NN_rdtscp
Definition allins.hpp:734
@ NN_vcmpneq_ussd
Definition allins.hpp:1437
@ NN_vcmpltsd
Definition allins.hpp:1418
@ NN_vpshrdvw
Definition allins.hpp:2087
@ NN_kandw
Definition allins.hpp:1767
@ NN_vcmpeq_ospd
Definition allins.hpp:1367
@ NN_vsqrtsh
Definition allins.hpp:2213
@ NN_vfmadd132ps
Definition allins.hpp:975
@ NN_setb
Definition allins.hpp:182
@ NN_vfcmaddcsh
Definition allins.hpp:2185
@ NN_vfmsub231sd
Definition allins.hpp:1002
@ NN_vpcomuw
Definition allins.hpp:1843
@ NN_cmpxchg
Definition allins.hpp:234
@ NN_setne
Definition allins.hpp:195
@ NN_ktestq
Definition allins.hpp:1808
@ NN_svts
Definition allins.hpp:389
@ NN_skinit
Definition allins.hpp:844
@ NN_vmovss
Definition allins.hpp:1080
@ NN_cmpneqps
Definition allins.hpp:558
@ NN_vpcmpltuq
Definition allins.hpp:1755
@ NN_vpmovsqd
Definition allins.hpp:1628
@ NN_vfnmsub213ss
Definition allins.hpp:1029
@ NN_pdep
Definition allins.hpp:899
@ NN_fcmovne
Definition allins.hpp:277
@ NN_arpl
Definition allins.hpp:20
@ NN_vpdpbusd
Definition allins.hpp:2068
@ NN_vpmaskmovd
Definition allins.hpp:1159
@ NN_vscatterpf1dpd
Definition allins.hpp:1730
@ NN_vfmsub132ps
Definition allins.hpp:993
@ NN_loop
Definition allins.hpp:121
@ NN_movddup
Definition allins.hpp:674
@ NN_pmaxud
Definition allins.hpp:785
@ NN_vpmovsdb
Definition allins.hpp:1631
@ NN_cbw
Definition allins.hpp:31
@ NN_vpermilpd
Definition allins.hpp:1133
@ NN_vphaddubq
Definition allins.hpp:1852
@ NN_movmskpd
Definition allins.hpp:632
@ NN_vpcmpleq
Definition allins.hpp:1749
@ NN_mov
Definition allins.hpp:134
@ NN_vfnmsubps
Definition allins.hpp:1313
@ NN_kaddb
Definition allins.hpp:1764
@ NN_vpmacssdd
Definition allins.hpp:1865
@ NN_vcmpunordss
Definition allins.hpp:1453
@ NN_kortestd
Definition allins.hpp:1793
@ NN_aaa
Definition allins.hpp:13
@ NN_vcvttsd2si
Definition allins.hpp:963
@ NN_vcmptruesd
Definition allins.hpp:1432
@ NN_ktestb
Definition allins.hpp:1807
@ NN_vphaddbd
Definition allins.hpp:1847
@ NN_vpcomgtb
Definition allins.hpp:1892
@ NN_in
Definition allins.hpp:55
@ NN_vpmadcsswd
Definition allins.hpp:1872
@ NN_kmovb
Definition allins.hpp:1776
@ NN_xbegin
Definition allins.hpp:1270
@ NN_vphsubbw
Definition allins.hpp:1859
@ NN_vpternlogd
Definition allins.hpp:1666
@ NN_vpshldq
Definition allins.hpp:2080
@ NN_movntps
Definition allins.hpp:544
@ NN_vzeroall
Definition allins.hpp:1264
@ NN_v4fnmaddps
Definition allins.hpp:1978
@ NN_vfmsub231ss
Definition allins.hpp:1003
@ NN_retn
Definition allins.hpp:171
@ NN_vcmpngeps
Definition allins.hpp:1393
@ NN_prefetch
Definition allins.hpp:480
@ NN_vcvtpd2qq
Definition allins.hpp:1505
@ NN_vpconflictd
Definition allins.hpp:1587
@ NN_vscatterpf0dps
Definition allins.hpp:1724
@ NN_cmplesd
Definition allins.hpp:753
@ NN_sha256msg2
Definition allins.hpp:1823
@ NN_fld1
Definition allins.hpp:337
@ NN_vcmpngess
Definition allins.hpp:1459
@ NN_vcmpngepd
Definition allins.hpp:1360
@ NN_vdivps
Definition allins.hpp:966
@ NN_hsubps
Definition allins.hpp:690
@ NN_setc
Definition allins.hpp:184
@ NN_imul
Definition allins.hpp:54
@ NN_enqcmds
Definition allins.hpp:2019
@ NN_vfmsub231ph
Definition allins.hpp:2142
@ NN_vfmadd213pd
Definition allins.hpp:978
@ NN_vpsrld
Definition allins.hpp:1211
@ NN_vpshaw
Definition allins.hpp:1882
@ NN_cli
Definition allins.hpp:36
@ NN_psignd
Definition allins.hpp:700
@ NN_pslldq
Definition allins.hpp:648
@ NN_addsubpd
Definition allins.hpp:685
@ NN_pmovzxdq
Definition allins.hpp:802
@ NN_vcmplesd
Definition allins.hpp:1419
@ NN_vpcmpuq
Definition allins.hpp:1582
@ NN_vcvttph2dq
Definition allins.hpp:2120
@ NN_psadbw
Definition allins.hpp:541
@ NN_leave
Definition allins.hpp:106
@ NN_vgetmantph
Definition allins.hpp:2155
@ NN_vcvtph2dq
Definition allins.hpp:2110
@ NN_vpaddw
Definition allins.hpp:1104
@ NN_enter
Definition allins.hpp:49
@ NN_jna
Definition allins.hpp:78
@ NN_vcmpeq_osss
Definition allins.hpp:1466
@ NN_comisd
Definition allins.hpp:600
@ NN_pf2id
Definition allins.hpp:471
@ NN_vcmpss
Definition allins.hpp:944
@ NN_pfacc
Definition allins.hpp:464
@ NN_wrfsbase
Definition allins.hpp:912
@ NN_stgi
Definition allins.hpp:845
@ NN_vpackuswb
Definition allins.hpp:1096
@ NN_vpmovsxwq
Definition allins.hpp:1179
@ NN_fucomip
Definition allins.hpp:283
@ NN_vfnmaddss
Definition allins.hpp:1311
@ NN_vpxorq
Definition allins.hpp:1675
@ NN_adox
Definition allins.hpp:890
@ NN_vcmpnltss
Definition allins.hpp:1455
@ NN_shufpd
Definition allins.hpp:653
@ NN_invpcid
Definition allins.hpp:908
@ NN_movsxd
Definition allins.hpp:680
@ NN_vpshaq
Definition allins.hpp:1881
@ NN_setnae
Definition allins.hpp:191
@ NN_fsincos
Definition allins.hpp:373
@ NN_pcmpistri
Definition allins.hpp:816
@ NN_pavgb
Definition allins.hpp:531
@ NN_enqcmd
Definition allins.hpp:2018
@ NN_vpcompressb
Definition allins.hpp:2074
@ NN_vcompresspd
Definition allins.hpp:1503
@ NN_shufps
Definition allins.hpp:521
@ NN_vpaddusw
Definition allins.hpp:1103
@ NN_crc32
Definition allins.hpp:813
@ NN_vpmaxuw
Definition allins.hpp:1166
@ NN_sbb
Definition allins.hpp:178
@ NN_vmovhps
Definition allins.hpp:1066
@ NN_bextr
Definition allins.hpp:892
@ NN_vpunpckhqdq
Definition allins.hpp:1228
@ NN_vpmovuswb
Definition allins.hpp:1638
@ NN_vcvttss2usi
Definition allins.hpp:1522
@ NN_ucomisd
Definition allins.hpp:658
@ NN_cmovnb
Definition allins.hpp:263
@ NN_vpmaskmovq
Definition allins.hpp:1160
@ NN_maxss
Definition allins.hpp:503
@ NN_vpermd
Definition allins.hpp:1132
@ NN_stc
Definition allins.hpp:216
@ NN_pfadd
Definition allins.hpp:461
@ NN_vpsubusb
Definition allins.hpp:1222
@ NN_vpcmpb
Definition allins.hpp:1577
@ NN_vshufi64x2
Definition allins.hpp:1665
@ NN_vfmaddsub132ps
Definition allins.hpp:987
@ NN_vscatterpf0qpd
Definition allins.hpp:1727
@ NN_vpminsb
Definition allins.hpp:1167
@ NN_vpcomtrued
Definition allins.hpp:1915
@ NN_vbroadcastf32x2
Definition allins.hpp:1493
@ NN_vfmsubadd213ps
Definition allins.hpp:1007
@ NN_vgatherdps
Definition allins.hpp:1034
@ NN_vpmovsxwd
Definition allins.hpp:1178
@ NN_fcmovbe
Definition allins.hpp:274
@ NN_retfq
Definition allins.hpp:881
@ NN_pfsub
Definition allins.hpp:462
@ NN_kortestw
Definition allins.hpp:1790
@ NN_andps
Definition allins.hpp:489
@ NN_bndmov
Definition allins.hpp:1324
@ NN_clac
Definition allins.hpp:897
@ NN_phminposuw
Definition allins.hpp:779
@ NN_pmovsxdq
Definition allins.hpp:796
@ NN_vpcmpgtd
Definition allins.hpp:1125
@ NN_vdpbf16ps
Definition allins.hpp:2103
@ NN_roundsd
Definition allins.hpp:808
@ NN_vgetexpps
Definition allins.hpp:1549
@ NN_kxnord
Definition allins.hpp:1805
@ NN_vpmultishiftqb
Definition allins.hpp:1640
@ NN_rcpss
Definition allins.hpp:518
@ NN_vdivph
Definition allins.hpp:2130
@ NN_vrsqrtsh
Definition allins.hpp:2211
@ NN_cvttps2dq
Definition allins.hpp:615
@ NN_rdgsbase
Definition allins.hpp:911
@ NN_les
Definition allins.hpp:114
@ NN_lfs
Definition allins.hpp:115
@ NN_jpe
Definition allins.hpp:94
@ NN_vpaddsw
Definition allins.hpp:1101
@ NN_vfnmadd213sd
Definition allins.hpp:1016
@ NN_vpmovzxbd
Definition allins.hpp:1180
@ NN_int
Definition allins.hpp:58
@ NN_fsetpm
Definition allins.hpp:345
@ NN_vblendvps
Definition allins.hpp:936
@ NN_popf
Definition allins.hpp:152
@ NN_fninit
Definition allins.hpp:344
@ NN_vcmpgtss
Definition allins.hpp:1464
@ NN_vpmacsswd
Definition allins.hpp:1868
@ NN_vextracti32x4
Definition allins.hpp:1536
@ NN_pfrcp
Definition allins.hpp:472
@ NN_vcvtusi2sd
Definition allins.hpp:1527
@ NN_wrssq
Definition allins.hpp:2003
@ NN_jcxz
Definition allins.hpp:70
@ NN_bt
Definition allins.hpp:24
@ NN_vpscatterqd
Definition allins.hpp:1653
@ NN_vcmpge_oqps
Definition allins.hpp:1413
@ NN_vcmpfalse_osss
Definition allins.hpp:1477
@ NN_pushfd
Definition allins.hpp:162
@ NN_vinsertf128
Definition allins.hpp:1042
@ NN_cmovno
Definition allins.hpp:264
@ NN_vpsubq
Definition allins.hpp:1219
@ NN_valignq
Definition allins.hpp:1486
@ NN_blsr
Definition allins.hpp:895
@ NN_vaesimc
Definition allins.hpp:927
@ NN_vpcomequq
Definition allins.hpp:1957
@ NN_pmovsxwd
Definition allins.hpp:794
@ NN_addpd
Definition allins.hpp:593
@ NN_vfnmaddps
Definition allins.hpp:1309
@ NN_vpermilps
Definition allins.hpp:1134
@ NN_vpmaxsq
Definition allins.hpp:1609
@ NN_vprotd
Definition allins.hpp:1876
@ NN_movntpd
Definition allins.hpp:635
@ NN_pmulhrsw
Definition allins.hpp:702
@ NN_vblendvpd
Definition allins.hpp:935
@ NN_vpavgb
Definition allins.hpp:1108
@ NN_paddw
Definition allins.hpp:405
@ NN_vpmadd52huq
Definition allins.hpp:1608
@ NN_vcmpneq_ospd
Definition allins.hpp:1379
@ NN_movapd
Definition allins.hpp:626
@ NN_rdmsr
Definition allins.hpp:245
@ NN_pfcmpeq
Definition allins.hpp:467
@ NN_ins
Definition allins.hpp:57
@ NN_stac
Definition allins.hpp:905
@ NN_vplzcntd
Definition allins.hpp:1605
@ NN_pblendw
Definition allins.hpp:774
@ NN_stmxcsr
Definition allins.hpp:524
@ NN_movdq2q
Definition allins.hpp:627
@ NN_xrstor
Definition allins.hpp:832
@ NN_paddsb
Definition allins.hpp:407
@ NN_vpcomnequb
Definition allins.hpp:1931
@ NN_jnle
Definition allins.hpp:87
@ NN_vpermq
Definition allins.hpp:1137
@ NN_vmovsldup
Definition allins.hpp:1079
@ NN_encls
Definition allins.hpp:1827
@ NN_vcmpeqpd
Definition allins.hpp:1351
@ NN_pushaq
Definition allins.hpp:159
@ NN_vpaddsb
Definition allins.hpp:1100
@ NN_adc
Definition allins.hpp:17
@ NN_vcmpfalsess
Definition allins.hpp:1461
@ NN_vaddps
Definition allins.hpp:918
@ NN_vcmpfalsesd
Definition allins.hpp:1428
@ NN_vpmovsxbq
Definition allins.hpp:1175
@ NN_vrsqrt14sd
Definition allins.hpp:1693
@ NN_vcvtph2qq
Definition allins.hpp:2113
@ NN_vroundps
Definition allins.hpp:1238
@ NN_vphadduwd
Definition allins.hpp:1855
@ NN_vmovsd
Definition allins.hpp:1077
@ NN_vfnmsub132ph
Definition allins.hpp:2150
@ NN_loopqne
Definition allins.hpp:131
@ NN_vscalefph
Definition allins.hpp:2163
@ NN_movq2dq
Definition allins.hpp:636
@ NN_kmovq
Definition allins.hpp:1777
@ NN_korq
Definition allins.hpp:1788
@ NN_vaddpd
Definition allins.hpp:917
@ NN_vpmulhuw
Definition allins.hpp:1188
@ NN_vcvttps2udq
Definition allins.hpp:1518
@ NN_vplzcntq
Definition allins.hpp:1606
@ NN_xgetbv
Definition allins.hpp:831
@ NN_xsusldtrk
Definition allins.hpp:2049
@ NN_vpsllq
Definition allins.hpp:1204
@ NN_vfnmsub213sh
Definition allins.hpp:2199
@ NN_fldln2
Definition allins.hpp:342
@ NN_vhsubpd
Definition allins.hpp:1040
@ NN_vdivss
Definition allins.hpp:968
@ NN_kandnd
Definition allins.hpp:1774
@ NN_vphsubw
Definition allins.hpp:1152
@ NN_gf2p8affineinvqb
Definition allins.hpp:2055
@ NN_cmpleps
Definition allins.hpp:556
@ NN_vprorvq
Definition allins.hpp:1650
@ NN_vmmcall
Definition allins.hpp:848
@ NN_loopw
Definition allins.hpp:120
@ NN_pushfw
Definition allins.hpp:160
@ NN_vpcomeqq
Definition allins.hpp:1921
@ NN_vfnmadd231ps
Definition allins.hpp:1019
@ NN_fbld
Definition allins.hpp:297
@ NN_cvttpd2dq
Definition allins.hpp:613
@ NN_phsubw
Definition allins.hpp:708
@ NN_vpmovqw
Definition allins.hpp:1624
@ NN_vpmovwb
Definition allins.hpp:1636
@ NN_vcvtne2ps2bf16
Definition allins.hpp:2101
@ NN_vaddss
Definition allins.hpp:920
@ NN_mulps
Definition allins.hpp:514
@ NN_vpmovusdw
Definition allins.hpp:1635
@ NN_vpcomgeub
Definition allins.hpp:1929
@ NN_vpmovzxdq
Definition allins.hpp:1183
@ NN_vscatterpf1dps
Definition allins.hpp:1728
@ NN_vfmsubadd231ps
Definition allins.hpp:1009
@ NN_vfmaddsub231ph
Definition allins.hpp:2139
@ NN_stui
Definition allins.hpp:2220
@ NN_cmovns
Definition allins.hpp:266
@ NN_cmovnz
Definition allins.hpp:267
@ NN_fnop
Definition allins.hpp:362
@ NN_vhaddps
Definition allins.hpp:1039
@ NN_jnp
Definition allins.hpp:89
@ NN_vrcp28pd
Definition allins.hpp:1707
@ NN_vfnmsub213pd
Definition allins.hpp:1026
@ NN_vfmsubaddpd
Definition allins.hpp:1300
@ NN_vscalefsd
Definition allins.hpp:1697
@ NN_pextrb
Definition allins.hpp:776
@ NN_vsqrtpd
Definition allins.hpp:1245
@ NN_psubsb
Definition allins.hpp:434
@ NN_movntq
Definition allins.hpp:545
@ NN_vp4dpwssd
Definition allins.hpp:1981
@ NN_vpextrw
Definition allins.hpp:1141
@ NN_vpcmpeqq
Definition allins.hpp:1120
@ NN_sysret
Definition allins.hpp:666
@ NN_vcvtuqq2pd
Definition allins.hpp:1525
@ NN_cpuid
Definition allins.hpp:247
@ NN_packusdw
Definition allins.hpp:772
@ NN_vmovshdup
Definition allins.hpp:1078
@ NN_loopne
Definition allins.hpp:129
@ NN_kunpckbw
Definition allins.hpp:1779
@ NN_lock
Definition allins.hpp:118
@ NN_vscatterqpd
Definition allins.hpp:1703
@ NN_vpmovusqb
Definition allins.hpp:1623
@ NN_vpshldw
Definition allins.hpp:2078
@ NN_vscatterpf0qps
Definition allins.hpp:1725
@ NN_vfnmaddsd
Definition allins.hpp:1312
@ NN_cmpeqpd
Definition allins.hpp:743
@ NN_vcmpeq_uqps
Definition allins.hpp:1392
@ NN_vcmpge_oqss
Definition allins.hpp:1479
@ NN_cvtsi2ss
Definition allins.hpp:495
@ NN_mulx
Definition allins.hpp:898
@ NN_setnbe
Definition allins.hpp:193
@ NN_vfmsubadd213ph
Definition allins.hpp:2144
@ NN_vpsllvd
Definition allins.hpp:1205
@ NN_vpcmpd
Definition allins.hpp:1579
@ NN_pextrw
Definition allins.hpp:533
@ NN_vcomisd
Definition allins.hpp:945
@ NN_vpermb
Definition allins.hpp:1589
@ NN_kaddw
Definition allins.hpp:1763
@ NN_vpcmpestrm
Definition allins.hpp:1123
@ NN_cmovb
Definition allins.hpp:257
@ NN_vsubpd
Definition allins.hpp:1250
@ NN_movshdup
Definition allins.hpp:675
@ NN_vcmpnltps
Definition allins.hpp:1389
@ NN_vextractf32x8
Definition allins.hpp:1534
@ NN_vprotb
Definition allins.hpp:1875
@ NN_vbroadcasti32x4
Definition allins.hpp:1499
@ NN_kandd
Definition allins.hpp:1770
@ NN_pcmpeqb
Definition allins.hpp:413
@ NN_vpcmov
Definition allins.hpp:1836
@ NN_pinsrq
Definition allins.hpp:782
@ NN_aeskeygenassist
Definition allins.hpp:868
@ NN_rsts
Definition allins.hpp:390
@ NN_vpermt2ps
Definition allins.hpp:1601
@ NN_ja
Definition allins.hpp:65
@ NN_vgatherqpd
Definition allins.hpp:1037
@ NN_vcvtps2ph
Definition allins.hpp:954
@ NN_vpmovusqw
Definition allins.hpp:1626
@ NN_andpd
Definition allins.hpp:596
@ NN_vpscatterdd
Definition allins.hpp:1651
@ NN_vcmpngt_uqps
Definition allins.hpp:1410
@ NN_vpsrlvw
Definition allins.hpp:1657
@ NN_ud1
Definition allins.hpp:2014
@ NN_cmplepd
Definition allins.hpp:745
@ NN_vcvtps2phx
Definition allins.hpp:2118
@ NN_vfixupimmps
Definition allins.hpp:1541
@ NN_vrsqrt28ps
Definition allins.hpp:1713
@ NN_vbroadcastf64x4
Definition allins.hpp:1497
@ NN_vcvttss2si
Definition allins.hpp:964
@ NN_lea
Definition allins.hpp:104
@ NN_vfrczsd
Definition allins.hpp:1834
@ NN_movs
Definition allins.hpp:136
@ NN_setpe
Definition allins.hpp:206
@ NN_cmpxchg8b
Definition allins.hpp:248
@ NN_outs
Definition allins.hpp:145
@ NN_vpaddq
Definition allins.hpp:1099
@ NN_vfnmadd213sh
Definition allins.hpp:2196
@ NN_vcmpnlt_uqss
Definition allins.hpp:1471
@ NN_vcmppd
Definition allins.hpp:941
@ NN_vpabsd
Definition allins.hpp:1091
@ NN_sha256msg1
Definition allins.hpp:1822
@ NN_pminud
Definition allins.hpp:789
@ NN_vpmovsqb
Definition allins.hpp:1622
@ NN_vpcomfalseb
Definition allins.hpp:1896
@ NN_pmovzxbq
Definition allins.hpp:799
@ NN_vptestnmb
Definition allins.hpp:1658
@ NN_vcvtss2usi
Definition allins.hpp:1514
@ NN_vcmpneq_osss
Definition allins.hpp:1478
@ NN_vmhlt
Definition allins.hpp:1281
@ NN_iret
Definition allins.hpp:62
@ NN_vexp2pd
Definition allins.hpp:1705
@ NN_vfrczpd
Definition allins.hpp:1832
@ NN_cmpordsd
Definition allins.hpp:758
@ NN_vgatherpf0qps
Definition allins.hpp:1717
@ NN_psraw
Definition allins.hpp:426
@ NN_vcvtqq2pd
Definition allins.hpp:1511
@ NN_sti
Definition allins.hpp:218
@ NN_vcmpgtps
Definition allins.hpp:1398
@ NN_fstp
Definition allins.hpp:292
@ NN_vfmsubps
Definition allins.hpp:1305
@ NN_fdisi
Definition allins.hpp:365
@ NN_vcmpfalse_ossd
Definition allins.hpp:1444
@ NN_vrsqrt28pd
Definition allins.hpp:1711
@ NN_shld
Definition allins.hpp:212
@ NN_fsave
Definition allins.hpp:356
@ NN_vcmpordpd
Definition allins.hpp:1358
@ NN_vcmpneq_usss
Definition allins.hpp:1470
@ NN_vmaskmovps
Definition allins.hpp:1049
@ NN_vucomiss
Definition allins.hpp:1257
@ NN_pavgusb
Definition allins.hpp:460
@ NN_vrsqrt28ss
Definition allins.hpp:1714
@ NN_vpcomuq
Definition allins.hpp:1842
@ NN_vmovlps
Definition allins.hpp:1069
@ NN_vpcomltq
Definition allins.hpp:1917
@ NN_vfnmsub231ss
Definition allins.hpp:1033
@ NN_ud0
Definition allins.hpp:2013
@ NN_kunpckdq
Definition allins.hpp:1781
@ NN_prefetcht0
Definition allins.hpp:546
@ NN_vcmpordsd
Definition allins.hpp:1424
@ NN_pshufd
Definition allins.hpp:645
@ NN_comiss
Definition allins.hpp:492
@ NN_jnge
Definition allins.hpp:85
@ NN_vpmacssdql
Definition allins.hpp:1867
@ NN_bndmk
Definition allins.hpp:1320
@ NN_vpcomneqq
Definition allins.hpp:1922
@ NN_vpcomled
Definition allins.hpp:1909
@ NN_vshufpd
Definition allins.hpp:1243
@ NN_vfmaddcsh
Definition allins.hpp:2190
@ NN_vsubps
Definition allins.hpp:1251
@ NN_prefetcht1
Definition allins.hpp:547
@ NN_jl
Definition allins.hpp:76
@ NN_fneni
Definition allins.hpp:364
@ NN_fdiv
Definition allins.hpp:311
@ NN_vpackusdw
Definition allins.hpp:1095
@ NN_vpsllw
Definition allins.hpp:1207
@ NN_vpsrlvd
Definition allins.hpp:1214
@ NN_vcvtuqq2ph
Definition allins.hpp:2127
@ NN_movntss
Definition allins.hpp:826
@ NN_cvttss2si
Definition allins.hpp:498
@ NN_vmovups
Definition allins.hpp:1082
@ NN_vpclmulqdq
Definition allins.hpp:1117
@ NN_vtestps
Definition allins.hpp:1255
@ NN_rsm
Definition allins.hpp:250
@ NN_addsubps
Definition allins.hpp:686
@ NN_vpmacssdqh
Definition allins.hpp:1866
@ NN_psrldq
Definition allins.hpp:649
@ NN_vpcomtrueuq
Definition allins.hpp:1960
@ NN_vgatherpf1dps
Definition allins.hpp:1720
@ NN_vpmovq2m
Definition allins.hpp:1620
@ NN_kandq
Definition allins.hpp:1769
@ NN_vpcomltuw
Definition allins.hpp:1935
@ NN_fincstp
Definition allins.hpp:359
@ NN_vphaddw
Definition allins.hpp:1148
@ NN_pmovzxwd
Definition allins.hpp:800
@ NN_vfmsub213sh
Definition allins.hpp:2192
@ NN_vpermil2ps
Definition allins.hpp:1846
@ NN_vphaddubd
Definition allins.hpp:1851
@ NN_vfnmsubss
Definition allins.hpp:1315
@ NN_psubusb
Definition allins.hpp:436
@ NN_vpbroadcastw
Definition allins.hpp:1116
@ NN_vpandq
Definition allins.hpp:1572
@ NN_vpperm
Definition allins.hpp:1874
@ NN_vmptrld
Definition allins.hpp:721
@ NN_vpcomleuq
Definition allins.hpp:1954
@ NN_vscatterqps
Definition allins.hpp:1702
@ NN_pinsrd
Definition allins.hpp:781
@ NN_vpermi2q
Definition allins.hpp:1594
@ NN_vcmpeqsd
Definition allins.hpp:1417
@ NN_cvtpi2ps
Definition allins.hpp:493
@ NN_punpckhdq
Definition allins.hpp:440
@ NN_vgatherdpd
Definition allins.hpp:1035
@ NN_vpcmpgtw
Definition allins.hpp:1127
@ NN_vpord
Definition allins.hpp:1641
@ NN_insertq
Definition allins.hpp:824
@ NN_loopqe
Definition allins.hpp:127
@ NN_vpabsw
Definition allins.hpp:1092
@ NN_vminss
Definition allins.hpp:1057
@ NN_faddp
Definition allins.hpp:300
@ NN_vextracti32x8
Definition allins.hpp:1538
@ NN_maskmovdqu
Definition allins.hpp:620
@ NN_vcmpltpd
Definition allins.hpp:1352
@ NN_vcmpgeps
Definition allins.hpp:1397
@ NN_knotd
Definition allins.hpp:1785
@ NN_mcommit
Definition allins.hpp:2023
@ NN_vscalefps
Definition allins.hpp:1698
@ NN_paddq
Definition allins.hpp:642
@ NN_vpcmpeqb
Definition allins.hpp:1118
@ NN_vmulsh
Definition allins.hpp:2207
@ NN_vcmpneqpd
Definition allins.hpp:1355
@ NN_vcmptrueps
Definition allins.hpp:1399
@ NN_pfmul
Definition allins.hpp:474
@ NN_vcvtsh2sd
Definition allins.hpp:2175
@ NN_pmulhw
Definition allins.hpp:420
@ NN_vpmacsdql
Definition allins.hpp:1864
@ NN_movdiri
Definition allins.hpp:2033
@ NN_fyl2xp1
Definition allins.hpp:335
@ NN_jmpshort
Definition allins.hpp:101
@ NN_vcmpngtpd
Definition allins.hpp:1361
@ NN_kmovw
Definition allins.hpp:1775
@ NN_pmovsxbw
Definition allins.hpp:791
@ NN_vgf2p8affineqb
Definition allins.hpp:2059
@ NN_invlpg
Definition allins.hpp:239
@ NN_vpcmpud
Definition allins.hpp:1580
@ NN_vpcomltd
Definition allins.hpp:1908
@ NN_vcmpord_ssd
Definition allins.hpp:1440
@ NN_vcvttsh2si
Definition allins.hpp:2181
@ NN_fist
Definition allins.hpp:295
@ NN_vbroadcasti32x8
Definition allins.hpp:1501
@ NN_vextractf64x4
Definition allins.hpp:1535
@ NN_fsub
Definition allins.hpp:302
@ NN_movd
Definition allins.hpp:399
@ NN_vmsave
Definition allins.hpp:850
@ NN_vorps
Definition allins.hpp:1089
@ NN_rdpid
Definition allins.hpp:1988
@ NN_vcmpngt_uqpd
Definition allins.hpp:1377
@ NN_vfmsub132sd
Definition allins.hpp:994
@ NN_vfmaddpd
Definition allins.hpp:1302
@ NN_vpermt2d
Definition allins.hpp:1599
@ NN_mulss
Definition allins.hpp:515
@ NN_vcvtuqq2ps
Definition allins.hpp:1526
@ NN_vpsubb
Definition allins.hpp:1217
@ NN_vpaddd
Definition allins.hpp:1098
@ NN_vpmaxsb
Definition allins.hpp:1161
@ NN_fstp8
Definition allins.hpp:588
@ NN_vpsraq
Definition allins.hpp:1655
@ NN_punpckhwd
Definition allins.hpp:439
@ NN_vpmovsxbd
Definition allins.hpp:1174
@ NN_adcx
Definition allins.hpp:889
@ NN_pfcmpgt
Definition allins.hpp:466
@ NN_jnl
Definition allins.hpp:86
@ NN_vpsrlw
Definition allins.hpp:1216
@ NN_vsubss
Definition allins.hpp:1253
@ NN_serialize
Definition allins.hpp:2044
@ NN_rdrand
Definition allins.hpp:885
@ NN_punpcklqdq
Definition allins.hpp:652
@ NN_wrgsbase
Definition allins.hpp:913
@ NN_vpcomgtd
Definition allins.hpp:1910
@ NN_cmpneqpd
Definition allins.hpp:747
@ NN_vmpushfd
Definition allins.hpp:1283
@ NN_bndldx
Definition allins.hpp:1325
@ NN_kshiftlb
Definition allins.hpp:1795
@ NN_vpshrdq
Definition allins.hpp:2086
@ NN_vpblendmw
Definition allins.hpp:1490
@ NN_cvttpd2pi
Definition allins.hpp:614
@ NN_vpmovusqd
Definition allins.hpp:1629
@ NN_vmovdqa64
Definition allins.hpp:1565
@ NN_vpcompressw
Definition allins.hpp:2075
@ NN_vcmpunordps
Definition allins.hpp:1387
@ NN_fcmovnu
Definition allins.hpp:279
@ NN_blsi
Definition allins.hpp:893
@ NN_vcmpunord_ssd
Definition allins.hpp:1436
@ NN_vpcomub
Definition allins.hpp:1840
@ NN_vfmadd132pd
Definition allins.hpp:974
@ NN_vgetmantps
Definition allins.hpp:1553
@ NN_vcvttsd2usi
Definition allins.hpp:1521
@ NN_vrsqrt14ps
Definition allins.hpp:1694
@ NN_vfmaddss
Definition allins.hpp:1303
@ NN_andnps
Definition allins.hpp:488
@ NN_vpcomgtub
Definition allins.hpp:1928
@ NN_vscatterpf0dpd
Definition allins.hpp:1726
@ NN_str
Definition allins.hpp:220
@ NN_ptest
Definition allins.hpp:805
@ NN_pmulhrw
Definition allins.hpp:478
@ NN_vp2intersectq
Definition allins.hpp:2098
@ NN_vextractf32x4
Definition allins.hpp:1532
@ NN_vcmpord_spd
Definition allins.hpp:1374
@ NN_vpcomequw
Definition allins.hpp:1939
@ NN_bswap
Definition allins.hpp:235
@ NN_vpbroadcastmb2q
Definition allins.hpp:1575
@ NN_fucom
Definition allins.hpp:376
@ NN_vpmulhw
Definition allins.hpp:1189
@ NN_sldt
Definition allins.hpp:214
@ NN_setns
Definition allins.hpp:202
@ NN_kxorq
Definition allins.hpp:1812
@ NN_setnge
Definition allins.hpp:197
@ NN_vporq
Definition allins.hpp:1642
@ NN_vfnmadd213pd
Definition allins.hpp:1014
@ NN_vpcmpeqd
Definition allins.hpp:1119
@ NN_pushad
Definition allins.hpp:158
@ NN_movdqa
Definition allins.hpp:628
@ NN_vblendmpd
Definition allins.hpp:1487
@ NN_btc
Definition allins.hpp:25
@ NN_vmovupd
Definition allins.hpp:1081
@ NN_vpcomgtuq
Definition allins.hpp:1955
@ NN_vmovq
Definition allins.hpp:1076
@ NN_minps
Definition allins.hpp:504
@ NN_or
Definition allins.hpp:143
@ NN_vfmsubadd132ps
Definition allins.hpp:1005
@ NN_vcmpleps
Definition allins.hpp:1386
@ NN_pi2fw
Definition allins.hpp:576
@ NN_vphadduwq
Definition allins.hpp:1856
@ NN_packsswb
Definition allins.hpp:401
@ NN_kshiftlw
Definition allins.hpp:1794
@ NN_vpmovdw
Definition allins.hpp:1633
@ NN_vpminuq
Definition allins.hpp:1612
@ NN_js
Definition allins.hpp:96
@ NN_pmaddubsw
Definition allins.hpp:703
@ NN_loopwne
Definition allins.hpp:128
@ NN_vfnmadd213ps
Definition allins.hpp:1015
@ NN_vmulss
Definition allins.hpp:1087
@ NN_vcvtsi2sh
Definition allins.hpp:2179
@ NN_ktestw
Definition allins.hpp:1806
@ NN_sha1rnds4
Definition allins.hpp:1817
@ NN_vgetmantsh
Definition allins.hpp:2203
@ NN_je
Definition allins.hpp:73
@ NN_vrcpph
Definition allins.hpp:2159
@ NN_kxorw
Definition allins.hpp:1810
@ NN_setge
Definition allins.hpp:187
@ NN_vpsignb
Definition allins.hpp:1199
@ NN_vcvtps2pd
Definition allins.hpp:953
@ NN_vinsertf32x4
Definition allins.hpp:1556
@ NN_kxorb
Definition allins.hpp:1811
@ NN_setna
Definition allins.hpp:190
@ NN_movdir64b
Definition allins.hpp:2034
@ NN_vmaxsd
Definition allins.hpp:1052
@ NN_bzhi
Definition allins.hpp:896
@ NN_vdivsd
Definition allins.hpp:967
@ NN_popfd
Definition allins.hpp:153
@ NN_vpcomgeud
Definition allins.hpp:1947
@ NN_vmovntpd
Definition allins.hpp:1074
@ NN_vfcmaddcph
Definition allins.hpp:2131
@ NN_vpcomud
Definition allins.hpp:1841
@ NN_kxord
Definition allins.hpp:1813
@ NN_subss
Definition allins.hpp:526
@ NN_callni
Definition allins.hpp:30
@ NN_enclv
Definition allins.hpp:2029
@ NN_loopde
Definition allins.hpp:126
@ NN_cmpordss
Definition allins.hpp:569
@ NN_vfmaddsd
Definition allins.hpp:1304
@ NN_cvtps2pi
Definition allins.hpp:494
@ NN_fdecstp
Definition allins.hpp:360
@ NN_sqrtsd
Definition allins.hpp:655
@ NN_vcmpgt_oqps
Definition allins.hpp:1414
@ NN_vcvttpd2qq
Definition allins.hpp:1515
@ NN_vinserti64x2
Definition allins.hpp:1561
@ NN_vpmovm2w
Definition allins.hpp:1614
@ NN_vscalefsh
Definition allins.hpp:2212
@ NN_vcmpunord_spd
Definition allins.hpp:1370
@ NN_vcvtph2uqq
Definition allins.hpp:2115
@ NN_vpgatherdq
Definition allins.hpp:1143
@ NN_lds
Definition allins.hpp:113
@ NN_vreduceps
Definition allins.hpp:1686
@ NN_clc
Definition allins.hpp:34
@ NN_vcvtps2qq
Definition allins.hpp:1509
@ NN_vandpd
Definition allins.hpp:931
@ NN_stos
Definition allins.hpp:219
@ NN_vcmpneq_usps
Definition allins.hpp:1404
@ NN_vrsqrtss
Definition allins.hpp:1242
@ NN_vphaddsw
Definition allins.hpp:1147
@ NN_vgatherpf0dpd
Definition allins.hpp:1718
@ NN_vmovntps
Definition allins.hpp:1075
@ NN_vcvtdq2pd
Definition allins.hpp:947
@ NN_vcmple_oqsd
Definition allins.hpp:1435
@ NN_vfnmadd132sh
Definition allins.hpp:2195
@ NN_vcvtusi2ss
Definition allins.hpp:1528
@ NN_vpunpcklqdq
Definition allins.hpp:1232
@ NN_vpsrlq
Definition allins.hpp:1213
@ NN_movq
Definition allins.hpp:400
@ NN_vmovdqu16
Definition allins.hpp:1567
@ NN_vaesenc
Definition allins.hpp:925
@ NN_psrld
Definition allins.hpp:429
@ NN_vmovd
Definition allins.hpp:1060
@ NN_vmovdqu32
Definition allins.hpp:1568
@ NN_vpopcntb
Definition allins.hpp:2092
@ NN_kandb
Definition allins.hpp:1768
@ NN_fidivr
Definition allins.hpp:316
@ NN_vpmovsqw
Definition allins.hpp:1625
@ NN_addss
Definition allins.hpp:487
@ NN_pcmpeqq
Definition allins.hpp:775
@ NN_vfpclasssd
Definition allins.hpp:1546
@ NN_cvtdq2ps
Definition allins.hpp:602
@ NN_vcmplt_oqps
Definition allins.hpp:1401
@ NN_ftst
Definition allins.hpp:329
@ NN_vpcomgeq
Definition allins.hpp:1920
@ NN_vpmaddubsw
Definition allins.hpp:1157
@ NN_vgetmantsd
Definition allins.hpp:1554
@ NN_vsqrtss
Definition allins.hpp:1248
@ NN_rdseed
Definition allins.hpp:909
@ NN_enterd
Definition allins.hpp:50
@ NN_vcomish
Definition allins.hpp:2173
@ NN_vpsravq
Definition allins.hpp:1673
@ NN_vpcomtrueuw
Definition allins.hpp:1942
@ NN_vgatherpf1dpd
Definition allins.hpp:1722
@ NN_gf2p8mulb
Definition allins.hpp:2053
@ NN_vpalignr
Definition allins.hpp:1105
@ NN_vpexpandq
Definition allins.hpp:1604
@ NN_vpmadd52luq
Definition allins.hpp:1607
@ NN_fldl2t
Definition allins.hpp:339
@ NN_vfnmadd132pd
Definition allins.hpp:1010
@ NN_vpermi2w
Definition allins.hpp:1592
@ NN_lddqu
Definition allins.hpp:694
@ NN_wrssd
Definition allins.hpp:2002
@ NN_vpblendmd
Definition allins.hpp:1491
@ NN_vminpd
Definition allins.hpp:1054
@ NN_vhaddpd
Definition allins.hpp:1038
@ NN_vmsgdt
Definition allins.hpp:1288
@ NN_jle
Definition allins.hpp:77
@ NN_vcmpfalse_ospd
Definition allins.hpp:1378
@ NN_fldenv
Definition allins.hpp:355
@ NN_rep
Definition allins.hpp:168
@ NN_vphsubwd
Definition allins.hpp:1861
@ NN_vpmovzxwq
Definition allins.hpp:1185
@ NN_enclu
Definition allins.hpp:1828
@ NN_extrq
Definition allins.hpp:823
@ NN_vinserti32x8
Definition allins.hpp:1562
@ NN_vgetexpph
Definition allins.hpp:2154
@ NN_shr
Definition allins.hpp:177
@ NN_paddsw
Definition allins.hpp:408
@ NN_vpsubusw
Definition allins.hpp:1223
@ NN_blendps
Definition allins.hpp:763
@ NN_kortestq
Definition allins.hpp:1792
@ NN_xsavec
Definition allins.hpp:1331
@ NN_vpshlb
Definition allins.hpp:1883
@ NN_vcmpunord_sss
Definition allins.hpp:1469
@ NN_vpcomleuw
Definition allins.hpp:1936
@ NN_vgetexpsd
Definition allins.hpp:1550
@ NN_seta
Definition allins.hpp:180
@ NN_setle
Definition allins.hpp:189
@ NN_vfmsub213sd
Definition allins.hpp:998
@ NN_vcmpnle_uqss
Definition allins.hpp:1472
@ NN_vpcomgtq
Definition allins.hpp:1919
@ NN_vpmacswd
Definition allins.hpp:1870
@ NN_vfnmadd132ss
Definition allins.hpp:1013
@ NN_psrlq
Definition allins.hpp:430
@ NN_ud2
Definition allins.hpp:730
@ NN_cvtsi2sd
Definition allins.hpp:611
@ NN_nop
Definition allins.hpp:141
@ NN_movupd
Definition allins.hpp:638
@ NN_vbroadcastf32x4
Definition allins.hpp:1494
@ NN_fxam
Definition allins.hpp:330
@ NN_lods
Definition allins.hpp:119
@ NN_andnpd
Definition allins.hpp:595
@ NN_hreset
Definition allins.hpp:2226
@ NN_fxrstor64
Definition allins.hpp:2065
@ NN_vpbroadcastq
Definition allins.hpp:1115
@ NN_vfnmadd231pd
Definition allins.hpp:1018
@ NN_fsqrt
Definition allins.hpp:317
@ NN_vpmovw2m
Definition allins.hpp:1618
@ NN_vcvtph2ps
Definition allins.hpp:951
@ NN_ptwrite
Definition allins.hpp:1973
@ NN_vaddsh
Definition allins.hpp:2171
@ NN_cwde
Definition allins.hpp:32
@ NN_vrcp14sd
Definition allins.hpp:1681
@ NN_setnle
Definition allins.hpp:199
@ NN_pf2iw
Definition allins.hpp:573
@ NN_vcmpge_oqsd
Definition allins.hpp:1446
@ NN_popfq
Definition allins.hpp:154
@ NN_kxnorq
Definition allins.hpp:1804
@ NN_vcvtpd2uqq
Definition allins.hpp:1507
@ NN_fstp1
Definition allins.hpp:581
@ NN_vmaxps
Definition allins.hpp:1051
@ NN_aesenclast
Definition allins.hpp:864
@ NN_vpsrlvq
Definition allins.hpp:1215
@ NN_vpgatherdd
Definition allins.hpp:1142
@ NN_fidiv
Definition allins.hpp:313
@ NN_cmpss
Definition allins.hpp:491
@ NN_kandnw
Definition allins.hpp:1771
@ NN_vfnmsub132sh
Definition allins.hpp:2198
@ NN_punpcklwd
Definition allins.hpp:442
@ NN_rdsspd
Definition allins.hpp:1998
@ NN_vcvtpd2ph
Definition allins.hpp:2109
@ NN_vcmpgt_oqpd
Definition allins.hpp:1381
@ NN_vpand
Definition allins.hpp:1106
@ NN_fldcw
Definition allins.hpp:346
@ NN_vrangepd
Definition allins.hpp:1676
@ NN_vprolq
Definition allins.hpp:1645
@ NN_fisttp
Definition allins.hpp:693
@ NN_vpcmpgtb
Definition allins.hpp:1124
@ NN_blsmsk
Definition allins.hpp:894
@ NN_vdivpd
Definition allins.hpp:965
@ NN_rsqrtss
Definition allins.hpp:520
@ NN_subps
Definition allins.hpp:525
@ NN_rcl
Definition allins.hpp:164
@ NN_vpblendmq
Definition allins.hpp:1492
@ NN_vfpclassss
Definition allins.hpp:1547
@ NN_vpcomtrueud
Definition allins.hpp:1951
@ NN_vmsetinfo
Definition allins.hpp:1277
@ NN_cdqe
Definition allins.hpp:33
@ NN_psrlw
Definition allins.hpp:428
@ NN_vcvttph2qq
Definition allins.hpp:2121
@ NN_pcmpgtq
Definition allins.hpp:818
@ NN_vpsllvq
Definition allins.hpp:1206
@ NN_vcmpnle_uqsd
Definition allins.hpp:1439
@ NN_vrsqrt28sd
Definition allins.hpp:1712
@ NN_vcmpunord_sps
Definition allins.hpp:1403
@ NN_jrcxz
Definition allins.hpp:72
@ NN_vroundpd
Definition allins.hpp:1237
@ NN_addps
Definition allins.hpp:486
@ NN_punpckldq
Definition allins.hpp:443
@ NN_vpmovusdb
Definition allins.hpp:1632
@ NN_xtest
Definition allins.hpp:1272
@ NN_vandnpd
Definition allins.hpp:929
@ NN_vmsidt
Definition allins.hpp:1289
@ NN_vfmsubss
Definition allins.hpp:1307
@ NN_rdpkru
Definition allins.hpp:1346
@ NN_vbroadcasti128
Definition allins.hpp:938
@ NN_vcmpps
Definition allins.hpp:942
@ NN_vpermt2b
Definition allins.hpp:1597
@ NN_vfmsub231pd
Definition allins.hpp:1000
@ NN_fndisi
Definition allins.hpp:366
@ NN_cmovz
Definition allins.hpp:271
@ NN_movntdq
Definition allins.hpp:633
@ NN_vscalefss
Definition allins.hpp:1699
@ NN_last
Definition allins.hpp:2229
@ NN_vmaxss
Definition allins.hpp:1053
@ NN_korb
Definition allins.hpp:1787
@ NN_vcvtsh2usi
Definition allins.hpp:2178
@ NN_fchs
Definition allins.hpp:323
@ NN_seto
Definition allins.hpp:204
@ NN_dec
Definition allins.hpp:46
@ NN_vunpckhpd
Definition allins.hpp:1258
@ NN_ficom
Definition allins.hpp:327
@ NN_vgatherpf1qps
Definition allins.hpp:1721
@ NN_vpmaxsd
Definition allins.hpp:1162
@ NN_mulpd
Definition allins.hpp:639
@ NN_hsubpd
Definition allins.hpp:689
@ NN_vprorvd
Definition allins.hpp:1648
@ NN_vcmpeq_uqss
Definition allins.hpp:1458
@ NN_fcom2
Definition allins.hpp:582
@ NN_scas
Definition allins.hpp:179
@ NN_vmovdqu8
Definition allins.hpp:1566
@ NN_vmlaunch
Definition allins.hpp:719
@ NN_bsf
Definition allins.hpp:22
@ NN_clgi
Definition allins.hpp:842
@ NN_vpcomb
Definition allins.hpp:1837
@ NN_vpmadcswd
Definition allins.hpp:1873
@ NN_vpcmpequd
Definition allins.hpp:1741
@ NN_vcvtqq2ps
Definition allins.hpp:1512
@ NN_rdpmc
Definition allins.hpp:284
@ NN_vgatherpf0dps
Definition allins.hpp:1716
@ NN_vcmpsd
Definition allins.hpp:943
@ NN_pminuw
Definition allins.hpp:790
@ NN_vaddsd
Definition allins.hpp:919
@ NN_vpunpckhbw
Definition allins.hpp:1226
@ NN_retnd
Definition allins.hpp:877
@ NN_fdivp
Definition allins.hpp:312
@ NN_vptestmb
Definition allins.hpp:1668
@ NN_punpckhqdq
Definition allins.hpp:651
@ NN_vfnmsub213ps
Definition allins.hpp:1027
@ NN_vpavgw
Definition allins.hpp:1109
@ NN_vpmaxuq
Definition allins.hpp:1610
@ NN_vstmxcsr
Definition allins.hpp:1249
@ NN_movhpd
Definition allins.hpp:630
@ NN_bndcu
Definition allins.hpp:1322
@ NN_kandnq
Definition allins.hpp:1773
@ NN_kshiftrd
Definition allins.hpp:1801
@ NN_rdfsbase
Definition allins.hpp:910
@ NN_vfmadd132ph
Definition allins.hpp:2133
@ NN_fnstsw
Definition allins.hpp:350
@ NN_vcvtudq2ph
Definition allins.hpp:2126
@ NN_setbe
Definition allins.hpp:183
@ NN_vfmsub231ps
Definition allins.hpp:1001
@ NN_vfnmsubpd
Definition allins.hpp:1314
@ NN_vphaddwd
Definition allins.hpp:1857
@ NN_mulsd
Definition allins.hpp:640
@ NN_vpinsrw
Definition allins.hpp:1156
@ NN_fucompp
Definition allins.hpp:378
@ NN_vrcp14ss
Definition allins.hpp:1683
@ NN_vcmpnlepd
Definition allins.hpp:1357
@ NN_iretw
Definition allins.hpp:61
@ NN_vfmadd231sh
Definition allins.hpp:2189
@ NN_vpcomequd
Definition allins.hpp:1948
@ NN_pextrq
Definition allins.hpp:778
@ NN_subsd
Definition allins.hpp:657
@ NN_pclmulqdq
Definition allins.hpp:872
@ NN_vfcmulcph
Definition allins.hpp:2132
@ NN_vmread
Definition allins.hpp:723
@ NN_vgf2p8mulb
Definition allins.hpp:2058
@ NN_clui
Definition allins.hpp:2219
@ NN_cmp
Definition allins.hpp:39
@ NN_pcmpeqw
Definition allins.hpp:414
@ NN_uiret
Definition allins.hpp:2222
@ NN_vpsrad
Definition allins.hpp:1208
@ NN_vmsplaf
Definition allins.hpp:1282
@ NN_vinserti128
Definition allins.hpp:1043
@ NN_movlpd
Definition allins.hpp:631
@ NN_vcmpngesd
Definition allins.hpp:1426
@ NN_repe
Definition allins.hpp:169
@ NN_vcvtss2sh
Definition allins.hpp:2180
@ NN_setp
Definition allins.hpp:205
@ NN_vpminsq
Definition allins.hpp:1611
@ NN_vpexpandb
Definition allins.hpp:2076
@ NN_vfmadd231ps
Definition allins.hpp:983
@ NN_vcvtpd2udq
Definition allins.hpp:1506
@ NN_vfnmsub132ps
Definition allins.hpp:1023
@ NN_retnq
Definition allins.hpp:878
@ NN_vfmsub132pd
Definition allins.hpp:992
@ NN_vpshufb
Definition allins.hpp:1195
@ NN_vrndscalesh
Definition allins.hpp:2210
@ NN_addsd
Definition allins.hpp:594
@ NN_vfnmadd132sd
Definition allins.hpp:1012
@ NN_pmovsxbd
Definition allins.hpp:792
@ NN_fcos
Definition allins.hpp:375
@ NN_vmwrite
Definition allins.hpp:724
@ NN_vpcomeqb
Definition allins.hpp:1894
@ NN_fcmove
Definition allins.hpp:273
@ NN_vpcmpnltd
Definition allins.hpp:1738
@ NN_vfmsub132ss
Definition allins.hpp:995
@ NN_vpsubsb
Definition allins.hpp:1220
@ NN_push
Definition allins.hpp:155
@ NN_unpcklps
Definition allins.hpp:529
@ NN_loadall
Definition allins.hpp:392
@ NN_vzeroupper
Definition allins.hpp:1265
@ NN_vfnmsub231ph
Definition allins.hpp:2152
@ NN_vpackssdw
Definition allins.hpp:1093
@ NN_vcmpneq_oqps
Definition allins.hpp:1396
@ NN_vrangeps
Definition allins.hpp:1677
@ NN_vbroadcastf32x8
Definition allins.hpp:1496
@ NN_vpcmpeqw
Definition allins.hpp:1121
@ NN_vpmaxsw
Definition allins.hpp:1163
@ NN_jg
Definition allins.hpp:74
@ NN_fcmovnb
Definition allins.hpp:276
@ NN_vpcomneqd
Definition allins.hpp:1913
@ NN_xsaveopt
Definition allins.hpp:907
@ NN_haddpd
Definition allins.hpp:687
@ pdp_sxt
Definition allins.hpp:3389
@ pdp_cmpd
Definition allins.hpp:3439
@ pdp_return
Definition allins.hpp:3449
@ pdp_negd
Definition allins.hpp:3433
@ pdp_bcs
Definition allins.hpp:3414
@ pdp_ccc
Definition allins.hpp:3359
@ pdp_bhi
Definition allins.hpp:3409
@ pdp_clr
Definition allins.hpp:3374
@ pdp_fsub
Definition allins.hpp:3403
@ pdp_ldfps
Definition allins.hpp:3427
@ pdp_dec
Definition allins.hpp:3377
@ pdp_clv
Definition allins.hpp:3356
@ pdp_ash
Definition allins.hpp:3399
@ pdp_asl
Definition allins.hpp:3385
@ pdp_mul
Definition allins.hpp:3397
@ pdp_rtt
Definition allins.hpp:3349
@ pdp_bne
Definition allins.hpp:3367
@ pdp_ashc
Definition allins.hpp:3400
@ pdp_rts
Definition allins.hpp:3352
@ pdp_stcdf
Definition allins.hpp:3444
@ pdp_subd
Definition allins.hpp:3438
@ pdp_trap
Definition allins.hpp:3416
@ pdp_stfps
Definition allins.hpp:3428
@ pdp_addd
Definition allins.hpp:3436
@ pdp_modd
Definition allins.hpp:3435
@ pdp_stst
Definition allins.hpp:3429
@ pdp_clrd
Definition allins.hpp:3430
@ pdp_ldcif
Definition allins.hpp:3446
@ pdp_com
Definition allins.hpp:3375
@ pdp_swab
Definition allins.hpp:3365
@ pdp_sbc
Definition allins.hpp:3380
@ pdp_mfpi
Definition allins.hpp:3387
@ pdp_ldexp
Definition allins.hpp:3445
@ pdp_blos
Definition allins.hpp:3410
@ pdp_mark
Definition allins.hpp:3386
@ pdp_beq
Definition allins.hpp:3368
@ pdp_ldcfd
Definition allins.hpp:3447
@ pdp_fmul
Definition allins.hpp:3404
@ pdp_bcc
Definition allins.hpp:3413
@ pdp_bis
Definition allins.hpp:3394
@ pdp_call
Definition allins.hpp:3448
@ pdp_mtps
Definition allins.hpp:3417
@ pdp_br
Definition allins.hpp:3366
@ pdp_spl
Definition allins.hpp:3353
@ pdp_div
Definition allins.hpp:3398
@ pdp_adc
Definition allins.hpp:3379
@ pdp_mtpd
Definition allins.hpp:3419
@ pdp_tstd
Definition allins.hpp:3431
@ pdp_last
Definition allins.hpp:3452
@ pdp_sev
Definition allins.hpp:3361
@ pdp_halt
Definition allins.hpp:3343
@ pdp_divd
Definition allins.hpp:3441
@ pdp_sub
Definition allins.hpp:3396
@ pdp_neg
Definition allins.hpp:3378
@ pdp_mtpi
Definition allins.hpp:3388
@ pdp_wait
Definition allins.hpp:3344
@ pdp_jmp
Definition allins.hpp:3351
@ pdp_bit
Definition allins.hpp:3392
@ pdp_mov
Definition allins.hpp:3390
@ pdp_ldd
Definition allins.hpp:3437
@ pdp_setf
Definition allins.hpp:3423
@ pdp_bge
Definition allins.hpp:3369
@ pdp_stcdi
Definition allins.hpp:3443
@ pdp_fadd
Definition allins.hpp:3402
@ pdp_seti
Definition allins.hpp:3424
@ pdp_ble
Definition allins.hpp:3372
@ pdp_inc
Definition allins.hpp:3376
@ pdp_add
Definition allins.hpp:3395
@ pdp_setd
Definition allins.hpp:3425
@ pdp_blt
Definition allins.hpp:3370
@ pdp_bgt
Definition allins.hpp:3371
@ pdp_absd
Definition allins.hpp:3432
@ pdp_emt
Definition allins.hpp:3415
@ pdp_bpt
Definition allins.hpp:3346
@ pdp_null
Definition allins.hpp:3341
@ pdp_bvc
Definition allins.hpp:3411
@ pdp_clz
Definition allins.hpp:3357
@ pdp_sec
Definition allins.hpp:3360
@ pdp_mfpt
Definition allins.hpp:3350
@ pdp_scc
Definition allins.hpp:3364
@ pdp_cln
Definition allins.hpp:3358
@ pdp_mfps
Definition allins.hpp:3420
@ pdp_stexp
Definition allins.hpp:3442
@ pdp_bic
Definition allins.hpp:3393
@ pdp_sen
Definition allins.hpp:3363
@ pdp_asr
Definition allins.hpp:3384
@ pdp_cmp
Definition allins.hpp:3391
@ pdp_rti
Definition allins.hpp:3345
@ pdp_jsr
Definition allins.hpp:3373
@ pdp_cfcc
Definition allins.hpp:3422
@ pdp_compcc
Definition allins.hpp:3450
@ pdp_fdiv
Definition allins.hpp:3405
@ pdp_muld
Definition allins.hpp:3434
@ pdp_xor
Definition allins.hpp:3401
@ pdp_mfpd
Definition allins.hpp:3418
@ pdp_setl
Definition allins.hpp:3426
@ pdp_bvs
Definition allins.hpp:3412
@ pdp_reset
Definition allins.hpp:3348
@ pdp_iot
Definition allins.hpp:3347
@ pdp_std
Definition allins.hpp:3440
@ pdp_bpl
Definition allins.hpp:3407
@ pdp_sez
Definition allins.hpp:3362
@ pdp_sob
Definition allins.hpp:3406
@ pdp_nop
Definition allins.hpp:3354
@ pdp_ror
Definition allins.hpp:3382
@ pdp_tst
Definition allins.hpp:3381
@ pdp_bmi
Definition allins.hpp:3408
@ pdp_rol
Definition allins.hpp:3383
@ pdp_clc
Definition allins.hpp:3355
@ m7700_plx
Definition allins.hpp:13436
@ m7700_tbd
Definition allins.hpp:13460
@ m7700_bvs
Definition allins.hpp:13389
@ m7700_rts
Definition allins.hpp:13445
@ m7700_bbc
Definition allins.hpp:13378
@ m7700_pul
Definition allins.hpp:13439
@ m7700_and
Definition allins.hpp:13376
@ m7700_pha
Definition allins.hpp:13423
@ m7700_jsr
Definition allins.hpp:13408
@ m7700_bvc
Definition allins.hpp:13388
@ m7700_null
Definition allins.hpp:13374
@ m7700_bra
Definition allins.hpp:13386
@ m7700_plb
Definition allins.hpp:13432
@ m7700_sbc
Definition allins.hpp:13446
@ m7700_plt
Definition allins.hpp:13435
@ m7700_rtl
Definition allins.hpp:13444
@ m7700_seb
Definition allins.hpp:13447
@ m7700_dey
Definition allins.hpp:13401
@ m7700_sei
Definition allins.hpp:13449
@ m7700_phy
Definition allins.hpp:13430
@ m7700_dex
Definition allins.hpp:13400
@ m7700_wit
Definition allins.hpp:13476
@ m7700_clv
Definition allins.hpp:13395
@ m7700_tya
Definition allins.hpp:13473
@ m7700_lsr
Definition allins.hpp:13414
@ m7700_mpy
Definition allins.hpp:13415
@ m7700_last
Definition allins.hpp:13487
@ m7700_clp
Definition allins.hpp:13394
@ m7700_phx
Definition allins.hpp:13429
@ m7700_clm
Definition allins.hpp:13393
@ m7700_ldt
Definition allins.hpp:13411
@ m7700_eor
Definition allins.hpp:13403
@ m7700_asl
Definition allins.hpp:13377
@ m7700_psh
Definition allins.hpp:13438
@ m7700_clc
Definition allins.hpp:13391
@ m7700_sty
Definition allins.hpp:13455
@ m7700_cli
Definition allins.hpp:13392
@ m7700_sec
Definition allins.hpp:13448
@ m7700_tad
Definition allins.hpp:13456
@ m7700_tas
Definition allins.hpp:13457
@ m7700_pht
Definition allins.hpp:13428
@ m7700_bmi
Definition allins.hpp:13383
@ m7700_tsa
Definition allins.hpp:13466
@ m7700_div
Definition allins.hpp:13402
@ m7700_nop
Definition allins.hpp:13418
@ m7700_bbs
Definition allins.hpp:13379
@ m7700_brk
Definition allins.hpp:13387
@ m7700_ldy
Definition allins.hpp:13413
@ m7700_mvp
Definition allins.hpp:13417
@ m7750_extz
Definition allins.hpp:13484
@ m7750_divs
Definition allins.hpp:13482
@ m7700_lda
Definition allins.hpp:13409
@ m7700_tbs
Definition allins.hpp:13461
@ m7700_plp
Definition allins.hpp:13434
@ m7700_pea
Definition allins.hpp:13420
@ m7700_inx
Definition allins.hpp:13405
@ m7700_sep
Definition allins.hpp:13451
@ m7700_php
Definition allins.hpp:13427
@ m7700_tby
Definition allins.hpp:13463
@ m7700_bpl
Definition allins.hpp:13385
@ m7700_inc
Definition allins.hpp:13404
@ m7700_sem
Definition allins.hpp:13450
@ m7700_pla
Definition allins.hpp:13431
@ m7700_tda
Definition allins.hpp:13464
@ m7700_ldm
Definition allins.hpp:13410
@ m7700_bcc
Definition allins.hpp:13380
@ m7700_txb
Definition allins.hpp:13470
@ m7700_sta
Definition allins.hpp:13452
@ m7700_tax
Definition allins.hpp:13458
@ m7700_ora
Definition allins.hpp:13419
@ m7700_stx
Definition allins.hpp:13454
@ m7700_tsx
Definition allins.hpp:13468
@ m7700_per
Definition allins.hpp:13422
@ m7700_dec
Definition allins.hpp:13399
@ m7700_tay
Definition allins.hpp:13459
@ m7700_tsb
Definition allins.hpp:13467
@ m7700_phg
Definition allins.hpp:13426
@ m7750_exts
Definition allins.hpp:13483
@ m7700_bne
Definition allins.hpp:13384
@ m7750_mpys
Definition allins.hpp:13485
@ m7700_rol
Definition allins.hpp:13441
@ m7700_clb
Definition allins.hpp:13390
@ m7700_cpy
Definition allins.hpp:13398
@ m7700_ply
Definition allins.hpp:13437
@ m7700_stp
Definition allins.hpp:13453
@ m7700_iny
Definition allins.hpp:13406
@ m7700_beq
Definition allins.hpp:13382
@ m7750_asr
Definition allins.hpp:13481
@ m7700_bcs
Definition allins.hpp:13381
@ m7700_tbx
Definition allins.hpp:13462
@ m7700_txs
Definition allins.hpp:13471
@ m7700_jmp
Definition allins.hpp:13407
@ m7700_adc
Definition allins.hpp:13375
@ m7700_pld
Definition allins.hpp:13433
@ m7700_tyx
Definition allins.hpp:13475
@ m7700_mvn
Definition allins.hpp:13416
@ m7700_tdb
Definition allins.hpp:13465
@ m7700_phd
Definition allins.hpp:13425
@ m7700_ror
Definition allins.hpp:13442
@ m7700_cpx
Definition allins.hpp:13397
@ m7700_xab
Definition allins.hpp:13477
@ m7700_phb
Definition allins.hpp:13424
@ m7700_ldx
Definition allins.hpp:13412
@ m7700_rti
Definition allins.hpp:13443
@ m7700_pei
Definition allins.hpp:13421
@ m7700_txa
Definition allins.hpp:13469
@ m7700_tyb
Definition allins.hpp:13474
@ m7700_txy
Definition allins.hpp:13472
@ m7700_cmp
Definition allins.hpp:13396
@ m7700_rla
Definition allins.hpp:13440
@ DSP56_dor_f
Definition allins.hpp:9280
@ DSP56_bfset
Definition allins.hpp:9248
@ DSP56_jsr
Definition allins.hpp:9298
@ DSP56_chkaau
Definition allins.hpp:9264
@ DSP56_extractu
Definition allins.hpp:9284
@ DSP56_punlockr
Definition allins.hpp:9338
@ DSP56_subl
Definition allins.hpp:9350
@ DSP56_rol
Definition allins.hpp:9343
@ DSP56_mac
Definition allins.hpp:9305
@ DSP56_movec
Definition allins.hpp:9314
@ DSP56_jcc
Definition allins.hpp:9292
@ DSP56_andi
Definition allins.hpp:9240
@ DSP56_movem
Definition allins.hpp:9316
@ DSP56_pflushun
Definition allins.hpp:9333
@ DSP56_bset
Definition allins.hpp:9260
@ DSP56_swi
Definition allins.hpp:9364
@ DSP56_debug
Definition allins.hpp:9271
@ DSP56_bscc
Definition allins.hpp:9258
@ DSP56_inc24
Definition allins.hpp:9290
@ DSP56_maci
Definition allins.hpp:9306
@ DSP56_rti
Definition allins.hpp:9345
@ DSP56_pflush
Definition allins.hpp:9332
@ DSP56_sbc
Definition allins.hpp:9347
@ DSP56_imac
Definition allins.hpp:9287
@ DSP56_btst
Definition allins.hpp:9263
@ DSP56_rts
Definition allins.hpp:9346
@ DSP56_norm
Definition allins.hpp:9327
@ DSP56_brset
Definition allins.hpp:9257
@ DSP56_bcc
Definition allins.hpp:9251
@ DSP56_not
Definition allins.hpp:9329
@ DSP56_cmpu
Definition allins.hpp:9270
@ DSP56_or
Definition allins.hpp:9330
@ DSP56_mac_s_u
Definition allins.hpp:9307
@ DSP56_tfr3
Definition allins.hpp:9356
@ DSP56_dec
Definition allins.hpp:9273
@ DSP56_macr
Definition allins.hpp:9308
@ DSP56_plock
Definition allins.hpp:9335
@ DSP56_addr
Definition allins.hpp:9238
@ DSP56_dec24
Definition allins.hpp:9274
@ DSP56_cmpm
Definition allins.hpp:9269
@ DSP56_ror
Definition allins.hpp:9344
@ DSP56_movep
Definition allins.hpp:9317
@ DSP56_mpyri
Definition allins.hpp:9323
@ DSP56_swap
Definition allins.hpp:9352
@ DSP56_cmp
Definition allins.hpp:9268
@ DSP56_sub
Definition allins.hpp:9349
@ DSP56_bftstl
Definition allins.hpp:9250
@ DSP56_maxm
Definition allins.hpp:9311
@ DSP56_bchg
Definition allins.hpp:9252
@ DSP56_wait
Definition allins.hpp:9362
@ DSP56_bfchg
Definition allins.hpp:9246
@ DSP56_clr24
Definition allins.hpp:9267
@ DSP56_bsr
Definition allins.hpp:9261
@ DSP56_bclr
Definition allins.hpp:9253
@ DSP56_reset
Definition allins.hpp:9341
@ DSP56_lua
Definition allins.hpp:9303
@ DSP56_rep
Definition allins.hpp:9339
@ DSP56_jmp
Definition allins.hpp:9294
@ DSP56_lsl
Definition allins.hpp:9301
@ DSP56_mpyi
Definition allins.hpp:9320
@ DSP56_asl4
Definition allins.hpp:9242
@ DSP56_tfr2
Definition allins.hpp:9355
@ DSP56_zero
Definition allins.hpp:9363
@ DSP56_inc
Definition allins.hpp:9289
@ DSP56_stop
Definition allins.hpp:9348
@ DSP56_clr
Definition allins.hpp:9266
@ DSP56_max
Definition allins.hpp:9310
@ DSP56_lra
Definition allins.hpp:9300
@ DSP56_bsclr
Definition allins.hpp:9259
@ DSP56_rnd
Definition allins.hpp:9342
@ DSP56_vsl
Definition allins.hpp:9361
@ DSP56_null
Definition allins.hpp:9232
@ DSP56_mpyr
Definition allins.hpp:9322
@ DSP56_ill
Definition allins.hpp:9286
@ DSP56_extract
Definition allins.hpp:9283
@ DSP56_tst
Definition allins.hpp:9359
@ DSP56_nop
Definition allins.hpp:9326
@ DSP56_lea
Definition allins.hpp:9304
@ DSP56_bfclr
Definition allins.hpp:9247
@ DSP56_div
Definition allins.hpp:9275
@ DSP56_jclr
Definition allins.hpp:9293
@ DSP56_mpy
Definition allins.hpp:9319
@ DSP56_adc
Definition allins.hpp:9235
@ DSP56_neg
Definition allins.hpp:9324
@ DSP56_brclr
Definition allins.hpp:9255
@ DSP56_brkcc
Definition allins.hpp:9256
@ DSP56_dor
Definition allins.hpp:9279
@ DSP56_debugcc
Definition allins.hpp:9272
@ DSP56_tcc
Definition allins.hpp:9353
@ DSP56_repcc
Definition allins.hpp:9340
@ DSP56_add
Definition allins.hpp:9236
@ DSP56_do_f
Definition allins.hpp:9278
@ DSP56_trapcc
Definition allins.hpp:9358
@ DSP56_asl
Definition allins.hpp:9241
@ DSP56_move
Definition allins.hpp:9313
@ DSP56_tst2
Definition allins.hpp:9360
@ DSP56_asr4
Definition allins.hpp:9244
@ DSP56_negc
Definition allins.hpp:9325
@ DSP56_clb
Definition allins.hpp:9265
@ DSP56_abs
Definition allins.hpp:9234
@ DSP56_trap
Definition allins.hpp:9357
@ DSP56_dmac
Definition allins.hpp:9276
@ DSP56_last
Definition allins.hpp:9366
@ DSP56_and
Definition allins.hpp:9239
@ DSP56_merge
Definition allins.hpp:9312
@ DSP56_jscc
Definition allins.hpp:9295
@ DSP56_lsr
Definition allins.hpp:9302
@ DSP56_jsclr
Definition allins.hpp:9296
@ DSP56_moves
Definition allins.hpp:9318
@ DSP56_impy
Definition allins.hpp:9288
@ DSP56_punlock
Definition allins.hpp:9337
@ DSP56_pfree
Definition allins.hpp:9334
@ DSP56_pmov
Definition allins.hpp:9365
@ DSP56_do
Definition allins.hpp:9277
@ DSP56_enddo
Definition allins.hpp:9281
@ DSP56_normf
Definition allins.hpp:9328
@ DSP56_insert
Definition allins.hpp:9291
@ DSP56_eor
Definition allins.hpp:9282
@ DSP56_mpy_s_u
Definition allins.hpp:9321
@ DSP56_jset
Definition allins.hpp:9297
@ DSP56_subr
Definition allins.hpp:9351
@ DSP56_macri
Definition allins.hpp:9309
@ DSP56_bra
Definition allins.hpp:9254
@ DSP56_asr16
Definition allins.hpp:9245
@ DSP56_jsset
Definition allins.hpp:9299
@ DSP56_ext
Definition allins.hpp:9285
@ DSP56_tfr
Definition allins.hpp:9354
@ DSP56_ori
Definition allins.hpp:9331
@ DSP56_plockr
Definition allins.hpp:9336
@ DSP56_asr
Definition allins.hpp:9243
@ DSP56_bsset
Definition allins.hpp:9262
@ DSP56_addl
Definition allins.hpp:9237
@ DSP56_bftsth
Definition allins.hpp:9249
@ DSP56_movei
Definition allins.hpp:9315
PMNum
Definition allins.hpp:9511
@ PM96_Update
Definition allins.hpp:9514
@ PM96_XY
Definition allins.hpp:9518
@ PM96_NoMove
Definition allins.hpp:9512
@ PM96_XYMem
Definition allins.hpp:9515
@ PM96_IFcc
Definition allins.hpp:9520
@ PM96_XYmemR
Definition allins.hpp:9516
@ PM96_R2R
Definition allins.hpp:9513
@ PM96_Long
Definition allins.hpp:9517
@ DALVIK_XOR_LONG_2ADDR
Definition allins.hpp:20852
@ DALVIK_REM_DOUBLE
Definition allins.hpp:20831
@ DALVIK_INT_TO_BYTE
Definition allins.hpp:20794
@ DALVIK_CMPL_DOUBLE
Definition allins.hpp:20702
@ DALVIK_MOVE_WIDE_FROM16
Definition allins.hpp:20650
@ DALVIK_AGET_CHAR
Definition allins.hpp:20724
@ DALVIK_INVOKE_POLYMORPHIC
Definition allins.hpp:20930
@ DALVIK_THROW
Definition allins.hpp:20693
@ DALVIK_REM_INT
Definition allins.hpp:20802
@ DALVIK_XOR_LONG
Definition allins.hpp:20817
@ DALVIK_OR_INT_2ADDR
Definition allins.hpp:20839
@ DALVIK_APUT
Definition allins.hpp:20726
@ DALVIK_MUL_INT_LIT8
Definition allins.hpp:20879
@ DALVIK_IGET
Definition allins.hpp:20734
@ DALVIK_INVOKE_CUSTOM
Definition allins.hpp:20932
@ DALVIK_IGET_BOOLEAN
Definition allins.hpp:20737
@ DALVIK_SGET
Definition allins.hpp:20749
@ DALVIK_APUT_CHAR
Definition allins.hpp:20731
@ DALVIK_USHR_INT_2ADDR
Definition allins.hpp:20843
@ DALVIK_IGET_OBJECT_VOLATILE
Definition allins.hpp:20893
@ DALVIK_MUL_LONG_2ADDR
Definition allins.hpp:20847
@ DALVIK_RETURN_VOID
Definition allins.hpp:20661
@ DALVIK_FILLED_NEW_ARRAY_RANGE
Definition allins.hpp:20690
@ DALVIK_RETURN_WIDE
Definition allins.hpp:20663
@ DALVIK_ADD_LONG
Definition allins.hpp:20810
@ DALVIK_ADD_FLOAT
Definition allins.hpp:20822
@ DALVIK_NEW_ARRAY
Definition allins.hpp:20687
@ DALVIK_RETURN
Definition allins.hpp:20662
@ DALVIK_DIV_INT_2ADDR
Definition allins.hpp:20836
@ DALVIK_LONG_TO_FLOAT
Definition allins.hpp:20786
@ DALVIK_REM_LONG
Definition allins.hpp:20814
@ DALVIK_OR_INT
Definition allins.hpp:20804
@ DALVIK_IGET_VOLATILE
Definition allins.hpp:20889
@ DALVIK_SGET_OBJECT
Definition allins.hpp:20751
@ DALVIK_MOVE_OBJECT_FROM16
Definition allins.hpp:20653
@ DALVIK_SPUT
Definition allins.hpp:20756
@ DALVIK_CMPG_FLOAT
Definition allins.hpp:20701
@ DALVIK_ADD_DOUBLE_2ADDR
Definition allins.hpp:20862
@ DALVIK_SUB_FLOAT_2ADDR
Definition allins.hpp:20858
@ DALVIK_IF_LE
Definition allins.hpp:20711
@ DALVIK_SHL_INT
Definition allins.hpp:20806
@ DALVIK_REM_INT_LIT16
Definition allins.hpp:20872
@ DALVIK_PACKED_SWITCH
Definition allins.hpp:20697
@ DALVIK_OR_INT_LIT8
Definition allins.hpp:20883
@ DALVIK_INVOKE_SUPER_RANGE
Definition allins.hpp:20771
@ DALVIK_SUB_DOUBLE
Definition allins.hpp:20828
@ DALVIK_AND_INT_LIT16
Definition allins.hpp:20873
@ DALVIK_AND_INT
Definition allins.hpp:20803
@ DALVIK_SGET_BOOLEAN
Definition allins.hpp:20752
@ DALVIK_CMPL_FLOAT
Definition allins.hpp:20700
@ DALVIK_REM_FLOAT_2ADDR
Definition allins.hpp:20861
@ DALVIK_APUT_BOOLEAN
Definition allins.hpp:20729
@ DALVIK_INVOKE_INTERFACE
Definition allins.hpp:20768
@ DALVIK_CONST_WIDE
Definition allins.hpp:20672
@ DALVIK_USHR_LONG
Definition allins.hpp:20820
@ DALVIK_MUL_INT_LIT16
Definition allins.hpp:20870
@ DALVIK_INT_TO_FLOAT
Definition allins.hpp:20783
@ DALVIK_THROW_VERIFICATION_ERROR
Definition allins.hpp:20907
@ DALVIK_REM_FLOAT
Definition allins.hpp:20826
@ DALVIK_REM_LONG_2ADDR
Definition allins.hpp:20849
@ DALVIK_MONITOR_ENTER
Definition allins.hpp:20678
@ DALVIK_SPUT_VOLATILE
Definition allins.hpp:20892
@ DALVIK_IGET_WIDE_QUICK
Definition allins.hpp:20915
@ DALVIK_LONG_TO_DOUBLE
Definition allins.hpp:20787
@ DALVIK_NOP
Definition allins.hpp:20644
@ DALVIK_IPUT_CHAR
Definition allins.hpp:20746
@ DALVIK_SHR_LONG_2ADDR
Definition allins.hpp:20854
@ DALVIK_SPUT_CHAR
Definition allins.hpp:20761
@ DALVIK_SPUT_SHORT
Definition allins.hpp:20762
@ DALVIK_NEG_FLOAT
Definition allins.hpp:20780
@ DALVIK_REM_DOUBLE_2ADDR
Definition allins.hpp:20866
@ DALVIK_ADD_FLOAT_2ADDR
Definition allins.hpp:20857
@ DALVIK_INVOKE_SUPER
Definition allins.hpp:20765
@ DALVIK_INVOKE_SUPER_QUICK_RANGE
Definition allins.hpp:20924
@ DALVIK_SHR_INT
Definition allins.hpp:20807
@ DALVIK_IF_GT
Definition allins.hpp:20710
@ DALVIK_SGET_CHAR
Definition allins.hpp:20754
@ DALVIK_CONST_16
Definition allins.hpp:20667
@ DALVIK_DIV_INT_LIT8
Definition allins.hpp:20880
@ DALVIK_AGET
Definition allins.hpp:20719
@ DALVIK_MUL_FLOAT_2ADDR
Definition allins.hpp:20859
@ DALVIK_CONST_METHOD_HANDLE
Definition allins.hpp:20936
@ DALVIK_MOVE_RESULT
Definition allins.hpp:20656
@ DALVIK_XOR_INT_LIT16
Definition allins.hpp:20875
@ DALVIK_SUB_LONG
Definition allins.hpp:20811
@ DALVIK_SGET_OBJECT_VOLATILE
Definition allins.hpp:20926
@ DALVIK_SHL_INT_2ADDR
Definition allins.hpp:20841
@ DALVIK_RSUB_INT
Definition allins.hpp:20869
@ DALVIK_INVOKE_VIRTUAL_RANGE
Definition allins.hpp:20770
@ DALVIK_NOT_LONG
Definition allins.hpp:20779
@ DALVIK_MUL_LONG
Definition allins.hpp:20812
@ DALVIK_CONST_STRING
Definition allins.hpp:20674
@ DALVIK_IPUT_WIDE_QUICK
Definition allins.hpp:20918
@ DALVIK_MOVE_WIDE_16
Definition allins.hpp:20651
@ DALVIK_ARRAY_LENGTH
Definition allins.hpp:20684
@ DALVIK_SUB_DOUBLE_2ADDR
Definition allins.hpp:20863
@ DALVIK_OR_LONG_2ADDR
Definition allins.hpp:20851
@ DALVIK_INVOKE_DIRECT_EMPTY
Definition allins.hpp:20912
@ DALVIK_SHL_INT_LIT8
Definition allins.hpp:20885
@ DALVIK_MOVE
Definition allins.hpp:20646
@ DALVIK_SPARSE_SWITCH
Definition allins.hpp:20698
@ DALVIK_IGET_QUICK
Definition allins.hpp:20914
@ DALVIK_SUB_INT_2ADDR
Definition allins.hpp:20834
@ DALVIK_IGET_SHORT
Definition allins.hpp:20740
@ DALVIK_APUT_SHORT
Definition allins.hpp:20732
@ DALVIK_IF_GEZ
Definition allins.hpp:20715
@ DALVIK_IGET_OBJECT_QUICK
Definition allins.hpp:20916
@ DALVIK_MOVE_FROM16
Definition allins.hpp:20647
@ DALVIK_BREAKPOINT
Definition allins.hpp:20905
@ DALVIK_ADD_LONG_2ADDR
Definition allins.hpp:20845
@ DALVIK_LAST
Definition allins.hpp:20939
@ DALVIK_IGET_WIDE_VOLATILE
Definition allins.hpp:20895
@ DALVIK_AGET_SHORT
Definition allins.hpp:20725
@ DALVIK_CONST_4
Definition allins.hpp:20666
@ DALVIK_GOTO_32
Definition allins.hpp:20696
@ DALVIK_CONST_CLASS
Definition allins.hpp:20676
@ DALVIK_SGET_WIDE
Definition allins.hpp:20750
@ DALVIK_IF_LTZ
Definition allins.hpp:20714
@ DALVIK_INT_TO_SHORT
Definition allins.hpp:20796
@ DALVIK_INVOKE_INTERFACE_RANGE
Definition allins.hpp:20774
@ DALVIK_SUB_INT
Definition allins.hpp:20799
@ DALVIK_MOVE_16
Definition allins.hpp:20648
@ DALVIK_XOR_INT
Definition allins.hpp:20805
@ DALVIK_DIV_LONG_2ADDR
Definition allins.hpp:20848
@ DALVIK_USHR_INT_LIT8
Definition allins.hpp:20887
@ DALVIK_DOUBLE_TO_LONG
Definition allins.hpp:20792
@ DALVIK_DIV_DOUBLE_2ADDR
Definition allins.hpp:20865
@ DALVIK_CONST_HIGH16
Definition allins.hpp:20669
@ DALVIK_IF_GTZ
Definition allins.hpp:20716
@ DALVIK_XOR_INT_2ADDR
Definition allins.hpp:20840
@ DALVIK_IPUT_WIDE
Definition allins.hpp:20742
@ DALVIK_INVOKE_VIRTUAL
Definition allins.hpp:20764
@ DALVIK_SPUT_OBJECT_VOLATILE
Definition allins.hpp:20927
@ DALVIK_RSUB_INT_LIT8
Definition allins.hpp:20878
@ DALVIK_INVOKE_DIRECT_RANGE
Definition allins.hpp:20772
@ DALVIK_IPUT_VOLATILE
Definition allins.hpp:20890
@ DALVIK_SUB_LONG_2ADDR
Definition allins.hpp:20846
@ DALVIK_MONITOR_EXIT
Definition allins.hpp:20679
@ DALVIK_SGET_BYTE
Definition allins.hpp:20753
@ DALVIK_AND_INT_LIT8
Definition allins.hpp:20882
@ DALVIK_MOVE_RESULT_WIDE
Definition allins.hpp:20657
@ DALVIK_IPUT
Definition allins.hpp:20741
@ DALVIK_DIV_LONG
Definition allins.hpp:20813
@ DALVIK_SGET_VOLATILE
Definition allins.hpp:20891
@ DALVIK_MUL_DOUBLE
Definition allins.hpp:20829
@ DALVIK_DIV_DOUBLE
Definition allins.hpp:20830
@ DALVIK_SUB_FLOAT
Definition allins.hpp:20823
@ DALVIK_AGET_BOOLEAN
Definition allins.hpp:20722
@ DALVIK_SHR_INT_2ADDR
Definition allins.hpp:20842
@ DALVIK_IPUT_WIDE_VOLATILE
Definition allins.hpp:20896
@ DALVIK_CMPG_DOUBLE
Definition allins.hpp:20703
@ DALVIK_FILL_ARRAY_DATA
Definition allins.hpp:20691
@ DALVIK_IPUT_QUICK
Definition allins.hpp:20917
@ DALVIK_DIV_FLOAT_2ADDR
Definition allins.hpp:20860
@ DALVIK_IPUT_OBJECT
Definition allins.hpp:20743
@ DALVIK_CONST_METHOD_TYPE
Definition allins.hpp:20937
@ DALVIK_SPUT_OBJECT
Definition allins.hpp:20758
@ DALVIK_NEG_LONG
Definition allins.hpp:20778
@ DALVIK_NEG_INT
Definition allins.hpp:20776
@ DALVIK_SHR_INT_LIT8
Definition allins.hpp:20886
@ DALVIK_IPUT_BOOLEAN
Definition allins.hpp:20744
@ DALVIK_IGET_OBJECT
Definition allins.hpp:20736
@ DALVIK_MUL_DOUBLE_2ADDR
Definition allins.hpp:20864
@ DALVIK_CHECK_CAST
Definition allins.hpp:20681
@ DALVIK_INVOKE_STATIC_RANGE
Definition allins.hpp:20773
@ DALVIK_IPUT_OBJECT_QUICK
Definition allins.hpp:20919
@ DALVIK_USHR_INT
Definition allins.hpp:20808
@ DALVIK_LONG_TO_INT
Definition allins.hpp:20785
@ DALVIK_IGET_BYTE
Definition allins.hpp:20738
@ DALVIK_IF_LEZ
Definition allins.hpp:20717
@ DALVIK_FLOAT_TO_DOUBLE
Definition allins.hpp:20790
@ DALVIK_CONST_WIDE_HIGH16
Definition allins.hpp:20673
@ DALVIK_FLOAT_TO_INT
Definition allins.hpp:20788
@ DALVIK_ADD_INT_2ADDR
Definition allins.hpp:20833
@ DALVIK_CMP_LONG
Definition allins.hpp:20704
@ DALVIK_IPUT_OBJECT_VOLATILE
Definition allins.hpp:20925
@ DALVIK_SPUT_BOOLEAN
Definition allins.hpp:20759
@ DALVIK_MUL_INT
Definition allins.hpp:20800
@ DALVIK_NEW_INSTANCE
Definition allins.hpp:20686
@ DALVIK_INSTANCE_OF
Definition allins.hpp:20682
@ DALVIK_SGET_SHORT
Definition allins.hpp:20755
@ DALVIK_INT_TO_CHAR
Definition allins.hpp:20795
@ DALVIK_DOUBLE_TO_FLOAT
Definition allins.hpp:20793
@ DALVIK_CONST
Definition allins.hpp:20668
@ DALVIK_RETURN_OBJECT
Definition allins.hpp:20664
@ DALVIK_CONST_STRING_JUMBO
Definition allins.hpp:20675
@ DALVIK_MOVE_EXCEPTION
Definition allins.hpp:20659
@ DALVIK_XOR_INT_LIT8
Definition allins.hpp:20884
@ DALVIK_IF_EQ
Definition allins.hpp:20706
@ DALVIK_ADD_INT
Definition allins.hpp:20798
@ DALVIK_MUL_FLOAT
Definition allins.hpp:20824
@ DALVIK_FLOAT_TO_LONG
Definition allins.hpp:20789
@ DALVIK_INVOKE_DIRECT
Definition allins.hpp:20766
@ DALVIK_AND_INT_2ADDR
Definition allins.hpp:20838
@ DALVIK_IF_NEZ
Definition allins.hpp:20713
@ DALVIK_GOTO_16
Definition allins.hpp:20695
@ DALVIK_INT_TO_DOUBLE
Definition allins.hpp:20784
@ DALVIK_DOUBLE_TO_INT
Definition allins.hpp:20791
@ DALVIK_INVOKE_VIRTUAL_QUICK
Definition allins.hpp:20921
@ DALVIK_IF_EQZ
Definition allins.hpp:20712
@ DALVIK_APUT_BYTE
Definition allins.hpp:20730
@ DALVIK_INVOKE_VIRTUAL_QUICK_RANGE
Definition allins.hpp:20922
@ DALVIK_APUT_WIDE
Definition allins.hpp:20727
@ DALVIK_IF_GE
Definition allins.hpp:20709
@ DALVIK_IF_LT
Definition allins.hpp:20708
@ DALVIK_OR_INT_LIT16
Definition allins.hpp:20874
@ DALVIK_NOT_INT
Definition allins.hpp:20777
@ DALVIK_GOTO
Definition allins.hpp:20694
@ DALVIK_ADD_INT_LIT16
Definition allins.hpp:20868
@ DALVIK_IPUT_SHORT
Definition allins.hpp:20747
@ DALVIK_ADD_INT_LIT8
Definition allins.hpp:20877
@ DALVIK_NEG_DOUBLE
Definition allins.hpp:20781
@ DALVIK_RETURN_VOID_BARRIER
Definition allins.hpp:20913
@ DALVIK_AND_LONG
Definition allins.hpp:20815
@ DALVIK_AGET_WIDE
Definition allins.hpp:20720
@ DALVIK_REM_INT_LIT8
Definition allins.hpp:20881
@ DALVIK_SGET_WIDE_VOLATILE
Definition allins.hpp:20897
@ DALVIK_AGET_OBJECT
Definition allins.hpp:20721
@ DALVIK_EXECUTE_INLINE
Definition allins.hpp:20909
@ DALVIK_UNUSED
Definition allins.hpp:20643
@ DALVIK_DIV_FLOAT
Definition allins.hpp:20825
@ DALVIK_USHR_LONG_2ADDR
Definition allins.hpp:20855
@ DALVIK_SPUT_BYTE
Definition allins.hpp:20760
@ DALVIK_FILLED_NEW_ARRAY
Definition allins.hpp:20689
@ DALVIK_SHL_LONG_2ADDR
Definition allins.hpp:20853
@ DALVIK_AND_LONG_2ADDR
Definition allins.hpp:20850
@ DALVIK_IF_NE
Definition allins.hpp:20707
@ DALVIK_SHR_LONG
Definition allins.hpp:20819
@ DALVIK_EXECUTE_INLINE_RANGE
Definition allins.hpp:20910
@ DALVIK_CONST_WIDE_16
Definition allins.hpp:20670
@ DALVIK_SHL_LONG
Definition allins.hpp:20818
@ DALVIK_ADD_DOUBLE
Definition allins.hpp:20827
@ DALVIK_IGET_CHAR
Definition allins.hpp:20739
@ DALVIK_OR_LONG
Definition allins.hpp:20816
@ DALVIK_INVOKE_SUPER_QUICK
Definition allins.hpp:20923
@ DALVIK_CONST_WIDE_32
Definition allins.hpp:20671
@ DALVIK_INVOKE_POLYMORPHIC_RANGE
Definition allins.hpp:20931
@ DALVIK_MOVE_OBJECT
Definition allins.hpp:20652
@ DALVIK_INT_TO_LONG
Definition allins.hpp:20782
@ DALVIK_DIV_INT
Definition allins.hpp:20801
@ DALVIK_REM_INT_2ADDR
Definition allins.hpp:20837
@ DALVIK_IPUT_BYTE
Definition allins.hpp:20745
@ DALVIK_INVOKE_STATIC
Definition allins.hpp:20767
@ DALVIK_IGET_WIDE
Definition allins.hpp:20735
@ DALVIK_MOVE_RESULT_OBJECT
Definition allins.hpp:20658
@ DALVIK_APUT_OBJECT
Definition allins.hpp:20728
@ DALVIK_AGET_BYTE
Definition allins.hpp:20723
@ DALVIK_MOVE_WIDE
Definition allins.hpp:20649
@ DALVIK_DIV_INT_LIT16
Definition allins.hpp:20871
@ DALVIK_MOVE_OBJECT_16
Definition allins.hpp:20654
@ DALVIK_SPUT_WIDE_VOLATILE
Definition allins.hpp:20898
@ DALVIK_SPUT_WIDE
Definition allins.hpp:20757
@ DALVIK_MUL_INT_2ADDR
Definition allins.hpp:20835
@ DALVIK_INVOKE_CUSTOM_RANGE
Definition allins.hpp:20933
@ I960_subig
Definition allins.hpp:11465
@ I960_send
Definition allins.hpp:11448
@ I960_spanbit
Definition allins.hpp:11389
@ I960_cmpible
Definition allins.hpp:11319
@ I960_scanbit
Definition allins.hpp:11381
@ I960_testge
Definition allins.hpp:11405
@ I960_subio
Definition allins.hpp:11495
@ I960_receive
Definition allins.hpp:11443
@ I960_setbit
Definition allins.hpp:11383
@ I960_fmark
Definition allins.hpp:11347
@ I960_shro
Definition allins.hpp:11388
@ I960_fcosrl
Definition allins.hpp:11511
@ I960_mov
Definition allins.hpp:11363
@ I960_not
Definition allins.hpp:11371
@ I960_addi
Definition allins.hpp:11284
@ I960_xor
Definition allins.hpp:11411
@ I960_intctl
Definition allins.hpp:11444
@ I960_dcinva
Definition allins.hpp:11421
@ I960_sell
Definition allins.hpp:11481
@ I960_synld
Definition allins.hpp:11437
@ I960_fmovre
Definition allins.hpp:11531
@ I960_callx
Definition allins.hpp:11307
@ I960_cmpinco
Definition allins.hpp:11322
@ I960_selno
Definition allins.hpp:11461
@ I960_atadd
Definition allins.hpp:11289
@ I960_dsubc
Definition allins.hpp:11440
@ I960_alterbit
Definition allins.hpp:11286
@ I960_selne
Definition allins.hpp:11486
@ I960_addie
Definition allins.hpp:11468
@ I960_addole
Definition allins.hpp:11487
@ I960_bo
Definition allins.hpp:11303
@ I960_bge
Definition allins.hpp:11299
@ I960_atmod
Definition allins.hpp:11290
@ I960_addine
Definition allins.hpp:11483
@ I960_cmpibo
Definition allins.hpp:11320
@ I960_flogepr
Definition allins.hpp:11526
@ I960_modify
Definition allins.hpp:11360
@ I960_ftanr
Definition allins.hpp:11547
@ I960_dcctl
Definition allins.hpp:11446
@ I960_fcvtril
Definition allins.hpp:11517
@ I960_subi
Definition allins.hpp:11399
@ I960_last
Definition allins.hpp:11550
@ I960_modac
Definition allins.hpp:11358
@ I960_ftanrl
Definition allins.hpp:11548
@ I960_shrdi
Definition allins.hpp:11386
@ I960_testne
Definition allins.hpp:11407
@ I960_synmov
Definition allins.hpp:11429
@ I960_icctl
Definition allins.hpp:11445
@ I960_cmpibe
Definition allins.hpp:11315
@ I960_fatanr
Definition allins.hpp:11502
@ I960_shli
Definition allins.hpp:11384
@ I960_fill
Definition allins.hpp:11438
@ I960_addog
Definition allins.hpp:11462
@ I960_subile
Definition allins.hpp:11490
@ I960_fcvtir
Definition allins.hpp:11515
@ I960_fmovr
Definition allins.hpp:11530
@ I960_ldob
Definition allins.hpp:11353
@ I960_ediv
Definition allins.hpp:11334
@ I960_ldtime
Definition allins.hpp:11456
@ I960_halt
Definition allins.hpp:11447
@ I960_faultle
Definition allins.hpp:11344
@ I960_fsqrtrl
Definition allins.hpp:11544
@ I960_fscaler
Definition allins.hpp:11539
@ I960_subine
Definition allins.hpp:11485
@ I960_testg
Definition allins.hpp:11403
@ I960_mulo
Definition allins.hpp:11368
@ I960_ld
Definition allins.hpp:11348
@ I960_stos
Definition allins.hpp:11395
@ I960_suboge
Definition allins.hpp:11474
@ I960_fsinrl
Definition allins.hpp:11542
@ I960_or
Definition allins.hpp:11375
@ I960_subil
Definition allins.hpp:11480
@ I960_cmpob
Definition allins.hpp:11422
@ I960_sysctl
Definition allins.hpp:11416
@ I960_suboo
Definition allins.hpp:11494
@ I960_cmpi
Definition allins.hpp:11312
@ I960_cmpobne
Definition allins.hpp:11328
@ I960_shri
Definition allins.hpp:11387
@ I960_inspacc
Definition allins.hpp:11435
@ I960_testo
Definition allins.hpp:11409
@ I960_ornot
Definition allins.hpp:11376
@ I960_fremr
Definition allins.hpp:11535
@ I960_bx
Definition allins.hpp:11304
@ I960_syncf
Definition allins.hpp:11401
@ I960_st
Definition allins.hpp:11390
@ I960_addc
Definition allins.hpp:11283
@ I960_synmovl
Definition allins.hpp:11430
@ I960_sele
Definition allins.hpp:11471
@ I960_fcpyrsre
Definition allins.hpp:11512
@ I960_addoge
Definition allins.hpp:11472
@ I960_notand
Definition allins.hpp:11372
@ I960_bl
Definition allins.hpp:11300
@ I960_b
Definition allins.hpp:11291
@ I960_addono
Definition allins.hpp:11457
@ I960_addoe
Definition allins.hpp:11467
@ I960_bg
Definition allins.hpp:11297
@ I960_ldis
Definition allins.hpp:11351
@ I960_cmpos
Definition allins.hpp:11424
@ I960_selge
Definition allins.hpp:11476
@ I960_fdivrl
Definition allins.hpp:11521
@ I960_subige
Definition allins.hpp:11475
@ I960_fcvtri
Definition allins.hpp:11516
@ I960_cmpoble
Definition allins.hpp:11329
@ I960_flogeprl
Definition allins.hpp:11527
@ I960_cmpdeci
Definition allins.hpp:11310
@ I960_flushreg
Definition allins.hpp:11346
@ I960_fcvtzri
Definition allins.hpp:11518
@ I960_shlo
Definition allins.hpp:11385
@ I960_teste
Definition allins.hpp:11404
@ I960_faultl
Definition allins.hpp:11342
@ I960_ret
Definition allins.hpp:11379
@ I960_cmpinci
Definition allins.hpp:11321
@ I960_fsinr
Definition allins.hpp:11541
@ I960_bbs
Definition allins.hpp:11295
@ I960_concmpo
Definition allins.hpp:11331
@ I960_calls
Definition allins.hpp:11306
@ I960_fp_last
Definition allins.hpp:11548
@ I960_ble
Definition allins.hpp:11302
@ I960_faultno
Definition allins.hpp:11338
@ I960_selo
Definition allins.hpp:11496
@ I960_cmpibl
Definition allins.hpp:11317
@ I960_synmovq
Definition allins.hpp:11431
@ I960_addio
Definition allins.hpp:11493
@ I960_dmovt
Definition allins.hpp:11441
@ I960_rotate
Definition allins.hpp:11380
@ I960_intdis
Definition allins.hpp:11427
@ I960_inten
Definition allins.hpp:11428
@ I960_remo
Definition allins.hpp:11378
@ I960_stib
Definition allins.hpp:11391
@ I960_subole
Definition allins.hpp:11489
@ I960_condrec
Definition allins.hpp:11442
@ I960_fexprl
Definition allins.hpp:11523
@ I960_nand
Definition allins.hpp:11369
@ I960_suboe
Definition allins.hpp:11469
@ I960_cmpibge
Definition allins.hpp:11316
@ I960_clrbit
Definition allins.hpp:11309
@ I960_divo
Definition allins.hpp:11333
@ I960_fsubrl
Definition allins.hpp:11546
@ I960_flogrl
Definition allins.hpp:11529
@ I960_faultge
Definition allins.hpp:11341
@ I960_bswap
Definition allins.hpp:11426
@ I960_nor
Definition allins.hpp:11370
@ I960_balx
Definition allins.hpp:11293
@ I960_fcvtilr
Definition allins.hpp:11514
@ I960_movt
Definition allins.hpp:11366
@ I960_flogbnrl
Definition allins.hpp:11525
@ I960_fdivr
Definition allins.hpp:11520
@ I960_ldib
Definition allins.hpp:11350
@ I960_cmpibne
Definition allins.hpp:11318
@ I960_cmpo
Definition allins.hpp:11323
@ I960_notbit
Definition allins.hpp:11373
@ I960_addino
Definition allins.hpp:11458
@ I960_fsubr
Definition allins.hpp:11545
@ I960_fp_first
Definition allins.hpp:11500
@ I960_daddc
Definition allins.hpp:11439
@ I960_signal
Definition allins.hpp:11455
@ I960_cmpis
Definition allins.hpp:11425
@ I960_faulto
Definition allins.hpp:11345
@ I960_addol
Definition allins.hpp:11477
@ I960_addige
Definition allins.hpp:11473
@ I960_addile
Definition allins.hpp:11488
@ I960_modpc
Definition allins.hpp:11361
@ I960_be
Definition allins.hpp:11298
@ I960_ldq
Definition allins.hpp:11355
@ I960_notor
Definition allins.hpp:11374
@ I960_scanbyte
Definition allins.hpp:11382
@ I960_null
Definition allins.hpp:11281
@ I960_flogr
Definition allins.hpp:11528
@ I960_fcmpr
Definition allins.hpp:11508
@ I960_bbc
Definition allins.hpp:11294
@ I960_fcmprl
Definition allins.hpp:11509
@ I960_testl
Definition allins.hpp:11406
@ I960_cmpibg
Definition allins.hpp:11314
@ I960_subo
Definition allins.hpp:11400
@ I960_faultne
Definition allins.hpp:11343
@ I960_saveprcs
Definition allins.hpp:11452
@ I960_subc
Definition allins.hpp:11398
@ I960_fclassr
Definition allins.hpp:11504
@ I960_fcpysre
Definition allins.hpp:11513
@ I960_fremrl
Definition allins.hpp:11536
@ I960_muli
Definition allins.hpp:11367
@ I960_ldphy
Definition allins.hpp:11436
@ I960_and
Definition allins.hpp:11287
@ I960_cmpstr
Definition allins.hpp:11432
@ I960_stq
Definition allins.hpp:11396
@ I960_movq
Definition allins.hpp:11365
@ I960_fcmpor
Definition allins.hpp:11506
@ I960_bne
Definition allins.hpp:11301
@ I960_mark
Definition allins.hpp:11357
@ I960_testno
Definition allins.hpp:11402
@ I960_fclassrl
Definition allins.hpp:11505
@ I960_addone
Definition allins.hpp:11482
@ I960_fscalerl
Definition allins.hpp:11540
@ I960_faultg
Definition allins.hpp:11339
@ I960_sdma
Definition allins.hpp:11415
@ I960_addil
Definition allins.hpp:11478
@ I960_subol
Definition allins.hpp:11479
@ I960_cmpobl
Definition allins.hpp:11327
@ I960_bno
Definition allins.hpp:11296
@ I960_cmpibno
Definition allins.hpp:11313
@ I960_schedprcs
Definition allins.hpp:11451
@ I960_addoo
Definition allins.hpp:11492
@ I960_fmulr
Definition allins.hpp:11533
@ I960_bal
Definition allins.hpp:11292
@ I960_subog
Definition allins.hpp:11464
@ I960_subino
Definition allins.hpp:11460
@ I960_subie
Definition allins.hpp:11470
@ I960_movstr
Definition allins.hpp:11434
@ I960_modi
Definition allins.hpp:11359
@ I960_froundr
Definition allins.hpp:11537
@ I960_fatanrl
Definition allins.hpp:11503
@ I960_addig
Definition allins.hpp:11463
@ I960_faddrl
Definition allins.hpp:11501
@ I960_chkbit
Definition allins.hpp:11308
@ I960_flogbnr
Definition allins.hpp:11524
@ I960_stt
Definition allins.hpp:11397
@ I960_divi
Definition allins.hpp:11332
@ I960_selg
Definition allins.hpp:11466
@ I960_fcmporl
Definition allins.hpp:11507
@ I960_movqstr
Definition allins.hpp:11433
@ I960_cmpib
Definition allins.hpp:11423
@ I960_fsqrtr
Definition allins.hpp:11543
@ I960_condwait
Definition allins.hpp:11453
@ I960_stis
Definition allins.hpp:11392
@ I960_fcosr
Definition allins.hpp:11510
@ I960_cmpdeco
Definition allins.hpp:11311
@ I960_cmpobe
Definition allins.hpp:11325
@ I960_cmpobg
Definition allins.hpp:11324
@ I960_wait
Definition allins.hpp:11454
@ I960_movl
Definition allins.hpp:11364
@ I960_xnor
Definition allins.hpp:11410
@ I960_froundrl
Definition allins.hpp:11538
@ I960_subono
Definition allins.hpp:11459
@ I960_fexpr
Definition allins.hpp:11522
@ I960_cmpobge
Definition allins.hpp:11326
@ I960_selle
Definition allins.hpp:11491
@ I960_modtc
Definition allins.hpp:11362
@ I960_ldl
Definition allins.hpp:11352
@ I960_lda
Definition allins.hpp:11349
@ I960_addo
Definition allins.hpp:11285
@ I960_testle
Definition allins.hpp:11408
@ I960_extract
Definition allins.hpp:11337
@ I960_sendserv
Definition allins.hpp:11449
@ I960_ldos
Definition allins.hpp:11354
@ I960_andnot
Definition allins.hpp:11288
@ I960_udma
Definition allins.hpp:11417
@ I960_concmpi
Definition allins.hpp:11330
@ I960_faddr
Definition allins.hpp:11500
@ I960_stl
Definition allins.hpp:11393
@ I960_subone
Definition allins.hpp:11484
@ I960_faulte
Definition allins.hpp:11340
@ I960_remi
Definition allins.hpp:11377
@ I960_ldt
Definition allins.hpp:11356
@ I960_fcvtzril
Definition allins.hpp:11519
@ I960_emul
Definition allins.hpp:11335
@ I960_fmulrl
Definition allins.hpp:11534
@ I960_fmovrl
Definition allins.hpp:11532
@ I960_stob
Definition allins.hpp:11394
@ I960_resumprcs
Definition allins.hpp:11450
@ I960_eshro
Definition allins.hpp:11336
@ I960_call
Definition allins.hpp:11305
@ I51_pop
Definition allins.hpp:2741
@ I51_div
Definition allins.hpp:2722
@ I51_cmp
Definition allins.hpp:2778
@ I51_jbc
Definition allins.hpp:2726
@ I51_xrl
Definition allins.hpp:2755
@ I51_sub
Definition allins.hpp:2777
@ I51_ecall
Definition allins.hpp:2769
@ I51_jle
Definition allins.hpp:2761
@ I51_jmp
Definition allins.hpp:2728
@ I51_subb
Definition allins.hpp:2751
@ I51_inc
Definition allins.hpp:2724
@ I51_ret
Definition allins.hpp:2743
@ I51_movh
Definition allins.hpp:2771
@ I51_jnc
Definition allins.hpp:2730
@ I51_dec
Definition allins.hpp:2721
@ I51_djnz
Definition allins.hpp:2723
@ I51_jsg
Definition allins.hpp:2760
@ I51_null
Definition allins.hpp:2710
@ I51_jg
Definition allins.hpp:2762
@ I51_cjne
Definition allins.hpp:2717
@ I51_xch
Definition allins.hpp:2753
@ I51_ejmp
Definition allins.hpp:2768
@ I51_nop
Definition allins.hpp:2739
@ I51_orl
Definition allins.hpp:2740
@ I51_jc
Definition allins.hpp:2727
@ I51_eret
Definition allins.hpp:2770
@ I51_jz
Definition allins.hpp:2732
@ I51_jne
Definition allins.hpp:2766
@ I51_mov
Definition allins.hpp:2735
@ I51_emov
Definition allins.hpp:2781
@ I51_je
Definition allins.hpp:2765
@ I51_lcall
Definition allins.hpp:2733
@ I51_swap
Definition allins.hpp:2752
@ I51_movc
Definition allins.hpp:2736
@ I51_jsge
Definition allins.hpp:2764
@ I51_setb
Definition allins.hpp:2749
@ I51_ajmp
Definition allins.hpp:2715
@ I51_jb
Definition allins.hpp:2725
@ I51_movz
Definition allins.hpp:2772
@ I51_addc
Definition allins.hpp:2714
@ I51_trap
Definition allins.hpp:2767
@ I51_jnb
Definition allins.hpp:2729
@ I51_sjmp
Definition allins.hpp:2750
@ I51_push
Definition allins.hpp:2742
@ I51_sll
Definition allins.hpp:2776
@ I51_ljmp
Definition allins.hpp:2734
@ I51_xchd
Definition allins.hpp:2754
@ I51_rr
Definition allins.hpp:2747
@ I51_cpl
Definition allins.hpp:2719
@ I51_rlc
Definition allins.hpp:2746
@ I51_clr
Definition allins.hpp:2718
@ I51_last
Definition allins.hpp:2783
@ I51_reti
Definition allins.hpp:2744
@ I51_jsl
Definition allins.hpp:2763
@ I51_acall
Definition allins.hpp:2712
@ I51_rrc
Definition allins.hpp:2748
@ I51_movs
Definition allins.hpp:2773
@ I51_add
Definition allins.hpp:2713
@ I51_da
Definition allins.hpp:2720
@ I51_movx
Definition allins.hpp:2737
@ I51_sra
Definition allins.hpp:2775
@ I51_mul
Definition allins.hpp:2738
@ I51_srl
Definition allins.hpp:2774
@ I51_anl
Definition allins.hpp:2716
@ I51_rl
Definition allins.hpp:2745
@ I51_jnz
Definition allins.hpp:2731
@ I51_jsle
Definition allins.hpp:2759
@ ST20_sthb
Definition allins.hpp:9862
@ ST20_and
Definition allins.hpp:9675
@ ST20_swap32
Definition allins.hpp:9741
@ ST20_dequeue
Definition allins.hpp:9684
@ ST20_xor
Definition allins.hpp:9749
@ ST20_satsub
Definition allins.hpp:9850
@ ST20_sub
Definition allins.hpp:9739
@ ST20_swinc
Definition allins.hpp:9742
@ ST20_subc
Definition allins.hpp:9740
@ ST20_cbu
Definition allins.hpp:9765
@ ST20_unpacksn
Definition allins.hpp:9885
@ ST20_devsb
Definition allins.hpp:9784
@ ST20_dup
Definition allins.hpp:9686
@ ST20_talt
Definition allins.hpp:9876
@ ST20_seterr
Definition allins.hpp:9854
@ ST20_run
Definition allins.hpp:9723
@ ST20_statusclr
Definition allins.hpp:9733
@ ST20_taltwt
Definition allins.hpp:9877
@ ST20_io
Definition allins.hpp:9695
@ ST20_ss
Definition allins.hpp:9858
@ ST20_lddevid
Definition allins.hpp:9810
@ ST20_opr
Definition allins.hpp:9715
@ ST20_postnormsn
Definition allins.hpp:9839
@ ST20_nfix
Definition allins.hpp:9712
@ ST20_mul
Definition allins.hpp:9711
@ ST20_settimeslice
Definition allins.hpp:9856
@ ST20_ldmemstartval
Definition allins.hpp:9814
@ ST20_move2dinit
Definition allins.hpp:9831
@ ST20_smacinit
Definition allins.hpp:9729
@ ST20_bitld
Definition allins.hpp:9679
@ ST20_alt
Definition allins.hpp:9754
@ ST20_lmul
Definition allins.hpp:9821
@ ST20_enqueue
Definition allins.hpp:9688
@ ST20_xdble
Definition allins.hpp:9888
@ ST20_devls
Definition allins.hpp:9781
@ ST20_j
Definition allins.hpp:9696
@ ST20_ldtraph
Definition allins.hpp:9818
@ ST20_move2dnonzero
Definition allins.hpp:9832
@ ST20_orderu
Definition allins.hpp:9718
@ ST20_lb
Definition allins.hpp:9807
@ ST20_devmove
Definition allins.hpp:9783
@ ST20_stclock
Definition allins.hpp:9861
@ ST20_stop
Definition allins.hpp:9738
@ ST20_sbinc
Definition allins.hpp:9725
@ ST20_sb
Definition allins.hpp:9853
@ ST20_ldiv
Definition allins.hpp:9813
@ ST20_sttimer
Definition allins.hpp:9869
@ ST20_cword
Definition allins.hpp:9779
@ ST20_umac
Definition allins.hpp:9744
@ ST20_enbs
Definition allins.hpp:9793
@ ST20_ldprodid
Definition allins.hpp:9705
@ ST20_testpranal
Definition allins.hpp:9880
@ ST20_shl
Definition allins.hpp:9726
@ ST20_xword
Definition allins.hpp:9889
@ ST20_norm
Definition allins.hpp:9834
@ ST20_ldclock
Definition allins.hpp:9809
@ ST20_cs
Definition allins.hpp:9775
@ ST20_breakpoint
Definition allins.hpp:9682
@ ST20_lshr
Definition allins.hpp:9824
@ ST20_ssub
Definition allins.hpp:9859
@ ST20_runp
Definition allins.hpp:9847
@ ST20_sttrapped
Definition allins.hpp:9871
@ ST20_ldtdesc
Definition allins.hpp:9706
@ ST20_ccnt1
Definition allins.hpp:9766
@ ST20_ecall
Definition allins.hpp:9687
@ ST20_rev
Definition allins.hpp:9720
@ ST20_bcnt
Definition allins.hpp:9757
@ ST20_swaptimer
Definition allins.hpp:9875
@ ST20_lsub
Definition allins.hpp:9825
@ ST20_outbyte
Definition allins.hpp:9836
@ ST20_sum
Definition allins.hpp:9873
@ ST20_testhalterr
Definition allins.hpp:9879
@ ST20_signal
Definition allins.hpp:9728
@ ST20_stnl
Definition allins.hpp:9737
@ ST20_diff
Definition allins.hpp:9787
@ ST20_fptesterr
Definition allins.hpp:9797
@ ST20_pop
Definition allins.hpp:9838
@ ST20_devss
Definition allins.hpp:9785
@ ST20_mint
Definition allins.hpp:9828
@ ST20_ldc
Definition allins.hpp:9699
@ ST20_clockdis
Definition allins.hpp:9770
@ ST20_null
Definition allins.hpp:9667
@ ST20_move2dall
Definition allins.hpp:9830
@ ST20_gt
Definition allins.hpp:9693
@ ST20_move2dzero
Definition allins.hpp:9833
@ ST20_ldnlp
Definition allins.hpp:9703
@ ST20_ldnl
Definition allins.hpp:9702
@ ST20_stlb
Definition allins.hpp:9864
@ ST20_gintenb
Definition allins.hpp:9800
@ ST20_arot
Definition allins.hpp:9676
@ ST20_stl
Definition allins.hpp:9736
@ ST20_rmw
Definition allins.hpp:9721
@ ST20_ciru
Definition allins.hpp:9769
@ ST20_satadd
Definition allins.hpp:9848
@ ST20_cir
Definition allins.hpp:9768
@ ST20_disc
Definition allins.hpp:9788
@ ST20_lsinc
Definition allins.hpp:9707
@ ST20_endp
Definition allins.hpp:9795
@ ST20_enbt
Definition allins.hpp:9794
@ ST20_stopp
Definition allins.hpp:9867
@ ST20_fmul
Definition allins.hpp:9796
@ ST20_iret
Definition allins.hpp:9805
@ ST20_cj
Definition allins.hpp:9683
@ ST20_intenb
Definition allins.hpp:9804
@ ST20_ldl
Definition allins.hpp:9700
@ ST20_altwt
Definition allins.hpp:9756
@ ST20_lsxinc
Definition allins.hpp:9708
@ ST20_ldlp
Definition allins.hpp:9701
@ ST20_devsw
Definition allins.hpp:9786
@ ST20_wcnt
Definition allins.hpp:9886
@ ST20_sthf
Definition allins.hpp:9863
@ ST20_gcall
Definition allins.hpp:9798
@ ST20_nop
Definition allins.hpp:9713
@ ST20_move
Definition allins.hpp:9829
@ ST20_biquad
Definition allins.hpp:9678
@ ST20_xsword
Definition allins.hpp:9750
@ ST20_stoperr
Definition allins.hpp:9866
@ ST20_tret
Definition allins.hpp:9884
@ ST20_smacloop
Definition allins.hpp:9730
@ ST20_clrhalterr
Definition allins.hpp:9772
@ ST20_ldinf
Definition allins.hpp:9812
@ ST20_lsum
Definition allins.hpp:9826
@ ST20_tin
Definition allins.hpp:9881
@ ST20_satmul
Definition allins.hpp:9849
@ ST20_insertqueue
Definition allins.hpp:9802
@ ST20_or
Definition allins.hpp:9716
@ ST20_trapenb
Definition allins.hpp:9883
@ ST20_ret
Definition allins.hpp:9845
@ ST20_wait
Definition allins.hpp:9746
@ ST20_addc
Definition allins.hpp:9673
@ ST20_ssinc
Definition allins.hpp:9732
@ ST20_bitrevnbits
Definition allins.hpp:9759
@ ST20_divstep
Definition allins.hpp:9685
@ ST20_lsx
Definition allins.hpp:9827
@ ST20_reboot
Definition allins.hpp:9841
@ ST20_sethalterr
Definition allins.hpp:9855
@ ST20_not
Definition allins.hpp:9714
@ ST20_crcword
Definition allins.hpp:9774
@ ST20_lend
Definition allins.hpp:9820
@ ST20_lwinc
Definition allins.hpp:9709
@ ST20_resetch
Definition allins.hpp:9843
@ ST20_devlw
Definition allins.hpp:9782
@ ST20_adc
Definition allins.hpp:9671
@ ST20_lshl
Definition allins.hpp:9823
@ ST20_startp
Definition allins.hpp:9860
@ ST20_outword
Definition allins.hpp:9837
@ ST20_savel
Definition allins.hpp:9852
@ ST20_shr
Definition allins.hpp:9727
@ ST20_eret
Definition allins.hpp:9690
@ ST20_enbc
Definition allins.hpp:9792
@ ST20_pfix
Definition allins.hpp:9719
@ ST20_ldpi
Definition allins.hpp:9704
@ ST20_bitcnt
Definition allins.hpp:9758
@ ST20_testerr
Definition allins.hpp:9878
@ ST20_ldtrapped
Definition allins.hpp:9819
@ ST20_gtu
Definition allins.hpp:9694
@ ST20_out
Definition allins.hpp:9835
@ ST20_fcall
Definition allins.hpp:9691
@ ST20_xbword
Definition allins.hpp:9748
@ ST20_wsub
Definition allins.hpp:9747
@ ST20_swapqueue
Definition allins.hpp:9874
@ ST20_causeerror
Definition allins.hpp:9763
@ ST20_bitmask
Definition allins.hpp:9680
@ ST20_lbx
Definition allins.hpp:9808
@ ST20_add
Definition allins.hpp:9672
@ ST20_csngl
Definition allins.hpp:9776
@ ST20_div
Definition allins.hpp:9791
@ ST20_diss
Definition allins.hpp:9789
@ ST20_wsubdb
Definition allins.hpp:9887
@ ST20_roundsn
Definition allins.hpp:9846
@ ST20_crcbyte
Definition allins.hpp:9773
@ ST20_last
Definition allins.hpp:9891
@ ST20_ashr
Definition allins.hpp:9677
@ ST20_slmul
Definition allins.hpp:9857
@ ST20_in
Definition allins.hpp:9801
@ ST20_ls
Definition allins.hpp:9822
@ ST20_ldtimer
Definition allins.hpp:9817
@ ST20_altend
Definition allins.hpp:9755
@ ST20_bitst
Definition allins.hpp:9681
@ ST20_restart
Definition allins.hpp:9844
@ ST20_bsub
Definition allins.hpp:9761
@ ST20_sttraph
Definition allins.hpp:9870
@ ST20_jab
Definition allins.hpp:9697
@ ST20_ladd
Definition allins.hpp:9806
@ ST20_dist
Definition allins.hpp:9790
@ ST20_csub0
Definition allins.hpp:9778
@ ST20_order
Definition allins.hpp:9717
@ ST20_devlb
Definition allins.hpp:9780
@ ST20_timeslice
Definition allins.hpp:9743
@ ST20_prod
Definition allins.hpp:9840
@ ST20_saveh
Definition allins.hpp:9851
@ ST20_rot
Definition allins.hpp:9722
@ ST20_lbinc
Definition allins.hpp:9698
@ ST20_ldshadow
Definition allins.hpp:9816
@ ST20_csu
Definition allins.hpp:9777
@ ST20_cflerr
Definition allins.hpp:9767
@ ST20_statustst
Definition allins.hpp:9735
@ ST20_ldpri
Definition allins.hpp:9815
@ ST20_eqc
Definition allins.hpp:9689
@ ST20_clockenb
Definition allins.hpp:9771
@ ST20_call
Definition allins.hpp:9762
@ ST20_saturate
Definition allins.hpp:9724
@ ST20_statusset
Definition allins.hpp:9734
@ ST20_trapdis
Definition allins.hpp:9882
@ ST20_unsign
Definition allins.hpp:9745
@ ST20_gintdis
Definition allins.hpp:9799
@ ST20_gajw
Definition allins.hpp:9692
@ ST20_ldiff
Definition allins.hpp:9811
@ ST20_sulmul
Definition allins.hpp:9872
@ ST20_intdis
Definition allins.hpp:9803
@ ST20_smul
Definition allins.hpp:9731
@ ST20_bitrevword
Definition allins.hpp:9760
@ ST20_stlf
Definition allins.hpp:9865
@ ST20_ajw
Definition allins.hpp:9674
@ ST20_stshadow
Definition allins.hpp:9868
@ ST20_rem
Definition allins.hpp:9842
@ ST20_cb
Definition allins.hpp:9764
@ ST20_mac
Definition allins.hpp:9710
@ ALPHA_bne
Definition allins.hpp:14042
@ ALPHA_extbl
Definition allins.hpp:14093
@ ALPHA_addq_v
Definition allins.hpp:14028
@ ALPHA_mulq_v
Definition allins.hpp:14166
@ ALPHA_inslh
Definition allins.hpp:14118
@ ALPHA_cmovne
Definition allins.hpp:14053
@ ALPHA_cmovge
Definition allins.hpp:14047
@ ALPHA_mull_v
Definition allins.hpp:14164
@ ALPHA_ctlz
Definition allins.hpp:14070
@ ALPHA_cmptlt
Definition allins.hpp:14063
@ ALPHA_cvtgf
Definition allins.hpp:14075
@ ALPHA_negf
Definition allins.hpp:14238
@ ALPHA_subf
Definition allins.hpp:14205
@ ALPHA_ldah
Definition allins.hpp:14131
@ ALPHA_fclr
Definition allins.hpp:14230
@ ALPHA_cmpgeq
Definition allins.hpp:14056
@ ALPHA_bge
Definition allins.hpp:14034
@ ALPHA_fcmovlt
Definition allins.hpp:14110
@ ALPHA_bsr
Definition allins.hpp:14044
@ ALPHA_cpys
Definition allins.hpp:14067
@ ALPHA_ble
Definition allins.hpp:14040
@ ALPHA_ornot
Definition allins.hpp:14169
@ ALPHA_ldl
Definition allins.hpp:14136
@ ALPHA_negt
Definition allins.hpp:14241
@ ALPHA_cmple
Definition allins.hpp:14059
@ ALPHA_cmptle
Definition allins.hpp:14062
@ ALPHA_null
Definition allins.hpp:14021
@ ALPHA_lda
Definition allins.hpp:14130
@ ALPHA_insbl
Definition allins.hpp:14117
@ ALPHA_cmovle
Definition allins.hpp:14051
@ ALPHA_s8subl
Definition allins.hpp:14183
@ ALPHA_adds
Definition allins.hpp:14029
@ ALPHA_s8addq
Definition allins.hpp:14182
@ ALPHA_cmovlbc
Definition allins.hpp:14049
@ ALPHA_negl_v
Definition allins.hpp:14235
@ ALPHA_perr
Definition allins.hpp:14170
@ ALPHA_stg
Definition allins.hpp:14196
@ ALPHA_bic
Definition allins.hpp:14036
@ ALPHA_sqrtf
Definition allins.hpp:14188
@ ALPHA_mult
Definition allins.hpp:14168
@ ALPHA_wmb
Definition allins.hpp:14218
@ ALPHA_extql
Definition allins.hpp:14097
@ ALPHA_stb
Definition allins.hpp:14194
@ ALPHA_subg
Definition allins.hpp:14206
@ ALPHA_extll
Definition allins.hpp:14095
@ ALPHA_divs
Definition allins.hpp:14088
@ ALPHA_pklb
Definition allins.hpp:14171
@ ALPHA_addl_v
Definition allins.hpp:14026
@ ALPHA_msklh
Definition allins.hpp:14154
@ ALPHA_cmovgt
Definition allins.hpp:14048
@ ALPHA_fcmoveq
Definition allins.hpp:14106
@ ALPHA_minuw4
Definition allins.hpp:14152
@ ALPHA_ldg
Definition allins.hpp:14135
@ ALPHA_clr
Definition allins.hpp:14228
@ ALPHA_negs
Definition allins.hpp:14240
@ ALPHA_addl
Definition allins.hpp:14025
@ ALPHA_ldl_l
Definition allins.hpp:14137
@ ALPHA_jsr_coroutine
Definition allins.hpp:14129
@ ALPHA_bis
Definition allins.hpp:14037
@ ALPHA_stf
Definition allins.hpp:14195
@ ALPHA_subt
Definition allins.hpp:14212
@ ALPHA_mskbl
Definition allins.hpp:14153
@ ALPHA_s4addl
Definition allins.hpp:14177
@ ALPHA_inswl
Definition allins.hpp:14123
@ ALPHA_maxuw4
Definition allins.hpp:14146
@ ALPHA_rs
Definition allins.hpp:14176
@ ALPHA_s8addl
Definition allins.hpp:14181
@ ALPHA_br0
Definition allins.hpp:14247
@ ALPHA_fbne
Definition allins.hpp:14105
@ ALPHA_subs
Definition allins.hpp:14211
@ ALPHA_extqh
Definition allins.hpp:14096
@ ALPHA_negq
Definition allins.hpp:14236
@ ALPHA_ldq_u
Definition allins.hpp:14140
@ ALPHA_umulh
Definition allins.hpp:14214
@ ALPHA_fcmovne
Definition allins.hpp:14111
@ ALPHA_cvtst
Definition allins.hpp:14083
@ ALPHA_ldq_l
Definition allins.hpp:14139
@ ALPHA_extwl
Definition allins.hpp:14099
@ ALPHA_fble
Definition allins.hpp:14103
@ ALPHA_cvtgd
Definition allins.hpp:14074
@ ALPHA_fbge
Definition allins.hpp:14101
@ ALPHA_unpkbw
Definition allins.hpp:14216
@ ALPHA_sll
Definition allins.hpp:14187
@ ALPHA_cpyse
Definition allins.hpp:14068
@ ALPHA_mb
Definition allins.hpp:14147
@ ALPHA_minub8
Definition allins.hpp:14151
@ ALPHA_mskqh
Definition allins.hpp:14156
@ ALPHA_insqh
Definition allins.hpp:14120
@ ALPHA_insll
Definition allins.hpp:14119
@ ALPHA_s8subq
Definition allins.hpp:14184
@ ALPHA_maxsw4
Definition allins.hpp:14144
@ ALPHA_divf
Definition allins.hpp:14086
@ ALPHA_cvtqf
Definition allins.hpp:14078
@ ALPHA_br
Definition allins.hpp:14043
@ ALPHA_ldwu
Definition allins.hpp:14133
@ ALPHA_cpysn
Definition allins.hpp:14069
@ ALPHA_unop
Definition allins.hpp:14225
@ ALPHA_cvtts
Definition allins.hpp:14085
@ ALPHA_stw
Definition allins.hpp:14204
@ ALPHA_negq_v
Definition allins.hpp:14237
@ ALPHA_mulq
Definition allins.hpp:14165
@ ALPHA_cmoveq
Definition allins.hpp:14046
@ ALPHA_andnot
Definition allins.hpp:14245
@ ALPHA_minsb8
Definition allins.hpp:14149
@ ALPHA_mf_fpcr
Definition allins.hpp:14148
@ ALPHA_cvtqg
Definition allins.hpp:14079
@ ALPHA_bgt
Definition allins.hpp:14035
@ ALPHA_stl
Definition allins.hpp:14198
@ ALPHA_or
Definition allins.hpp:14244
@ ALPHA_maxub8
Definition allins.hpp:14145
@ ALPHA_ldq
Definition allins.hpp:14138
@ ALPHA_pkwb
Definition allins.hpp:14172
@ ALPHA_beq
Definition allins.hpp:14033
@ ALPHA_addq
Definition allins.hpp:14027
@ ALPHA_sqrtt
Definition allins.hpp:14191
@ ALPHA_wh64
Definition allins.hpp:14217
@ ALPHA_cvtdg
Definition allins.hpp:14073
@ ALPHA_ftoit
Definition allins.hpp:14115
@ ALPHA_fbgt
Definition allins.hpp:14102
@ ALPHA_cmpule
Definition allins.hpp:14065
@ ALPHA_nop
Definition allins.hpp:14226
@ ALPHA_mull
Definition allins.hpp:14163
@ ALPHA_cttz
Definition allins.hpp:14072
@ ALPHA_call_pal
Definition allins.hpp:14045
@ ALPHA_cmpglt
Definition allins.hpp:14058
@ ALPHA_fcmovge
Definition allins.hpp:14107
@ ALPHA_srl
Definition allins.hpp:14193
@ ALPHA_ctpop
Definition allins.hpp:14071
@ ALPHA_cmplt
Definition allins.hpp:14060
@ ALPHA_subl
Definition allins.hpp:14207
@ ALPHA_stq_c
Definition allins.hpp:14201
@ ALPHA_itofs
Definition allins.hpp:14125
@ ALPHA_mulg
Definition allins.hpp:14162
@ ALPHA_extwh
Definition allins.hpp:14098
@ ALPHA_mt_fpcr
Definition allins.hpp:14160
@ ALPHA_cmpteq
Definition allins.hpp:14061
@ ALPHA_cmpbge
Definition allins.hpp:14054
@ ALPHA_blbc
Definition allins.hpp:14038
@ ALPHA_negg
Definition allins.hpp:14239
@ ALPHA_ldf
Definition allins.hpp:14134
@ ALPHA_fmov
Definition allins.hpp:14231
@ ALPHA_xornot
Definition allins.hpp:14246
@ ALPHA_jmp
Definition allins.hpp:14127
@ ALPHA_addf
Definition allins.hpp:14023
@ ALPHA_stt
Definition allins.hpp:14203
@ ALPHA_cvtql
Definition allins.hpp:14080
@ ALPHA_mskwh
Definition allins.hpp:14158
@ ALPHA_last
Definition allins.hpp:14249
@ ALPHA_excb
Definition allins.hpp:14092
@ ALPHA_ftois
Definition allins.hpp:14114
@ ALPHA_sextl
Definition allins.hpp:14243
@ ALPHA_cvtqs
Definition allins.hpp:14081
@ ALPHA_cmpeq
Definition allins.hpp:14055
@ ALPHA_fbeq
Definition allins.hpp:14100
@ ALPHA_cmptun
Definition allins.hpp:14064
@ ALPHA_fabs
Definition allins.hpp:14229
@ ALPHA_lds
Definition allins.hpp:14141
@ ALPHA_blbs
Definition allins.hpp:14039
@ ALPHA_zap
Definition allins.hpp:14220
@ ALPHA_s4subl
Definition allins.hpp:14179
@ ALPHA_cvtlq
Definition allins.hpp:14077
@ ALPHA_sextb
Definition allins.hpp:14185
@ ALPHA_divt
Definition allins.hpp:14089
@ ALPHA_maxsb8
Definition allins.hpp:14143
@ ALPHA_fcmovgt
Definition allins.hpp:14108
@ ALPHA_fblt
Definition allins.hpp:14104
@ ALPHA_mskwl
Definition allins.hpp:14159
@ ALPHA_cmpult
Definition allins.hpp:14066
@ ALPHA_unpkbl
Definition allins.hpp:14215
@ ALPHA_addt
Definition allins.hpp:14030
@ ALPHA_xor
Definition allins.hpp:14219
@ ALPHA_cvttq
Definition allins.hpp:14084
@ ALPHA_stq
Definition allins.hpp:14200
@ ALPHA_negl
Definition allins.hpp:14234
@ ALPHA_sqrtg
Definition allins.hpp:14189
@ ALPHA_ecb
Definition allins.hpp:14090
@ ALPHA_eqv
Definition allins.hpp:14091
@ ALPHA_fnop
Definition allins.hpp:14227
@ ALPHA_trapb
Definition allins.hpp:14213
@ ALPHA_cvtgq
Definition allins.hpp:14076
@ ALPHA_cvtqt
Definition allins.hpp:14082
@ ALPHA_and
Definition allins.hpp:14032
@ ALPHA_ldbu
Definition allins.hpp:14132
@ ALPHA_sts
Definition allins.hpp:14197
@ ALPHA_not
Definition allins.hpp:14242
@ ALPHA_itoff
Definition allins.hpp:14124
@ ALPHA_ldt
Definition allins.hpp:14142
@ ALPHA_subq_v
Definition allins.hpp:14210
@ ALPHA_s4addq
Definition allins.hpp:14178
@ ALPHA_ret
Definition allins.hpp:14174
@ ALPHA_mov
Definition allins.hpp:14233
@ ALPHA_insql
Definition allins.hpp:14121
@ ALPHA_implver
Definition allins.hpp:14116
@ ALPHA_sextw
Definition allins.hpp:14186
@ ALPHA_s4subq
Definition allins.hpp:14180
@ ALPHA_zapnot
Definition allins.hpp:14221
@ ALPHA_mskll
Definition allins.hpp:14155
@ ALPHA_sra
Definition allins.hpp:14192
@ ALPHA_stl_c
Definition allins.hpp:14199
@ ALPHA_inswh
Definition allins.hpp:14122
@ ALPHA_jsr
Definition allins.hpp:14128
@ ALPHA_rpcc
Definition allins.hpp:14175
@ ALPHA_fneg
Definition allins.hpp:14232
@ ALPHA_fetch_m
Definition allins.hpp:14113
@ ALPHA_cmovlbs
Definition allins.hpp:14050
@ ALPHA_itoft
Definition allins.hpp:14126
@ ALPHA_stq_u
Definition allins.hpp:14202
@ ALPHA_cmpgle
Definition allins.hpp:14057
@ ALPHA_fetch
Definition allins.hpp:14112
@ ALPHA_amask
Definition allins.hpp:14031
@ ALPHA_subq
Definition allins.hpp:14209
@ ALPHA_mulf
Definition allins.hpp:14161
@ ALPHA_addg
Definition allins.hpp:14024
@ ALPHA_subl_v
Definition allins.hpp:14208
@ ALPHA_muls
Definition allins.hpp:14167
@ ALPHA_divg
Definition allins.hpp:14087
@ ALPHA_blt
Definition allins.hpp:14041
@ ALPHA_mskql
Definition allins.hpp:14157
@ ALPHA_extlh
Definition allins.hpp:14094
@ ALPHA_minsw4
Definition allins.hpp:14150
@ ALPHA_fcmovle
Definition allins.hpp:14109
@ ALPHA_sqrts
Definition allins.hpp:14190
@ ALPHA_rc
Definition allins.hpp:14173
@ ALPHA_cmovlt
Definition allins.hpp:14052
@ st9_push
Definition allins.hpp:13836
@ st9_ldpd
Definition allins.hpp:13795
@ st9_rlcw
Definition allins.hpp:13829
@ st9_jps
Definition allins.hpp:13867
@ st9_rcf
Definition allins.hpp:13885
@ st9_spm
Definition allins.hpp:13887
@ st9_popw
Definition allins.hpp:13840
@ st9_add
Definition allins.hpp:13798
@ st9_tcmw
Definition allins.hpp:13817
@ st9_dec
Definition allins.hpp:13820
@ st9_rlc
Definition allins.hpp:13828
@ st9_djnz
Definition allins.hpp:13872
@ st9_scf
Definition allins.hpp:13884
@ st9_dwjnz
Definition allins.hpp:13873
@ st9_tm
Definition allins.hpp:13814
@ st9_di
Definition allins.hpp:13883
@ st9_rol
Definition allins.hpp:13831
@ st9_da
Definition allins.hpp:13835
@ st9_ei
Definition allins.hpp:13882
@ st9_cpjfi
Definition allins.hpp:13874
@ st9_wfi
Definition allins.hpp:13890
@ st9_or
Definition allins.hpp:13808
@ st9_ext
Definition allins.hpp:13881
@ st9_btjf
Definition allins.hpp:13870
@ st9_link
Definition allins.hpp:13846
@ st9_bset
Definition allins.hpp:13853
@ st9_orw
Definition allins.hpp:13809
@ st9_ald
Definition allins.hpp:13894
@ st9_jpcc
Definition allins.hpp:13865
@ st9_ldpp
Definition allins.hpp:13794
@ st9_halt
Definition allins.hpp:13891
@ st9_btjt
Definition allins.hpp:13871
@ st9_and
Definition allins.hpp:13806
@ st9_clr
Definition allins.hpp:13832
@ st9_lddp
Definition allins.hpp:13796
@ st9_pea
Definition allins.hpp:13838
@ st9_sraw
Definition allins.hpp:13825
@ st9_btset
Definition allins.hpp:13856
@ st9_subw
Definition allins.hpp:13803
@ st9_peau
Definition allins.hpp:13843
@ st9_ccf
Definition allins.hpp:13886
@ st9_unlinku
Definition allins.hpp:13849
@ st9_inc
Definition allins.hpp:13818
@ st9_last
Definition allins.hpp:13896
@ st9_bor
Definition allins.hpp:13859
@ st9_cpl
Definition allins.hpp:13833
@ st9_bxor
Definition allins.hpp:13860
@ st9_div
Definition allins.hpp:13851
@ st9_sla
Definition allins.hpp:13822
@ st9_srp
Definition allins.hpp:13877
@ st9_etrap
Definition allins.hpp:13892
@ st9_addw
Definition allins.hpp:13799
@ st9_nop
Definition allins.hpp:13889
@ st9_srp0
Definition allins.hpp:13878
@ st9_tcm
Definition allins.hpp:13816
@ st9_unlink
Definition allins.hpp:13847
@ st9_rrc
Definition allins.hpp:13826
@ st9_jp
Definition allins.hpp:13866
@ st9_cp
Definition allins.hpp:13812
@ st9_linku
Definition allins.hpp:13848
@ st9_bcpl
Definition allins.hpp:13855
@ st9_null
Definition allins.hpp:13791
@ st9_band
Definition allins.hpp:13858
@ st9_bres
Definition allins.hpp:13854
@ st9_eret
Definition allins.hpp:13893
@ st9_popuw
Definition allins.hpp:13845
@ st9_popu
Definition allins.hpp:13844
@ st9_ldw
Definition allins.hpp:13793
@ st9_call
Definition allins.hpp:13868
@ st9_srp1
Definition allins.hpp:13879
@ st9_xorw
Definition allins.hpp:13811
@ st9_aldw
Definition allins.hpp:13895
@ st9_sra
Definition allins.hpp:13824
@ st9_ld
Definition allins.hpp:13792
@ st9_sub
Definition allins.hpp:13802
@ st9_incw
Definition allins.hpp:13819
@ st9_decw
Definition allins.hpp:13821
@ st9_pop
Definition allins.hpp:13839
@ st9_pushuw
Definition allins.hpp:13842
@ st9_cpjti
Definition allins.hpp:13875
@ st9_lddd
Definition allins.hpp:13797
@ st9_divws
Definition allins.hpp:13852
@ st9_ror
Definition allins.hpp:13830
@ st9_jrcc
Definition allins.hpp:13864
@ st9_rets
Definition allins.hpp:13862
@ st9_slaw
Definition allins.hpp:13823
@ st9_tmw
Definition allins.hpp:13815
@ st9_xor
Definition allins.hpp:13810
@ st9_swap
Definition allins.hpp:13834
@ st9_mul
Definition allins.hpp:13850
@ st9_cpw
Definition allins.hpp:13813
@ st9_calls
Definition allins.hpp:13869
@ st9_spp
Definition allins.hpp:13880
@ st9_sdm
Definition allins.hpp:13888
@ st9_xch
Definition allins.hpp:13876
@ st9_iret
Definition allins.hpp:13863
@ st9_sbc
Definition allins.hpp:13804
@ st9_rrcw
Definition allins.hpp:13827
@ st9_andw
Definition allins.hpp:13807
@ st9_ret
Definition allins.hpp:13861
@ st9_pushw
Definition allins.hpp:13837
@ st9_pushu
Definition allins.hpp:13841
@ st9_sbcw
Definition allins.hpp:13805
@ st9_bld
Definition allins.hpp:13857
@ st9_adc
Definition allins.hpp:13800
@ st9_adcw
Definition allins.hpp:13801
@ OAK_Dsp_rets
Definition allins.hpp:14596
@ OAK_Dsp_break
Definition allins.hpp:14580
@ OAK_Dsp_rep
Definition allins.hpp:14578
@ OAK_Dsp_norm
Definition allins.hpp:14533
@ OAK_Dsp_movr
Definition allins.hpp:14570
@ OAK_Dsp_shfc
Definition allins.hpp:14562
@ OAK_Dsp_macuu
Definition allins.hpp:14555
@ OAK_Dsp_proc
Definition allins.hpp:14495
@ OAK_Dsp_set
Definition allins.hpp:14536
@ OAK_Dsp_macsu
Definition allins.hpp:14556
@ OAK_Dsp_sqr
Definition allins.hpp:14511
@ OAK_Dsp_movd
Definition allins.hpp:14571
@ OAK_Dsp_msu
Definition allins.hpp:14560
@ OAK_Dsp_subl
Definition allins.hpp:14510
@ OAK_Dsp_movsi
Definition allins.hpp:14569
@ OAK_Dsp_mpysu
Definition allins.hpp:14551
@ OAK_Dsp_shr
Definition allins.hpp:14515
@ OAK_Dsp_reti_u
Definition allins.hpp:14594
@ OAK_Dsp_pacr
Definition allins.hpp:14527
@ OAK_Dsp_ror
Definition allins.hpp:14519
@ OAK_Dsp_mac
Definition allins.hpp:14552
@ OAK_Dsp_and
Definition allins.hpp:14498
@ OAK_Dsp_push
Definition allins.hpp:14573
@ OAK_Dsp_alb_tst0
Definition allins.hpp:14540
@ OAK_Dsp_mpyi
Definition allins.hpp:14559
@ OAK_Dsp_modr
Definition allins.hpp:14600
@ OAK_Dsp_exp
Definition allins.hpp:14564
@ OAK_Dsp_last
Definition allins.hpp:14609
@ OAK_Dsp_banke
Definition allins.hpp:14577
@ OAK_Dsp_addv
Definition allins.hpp:14539
@ OAK_Dsp_movp
Definition allins.hpp:14567
@ OAK_Dsp_shfi
Definition allins.hpp:14563
@ OAK_Dsp_subh
Definition allins.hpp:14509
@ OAK_Dsp_retid
Definition allins.hpp:14595
@ OAK_Dsp_maa
Definition allins.hpp:14554
@ OAK_Dsp_calla
Definition allins.hpp:14588
@ OAK_Dsp_inc
Definition allins.hpp:14529
@ OAK_Dsp_min
Definition allins.hpp:14547
@ OAK_Dsp_clrr
Definition allins.hpp:14528
@ OAK_Dsp_shl4
Definition allins.hpp:14518
@ OAK_Dsp_cmpv
Definition allins.hpp:14542
@ OAK_Dsp_callr
Definition allins.hpp:14587
@ OAK_Dsp_cmp
Definition allins.hpp:14503
@ OAK_Dsp_mov
Definition allins.hpp:14566
@ OAK_Dsp_max
Definition allins.hpp:14546
@ OAK_Dsp_ret
Definition allins.hpp:14590
@ OAK_Dsp_addl
Definition allins.hpp:14508
@ OAK_Dsp_brr
Definition allins.hpp:14583
@ OAK_Dsp_lim
Definition allins.hpp:14548
@ OAK_Dsp_retd
Definition allins.hpp:14592
@ OAK_Dsp_reti
Definition allins.hpp:14593
@ OAK_Dsp_shr4
Definition allins.hpp:14516
@ OAK_Dsp_mod_reserved
Definition allins.hpp:14522
@ OAK_Dsp_sub
Definition allins.hpp:14504
@ OAK_Dsp_alm_tst0
Definition allins.hpp:14501
@ OAK_Dsp_maxd
Definition allins.hpp:14545
@ OAK_Dsp_add
Definition allins.hpp:14500
@ OAK_Dsp_cmpu
Definition allins.hpp:14513
@ OAK_Dsp_trap
Definition allins.hpp:14604
@ OAK_Dsp_mov_eu
Definition allins.hpp:14608
@ OAK_Dsp_movs
Definition allins.hpp:14568
@ OAK_Dsp_alm_tst1
Definition allins.hpp:14502
@ OAK_Dsp_not
Definition allins.hpp:14524
@ OAK_Dsp_dec
Definition allins.hpp:14530
@ OAK_Dsp_br_u
Definition allins.hpp:14584
@ OAK_Dsp_copy
Definition allins.hpp:14531
@ OAK_Dsp_eint
Definition allins.hpp:14602
@ OAK_Dsp_maasu
Definition allins.hpp:14557
@ OAK_Dsp_shl
Definition allins.hpp:14517
@ OAK_Dsp_null
Definition allins.hpp:14494
@ OAK_Dsp_or
Definition allins.hpp:14497
@ OAK_Dsp_macus
Definition allins.hpp:14553
@ OAK_Dsp_load
Definition allins.hpp:14607
@ OAK_Dsp_dint
Definition allins.hpp:14601
@ OAK_Dsp_chng
Definition allins.hpp:14538
@ OAK_Dsp_neg
Definition allins.hpp:14525
@ OAK_Dsp_rol
Definition allins.hpp:14520
@ OAK_Dsp_xor
Definition allins.hpp:14499
@ OAK_Dsp_ret_u
Definition allins.hpp:14591
@ OAK_Dsp_subv
Definition allins.hpp:14543
@ OAK_Dsp_lpg
Definition allins.hpp:14606
@ OAK_Dsp_addh
Definition allins.hpp:14507
@ OAK_Dsp_alm_msu
Definition allins.hpp:14506
@ OAK_Dsp_sqra
Definition allins.hpp:14512
@ OAK_Dsp_call
Definition allins.hpp:14586
@ OAK_Dsp_brr_u
Definition allins.hpp:14585
@ OAK_Dsp_alb_tst1
Definition allins.hpp:14541
@ OAK_Dsp_pop
Definition allins.hpp:14574
@ OAK_Dsp_cntx
Definition allins.hpp:14598
@ OAK_Dsp_mpy
Definition allins.hpp:14550
@ OAK_Dsp_divs
Definition allins.hpp:14534
@ OAK_Dsp_br
Definition allins.hpp:14582
@ OAK_Dsp_rst
Definition allins.hpp:14537
@ OAK_Dsp_rnd
Definition allins.hpp:14526
@ OAK_Dsp_bkrep
Definition allins.hpp:14579
@ OAK_Dsp_tstb
Definition allins.hpp:14561
@ OAK_Dsp_clr
Definition allins.hpp:14521
@ OAK_Dsp_nop
Definition allins.hpp:14599
@ OAK_Dsp_swap
Definition allins.hpp:14576
@ KR1878_nop
Definition allins.hpp:14312
@ KR1878_wait
Definition allins.hpp:14313
@ KR1878_jnc
Definition allins.hpp:14304
@ KR1878_add
Definition allins.hpp:14262
@ KR1878_cst
Definition allins.hpp:14294
@ KR1878_mfpr
Definition allins.hpp:14290
@ KR1878_rlc
Definition allins.hpp:14283
@ KR1878_not
Definition allins.hpp:14279
@ KR1878_shr
Definition allins.hpp:14281
@ KR1878_jc
Definition allins.hpp:14305
@ KR1878_btt
Definition allins.hpp:14275
@ KR1878_mtpr
Definition allins.hpp:14289
@ KR1878_shl
Definition allins.hpp:14280
@ KR1878_mov
Definition allins.hpp:14260
@ KR1878_adc
Definition allins.hpp:14285
@ KR1878_ldr
Definition allins.hpp:14288
@ KR1878_jns
Definition allins.hpp:14302
@ KR1878_tdc
Definition allins.hpp:14296
@ KR1878_subl
Definition allins.hpp:14271
@ KR1878_rtsc
Definition allins.hpp:14309
@ KR1878_shra
Definition allins.hpp:14282
@ KR1878_cmpl
Definition allins.hpp:14269
@ KR1878_js
Definition allins.hpp:14303
@ KR1878_ijsr
Definition allins.hpp:14307
@ KR1878_pop
Definition allins.hpp:14292
@ KR1878_reset
Definition allins.hpp:14315
@ KR1878_neg
Definition allins.hpp:14278
@ KR1878_sub
Definition allins.hpp:14263
@ KR1878_rrc
Definition allins.hpp:14284
@ KR1878_addl
Definition allins.hpp:14270
@ KR1878_sbc
Definition allins.hpp:14286
@ KR1878_jsr
Definition allins.hpp:14299
@ KR1878_tof
Definition allins.hpp:14295
@ KR1878_sst
Definition allins.hpp:14293
@ KR1878_bis
Definition allins.hpp:14273
@ KR1878_rts
Definition allins.hpp:14308
@ KR1878_jz
Definition allins.hpp:14301
@ KR1878_last
Definition allins.hpp:14318
@ KR1878_bic
Definition allins.hpp:14272
@ KR1878_cmp
Definition allins.hpp:14261
@ KR1878_null
Definition allins.hpp:14258
@ KR1878_rti
Definition allins.hpp:14310
@ KR1878_and
Definition allins.hpp:14264
@ KR1878_sksp
Definition allins.hpp:14316
@ KR1878_btg
Definition allins.hpp:14274
@ KR1878_push
Definition allins.hpp:14291
@ KR1878_movl
Definition allins.hpp:14268
@ KR1878_jmp
Definition allins.hpp:14298
@ KR1878_or
Definition allins.hpp:14265
@ KR1878_xor
Definition allins.hpp:14266
@ KR1878_ijmp
Definition allins.hpp:14306
@ KR1878_jnz
Definition allins.hpp:14300
@ KR1878_stop
Definition allins.hpp:14314
@ KR1878_swap
Definition allins.hpp:14277
@ UNSP_je
Definition allins.hpp:20588
@ UNSP_jae
Definition allins.hpp:20584
@ UNSP_goto
Definition allins.hpp:20578
@ UNSP_clrb
Definition allins.hpp:20630
@ UNSP_null
Definition allins.hpp:20538
@ UNSP_nop
Definition allins.hpp:20579
@ UNSP_sub
Definition allins.hpp:20543
@ UNSP_jb
Definition allins.hpp:20583
@ UNSP_jle
Definition allins.hpp:20593
@ UNSP_asror
Definition allins.hpp:20619
@ UNSP_jpl
Definition allins.hpp:20589
@ UNSP_add
Definition allins.hpp:20541
@ UNSP_xor_s
Definition allins.hpp:20564
@ UNSP_retf
Definition allins.hpp:20573
@ UNSP_asr
Definition allins.hpp:20618
@ UNSP_irq
Definition allins.hpp:20611
@ UNSP_sub_s
Definition allins.hpp:20558
@ UNSP_xor
Definition allins.hpp:20549
@ UNSP_irqnest
Definition allins.hpp:20614
@ UNSP_mulus
Definition allins.hpp:20601
@ UNSP_exp
Definition allins.hpp:20580
@ UNSP_adc
Definition allins.hpp:20542
@ UNSP_fraction
Definition allins.hpp:20610
@ UNSP_load
Definition allins.hpp:20550
@ UNSP_test
Definition allins.hpp:20553
@ UNSP_and
Definition allins.hpp:20552
@ UNSP_or
Definition allins.hpp:20551
@ UNSP_jl
Definition allins.hpp:20586
@ UNSP_int1
Definition allins.hpp:20607
@ UNSP_or_s
Definition allins.hpp:20566
@ UNSP_add_s
Definition allins.hpp:20556
@ UNSP_cmp_s
Definition allins.hpp:20560
@ UNSP_jvc
Definition allins.hpp:20595
@ UNSP_lsror
Definition allins.hpp:20623
@ UNSP_jmp
Definition allins.hpp:20597
@ UNSP_neg
Definition allins.hpp:20547
@ UNSP_negc_s
Definition allins.hpp:20563
@ UNSP_negc
Definition allins.hpp:20548
@ UNSP_neg_s
Definition allins.hpp:20562
@ UNSP_jbe
Definition allins.hpp:20591
@ UNSP_mulss
Definition allins.hpp:20600
@ UNSP_push
Definition allins.hpp:20576
@ UNSP_ror
Definition allins.hpp:20625
@ UNSP_reti
Definition allins.hpp:20574
@ UNSP_test_s
Definition allins.hpp:20568
@ UNSP_and_s
Definition allins.hpp:20567
@ UNSP_divs
Definition allins.hpp:20603
@ UNSP_lsr
Definition allins.hpp:20622
@ UNSP_store
Definition allins.hpp:20554
@ UNSP_call
Definition allins.hpp:20577
@ UNSP_break
Definition allins.hpp:20615
@ UNSP_secbank
Definition allins.hpp:20612
@ UNSP_last
Definition allins.hpp:20633
@ UNSP_store_s
Definition allins.hpp:20569
@ UNSP_rol
Definition allins.hpp:20624
@ UNSP_fir_mov
Definition allins.hpp:20609
@ UNSP_lsl
Definition allins.hpp:20620
@ UNSP_invb
Definition allins.hpp:20631
@ UNSP_adc_s
Definition allins.hpp:20557
@ UNSP_fiq
Definition allins.hpp:20613
@ UNSP_jvs
Definition allins.hpp:20596
@ UNSP_tstb
Definition allins.hpp:20628
@ UNSP_sbc_s
Definition allins.hpp:20559
@ UNSP_jne
Definition allins.hpp:20587
@ UNSP_cmp
Definition allins.hpp:20545
@ UNSP_setb
Definition allins.hpp:20629
@ UNSP_jge
Definition allins.hpp:20585
@ UNSP_divq
Definition allins.hpp:20604
@ UNSP_sbc
Definition allins.hpp:20544
@ UNSP_load_s
Definition allins.hpp:20565
@ UNSP_muluu
Definition allins.hpp:20602
@ UNSP_ja
Definition allins.hpp:20592
@ UNSP_cmpc_s
Definition allins.hpp:20561
@ UNSP_lslor
Definition allins.hpp:20621
@ UNSP_pop
Definition allins.hpp:20575
@ UNSP_jmi
Definition allins.hpp:20590
@ UNSP_jg
Definition allins.hpp:20594
@ UNSP_cmpc
Definition allins.hpp:20546
@ UNSP_int2
Definition allins.hpp:20608
@ H8_ldc
Definition allins.hpp:8252
@ H8_bset
Definition allins.hpp:8234
@ H8_rotxl
Definition allins.hpp:8270
@ H8_jmp
Definition allins.hpp:8250
@ H8_brabs
Definition allins.hpp:8314
@ H8_mulxs
Definition allins.hpp:8259
@ H8_eepmov
Definition allins.hpp:8246
@ H8_bfst
Definition allins.hpp:8306
@ H8_addx
Definition allins.hpp:8205
@ H8_bvs
Definition allins.hpp:8218
@ H8_bcs
Definition allins.hpp:8214
@ H8_movfpe
Definition allins.hpp:8257
@ H8_exts
Definition allins.hpp:8247
@ H8_divu
Definition allins.hpp:8310
@ H8_brabc
Definition allins.hpp:8313
@ H8_shll
Definition allins.hpp:8276
@ H8_band
Definition allins.hpp:8208
@ H8_blt
Definition allins.hpp:8222
@ H8_adds
Definition allins.hpp:8204
@ H8_bist
Definition allins.hpp:8229
@ H8_pop
Definition allins.hpp:8266
@ H8_bclr
Definition allins.hpp:8225
@ H8_stc
Definition allins.hpp:8279
@ H8_andc
Definition allins.hpp:8207
@ H8_rotxr
Definition allins.hpp:8271
@ H8_bhi
Definition allins.hpp:8211
@ H8_dec
Definition allins.hpp:8243
@ H8_brn
Definition allins.hpp:8210
@ H8_extu
Definition allins.hpp:8248
@ H8_xorc
Definition allins.hpp:8288
@ H8_bild
Definition allins.hpp:8227
@ H8_tas
Definition allins.hpp:8285
@ H8_daa
Definition allins.hpp:8241
@ H8_bixor
Definition allins.hpp:8230
@ H8_bclreq
Definition allins.hpp:8302
@ H8_mov
Definition allins.hpp:8256
@ H8_rte
Definition allins.hpp:8272
@ H8_stm
Definition allins.hpp:8280
@ H8_sleep
Definition allins.hpp:8278
@ H8_cmp
Definition allins.hpp:8240
@ H8_bcc
Definition allins.hpp:8213
@ H8_null
Definition allins.hpp:8201
@ H8_stmac
Definition allins.hpp:8281
@ H8_bld
Definition allins.hpp:8231
@ H8_ldmac
Definition allins.hpp:8254
@ H8_add
Definition allins.hpp:8203
@ H8_or
Definition allins.hpp:8264
@ H8_bsrbs
Definition allins.hpp:8316
@ H8_bseteq
Definition allins.hpp:8300
@ H8_sub
Definition allins.hpp:8282
@ H8_bior
Definition allins.hpp:8228
@ H8_mulsu
Definition allins.hpp:8311
@ H8_bgt
Definition allins.hpp:8223
@ H8_movtpe
Definition allins.hpp:8258
@ H8_rotr
Definition allins.hpp:8269
@ H8_push
Definition allins.hpp:8267
@ H8_movmd
Definition allins.hpp:8293
@ H8_jsr
Definition allins.hpp:8251
@ H8_bst
Definition allins.hpp:8236
@ H8_subx
Definition allins.hpp:8284
@ H8_bclrne
Definition allins.hpp:8301
@ H8_neg
Definition allins.hpp:8261
@ H8_orc
Definition allins.hpp:8265
@ H8_das
Definition allins.hpp:8242
@ H8_rtel
Definition allins.hpp:8291
@ H8_mulu
Definition allins.hpp:8309
@ H8_not
Definition allins.hpp:8263
@ H8_bpl
Definition allins.hpp:8219
@ H8_divxu
Definition allins.hpp:8245
@ H8_rts
Definition allins.hpp:8273
@ H8_shal
Definition allins.hpp:8274
@ H8_bnot
Definition allins.hpp:8232
@ H8_bsetne
Definition allins.hpp:8299
@ H8_rtsl
Definition allins.hpp:8292
@ H8_ble
Definition allins.hpp:8224
@ H8_muluu
Definition allins.hpp:8312
@ H8_ldm
Definition allins.hpp:8253
@ H8_bstz
Definition allins.hpp:8303
@ H8_inc
Definition allins.hpp:8249
@ H8_last
Definition allins.hpp:8318
@ H8_and
Definition allins.hpp:8206
@ H8_bge
Definition allins.hpp:8221
@ H8_divs
Definition allins.hpp:8308
@ H8_movsd
Definition allins.hpp:8294
@ H8_mulxu
Definition allins.hpp:8260
@ H8_bra
Definition allins.hpp:8209
@ H8_bfld
Definition allins.hpp:8305
@ H8_bne
Definition allins.hpp:8215
@ H8_xor
Definition allins.hpp:8287
@ H8_movaw
Definition allins.hpp:8297
@ H8_bvc
Definition allins.hpp:8217
@ H8_bras
Definition allins.hpp:8295
@ H8_beq
Definition allins.hpp:8216
@ H8_bsrbc
Definition allins.hpp:8315
@ H8_btst
Definition allins.hpp:8237
@ H8_biand
Definition allins.hpp:8226
@ H8_trapa
Definition allins.hpp:8286
@ H8_bistz
Definition allins.hpp:8304
@ H8_mac
Definition allins.hpp:8255
@ H8_shar
Definition allins.hpp:8275
@ H8_muls
Definition allins.hpp:8307
@ H8_clrmac
Definition allins.hpp:8239
@ H8_bls
Definition allins.hpp:8212
@ H8_divxs
Definition allins.hpp:8244
@ H8_rotl
Definition allins.hpp:8268
@ H8_movab
Definition allins.hpp:8296
@ H8_bor
Definition allins.hpp:8233
@ H8_nop
Definition allins.hpp:8262
@ H8_moval
Definition allins.hpp:8298
@ H8_bmi
Definition allins.hpp:8220
@ H8_shlr
Definition allins.hpp:8277
@ H8_subs
Definition allins.hpp:8283
@ H8_bsr
Definition allins.hpp:8235
@ H8_bxor
Definition allins.hpp:8238
@ fr_subc
Definition allins.hpp:13913
@ fr_copsv
Definition allins.hpp:13990
@ fr_mulh
Definition allins.hpp:13936
@ fr_bno
Definition allins.hpp:13967
@ fr_ldub
Definition allins.hpp:13955
@ fr_asr
Definition allins.hpp:13948
@ fr_addc
Definition allins.hpp:13909
@ fr_bn
Definition allins.hpp:13972
@ fr_asr2
Definition allins.hpp:13949
@ fr_xchb
Definition allins.hpp:14006
@ fr_ld
Definition allins.hpp:13953
@ fr_int
Definition allins.hpp:13963
@ fr_ldi_20
Definition allins.hpp:13951
@ fr_orh
Definition allins.hpp:13921
@ fr_eorb
Definition allins.hpp:13925
@ fr_stm1
Definition allins.hpp:14003
@ fr_call
Definition allins.hpp:13961
@ fr_cmp
Definition allins.hpp:13915
@ fr_lsl
Definition allins.hpp:13944
@ fr_enter
Definition allins.hpp:14004
@ fr_ldm1
Definition allins.hpp:14001
@ fr_stm0
Definition allins.hpp:14002
@ fr_addn2
Definition allins.hpp:13911
@ fr_extuh
Definition allins.hpp:13999
@ fr_extub
Definition allins.hpp:13997
@ fr_bls
Definition allins.hpp:13980
@ fr_addsp
Definition allins.hpp:13995
@ fr_div0u
Definition allins.hpp:13939
@ fr_div3
Definition allins.hpp:13942
@ fr_orccr
Definition allins.hpp:13993
@ fr_andccr
Definition allins.hpp:13992
@ fr_bandl
Definition allins.hpp:13926
@ fr_inte
Definition allins.hpp:13964
@ fr_div4s
Definition allins.hpp:13943
@ fr_ldres
Definition allins.hpp:13985
@ fr_sub
Definition allins.hpp:13912
@ fr_ret
Definition allins.hpp:13962
@ fr_andb
Definition allins.hpp:13919
@ fr_cmp2
Definition allins.hpp:13916
@ fr_bhi
Definition allins.hpp:13981
@ fr_lsl2
Definition allins.hpp:13945
@ fr_dmovh
Definition allins.hpp:13983
@ fr_lsr2
Definition allins.hpp:13947
@ fr_bp
Definition allins.hpp:13973
@ fr_last
Definition allins.hpp:14007
@ fr_subn
Definition allins.hpp:13914
@ fr_copld
Definition allins.hpp:13988
@ fr_ble
Definition allins.hpp:13978
@ fr_borh
Definition allins.hpp:13929
@ fr_borl
Definition allins.hpp:13928
@ fr_bra
Definition allins.hpp:13966
@ fr_stb
Definition allins.hpp:13958
@ fr_addn
Definition allins.hpp:13910
@ fr_dmov
Definition allins.hpp:13982
@ fr_btsth
Definition allins.hpp:13933
@ fr_mov
Definition allins.hpp:13959
@ fr_add2
Definition allins.hpp:13908
@ fr_jmp
Definition allins.hpp:13960
@ fr_mul
Definition allins.hpp:13934
@ fr_lsr
Definition allins.hpp:13946
@ fr_stres
Definition allins.hpp:13986
@ fr_btstl
Definition allins.hpp:13932
@ fr_bnc
Definition allins.hpp:13971
@ fr_muluh
Definition allins.hpp:13937
@ fr_div1
Definition allins.hpp:13940
@ fr_reti
Definition allins.hpp:13965
@ fr_beorl
Definition allins.hpp:13930
@ fr_sth
Definition allins.hpp:13957
@ fr_and
Definition allins.hpp:13917
@ fr_ldm0
Definition allins.hpp:14000
@ fr_bge
Definition allins.hpp:13977
@ fr_extsb
Definition allins.hpp:13996
@ fr_beorh
Definition allins.hpp:13931
@ fr_add
Definition allins.hpp:13907
@ fr_eorh
Definition allins.hpp:13924
@ fr_nop
Definition allins.hpp:13991
@ fr_andh
Definition allins.hpp:13918
@ fr_st
Definition allins.hpp:13956
@ fr_ldi_8
Definition allins.hpp:13952
@ fr_orb
Definition allins.hpp:13922
@ fr_null
Definition allins.hpp:13905
@ fr_copop
Definition allins.hpp:13987
@ fr_bnv
Definition allins.hpp:13975
@ fr_div2
Definition allins.hpp:13941
@ fr_extsh
Definition allins.hpp:13998
@ fr_blt
Definition allins.hpp:13976
@ fr_eor
Definition allins.hpp:13923
@ fr_mulu
Definition allins.hpp:13935
@ fr_or
Definition allins.hpp:13920
@ fr_beq
Definition allins.hpp:13968
@ fr_ldi_32
Definition allins.hpp:13950
@ fr_bandh
Definition allins.hpp:13927
@ fr_bne
Definition allins.hpp:13969
@ fr_stilm
Definition allins.hpp:13994
@ fr_bv
Definition allins.hpp:13974
@ fr_lduh
Definition allins.hpp:13954
@ fr_bgt
Definition allins.hpp:13979
@ fr_leave
Definition allins.hpp:14005
@ fr_div0s
Definition allins.hpp:13938
@ fr_dmovb
Definition allins.hpp:13984
@ fr_copst
Definition allins.hpp:13989
@ fr_bc
Definition allins.hpp:13970
@ TMS320C55_macmkr3
Definition allins.hpp:12370
@ TMS320C55_delay
Definition allins.hpp:12487
@ TMS320C55_psh1
Definition allins.hpp:12492
@ TMS320C55_sub2
Definition allins.hpp:12424
@ TMS320C55_amar_masr
Definition allins.hpp:12270
@ TMS320C55_add_asub
Definition allins.hpp:12294
@ TMS320C55_mpykr3
Definition allins.hpp:12326
@ TMS320C55_or3
Definition allins.hpp:12462
@ TMS320C55_sqrr2
Definition allins.hpp:12316
@ TMS320C55_sqsm3
Definition allins.hpp:12393
@ TMS320C55_subc2
Definition allins.hpp:12231
@ TMS320C55_mackr3
Definition allins.hpp:12350
@ TMS320C55_ret
Definition allins.hpp:12524
@ TMS320C55_rptsub
Definition allins.hpp:12521
@ TMS320C55_addsub2cc
Definition allins.hpp:12227
@ TMS320C55_bfxtr
Definition allins.hpp:12432
@ TMS320C55_sub4
Definition allins.hpp:12426
@ TMS320C55_masmr4
Definition allins.hpp:12387
@ TMS320C55_sfts3
Definition allins.hpp:12417
@ TMS320C55_macm4
Definition allins.hpp:12354
@ TMS320C55_amar_mac40
Definition allins.hpp:12263
@ TMS320C55_macmkr4
Definition allins.hpp:12371
@ TMS320C55_sftsc2
Definition allins.hpp:12418
@ TMS320C55_sqr2
Definition allins.hpp:12314
@ TMS320C55_amar_mpyr40
Definition allins.hpp:12252
@ TMS320C55_rptblocal
Definition allins.hpp:12514
@ TMS320C55_macmrz
Definition allins.hpp:12363
@ TMS320C55_pop2
Definition allins.hpp:12490
@ TMS320C55_bset1
Definition allins.hpp:12443
@ TMS320C55_mpym_mov
Definition allins.hpp:12282
@ TMS320C55_addv2
Definition allins.hpp:12216
@ TMS320C55_rpt
Definition allins.hpp:12519
@ TMS320C55_abdst
Definition allins.hpp:12207
@ TMS320C55_addsubcc4
Definition allins.hpp:12225
@ TMS320C55_sqs2
Definition allins.hpp:12374
@ TMS320C55_amar_mas
Definition allins.hpp:12269
@ TMS320C55_macmr_mov
Definition allins.hpp:12285
@ TMS320C55_mpy_mpy
Definition allins.hpp:12237
@ TMS320C55_max2
Definition allins.hpp:12301
@ TMS320C55_sub1
Definition allins.hpp:12423
@ TMS320C55_btstclr
Definition allins.hpp:12439
@ TMS320C55_swap
Definition allins.hpp:12479
@ TMS320C55_sqam3
Definition allins.hpp:12365
@ TMS320C55_rol
Definition allins.hpp:12471
@ TMS320C55_masr40_mpyr40
Definition allins.hpp:12248
@ TMS320C55_masm3
Definition allins.hpp:12383
@ TMS320C55_bset2
Definition allins.hpp:12437
@ TMS320C55_mac_mpy
Definition allins.hpp:12241
@ TMS320C55_round2
Definition allins.hpp:12409
@ TMS320C55_btstnot
Definition allins.hpp:12440
@ TMS320C55_amar_amar
Definition allins.hpp:12293
@ TMS320C55_mpy3
Definition allins.hpp:12319
@ TMS320C55_mas40_mac40
Definition allins.hpp:12259
@ TMS320C55_masm404
Definition allins.hpp:12389
@ TMS320C55_mpyr40_macr40
Definition allins.hpp:12276
@ TMS320C55_mack3
Definition allins.hpp:12348
@ TMS320C55_amar_macr40
Definition allins.hpp:12264
@ TMS320C55_mpyr1
Definition allins.hpp:12320
@ TMS320C55_amar1
Definition allins.hpp:12311
@ TMS320C55_cmporu
Definition allins.hpp:12406
@ TMS320C55_masmr403
Definition allins.hpp:12390
@ TMS320C55_call
Definition allins.hpp:12504
@ TMS320C55_mov_add
Definition allins.hpp:12292
@ TMS320C55_not1
Definition allins.hpp:12453
@ TMS320C55_band
Definition allins.hpp:12428
@ TMS320C55_addrv2
Definition allins.hpp:12218
@ TMS320C55_add3
Definition allins.hpp:12213
@ TMS320C55_bfxpa
Definition allins.hpp:12430
@ TMS320C55_masr_mpyr
Definition allins.hpp:12246
@ TMS320C55_sqdst
Definition allins.hpp:12421
@ TMS320C55_mov2
Definition allins.hpp:12483
@ TMS320C55_masr3
Definition allins.hpp:12381
@ TMS320C55_mpy_mpyr40
Definition allins.hpp:12240
@ TMS320C55_xor1
Definition allins.hpp:12464
@ TMS320C55_mpyk3
Definition allins.hpp:12324
@ TMS320C55_mac40_mpy40
Definition allins.hpp:12243
@ TMS320C55_mov_aadd
Definition allins.hpp:12291
@ TMS320C55_sqam2
Definition allins.hpp:12364
@ TMS320C55_dmindiff
Definition allins.hpp:12223
@ TMS320C55_ror
Definition allins.hpp:12473
@ TMS320C55_masm4
Definition allins.hpp:12384
@ TMS320C55_macmr404
Definition allins.hpp:12361
@ TMS320C55_macm404
Definition allins.hpp:12359
@ TMS320C55_sqsm2
Definition allins.hpp:12392
@ TMS320C55_mas2
Definition allins.hpp:12378
@ TMS320C55_satr2
Definition allins.hpp:12414
@ TMS320C55_rptcc
Definition allins.hpp:12517
@ TMS320C55_asub
Definition allins.hpp:12309
@ TMS320C55_mpyk2
Definition allins.hpp:12323
@ TMS320C55_dmaxdiff
Definition allins.hpp:12221
@ TMS320C55_min2
Definition allins.hpp:12303
@ TMS320C55_last
Definition allins.hpp:12533
@ TMS320C55_btst
Definition allins.hpp:12434
@ TMS320C55_add4
Definition allins.hpp:12214
@ TMS320C55_mov3
Definition allins.hpp:12484
@ TMS320C55_sqsr2
Definition allins.hpp:12376
@ TMS320C55_mpym403
Definition allins.hpp:12331
@ TMS320C55_amar_mpy
Definition allins.hpp:12249
@ TMS320C55_amar_macr
Definition allins.hpp:12262
@ TMS320C55_xor2
Definition allins.hpp:12465
@ TMS320C55_sqrmr
Definition allins.hpp:12336
@ TMS320C55_mpyr_macr
Definition allins.hpp:12274
@ TMS320C55_mas_mac
Definition allins.hpp:12257
@ TMS320C55_bclr2
Definition allins.hpp:12436
@ TMS320C55_mindiff
Definition allins.hpp:12222
@ TMS320C55_masm2
Definition allins.hpp:12382
@ TMS320C55_mpy2
Definition allins.hpp:12318
@ TMS320C55_btstset
Definition allins.hpp:12438
@ TMS320C55_firsadd
Definition allins.hpp:12279
@ TMS320C55_amar_mpy40
Definition allins.hpp:12251
@ TMS320C55_amar_masr40
Definition allins.hpp:12272
@ TMS320C55_sqar2
Definition allins.hpp:12343
@ TMS320C55_neg1
Definition allins.hpp:12397
@ TMS320C55_mac4
Definition allins.hpp:12345
@ TMS320C55_and3
Definition allins.hpp:12458
@ TMS320C55_masr2
Definition allins.hpp:12380
@ TMS320C55_mac40_mac40
Definition allins.hpp:12255
@ TMS320C55_sub3
Definition allins.hpp:12425
@ TMS320C55_nop
Definition allins.hpp:12511
@ TMS320C55_cmpor
Definition allins.hpp:12405
@ TMS320C55_mpym3
Definition allins.hpp:12328
@ TMS320C55_maxdiff
Definition allins.hpp:12220
@ TMS320C55_mas_mpy
Definition allins.hpp:12245
@ TMS320C55_firssub
Definition allins.hpp:12280
@ TMS320C55_mpy_mac
Definition allins.hpp:12273
@ TMS320C55_mov_asub
Definition allins.hpp:12296
@ TMS320C55_addv1
Definition allins.hpp:12215
@ TMS320C55_exp
Definition allins.hpp:12401
@ TMS320C55_retcc
Definition allins.hpp:12523
@ TMS320C55_null
Definition allins.hpp:12203
@ TMS320C55_mpymr2
Definition allins.hpp:12329
@ TMS320C55_sqar1
Definition allins.hpp:12342
@ TMS320C55_mov_mov
Definition allins.hpp:12290
@ TMS320C55_sftsc3
Definition allins.hpp:12419
@ TMS320C55_cmp
Definition allins.hpp:12305
@ TMS320C55_mas_mas
Definition allins.hpp:12265
@ TMS320C55_popboth
Definition allins.hpp:12446
@ TMS320C55_addsubcc5
Definition allins.hpp:12226
@ TMS320C55_macm403
Definition allins.hpp:12358
@ TMS320C55_sqamr3
Definition allins.hpp:12367
@ TMS320C55_cmpandu
Definition allins.hpp:12404
@ TMS320C55_cmpand
Definition allins.hpp:12403
@ TMS320C55_addsub
Definition allins.hpp:12234
@ TMS320C55_mpykr2
Definition allins.hpp:12325
@ TMS320C55_amar_mac
Definition allins.hpp:12261
@ TMS320C55_mas40_mas40
Definition allins.hpp:12267
@ TMS320C55_sqa2
Definition allins.hpp:12341
@ TMS320C55_reset
Definition allins.hpp:12529
@ TMS320C55_lms
Definition allins.hpp:12298
@ TMS320C55_macmr2
Definition allins.hpp:12355
@ TMS320C55_mpymr403
Definition allins.hpp:12332
@ TMS320C55_sfts2
Definition allins.hpp:12416
@ TMS320C55_mpyr2
Definition allins.hpp:12321
@ TMS320C55_aadd
Definition allins.hpp:12308
@ TMS320C55_amar_mas40
Definition allins.hpp:12271
@ TMS320C55_sat2
Definition allins.hpp:12412
@ TMS320C55_mas40_mpy40
Definition allins.hpp:12247
@ TMS320C55_sqs1
Definition allins.hpp:12373
@ TMS320C55_nop_16
Definition allins.hpp:12512
@ TMS320C55_sqrm
Definition allins.hpp:12335
@ TMS320C55_abs2
Definition allins.hpp:12209
@ TMS320C55_mov402
Definition allins.hpp:12485
@ TMS320C55_mpymr_mov
Definition allins.hpp:12283
@ TMS320C55_sat1
Definition allins.hpp:12411
@ TMS320C55_masr_masr
Definition allins.hpp:12266
@ TMS320C55_sqamr2
Definition allins.hpp:12366
@ TMS320C55_macmz
Definition allins.hpp:12362
@ TMS320C55_mac_mac
Definition allins.hpp:12253
@ TMS320C55_macmk3
Definition allins.hpp:12368
@ TMS320C55_subc3
Definition allins.hpp:12232
@ TMS320C55_not2
Definition allins.hpp:12454
@ TMS320C55_macm_mov
Definition allins.hpp:12284
@ TMS320C55_sqrr1
Definition allins.hpp:12315
@ TMS320C55_satr1
Definition allins.hpp:12413
@ TMS320C55_amov
Definition allins.hpp:12310
@ TMS320C55_masm403
Definition allins.hpp:12388
@ TMS320C55_mas3
Definition allins.hpp:12379
@ TMS320C55_bcc
Definition allins.hpp:12497
@ TMS320C55_macr40_mpyr40
Definition allins.hpp:12244
@ TMS320C55_amar_mpyr
Definition allins.hpp:12250
@ TMS320C55_sub_mov
Definition allins.hpp:12289
@ TMS320C55_macmr403
Definition allins.hpp:12360
@ TMS320C55_mackr4
Definition allins.hpp:12351
@ TMS320C55_mpymkr
Definition allins.hpp:12338
@ TMS320C55_xor3
Definition allins.hpp:12466
@ TMS320C55_max1
Definition allins.hpp:12300
@ TMS320C55_rptb
Definition allins.hpp:12515
@ TMS320C55_sqr1
Definition allins.hpp:12313
@ TMS320C55_pshboth
Definition allins.hpp:12447
@ TMS320C55_macr40_macr40
Definition allins.hpp:12256
@ TMS320C55_callcc
Definition allins.hpp:12502
@ TMS320C55_mpy40_mac40
Definition allins.hpp:12275
@ TMS320C55_bccu
Definition allins.hpp:12498
@ TMS320C55_round1
Definition allins.hpp:12408
@ TMS320C55_sqsr1
Definition allins.hpp:12375
@ TMS320C55_sqsmr3
Definition allins.hpp:12395
@ TMS320C55_mpymu3
Definition allins.hpp:12333
@ TMS320C55_xccpart
Definition allins.hpp:12507
@ TMS320C55_masmr404
Definition allins.hpp:12391
@ TMS320C55_addrv1
Definition allins.hpp:12217
@ TMS320C55_add2
Definition allins.hpp:12212
@ TMS320C55_and1
Definition allins.hpp:12456
@ TMS320C55_bnot
Definition allins.hpp:12435
@ TMS320C55_amar3
Definition allins.hpp:12277
@ TMS320C55_cmpu
Definition allins.hpp:12306
@ TMS320C55_trap
Definition allins.hpp:12531
@ TMS320C55_mpymk
Definition allins.hpp:12337
@ TMS320C55_pop1
Definition allins.hpp:12489
@ TMS320C55_bclr1
Definition allins.hpp:12442
@ TMS320C55_macr3
Definition allins.hpp:12346
@ TMS320C55_bcnt
Definition allins.hpp:12451
@ TMS320C55_sqa1
Definition allins.hpp:12340
@ TMS320C55_mant_nexp
Definition allins.hpp:12400
@ TMS320C55_amar2
Definition allins.hpp:12445
@ TMS320C55_sftcc
Definition allins.hpp:12229
@ TMS320C55_macmr4
Definition allins.hpp:12357
@ TMS320C55_masr_macr
Definition allins.hpp:12258
@ TMS320C55_sftl3
Definition allins.hpp:12469
@ TMS320C55_swap4
Definition allins.hpp:12481
@ TMS320C55_macr4
Definition allins.hpp:12347
@ TMS320C55_or2
Definition allins.hpp:12461
@ TMS320C55_masmr3
Definition allins.hpp:12386
@ TMS320C55_mpymru3
Definition allins.hpp:12334
@ TMS320C55_macm3
Definition allins.hpp:12353
@ TMS320C55_mpy_mpy40
Definition allins.hpp:12239
@ TMS320C55_intr
Definition allins.hpp:12527
@ TMS320C55_subadd
Definition allins.hpp:12235
@ TMS320C55_btstp
Definition allins.hpp:12441
@ TMS320C55_or1
Definition allins.hpp:12460
@ TMS320C55_b
Definition allins.hpp:12500
@ TMS320C55_sftl2
Definition allins.hpp:12468
@ TMS320C55_xcc
Definition allins.hpp:12506
@ TMS320C55_macmr3
Definition allins.hpp:12356
@ TMS320C55_sqsmr2
Definition allins.hpp:12394
@ TMS320C55_neg2
Definition allins.hpp:12398
@ TMS320C55_add1
Definition allins.hpp:12211
@ TMS320C55_mpyr3
Definition allins.hpp:12322
@ TMS320C55_min1
Definition allins.hpp:12302
@ TMS320C55_mpy1
Definition allins.hpp:12317
@ TMS320C55_and2
Definition allins.hpp:12457
@ TMS320C55_idle
Definition allins.hpp:12509
@ TMS320C55_mpym2
Definition allins.hpp:12327
@ TMS320C55_add_mov
Definition allins.hpp:12288
@ TMS320C55_btst_mov
Definition allins.hpp:12295
@ TMS320C55_masmr_mov
Definition allins.hpp:12287
@ TMS320C55_macr_mpyr
Definition allins.hpp:12242
@ TMS320C55_swapp
Definition allins.hpp:12480
@ TMS320C55_rptadd
Definition allins.hpp:12520
@ TMS320C55_mack4
Definition allins.hpp:12349
@ TMS320C55_masr40_macr40
Definition allins.hpp:12260
@ TMS320C55_macr_macr
Definition allins.hpp:12254
@ TMS320C55_masmr2
Definition allins.hpp:12385
@ TMS320C55_masr40_masr40
Definition allins.hpp:12268
@ TMS320C55_reti
Definition allins.hpp:12525
@ TMS320C55_psh2
Definition allins.hpp:12493
@ TMS320C55_mpymr3
Definition allins.hpp:12330
@ TMS320C55_macm2
Definition allins.hpp:12352
@ TMS320C55_masm_mov
Definition allins.hpp:12286
@ TMS320C55_mac3
Definition allins.hpp:12344
@ TMS320C55_macmk4
Definition allins.hpp:12369
@ TMS320C55_mpy_mpyr
Definition allins.hpp:12238
@ TMS320C55_abs1
Definition allins.hpp:12208
@ HPPA_cmpib
Definition allins.hpp:8963
@ HPPA_frem
Definition allins.hpp:9070
@ HPPA_mtsarcm
Definition allins.hpp:9011
@ HPPA_pitlbe
Definition allins.hpp:9020
@ HPPA_fmpyadd
Definition allins.hpp:9064
@ HPPA_ret
Definition allins.hpp:9087
@ HPPA_mfia
Definition allins.hpp:9004
@ HPPA_cmpclr
Definition allins.hpp:8962
@ HPPA_hsub
Definition allins.hpp:8987
@ HPPA_break
Definition allins.hpp:8955
@ HPPA_fid
Definition allins.hpp:9060
@ HPPA_spop3
Definition allins.hpp:9034
@ HPPA_last
Definition allins.hpp:9097
@ HPPA_be
Definition allins.hpp:8953
@ HPPA_cstd
Definition allins.hpp:8966
@ HPPA_depw
Definition allins.hpp:8971
@ HPPA_ds
Definition allins.hpp:8974
@ HPPA_idtlbt
Definition allins.hpp:8988
@ HPPA_mfctl
Definition allins.hpp:9003
@ HPPA_copy
Definition allins.hpp:9093
@ HPPA_pushbts
Definition allins.hpp:9024
@ HPPA_sub
Definition allins.hpp:9044
@ HPPA_stda
Definition allins.hpp:9039
@ HPPA_mtsm
Definition allins.hpp:9012
@ HPPA_fcmp
Definition allins.hpp:9056
@ HPPA_pushnom
Definition allins.hpp:9025
@ HPPA_mixw
Definition allins.hpp:9007
@ HPPA_shld
Definition allins.hpp:9088
@ HPPA_spop1
Definition allins.hpp:9032
@ HPPA_pitlb
Definition allins.hpp:9019
@ HPPA_sync
Definition allins.hpp:9046
@ HPPA_depdi
Definition allins.hpp:8970
@ HPPA_subi
Definition allins.hpp:9045
@ HPPA_ldi
Definition allins.hpp:9092
@ HPPA_or
Definition allins.hpp:9014
@ HPPA_stwa
Definition allins.hpp:9043
@ HPPA_fmpynfadd
Definition allins.hpp:9066
@ HPPA_fmpy
Definition allins.hpp:9063
@ HPPA_movb
Definition allins.hpp:9008
@ HPPA_ldcw
Definition allins.hpp:8993
@ HPPA_mtctl
Definition allins.hpp:9010
@ HPPA_cmpb
Definition allins.hpp:8961
@ HPPA_mixh
Definition allins.hpp:9006
@ HPPA_cstw
Definition allins.hpp:8967
@ HPPA_extrd
Definition allins.hpp:8975
@ HPPA_popbts
Definition allins.hpp:9021
@ HPPA_pmdis
Definition allins.hpp:9081
@ HPPA_uaddcm
Definition allins.hpp:9048
@ HPPA_fcnv
Definition allins.hpp:9057
@ HPPA_add
Definition allins.hpp:8944
@ HPPA_fdiv
Definition allins.hpp:9059
@ HPPA_depd
Definition allins.hpp:8969
@ HPPA_probe
Definition allins.hpp:9022
@ HPPA_dcor
Definition allins.hpp:8968
@ HPPA_uxor
Definition allins.hpp:9049
@ HPPA_blr
Definition allins.hpp:8954
@ HPPA_ldb
Definition allins.hpp:8991
@ HPPA_ldw
Definition allins.hpp:9000
@ HPPA_pdtlb
Definition allins.hpp:9016
@ HPPA_fice
Definition allins.hpp:8980
@ HPPA_shrw
Definition allins.hpp:9091
@ HPPA_fstw
Definition allins.hpp:9074
@ HPPA_clrbts
Definition allins.hpp:8960
@ HPPA_extrw
Definition allins.hpp:8976
@ HPPA_stby
Definition allins.hpp:9037
@ HPPA_fsqrt
Definition allins.hpp:9072
@ HPPA_cmpiclr
Definition allins.hpp:8964
@ HPPA_andcm
Definition allins.hpp:8950
@ HPPA_bb
Definition allins.hpp:8952
@ HPPA_spop2
Definition allins.hpp:9033
@ HPPA_pdtlbe
Definition allins.hpp:9017
@ HPPA_fldd
Definition allins.hpp:9061
@ HPPA_fmpyfadd
Definition allins.hpp:9065
@ HPPA_fmpysub
Definition allins.hpp:9067
@ HPPA_hshr
Definition allins.hpp:8985
@ HPPA_diag
Definition allins.hpp:8973
@ HPPA_mtsp
Definition allins.hpp:9013
@ HPPA_fic
Definition allins.hpp:8979
@ HPPA_addib
Definition allins.hpp:8947
@ HPPA_shlw
Definition allins.hpp:9089
@ HPPA_fdc
Definition allins.hpp:8977
@ HPPA_lpa
Definition allins.hpp:9002
@ HPPA_std
Definition allins.hpp:9038
@ HPPA_cldw
Definition allins.hpp:8959
@ HPPA_stdby
Definition allins.hpp:9040
@ HPPA_ldwa
Definition allins.hpp:9001
@ HPPA_mtsar
Definition allins.hpp:9094
@ HPPA_fdce
Definition allins.hpp:8978
@ HPPA_hadd
Definition allins.hpp:8981
@ HPPA_fcpy
Definition allins.hpp:9058
@ HPPA_cldd
Definition allins.hpp:8958
@ HPPA_havg
Definition allins.hpp:8982
@ HPPA_stb
Definition allins.hpp:9036
@ HPPA_xmpyu
Definition allins.hpp:9077
@ HPPA_b
Definition allins.hpp:8951
@ HPPA_addil
Definition allins.hpp:8948
@ HPPA_fsub
Definition allins.hpp:9075
@ HPPA_hshradd
Definition allins.hpp:8986
@ HPPA_syncdma
Definition allins.hpp:9047
@ HPPA_fstd
Definition allins.hpp:9073
@ HPPA_probei
Definition allins.hpp:9023
@ HPPA_depwi
Definition allins.hpp:8972
@ HPPA_shladd
Definition allins.hpp:9028
@ HPPA_ssm
Definition allins.hpp:9035
@ HPPA_ldsid
Definition allins.hpp:8999
@ HPPA_fldw
Definition allins.hpp:9062
@ HPPA_addi
Definition allins.hpp:8946
@ HPPA_ldo
Definition allins.hpp:8998
@ HPPA_bve
Definition allins.hpp:8957
@ HPPA_sth
Definition allins.hpp:9041
@ HPPA_rsm
Definition allins.hpp:9027
@ HPPA_mfsp
Definition allins.hpp:9005
@ HPPA_fneg
Definition allins.hpp:9068
@ HPPA_fadd
Definition allins.hpp:9055
@ HPPA_spop0
Definition allins.hpp:9031
@ HPPA_movib
Definition allins.hpp:9009
@ HPPA_hshladd
Definition allins.hpp:8984
@ HPPA_ldil
Definition allins.hpp:8997
@ HPPA_hshl
Definition allins.hpp:8983
@ HPPA_stw
Definition allins.hpp:9042
@ HPPA_ldcd
Definition allins.hpp:8992
@ HPPA_shrpd
Definition allins.hpp:9029
@ HPPA_ldda
Definition allins.hpp:8995
@ HPPA_fnegabs
Definition allins.hpp:9069
@ HPPA_call
Definition allins.hpp:9086
@ HPPA_xor
Definition allins.hpp:9050
@ HPPA_rfi
Definition allins.hpp:9026
@ HPPA_ftest
Definition allins.hpp:9076
@ HPPA_frnd
Definition allins.hpp:9071
@ HPPA_ldd
Definition allins.hpp:8994
@ HPPA_and
Definition allins.hpp:8949
@ HPPA_pmenb
Definition allins.hpp:9082
@ HPPA_null
Definition allins.hpp:8942
@ HPPA_addb
Definition allins.hpp:8945
@ HPPA_shrpw
Definition allins.hpp:9030
@ HPPA_nop
Definition allins.hpp:9095
@ HPPA_iitlbt
Definition allins.hpp:8989
@ HPPA_ldh
Definition allins.hpp:8996
@ HPPA_lci
Definition allins.hpp:8990
@ HPPA_permh
Definition allins.hpp:9018
@ HPPA_fabs
Definition allins.hpp:9054
@ HPPA_bv
Definition allins.hpp:8956
@ HPPA_copr
Definition allins.hpp:8965
@ HPPA_pdc
Definition allins.hpp:9015
@ HPPA_shrd
Definition allins.hpp:9090
@ Z8_stop
Definition allins.hpp:6205
@ Z8_ldc
Definition allins.hpp:6187
@ Z8_decw
Definition allins.hpp:6174
@ Z8_push
Definition allins.hpp:6194
@ Z8_jrcond
Definition allins.hpp:6185
@ Z8_jp
Definition allins.hpp:6182
@ Z8_or
Definition allins.hpp:6192
@ Z8_wdt
Definition allins.hpp:6212
@ Z8_sub
Definition allins.hpp:6206
@ Z8_adc
Definition allins.hpp:6164
@ Z8_xor
Definition allins.hpp:6210
@ Z8_lde
Definition allins.hpp:6189
@ Z8_ccf
Definition allins.hpp:6168
@ Z8_djnz
Definition allins.hpp:6176
@ Z8_com
Definition allins.hpp:6170
@ Z8_pop
Definition allins.hpp:6193
@ Z8_clr
Definition allins.hpp:6169
@ Z8_swap
Definition allins.hpp:6207
@ Z8_rl
Definition allins.hpp:6197
@ Z8_null
Definition allins.hpp:6162
@ Z8_call
Definition allins.hpp:6167
@ Z8_wdh
Definition allins.hpp:6211
@ Z8_cp
Definition allins.hpp:6171
@ Z8_sbc
Definition allins.hpp:6201
@ Z8_da
Definition allins.hpp:6172
@ Z8_rcf
Definition allins.hpp:6195
@ Z8_iret
Definition allins.hpp:6181
@ Z8_di
Definition allins.hpp:6175
@ Z8_incw
Definition allins.hpp:6180
@ Z8_rr
Definition allins.hpp:6199
@ Z8_ldei
Definition allins.hpp:6190
@ Z8_last
Definition allins.hpp:6214
@ Z8_rlc
Definition allins.hpp:6198
@ Z8_tm
Definition allins.hpp:6208
@ Z8_and
Definition allins.hpp:6166
@ Z8_rrc
Definition allins.hpp:6200
@ Z8_dec
Definition allins.hpp:6173
@ Z8_srp
Definition allins.hpp:6204
@ Z8_scf
Definition allins.hpp:6202
@ Z8_sra
Definition allins.hpp:6203
@ Z8_add
Definition allins.hpp:6165
@ Z8_ld
Definition allins.hpp:6186
@ Z8_jr
Definition allins.hpp:6184
@ Z8_inc
Definition allins.hpp:6179
@ Z8_ei
Definition allins.hpp:6177
@ Z8_tcm
Definition allins.hpp:6209
@ Z8_jpcond
Definition allins.hpp:6183
@ Z8_nop
Definition allins.hpp:6191
@ Z8_ldci
Definition allins.hpp:6188
@ Z8_halt
Definition allins.hpp:6178
@ Z8_ret
Definition allins.hpp:6196
@ NET_ann_data_s
Definition allins.hpp:10296
@ NET_ldind_r8
Definition allins.hpp:10433
@ NET_conv_i
Definition allins.hpp:10345
@ NET_endfilter
Definition allins.hpp:10383
@ NET_ldind_u4
Definition allins.hpp:10437
@ NET_conv_ovf_i2_un
Definition allins.hpp:10354
@ NET_ldarga_s
Definition allins.hpp:10396
@ NET_ldc_i4
Definition allins.hpp:10397
@ NET_ldarg_3
Definition allins.hpp:10393
@ NET_bge_un
Definition allins.hpp:10311
@ NET_br
Definition allins.hpp:10328
@ NET_last
Definition allins.hpp:10524
@ NET_conv_r_un
Definition allins.hpp:10372
@ NET_or
Definition allins.hpp:10466
@ NET_arglist
Definition allins.hpp:10306
@ NET_conv_u1
Definition allins.hpp:10374
@ NET_sub_ovf_un
Definition allins.hpp:10507
@ NET_stind_i
Definition allins.hpp:10489
@ NET_jmp
Definition allins.hpp:10388
@ NET_ldloc_s
Definition allins.hpp:10444
@ NET_ldarg_s
Definition allins.hpp:10394
@ NET_ldelem_u1
Definition allins.hpp:10420
@ NET_stfld
Definition allins.hpp:10488
@ NET_ldc_i4_m1
Definition allins.hpp:10407
@ NET_starg_s
Definition allins.hpp:10479
@ NET_ann_ref_s
Definition allins.hpp:10305
@ NET_ldc_i4_6
Definition allins.hpp:10404
@ NET_conv_ovf_i
Definition allins.hpp:10350
@ NET_ann_live
Definition allins.hpp:10302
@ NET_ldloc_3
Definition allins.hpp:10443
@ NET_ldc_i4_7
Definition allins.hpp:10405
@ NET_conv_ovf_i_un
Definition allins.hpp:10359
@ NET_ldelem_i
Definition allins.hpp:10412
@ NET_ldloca
Definition allins.hpp:10445
@ NET_ann_ref
Definition allins.hpp:10304
@ NET_xor
Definition allins.hpp:10514
@ NET_sub_ovf
Definition allins.hpp:10506
@ NET_blt
Definition allins.hpp:10321
@ NET_conv_ovf_i4_un
Definition allins.hpp:10356
@ NET_ann_catch
Definition allins.hpp:10294
@ NET_stelem_r4
Definition allins.hpp:10485
@ NET_ble_un_s
Definition allins.hpp:10320
@ NET_box
Definition allins.hpp:10327
@ NET_stelem_i4
Definition allins.hpp:10483
@ NET_conv_u
Definition allins.hpp:10373
@ NET_mul
Definition allins.hpp:10458
@ NET_tail_
Definition allins.hpp:10509
@ NET_stelem_i2
Definition allins.hpp:10482
@ NET_initobj
Definition allins.hpp:10386
@ NET_conv_i2
Definition allins.hpp:10347
@ NET_stind_r4
Definition allins.hpp:10494
@ NET_conv_ovf_u2
Definition allins.hpp:10363
@ NET_stind_i2
Definition allins.hpp:10491
@ NET_rethrow
Definition allins.hpp:10473
@ NET_ann_def
Definition allins.hpp:10298
@ NET_ldc_i4_2
Definition allins.hpp:10400
@ NET_ldc_i4_4
Definition allins.hpp:10402
@ NET_bge
Definition allins.hpp:10309
@ NET_conv_u8
Definition allins.hpp:10377
@ NET_no_
Definition allins.hpp:10521
@ NET_ldlen
Definition allins.hpp:10438
@ NET_ldsfld
Definition allins.hpp:10449
@ NET_mul_ovf
Definition allins.hpp:10459
@ NET_conv_ovf_i4
Definition allins.hpp:10355
@ NET_brtrue_s
Definition allins.hpp:10334
@ NET_conv_r8
Definition allins.hpp:10371
@ NET_beq_s
Definition allins.hpp:10308
@ NET_blt_un
Definition allins.hpp:10323
@ NET_conv_ovf_i8_un
Definition allins.hpp:10358
@ NET_mul_ovf_un
Definition allins.hpp:10460
@ NET_not
Definition allins.hpp:10465
@ NET_ann_call
Definition allins.hpp:10293
@ NET_constrained_
Definition allins.hpp:10520
@ NET_ldc_i4_0
Definition allins.hpp:10398
@ NET_ldelem_u2
Definition allins.hpp:10421
@ NET_ldind_u1
Definition allins.hpp:10435
@ NET_ldloc
Definition allins.hpp:10439
@ NET_ldfld
Definition allins.hpp:10424
@ NET_stloc_1
Definition allins.hpp:10499
@ NET_sizeof
Definition allins.hpp:10477
@ NET_stloc_0
Definition allins.hpp:10498
@ NET_ldvirtftn
Definition allins.hpp:10453
@ NET_ldc_i4_5
Definition allins.hpp:10403
@ NET_blt_un_s
Definition allins.hpp:10324
@ NET_stelem_r8
Definition allins.hpp:10486
@ NET_newarr
Definition allins.hpp:10462
@ NET_cgt
Definition allins.hpp:10340
@ NET_ldc_r8
Definition allins.hpp:10411
@ NET_add
Definition allins.hpp:10288
@ NET_brfalse_s
Definition allins.hpp:10332
@ NET_ldelem_i8
Definition allins.hpp:10416
@ NET_conv_ovf_u4
Definition allins.hpp:10365
@ NET_starg
Definition allins.hpp:10478
@ NET_ret
Definition allins.hpp:10472
@ NET_ldind_i4
Definition allins.hpp:10430
@ NET_ldarg_0
Definition allins.hpp:10390
@ NET_ldc_i4_1
Definition allins.hpp:10399
@ NET_ldelema
Definition allins.hpp:10423
@ NET_cpblk
Definition allins.hpp:10378
@ NET_conv_ovf_u_un
Definition allins.hpp:10369
@ NET_div_un
Definition allins.hpp:10381
@ NET_switch
Definition allins.hpp:10508
@ NET_rem_un
Definition allins.hpp:10471
@ NET_isinst
Definition allins.hpp:10387
@ NET_conv_i1
Definition allins.hpp:10346
@ NET_stelem_i1
Definition allins.hpp:10481
@ NET_beq
Definition allins.hpp:10307
@ NET_unbox_any
Definition allins.hpp:10519
@ NET_stloc_2
Definition allins.hpp:10500
@ NET_ann_dead
Definition allins.hpp:10297
@ NET_ldtoken
Definition allins.hpp:10452
@ NET_ldelem_r4
Definition allins.hpp:10417
@ NET_conv_ovf_u4_un
Definition allins.hpp:10366
@ NET_leave_s
Definition allins.hpp:10455
@ NET_br_s
Definition allins.hpp:10329
@ NET_ldnull
Definition allins.hpp:10447
@ NET_conv_ovf_i2
Definition allins.hpp:10353
@ NET_ldc_i4_s
Definition allins.hpp:10408
@ NET_conv_ovf_u1_un
Definition allins.hpp:10362
@ NET_readonly_
Definition allins.hpp:10522
@ NET_ldstr
Definition allins.hpp:10451
@ NET_endfinally
Definition allins.hpp:10384
@ NET_bgt_un
Definition allins.hpp:10315
@ NET_ldloca_s
Definition allins.hpp:10446
@ NET_stobj
Definition allins.hpp:10503
@ NET_ann_phi
Definition allins.hpp:10303
@ NET_conv_ovf_u
Definition allins.hpp:10360
@ NET_ldc_i8
Definition allins.hpp:10409
@ NET_break
Definition allins.hpp:10330
@ NET_bge_s
Definition allins.hpp:10310
@ NET_ldind_i1
Definition allins.hpp:10428
@ NET_ldelem_u4
Definition allins.hpp:10422
@ NET_castclass
Definition allins.hpp:10338
@ NET_leave
Definition allins.hpp:10454
@ NET_ldind_u2
Definition allins.hpp:10436
@ NET_ldelem_i2
Definition allins.hpp:10414
@ NET_ann_lab
Definition allins.hpp:10301
@ NET_ldarg
Definition allins.hpp:10389
@ NET_callvirt
Definition allins.hpp:10337
@ NET_initblk
Definition allins.hpp:10385
@ NET_ldloc_2
Definition allins.hpp:10442
@ NET_conv_i4
Definition allins.hpp:10348
@ NET_stelem_i8
Definition allins.hpp:10484
@ NET_stsfld
Definition allins.hpp:10504
@ NET_and
Definition allins.hpp:10291
@ NET_clt_un
Definition allins.hpp:10344
@ NET_null
Definition allins.hpp:10286
@ NET_localloc
Definition allins.hpp:10456
@ NET_conv_ovf_u8
Definition allins.hpp:10367
@ NET_brtrue
Definition allins.hpp:10333
@ NET_conv_i8
Definition allins.hpp:10349
@ NET_unbox
Definition allins.hpp:10512
@ NET_ldsflda
Definition allins.hpp:10450
@ NET_ldflda
Definition allins.hpp:10425
@ NET_stloc
Definition allins.hpp:10497
@ NET_refanytype
Definition allins.hpp:10468
@ NET_conv_u4
Definition allins.hpp:10376
@ NET_dup
Definition allins.hpp:10382
@ NET_ldloc_0
Definition allins.hpp:10440
@ NET_ldelem
Definition allins.hpp:10515
@ NET_ldind_i
Definition allins.hpp:10427
@ NET_add_ovf_un
Definition allins.hpp:10290
@ NET_bne_un
Definition allins.hpp:10325
@ NET_ckfinite
Definition allins.hpp:10342
@ NET_cgt_un
Definition allins.hpp:10341
@ NET_ble
Definition allins.hpp:10317
@ NET_ceq
Definition allins.hpp:10339
@ NET_ldind_r4
Definition allins.hpp:10432
@ NET_ann_hoisted
Definition allins.hpp:10299
@ NET_bgt_s
Definition allins.hpp:10314
@ NET_conv_ovf_u2_un
Definition allins.hpp:10364
@ NET_ldc_i4_3
Definition allins.hpp:10401
@ NET_stloc_3
Definition allins.hpp:10501
@ NET_stind_i1
Definition allins.hpp:10490
@ NET_ldelem_ref
Definition allins.hpp:10419
@ NET_conv_ovf_i1
Definition allins.hpp:10351
@ NET_ldind_i2
Definition allins.hpp:10429
@ NET_stind_r8
Definition allins.hpp:10495
@ NET_call
Definition allins.hpp:10335
@ NET_refanyval
Definition allins.hpp:10469
@ NET_ldelem_i1
Definition allins.hpp:10413
@ NET_pop
Definition allins.hpp:10467
@ NET_stind_i8
Definition allins.hpp:10493
@ NET_newobj
Definition allins.hpp:10463
@ NET_calli
Definition allins.hpp:10336
@ NET_nop
Definition allins.hpp:10464
@ NET_ann_arg
Definition allins.hpp:10292
@ NET_bgt
Definition allins.hpp:10313
@ NET_blt_s
Definition allins.hpp:10322
@ NET_conv_ovf_i1_un
Definition allins.hpp:10352
@ NET_stind_ref
Definition allins.hpp:10496
@ NET_ble_s
Definition allins.hpp:10318
@ NET_clt
Definition allins.hpp:10343
@ NET_conv_u2
Definition allins.hpp:10375
@ NET_mkrefany
Definition allins.hpp:10457
@ NET_rem
Definition allins.hpp:10470
@ NET_ann_data
Definition allins.hpp:10295
@ NET_ldelem_r8
Definition allins.hpp:10418
@ NET_ble_un
Definition allins.hpp:10319
@ NET_bge_un_s
Definition allins.hpp:10312
@ NET_ldelem_i4
Definition allins.hpp:10415
@ NET_bgt_un_s
Definition allins.hpp:10316
@ NET_neg
Definition allins.hpp:10461
@ NET_ldftn
Definition allins.hpp:10426
@ NET_stind_i4
Definition allins.hpp:10492
@ NET_add_ovf
Definition allins.hpp:10289
@ NET_volatile_
Definition allins.hpp:10513
@ NET_brfalse
Definition allins.hpp:10331
@ NET_ldind_ref
Definition allins.hpp:10434
@ NET_throw
Definition allins.hpp:10510
@ NET_ldc_r4
Definition allins.hpp:10410
@ NET_div
Definition allins.hpp:10380
@ NET_ldloc_1
Definition allins.hpp:10441
@ NET_bne_un_s
Definition allins.hpp:10326
@ NET_ldarg_1
Definition allins.hpp:10391
@ NET_shr
Definition allins.hpp:10475
@ NET_stloc_s
Definition allins.hpp:10502
@ NET_shl
Definition allins.hpp:10474
@ NET_conv_ovf_i8
Definition allins.hpp:10357
@ NET_unaligned_
Definition allins.hpp:10511
@ NET_ldobj
Definition allins.hpp:10448
@ NET_ldc_i4_8
Definition allins.hpp:10406
@ NET_ldarga
Definition allins.hpp:10395
@ NET_stelem_i
Definition allins.hpp:10480
@ NET_conv_r4
Definition allins.hpp:10370
@ NET_ann_hoisted_call
Definition allins.hpp:10300
@ NET_stelem
Definition allins.hpp:10516
@ NET_cpobj
Definition allins.hpp:10379
@ NET_sub
Definition allins.hpp:10505
@ NET_ldarg_2
Definition allins.hpp:10392
@ NET_conv_ovf_u1
Definition allins.hpp:10361
@ NET_stelem_ref
Definition allins.hpp:10487
@ NET_shr_un
Definition allins.hpp:10476
@ NET_conv_ovf_u8_un
Definition allins.hpp:10368
@ NET_ldind_i8
Definition allins.hpp:10431
@ Z80_otdm
Definition allins.hpp:2403
@ HD_otdm
Definition allins.hpp:2403
@ I5_halt
Definition allins.hpp:2275
@ HD_mlt
Definition allins.hpp:2400
@ I5_sbb
Definition allins.hpp:2315
@ Z80_sbcw
Definition allins.hpp:2478
@ A80_jrc
Definition allins.hpp:2442
@ I5_lhlx
Definition allins.hpp:2463
@ I5_jz
Definition allins.hpp:2281
@ A80_addciy
Definition allins.hpp:2438
@ HD_otdmr
Definition allins.hpp:2404
@ Z80_ini
Definition allins.hpp:2355
@ Z80_exts
Definition allins.hpp:2507
@ Z80_inc
Definition allins.hpp:2352
@ I5_arhl
Definition allins.hpp:2458
@ Z80_ccf
Definition allins.hpp:2339
@ I5_ana
Definition allins.hpp:2254
@ A80_addcix
Definition allins.hpp:2437
@ I5_ora
Definition allins.hpp:2295
@ Z80_lddw
Definition allins.hpp:2512
@ Z80_push
Definition allins.hpp:2300
@ Z80_tst
Definition allins.hpp:2407
@ I5_rz
Definition allins.hpp:2303
@ I5_ani
Definition allins.hpp:2255
@ Z80_ddir
Definition allins.hpp:2483
@ Z80_rrw
Definition allins.hpp:2495
@ Z80_subw
Definition allins.hpp:2476
@ Z80_neg
Definition allins.hpp:2364
@ Z80_ldw
Definition allins.hpp:2474
@ Z80_in
Definition allins.hpp:2276
@ Z80_btest
Definition allins.hpp:2509
@ Z80_cpw
Definition allins.hpp:2482
@ Z80_slp
Definition allins.hpp:2406
@ A80_sspd
Definition allins.hpp:2421
@ A80_pciy
Definition allins.hpp:2429
@ A80_jrnz
Definition allins.hpp:2445
@ I5_last
Definition allins.hpp:2528
@ I5_lxi
Definition allins.hpp:2291
@ Z80_outaw
Definition allins.hpp:2502
@ Z80_ld
Definition allins.hpp:2359
@ A80_subcix
Definition allins.hpp:2440
@ A80_lbcd
Definition allins.hpp:2414
@ A80_addc
Definition allins.hpp:2436
@ Z80_inir
Definition allins.hpp:2356
@ Z80_srlw
Definition allins.hpp:2498
@ I5_rdel
Definition allins.hpp:2459
@ A80_mvai
Definition allins.hpp:2433
@ Z80_pop
Definition allins.hpp:2299
@ I5_push
Definition allins.hpp:2300
@ I5_cz
Definition allins.hpp:2258
@ GB_stop
Definition allins.hpp:2526
@ I5_dad
Definition allins.hpp:2270
@ Z80_sra
Definition allins.hpp:2388
@ Z80_indw
Definition allins.hpp:2516
@ Z80_outi
Definition allins.hpp:2369
@ I5_dcx
Definition allins.hpp:2272
@ Z80_cpl
Definition allins.hpp:2345
@ A80_addiy
Definition allins.hpp:2435
@ I5_add
Definition allins.hpp:2252
@ A80_lded
Definition allins.hpp:2415
@ Z80_call
Definition allins.hpp:2338
@ Z80_inp
Definition allins.hpp:2391
@ Z80_halt
Definition allins.hpp:2350
@ I5_mov
Definition allins.hpp:2292
@ Z80_orw
Definition allins.hpp:2481
@ I5_adi
Definition allins.hpp:2253
@ Z80_cpir
Definition allins.hpp:2344
@ Z80_xorw
Definition allins.hpp:2480
@ I5_rm
Definition allins.hpp:2309
@ A80_sded
Definition allins.hpp:2420
@ A80_jrnc
Definition allins.hpp:2443
@ I5_di
Definition allins.hpp:2273
@ I5_cpo
Definition allins.hpp:2261
@ I5_ori
Definition allins.hpp:2296
@ Z80_inaw
Definition allins.hpp:2503
@ Z80_multw
Definition allins.hpp:2499
@ I5_nop
Definition allins.hpp:2294
@ I5_shld
Definition allins.hpp:2321
@ Z80_rlca
Definition allins.hpp:2377
@ Z80_iniw
Definition allins.hpp:2514
@ Z80_exxy
Definition allins.hpp:2488
@ A80_cmpd
Definition allins.hpp:2447
@ I5_jpo
Definition allins.hpp:2284
@ I5_dsub
Definition allins.hpp:2457
@ I5_cm
Definition allins.hpp:2264
@ I5_xthl
Definition allins.hpp:2327
@ Z80_cplw
Definition allins.hpp:2470
@ Z80_sla
Definition allins.hpp:2387
@ Z80_indr
Definition allins.hpp:2354
@ Z80_resc
Definition allins.hpp:2491
@ A80_subc
Definition allins.hpp:2439
@ I5_sim
Definition allins.hpp:2330
@ A80_im1
Definition allins.hpp:2449
@ Z80_outiw
Definition allins.hpp:2518
@ I5_ldsi
Definition allins.hpp:2461
@ I5_stc
Definition allins.hpp:2317
@ Z80_rlc
Definition allins.hpp:2376
@ Z80_out
Definition allins.hpp:2297
@ A80_subciy
Definition allins.hpp:2441
@ Z80_cp
Definition allins.hpp:2340
@ I5_rst
Definition allins.hpp:2314
@ I5_ret
Definition allins.hpp:2301
@ HD_in0
Definition allins.hpp:2399
@ Z80_otdrw
Definition allins.hpp:2521
@ Z80_exall
Definition allins.hpp:2489
@ Z80_out0
Definition allins.hpp:2405
@ A80_pcix
Definition allins.hpp:2428
@ Z80_extsw
Definition allins.hpp:2508
@ A80_mvra
Definition allins.hpp:2430
@ I5_cc
Definition allins.hpp:2260
@ I5_ei
Definition allins.hpp:2274
@ I5_xchg
Definition allins.hpp:2326
@ Z80_divuw
Definition allins.hpp:2501
@ A80_otd
Definition allins.hpp:2451
@ Z80_calr
Definition allins.hpp:2484
@ A80_siyd
Definition allins.hpp:2423
@ I5_rnc
Definition allins.hpp:2304
@ Z80_otim
Definition allins.hpp:2401
@ I5_cma
Definition allins.hpp:2268
@ I5_ldax
Definition allins.hpp:2289
@ I5_inr
Definition allins.hpp:2277
@ I5_xra
Definition allins.hpp:2324
@ Z80_cpdr
Definition allins.hpp:2342
@ A80_mvia
Definition allins.hpp:2431
@ Z80_srl
Definition allins.hpp:2389
@ Z80_outd
Definition allins.hpp:2368
@ Z80_sbc
Definition allins.hpp:2385
@ I5_ral
Definition allins.hpp:2310
@ HD_tstio
Definition allins.hpp:2408
@ Z80_tstio
Definition allins.hpp:2408
@ I5_jnc
Definition allins.hpp:2282
@ A80_im2
Definition allins.hpp:2450
@ Z80_srr
Definition allins.hpp:2393
@ I5_inx
Definition allins.hpp:2278
@ Z80_rrd
Definition allins.hpp:2383
@ A80_im0
Definition allins.hpp:2448
@ Z80_xor
Definition allins.hpp:2390
@ Z80_exx
Definition allins.hpp:2349
@ I5_rstv
Definition allins.hpp:2464
@ Z80_reti
Definition allins.hpp:2372
@ Z80_in0
Definition allins.hpp:2399
@ Z80_inw
Definition allins.hpp:2472
@ I5_jx5
Definition allins.hpp:2465
@ I5_rc
Definition allins.hpp:2305
@ I5_cpe
Definition allins.hpp:2262
@ Z80_di
Definition allins.hpp:2273
@ Z80_mtest
Definition allins.hpp:2486
@ Z80_res
Definition allins.hpp:2370
@ A80_mvar
Definition allins.hpp:2432
@ I5_jm
Definition allins.hpp:2287
@ I5_mvi
Definition allins.hpp:2293
@ A80_liyd
Definition allins.hpp:2418
@ I5_rnz
Definition allins.hpp:2302
@ I5_lhld
Definition allins.hpp:2290
@ I5_in
Definition allins.hpp:2276
@ Z80_rr
Definition allins.hpp:2379
@ I5_ldhi
Definition allins.hpp:2460
@ Z80_ldctl
Definition allins.hpp:2485
@ I5_cmp
Definition allins.hpp:2266
@ I5_rpe
Definition allins.hpp:2307
@ I5_sphl
Definition allins.hpp:2318
@ Z80_multuw
Definition allins.hpp:2500
@ I5_out
Definition allins.hpp:2297
@ I5_adc
Definition allins.hpp:2251
@ Z80_ind
Definition allins.hpp:2353
@ Z80_dec
Definition allins.hpp:2346
@ I5_daa
Definition allins.hpp:2269
@ Z80_cpd
Definition allins.hpp:2341
@ Z80_rl
Definition allins.hpp:2374
@ Z80_sraw
Definition allins.hpp:2497
@ HD_slp
Definition allins.hpp:2406
@ I5_jmp
Definition allins.hpp:2279
@ I5_sub
Definition allins.hpp:2323
@ Z80_slaw
Definition allins.hpp:2496
@ Z80_outa
Definition allins.hpp:2504
@ I5_stax
Definition allins.hpp:2320
@ Z80_ina
Definition allins.hpp:2505
@ Z80_lddrw
Definition allins.hpp:2513
@ Z80_ret
Definition allins.hpp:2371
@ Z80_rlw
Definition allins.hpp:2494
@ I5_jp
Definition allins.hpp:2286
@ Z80_adc
Definition allins.hpp:2251
@ I5_sta
Definition allins.hpp:2319
@ Z80_ldirw
Definition allins.hpp:2511
@ I5_aci
Definition allins.hpp:2250
@ Z80_rrc
Definition allins.hpp:2381
@ Z80_sub
Definition allins.hpp:2323
@ Z80_rrca
Definition allins.hpp:2382
@ I5_jpe
Definition allins.hpp:2285
@ Z80_im
Definition allins.hpp:2351
@ I5_cnz
Definition allins.hpp:2257
@ I5_cp
Definition allins.hpp:2263
@ HD_out0
Definition allins.hpp:2405
@ A80_oti
Definition allins.hpp:2452
@ HD_otimr
Definition allins.hpp:2402
@ Z80_rld
Definition allins.hpp:2378
@ Z80_otdmr
Definition allins.hpp:2404
@ A80_lixd
Definition allins.hpp:2417
@ I5_dcr
Definition allins.hpp:2271
@ Z80_swap
Definition allins.hpp:2471
@ Z80_cpi
Definition allins.hpp:2343
@ GB_ldh
Definition allins.hpp:2525
@ Z80_mlt
Definition allins.hpp:2400
@ Z80_lddr
Definition allins.hpp:2361
@ Z80_ex
Definition allins.hpp:2348
@ Z80_adcw
Definition allins.hpp:2477
@ Z80_andw
Definition allins.hpp:2479
@ I5_sui
Definition allins.hpp:2322
@ Z80_set
Definition allins.hpp:2386
@ I5_jc
Definition allins.hpp:2283
@ Z80_djnz
Definition allins.hpp:2347
@ I5_pchl
Definition allins.hpp:2298
@ Z80_otdr
Definition allins.hpp:2366
@ I5_rrc
Definition allins.hpp:2313
@ I5_lda
Definition allins.hpp:2288
@ I5_jnz
Definition allins.hpp:2280
@ Z80_rla
Definition allins.hpp:2375
@ A80_addix
Definition allins.hpp:2434
@ Z80_addw
Definition allins.hpp:2475
@ HD_otim
Definition allins.hpp:2401
@ Z80_or
Definition allins.hpp:2365
@ I5_rim
Definition allins.hpp:2329
@ Z80_retn
Definition allins.hpp:2373
@ A80_xtix
Definition allins.hpp:2424
@ Z80_add
Definition allins.hpp:2252
@ I5_null
Definition allins.hpp:2244
@ Z80_outdw
Definition allins.hpp:2520
@ Z80_outp
Definition allins.hpp:2392
@ A80_lspd
Definition allins.hpp:2416
@ I5_cnc
Definition allins.hpp:2259
@ A80_spix
Definition allins.hpp:2426
@ Z80_and
Definition allins.hpp:2336
@ Z80_indrw
Definition allins.hpp:2517
@ Z80_jp
Definition allins.hpp:2357
@ A80_jrz
Definition allins.hpp:2444
@ Z80_exxx
Definition allins.hpp:2487
@ I5_cpi
Definition allins.hpp:2267
@ I5_pop
Definition allins.hpp:2299
@ I5_rp
Definition allins.hpp:2308
@ Z80_jr
Definition allins.hpp:2358
@ Z80_otir
Definition allins.hpp:2367
@ I5_call
Definition allins.hpp:2256
@ Z80_ldir
Definition allins.hpp:2363
@ I5_cmc
Definition allins.hpp:2265
@ Z80_outw
Definition allins.hpp:2473
@ Z80_ldd
Definition allins.hpp:2360
@ Z80_negw
Definition allins.hpp:2506
@ I5_rlc
Definition allins.hpp:2311
@ A80_spiy
Definition allins.hpp:2427
@ I5_rar
Definition allins.hpp:2312
@ I5_shlx
Definition allins.hpp:2462
@ A80_xtiy
Definition allins.hpp:2425
@ Z80_setc
Definition allins.hpp:2490
@ I5_jnx5
Definition allins.hpp:2466
@ A80_cmpi
Definition allins.hpp:2446
@ Z80_ei
Definition allins.hpp:2274
@ Z80_bit
Definition allins.hpp:2337
@ Z80_ldiw
Definition allins.hpp:2510
@ HD_tst
Definition allins.hpp:2407
@ A80_sbcd
Definition allins.hpp:2419
@ Z80_otirw
Definition allins.hpp:2519
@ Z80_rlcw
Definition allins.hpp:2492
@ Z80_scf
Definition allins.hpp:2384
@ Z80_inirw
Definition allins.hpp:2515
@ Z80_rra
Definition allins.hpp:2380
@ I5_rpo
Definition allins.hpp:2306
@ Z80_rrcw
Definition allins.hpp:2493
@ I5_sbi
Definition allins.hpp:2316
@ A80_sixd
Definition allins.hpp:2422
@ I5_xri
Definition allins.hpp:2325
@ Z80_otimr
Definition allins.hpp:2402
@ Z80_ldi
Definition allins.hpp:2362
NEC850_Instructions
Definition allins.hpp:18749
@ NEC850_CEILF_SUW4
Definition allins.hpp:19262
@ NEC850_CEILF_DW
Definition allins.hpp:18936
@ NEC850_TRFSR
Definition allins.hpp:18981
@ NEC850_BZ
Definition allins.hpp:18805
@ NEC850_VMADSAT_H
Definition allins.hpp:19173
@ NEC850_SNOOZE
Definition allins.hpp:18987
@ NEC850_VLD_W_FMT4
Definition allins.hpp:19104
@ NEC850_RSQRTF_S4
Definition allins.hpp:19233
@ NEC850_TRNCF_SL
Definition allins.hpp:18973
@ NEC850_SWITCH
Definition allins.hpp:18827
@ NEC850_FLOORF_DUL
Definition allins.hpp:18965
@ NEC850_ADD
Definition allins.hpp:18822
@ NEC850_TST1
Definition allins.hpp:18755
@ NEC850_BLT
Definition allins.hpp:18809
@ NEC850_CVTF_DL
Definition allins.hpp:18943
@ NEC850_DST
Definition allins.hpp:19017
@ NEC850_STVZ_H4
Definition allins.hpp:19220
@ NEC850_CEILF_DUL
Definition allins.hpp:18939
@ NEC850_STC_W
Definition allins.hpp:18994
@ NEC850_VNEG_H
Definition allins.hpp:19161
@ NEC850_CVTF_DW
Definition allins.hpp:18947
@ NEC850_VNEG_W
Definition allins.hpp:19162
@ NEC850_VBSWAP_H
Definition allins.hpp:19087
@ NEC850_SATSUBR
Definition allins.hpp:18774
@ NEC850_CVTF_HS
Definition allins.hpp:19002
@ NEC850_NOT1
Definition allins.hpp:18782
@ NEC850_HALT
Definition allins.hpp:18797
@ NEC850_SYNCE
Definition allins.hpp:18890
@ NEC850_ROUNDF_DL
Definition allins.hpp:19039
@ NEC850_ADF
Definition allins.hpp:18866
@ NEC850_TRNCF_SUW
Definition allins.hpp:18975
@ NEC850_VLD_W
Definition allins.hpp:19103
@ NEC850_LD_BU
Definition allins.hpp:18860
@ NEC850_ROUNDF_DUW
Definition allins.hpp:19042
@ NEC850_DIVF_S4
Definition allins.hpp:19227
@ NEC850_BR
Definition allins.hpp:18808
@ NEC850_VCMPLT_W
Definition allins.hpp:19152
@ NEC850_VMSUMAD_H
Definition allins.hpp:19181
@ NEC850_SATADD
Definition allins.hpp:18777
@ NEC850_VSUBSAT_W
Definition allins.hpp:19136
@ NEC850_VADD_W
Definition allins.hpp:19128
@ NEC850_CVTF_SUW
Definition allins.hpp:18953
@ NEC850_CVTF_SW4
Definition allins.hpp:19267
@ NEC850_VMINLE_W
Definition allins.hpp:19171
@ NEC850_CACHE
Definition allins.hpp:18996
@ NEC850_ORI
Definition allins.hpp:18780
@ NEC850_CMPF_S4
Definition allins.hpp:19277
@ NEC850_VMSUMAD_W
Definition allins.hpp:19182
@ NEC850_LAST_INSTRUCTION
Definition allins.hpp:19279
@ NEC850_CVTF_SD
Definition allins.hpp:18950
@ NEC850_TRNCF_SW4
Definition allins.hpp:19275
@ NEC850_SUBF_S
Definition allins.hpp:18929
@ NEC850_PREF
Definition allins.hpp:18997
@ NEC850_SUB
Definition allins.hpp:18759
@ NEC850_VADDSAT_H
Definition allins.hpp:19133
@ NEC850_ABSF_S4
Definition allins.hpp:19225
@ NEC850_SCH1L
Definition allins.hpp:18876
@ NEC850_VITLVHW_H
Definition allins.hpp:19083
@ NEC850_VADD_H
Definition allins.hpp:19127
@ NEC850_VSAR_DW
Definition allins.hpp:19072
@ NEC850_SUBADDNXF_S4
Definition allins.hpp:19253
@ NEC850_VMINLT_H
Definition allins.hpp:19166
@ NEC850_LDTC_GR
Definition allins.hpp:19022
@ NEC850_HVTRAP
Definition allins.hpp:19018
@ NEC850_VST_DW_FMT6
Definition allins.hpp:19122
@ NEC850_STV_W
Definition allins.hpp:19219
@ NEC850_LDTC_SR
Definition allins.hpp:19026
@ NEC850_MAXF_S4
Definition allins.hpp:19228
@ NEC850_LD_H
Definition allins.hpp:18792
@ NEC850_LDV_W
Definition allins.hpp:19214
@ NEC850_VMAXGT_W
Definition allins.hpp:19168
@ NEC850_FLOORF_DW
Definition allins.hpp:18962
@ NEC850_PREPARE_i
Definition allins.hpp:18842
@ NEC850_FMAF_S4
Definition allins.hpp:19237
@ NEC850_CEILF_SUL
Definition allins.hpp:18941
@ NEC850_DIV
Definition allins.hpp:18849
@ NEC850_FNMAF_S4
Definition allins.hpp:19239
@ NEC850_TRNCF_SUL
Definition allins.hpp:18974
@ NEC850_SASF
Definition allins.hpp:18839
@ NEC850_STV_DW
Definition allins.hpp:19217
@ NEC850_VSHR_W
Definition allins.hpp:19074
@ NEC850_VITLV_H
Definition allins.hpp:19081
@ NEC850_CVTF_SW
Definition allins.hpp:18954
@ NEC850_CVT_SW
Definition allins.hpp:18896
@ NEC850_VSUB_DW
Definition allins.hpp:19132
@ NEC850_STM_MP
Definition allins.hpp:19049
@ NEC850_FLOORF_SW4
Definition allins.hpp:19271
@ NEC850_VLD_B
Definition allins.hpp:19096
@ NEC850_FLOORF_SUW4
Definition allins.hpp:19270
@ NEC850_MINF_D
Definition allins.hpp:18915
@ NEC850_FLOORF_SL
Definition allins.hpp:18963
@ NEC850_CVTF_HS4
Definition allins.hpp:19264
@ NEC850_MAXRF_S4
Definition allins.hpp:19257
@ NEC850_HSW
Definition allins.hpp:18854
@ NEC850_NOT
Definition allins.hpp:18783
@ NEC850_ROTL
Definition allins.hpp:18989
@ NEC850_RIE
Definition allins.hpp:18889
@ NEC850_VITLVWH_H
Definition allins.hpp:19084
@ NEC850_SCH0R
Definition allins.hpp:18875
@ NEC850_CMOVF_S
Definition allins.hpp:18979
@ NEC850_VMADRN_W
Definition allins.hpp:19176
@ NEC850_SBF
Definition allins.hpp:18872
@ NEC850_NEGF_S
Definition allins.hpp:18920
@ NEC850_STTC_SR
Definition allins.hpp:19027
@ NEC850_CALLT
Definition allins.hpp:18834
@ NEC850_TRNCF_DL
Definition allins.hpp:18969
@ NEC850_STTC_VR
Definition allins.hpp:19029
@ NEC850_CMPF_S
Definition allins.hpp:18977
@ NEC850_VSHUFL_B
Definition allins.hpp:19085
@ NEC850_VST_H
Definition allins.hpp:19114
@ NEC850_PREPARE_sp
Definition allins.hpp:18841
@ NEC850_VLD_DW
Definition allins.hpp:19106
@ NEC850_FMAF_S
Definition allins.hpp:19004
@ NEC850_ANDI
Definition allins.hpp:18819
@ NEC850_LD_W
Definition allins.hpp:18793
@ NEC850_FNMAF_S
Definition allins.hpp:19006
@ NEC850_ABSF_S
Definition allins.hpp:18908
@ NEC850_SLD_HU
Definition allins.hpp:18859
@ NEC850_STVC_SR
Definition allins.hpp:19021
@ NEC850_VMINLE_H
Definition allins.hpp:19167
@ NEC850_CLIP_HU
Definition allins.hpp:19054
@ NEC850_VSAR_W
Definition allins.hpp:19071
@ NEC850_RETI
Definition allins.hpp:18779
@ NEC850_ADDRF_S4
Definition allins.hpp:19256
@ NEC850_SST_B
Definition allins.hpp:18764
@ NEC850_LDFF
Definition allins.hpp:18900
@ NEC850_VST_W
Definition allins.hpp:19117
@ NEC850_VLD_B_FMT3
Definition allins.hpp:19097
@ NEC850_LD_DW
Definition allins.hpp:18991
@ NEC850_SST_H
Definition allins.hpp:18765
@ NEC850_TRNCF_DUL
Definition allins.hpp:18970
@ NEC850_FMSF_S4
Definition allins.hpp:19238
@ NEC850_MOVHI
Definition allins.hpp:18787
@ NEC850_SATSUBI
Definition allins.hpp:18775
@ NEC850_DIVU
Definition allins.hpp:18850
@ NEC850_STC_B
Definition allins.hpp:19061
@ NEC850_PKI16I32
Definition allins.hpp:19191
@ NEC850_ADDF_D
Definition allins.hpp:18909
@ NEC850_RECIPF_D
Definition allins.hpp:18921
@ NEC850_ST_DW
Definition allins.hpp:18992
@ NEC850_CAXI
Definition allins.hpp:18882
@ NEC850_CVTF_WS
Definition allins.hpp:18960
@ NEC850_VADD_DW
Definition allins.hpp:19129
@ NEC850_FLOORF_DUW
Definition allins.hpp:18966
@ NEC850_NULL
Definition allins.hpp:18750
@ NEC850_BNZ
Definition allins.hpp:18813
@ NEC850_FNMSF_S
Definition allins.hpp:19007
@ NEC850_VCMOV
Definition allins.hpp:19124
@ NEC850_CEILF_DL
Definition allins.hpp:18935
@ NEC850_ROUNDF_SW4
Definition allins.hpp:19273
@ NEC850_LOOP
Definition allins.hpp:18990
@ NEC850_VSUBSAT_H
Definition allins.hpp:19135
@ NEC850_NEGF_D
Definition allins.hpp:18919
@ NEC850_VOR
Definition allins.hpp:19066
@ NEC850_BNV
Definition allins.hpp:18811
@ NEC850_VSHR_DW
Definition allins.hpp:19075
@ NEC850_DIVH
Definition allins.hpp:18799
@ NEC850_VST_DW
Definition allins.hpp:19120
@ NEC850_SYNCM
Definition allins.hpp:18891
@ NEC850_VSAR_H
Definition allins.hpp:19070
@ NEC850_BLE
Definition allins.hpp:18810
@ NEC850_SYNCI
Definition allins.hpp:18986
@ NEC850_SQRTF_D
Definition allins.hpp:18926
@ NEC850_TST
Definition allins.hpp:18756
@ NEC850_CVTF_SH
Definition allins.hpp:19003
@ NEC850_TRAP
Definition allins.hpp:18757
@ NEC850_VST_H_FMT_4_5
Definition allins.hpp:19115
@ NEC850_DBHVTRAP
Definition allins.hpp:19013
@ NEC850_MODADD
Definition allins.hpp:19125
@ NEC850_CVTF_DUL
Definition allins.hpp:18945
@ NEC850_CVTF_LS
Definition allins.hpp:18949
@ NEC850_PKQ30Q31
Definition allins.hpp:19196
@ NEC850_AND
Definition allins.hpp:18820
@ NEC850_VMSUMADRE_W
Definition allins.hpp:19184
@ NEC850_RECIPF_S4
Definition allins.hpp:19232
@ NEC850_MAXF_D
Definition allins.hpp:18913
@ NEC850_ADDSUBXF_S4
Definition allins.hpp:19252
@ NEC850_VLD_H_FMT4
Definition allins.hpp:19101
@ NEC850_STTC_PC
Definition allins.hpp:19025
@ NEC850_VSHL_H
Definition allins.hpp:19076
@ NEC850_VMSUM_H
Definition allins.hpp:19178
@ NEC850_VMSUMADIM_W
Definition allins.hpp:19186
@ NEC850_MOVEA
Definition allins.hpp:18788
@ NEC850_VITLV_W
Definition allins.hpp:19082
@ NEC850_MINRF_S4
Definition allins.hpp:19258
@ NEC850_SQRTF_S4
Definition allins.hpp:19234
@ NEC850_BNH
Definition allins.hpp:18806
@ NEC850_TLBR
Definition allins.hpp:19033
@ NEC850_VMULT_H
Definition allins.hpp:19144
@ NEC850_XOR
Definition allins.hpp:18754
@ NEC850_VMUL_W
Definition allins.hpp:19143
@ NEC850_MULU
Definition allins.hpp:18845
@ NEC850_EIRET
Definition allins.hpp:18885
@ NEC850_CVT_WS
Definition allins.hpp:18898
@ NEC850_CLR1
Definition allins.hpp:18802
@ NEC850_BL
Definition allins.hpp:18804
@ NEC850_VMSUM_W
Definition allins.hpp:19179
@ NEC850_CLIP_B
Definition allins.hpp:19051
@ NEC850_SUBADDXF_S4
Definition allins.hpp:19254
@ NEC850_SXH
Definition allins.hpp:18831
@ NEC850_PKI32I16
Definition allins.hpp:19194
@ NEC850_CNVQ30Q15
Definition allins.hpp:19200
@ NEC850_BN
Definition allins.hpp:18807
@ NEC850_VBIQ_H
Definition allins.hpp:19188
@ NEC850_SYSCALL
Definition allins.hpp:18893
@ NEC850_TLBVI
Definition allins.hpp:19035
@ NEC850_LDVZ_H4
Definition allins.hpp:19215
@ NEC850_MULXF_S4
Definition allins.hpp:19248
@ NEC850_CVTF_SH4
Definition allins.hpp:19265
@ NEC850_LD_B
Definition allins.hpp:18791
@ NEC850_VSUBS_H
Definition allins.hpp:19139
@ NEC850_SATSUB
Definition allins.hpp:18776
@ NEC850_RMTRAP
Definition allins.hpp:18888
@ NEC850_RECIPF_S
Definition allins.hpp:18922
@ NEC850_ZXH
Definition allins.hpp:18830
@ NEC850_SXB
Definition allins.hpp:18829
@ NEC850_DBPUSH
Definition allins.hpp:19010
@ NEC850_CMOVF_W4
Definition allins.hpp:19222
@ NEC850_JARL
Definition allins.hpp:18796
@ NEC850_BGT
Definition allins.hpp:18818
@ NEC850_ROUNDF_SUL
Definition allins.hpp:19045
@ NEC850_PKQ15Q31
Definition allins.hpp:19192
@ NEC850_BP
Definition allins.hpp:18815
@ NEC850_VMINLT_W
Definition allins.hpp:19170
@ NEC850_CEILF_SUW
Definition allins.hpp:18942
@ NEC850_LDV_QW
Definition allins.hpp:19213
@ NEC850_VCMPLE_H
Definition allins.hpp:19153
@ NEC850_TRFF
Definition allins.hpp:18903
@ NEC850_VSUB_H
Definition allins.hpp:19130
@ NEC850_FLOORF_SW
Definition allins.hpp:18964
@ NEC850_HSH
Definition allins.hpp:18868
@ NEC850_SST_W
Definition allins.hpp:18766
@ NEC850_PKQ31Q15
Definition allins.hpp:19195
@ NEC850_VCALCW
Definition allins.hpp:19205
@ NEC850_VMSUMADRN_H
Definition allins.hpp:19187
@ NEC850_MOV_W
Definition allins.hpp:19093
@ NEC850_ADDF_S4
Definition allins.hpp:19226
@ NEC850_MINF_S4
Definition allins.hpp:19229
@ NEC850_MSUBF_S
Definition allins.hpp:18931
@ NEC850_LDVC_SR
Definition allins.hpp:19020
@ NEC850_DI
Definition allins.hpp:18800
@ NEC850_DBRET
Definition allins.hpp:18836
@ NEC850_LD_HU
Definition allins.hpp:18861
@ NEC850_SUBF_D
Definition allins.hpp:18928
@ NEC850_SCH1R
Definition allins.hpp:18877
@ NEC850_DISPOSE_r0
Definition allins.hpp:18832
@ NEC850_VAND
Definition allins.hpp:19065
@ NEC850_SHL
Definition allins.hpp:18771
@ NEC850_EST
Definition allins.hpp:19016
@ NEC850_CVTF_SUL
Definition allins.hpp:18952
@ NEC850_MUL
Definition allins.hpp:18844
@ NEC850_TRNCF_SUW4
Definition allins.hpp:19274
@ NEC850_VST_B_FMT4
Definition allins.hpp:19112
@ NEC850_TRNC_SW
Definition allins.hpp:18897
@ NEC850_CNVQ62Q31
Definition allins.hpp:19201
@ NEC850_VCMPEQ_H
Definition allins.hpp:19149
@ NEC850_VMAXGE_H
Definition allins.hpp:19165
@ NEC850_MOVV_W4
Definition allins.hpp:19207
@ NEC850_ZXB
Definition allins.hpp:18828
@ NEC850_VST_W_FMT_4_5
Definition allins.hpp:19118
@ NEC850_VADDS_W
Definition allins.hpp:19138
@ NEC850_FLOORF_DL
Definition allins.hpp:18961
@ NEC850_EI
Definition allins.hpp:18798
@ NEC850_FERET
Definition allins.hpp:18886
@ NEC850_VABS_H
Definition allins.hpp:19158
@ NEC850_DBTAG
Definition allins.hpp:19012
@ NEC850_VCONCAT_B
Definition allins.hpp:19080
@ NEC850_ROUNDF_SUW4
Definition allins.hpp:19272
@ NEC850_BREAKPOINT
Definition allins.hpp:18752
@ NEC850_NEGF_S4
Definition allins.hpp:19231
@ NEC850_CTRET
Definition allins.hpp:18837
@ NEC850_CLIP_BU
Definition allins.hpp:19052
@ NEC850_SHFLV_W4
Definition allins.hpp:19210
@ NEC850_LDSR
Definition allins.hpp:18790
@ NEC850_RSQRTF_S
Definition allins.hpp:18925
@ NEC850_FETRAP
Definition allins.hpp:18887
@ NEC850_ADDI
Definition allins.hpp:18821
@ NEC850_SUBADDNF_S4
Definition allins.hpp:19245
@ NEC850_CVTF_DS
Definition allins.hpp:18944
@ NEC850_ROUNDF_DUL
Definition allins.hpp:19041
@ NEC850_CEILF_SW4
Definition allins.hpp:19263
@ NEC850_CVTF_SL
Definition allins.hpp:18951
@ NEC850_TRFSRV_W4
Definition allins.hpp:19223
@ NEC850_DBCP
Definition allins.hpp:19011
@ NEC850_CNVQ15Q30
Definition allins.hpp:19198
@ NEC850_DIVQ
Definition allins.hpp:18883
@ NEC850_DISPOSE_r
Definition allins.hpp:18833
@ NEC850_SLD_BU
Definition allins.hpp:18858
@ NEC850_MOV_H
Definition allins.hpp:19092
@ NEC850_VST_DW_FMT_4_5
Definition allins.hpp:19121
@ NEC850_CVTF_LD
Definition allins.hpp:18948
@ NEC850_BINS
Definition allins.hpp:18988
@ NEC850_PUSHSP
Definition allins.hpp:18998
@ NEC850_CVTF_UWD
Definition allins.hpp:18957
@ NEC850_VMADSAT_W
Definition allins.hpp:19174
@ NEC850_ADDF_S
Definition allins.hpp:18910
@ NEC850_CMP
Definition allins.hpp:18801
@ NEC850_STV_QW
Definition allins.hpp:19218
@ NEC850_ST_B
Definition allins.hpp:18761
@ NEC850_CLL
Definition allins.hpp:18995
@ NEC850_VMULT_W
Definition allins.hpp:19145
@ NEC850_VLD_H
Definition allins.hpp:19100
@ NEC850_BSW
Definition allins.hpp:18852
@ NEC850_ST_H
Definition allins.hpp:18762
@ NEC850_DUP_W
Definition allins.hpp:19091
@ NEC850_VSHR_H
Definition allins.hpp:19073
@ NEC850_MULHI
Definition allins.hpp:18785
@ NEC850_CVTF_ULS
Definition allins.hpp:18956
@ NEC850_VMULCX_H
Definition allins.hpp:19146
@ NEC850_VCALCH
Definition allins.hpp:19204
@ NEC850_MULF_S4
Definition allins.hpp:19230
@ NEC850_FNMSF_S4
Definition allins.hpp:19240
@ NEC850_VCMPLT_H
Definition allins.hpp:19151
@ NEC850_TLBW
Definition allins.hpp:19036
@ NEC850_MACU
Definition allins.hpp:18870
@ NEC850_ROUNDF_DW
Definition allins.hpp:19040
@ NEC850_ADDSUBNF_S4
Definition allins.hpp:19243
@ NEC850_VCMPNE_W
Definition allins.hpp:19156
@ NEC850_OR
Definition allins.hpp:18781
@ NEC850_MOV
Definition allins.hpp:18789
@ NEC850_BH
Definition allins.hpp:18814
@ NEC850_STC_H
Definition allins.hpp:19062
@ NEC850_SET1
Definition allins.hpp:18772
@ NEC850_VSUB_W
Definition allins.hpp:19131
@ NEC850_TRNCF_DUW
Definition allins.hpp:18971
@ NEC850_BV
Definition allins.hpp:18803
@ NEC850_NMSUBF_S
Definition allins.hpp:18933
@ NEC850_STSR
Definition allins.hpp:18760
@ NEC850_VMSUMADRE_H
Definition allins.hpp:19183
@ NEC850_VMADRN_H
Definition allins.hpp:19175
@ NEC850_SAR
Definition allins.hpp:18778
@ NEC850_SYNCP
Definition allins.hpp:18892
@ NEC850_STTC_GR
Definition allins.hpp:19023
@ NEC850_MAC
Definition allins.hpp:18869
@ NEC850_JMP
Definition allins.hpp:18795
@ NEC850_CEILF_SL
Definition allins.hpp:18937
@ NEC850_CVTF_ULD
Definition allins.hpp:18955
@ NEC850_RESBANK
Definition allins.hpp:19059
@ NEC850_VADDSAT_W
Definition allins.hpp:19134
@ NEC850_SETF
Definition allins.hpp:18773
@ NEC850_VCMPLE_W
Definition allins.hpp:19154
@ NEC850_VCMPNE_H
Definition allins.hpp:19155
@ NEC850_LDTC_VR
Definition allins.hpp:19028
@ NEC850_VMSUMADIM_H
Definition allins.hpp:19185
@ NEC850_SUBXF_S4
Definition allins.hpp:19249
@ NEC850_LDTC_PC
Definition allins.hpp:19024
@ NEC850_TRNCF_DW
Definition allins.hpp:18972
@ NEC850_SCH0L
Definition allins.hpp:18874
@ NEC850_SUBADDF_S4
Definition allins.hpp:19244
@ NEC850_VLD_B_FMT4
Definition allins.hpp:19098
@ NEC850_SUBF_S4
Definition allins.hpp:19235
@ NEC850_MULF_S
Definition allins.hpp:18918
@ NEC850_MULH
Definition allins.hpp:18786
@ NEC850_VSHL_W
Definition allins.hpp:19077
@ NEC850_XORI
Definition allins.hpp:18753
@ NEC850_VABS_W
Definition allins.hpp:19159
@ NEC850_DIVQU
Definition allins.hpp:18884
@ NEC850_MAXF_S
Definition allins.hpp:18914
@ NEC850_VCMPEQ_W
Definition allins.hpp:19150
@ NEC850_JR
Definition allins.hpp:18794
@ NEC850_VLD_DW_FMT4
Definition allins.hpp:19108
@ NEC850_CVTF_UWS4
Definition allins.hpp:19268
@ NEC850_SHR
Definition allins.hpp:18770
@ NEC850_CEILF_DUW
Definition allins.hpp:18940
@ NEC850_SUBRF_S4
Definition allins.hpp:19260
@ NEC850_SUBR
Definition allins.hpp:18758
@ NEC850_CNVQ31Q62
Definition allins.hpp:19199
@ NEC850_EXPQ31
Definition allins.hpp:19203
@ NEC850_BNC
Definition allins.hpp:18812
@ NEC850_VST_B
Definition allins.hpp:19111
@ NEC850_FMSF_S
Definition allins.hpp:19005
@ NEC850_DIVF_D
Definition allins.hpp:18911
@ NEC850_ROUNDF_SW
Definition allins.hpp:19044
@ NEC850_SLD_W
Definition allins.hpp:18769
@ NEC850_CVTF_UWS
Definition allins.hpp:18958
@ NEC850_ST_W
Definition allins.hpp:18763
@ NEC850_TLBAI
Definition allins.hpp:19032
@ NEC850_TLBS
Definition allins.hpp:19034
@ NEC850_BSA
Definition allins.hpp:18816
@ NEC850_DIVH_r3
Definition allins.hpp:18847
@ NEC850_PKI64I32
Definition allins.hpp:19197
@ NEC850_MADDF_S
Definition allins.hpp:18930
@ NEC850_HVCALL
Definition allins.hpp:19019
@ NEC850_NOP
Definition allins.hpp:18784
@ NEC850_ROUNDF_SL
Definition allins.hpp:19043
@ NEC850_BSH
Definition allins.hpp:18853
@ NEC850_FLOORF_SUL
Definition allins.hpp:18967
@ NEC850_PKUI8I16
Definition allins.hpp:19190
@ NEC850_FLOORF_SUW
Definition allins.hpp:18968
@ NEC850_VMULCX_W
Definition allins.hpp:19147
@ NEC850_MULRF_S4
Definition allins.hpp:19259
@ NEC850_LDL_W
Definition allins.hpp:18993
@ NEC850_DUP_H
Definition allins.hpp:19090
@ NEC850_VMAXGE_W
Definition allins.hpp:19169
@ NEC850_FLPV_S4
Definition allins.hpp:19209
@ NEC850_STFF
Definition allins.hpp:18902
@ NEC850_VADDS_H
Definition allins.hpp:19137
@ NEC850_ADDXF_S4
Definition allins.hpp:19247
@ NEC850_RSQRTF_D
Definition allins.hpp:18924
@ NEC850_VBSWAP_DW
Definition allins.hpp:19086
@ NEC850_NMADDF_S
Definition allins.hpp:18932
@ NEC850_LDL_BU
Definition allins.hpp:19056
@ NEC850_SLD_B
Definition allins.hpp:18767
@ NEC850_ROUNDF_SUW
Definition allins.hpp:19046
@ NEC850_PKI16UI8
Definition allins.hpp:19193
@ NEC850_CMOVF_D
Definition allins.hpp:18980
@ NEC850_DBTRAP
Definition allins.hpp:18835
@ NEC850_MOV_DW
Definition allins.hpp:19094
@ NEC850_STFC
Definition allins.hpp:18901
@ NEC850_VMUL_H
Definition allins.hpp:19142
@ NEC850_ADDSUBF_S4
Definition allins.hpp:19242
@ NEC850_VSHL_DW
Definition allins.hpp:19078
@ NEC850_VSUBS_W
Definition allins.hpp:19140
@ NEC850_MINF_S
Definition allins.hpp:18916
@ NEC850_TRNCF_SW
Definition allins.hpp:18976
@ NEC850_LDL_HU
Definition allins.hpp:19057
@ NEC850_DIVF_S
Definition allins.hpp:18912
@ NEC850_CLIP_H
Definition allins.hpp:19053
@ NEC850_ABSF_D
Definition allins.hpp:18907
@ NEC850_POPSP
Definition allins.hpp:18999
@ NEC850_LDFC
Definition allins.hpp:18899
@ NEC850_DIVHU
Definition allins.hpp:18848
@ NEC850_ADDSUBNXF_S4
Definition allins.hpp:19251
@ NEC850_LDM_MP
Definition allins.hpp:19048
@ NEC850_CMOV
Definition allins.hpp:18856
@ NEC850_VNOT
Definition allins.hpp:19068
@ NEC850_CVTF_DUW
Definition allins.hpp:18946
@ NEC850_CEILF_SW
Definition allins.hpp:18938
@ NEC850_CVTF_WS4
Definition allins.hpp:19269
@ NEC850_CMPF_D
Definition allins.hpp:18978
@ NEC850_VLD_DW_FMT5
Definition allins.hpp:19109
@ NEC850_VLD_DW_FMT3
Definition allins.hpp:19107
@ NEC850_SLD_H
Definition allins.hpp:18768
@ NEC850_BGE
Definition allins.hpp:18817
@ NEC850_SQRTF_S
Definition allins.hpp:18927
@ NEC850_CVTF_WD
Definition allins.hpp:18959
@ NEC850_VXOR
Definition allins.hpp:19067
@ NEC850_CVTF_SUW4
Definition allins.hpp:19266
@ NEC850_VBSWAP_W
Definition allins.hpp:19088
@ NEC850_VMAXGT_H
Definition allins.hpp:19164
@ NEC850_LDV_DW
Definition allins.hpp:19212
@ NEC850_MULF_D
Definition allins.hpp:18917
m65_itype_t
Definition allins.hpp:3228
@ M65816_dex
Definition allins.hpp:3255
@ M65816_plp
Definition allins.hpp:3286
@ M65816_sep
Definition allins.hpp:3299
@ M65816_brk
Definition allins.hpp:3242
@ M65816_nop
Definition allins.hpp:3271
@ M65816_stz
Definition allins.hpp:3304
@ M65816_inc
Definition allins.hpp:3258
@ M65816_wai
Definition allins.hpp:3319
@ M65816_sta
Definition allins.hpp:3300
@ M65816_rti
Definition allins.hpp:3292
@ M65816_brl
Definition allins.hpp:3243
@ M65816_pla
Definition allins.hpp:3283
@ M65816_php
Definition allins.hpp:3280
@ M65816_bra
Definition allins.hpp:3241
@ M65816_stp
Definition allins.hpp:3301
@ M65816_rts
Definition allins.hpp:3294
@ M65816_phk
Definition allins.hpp:3279
@ M65816_bmi
Definition allins.hpp:3238
@ M65816_rtl
Definition allins.hpp:3293
@ M65816_mvn
Definition allins.hpp:3269
@ M65816_phx
Definition allins.hpp:3281
@ M65816_mvp
Definition allins.hpp:3270
@ M65816_bcc
Definition allins.hpp:3234
@ M65816_dec
Definition allins.hpp:3254
@ M65816_bcs
Definition allins.hpp:3235
@ M65816_sbc
Definition allins.hpp:3295
@ M65816_xba
Definition allins.hpp:3321
@ M65816_iny
Definition allins.hpp:3260
@ M65816_clv
Definition allins.hpp:3249
@ M65816_plx
Definition allins.hpp:3287
@ M65816_phd
Definition allins.hpp:3278
@ M65816_sec
Definition allins.hpp:3296
@ M65816_sty
Definition allins.hpp:3303
@ M65816_xce
Definition allins.hpp:3322
@ M65816_asl
Definition allins.hpp:3233
@ M65816_phy
Definition allins.hpp:3282
@ M65816_inx
Definition allins.hpp:3259
@ M65816_adc
Definition allins.hpp:3231
@ M65816_cpy
Definition allins.hpp:3253
@ M65816_rep
Definition allins.hpp:3289
@ M65816_phb
Definition allins.hpp:3277
@ M65816_txs
Definition allins.hpp:3315
@ M65816_tcd
Definition allins.hpp:3307
@ M65816_sei
Definition allins.hpp:3298
@ M65816_cmp
Definition allins.hpp:3250
@ M65816_bpl
Definition allins.hpp:3240
@ M65816_ror
Definition allins.hpp:3291
@ M65816_tya
Definition allins.hpp:3317
@ M65816_cld
Definition allins.hpp:3247
@ M65816_tyx
Definition allins.hpp:3318
@ M65816_cpx
Definition allins.hpp:3252
@ M65816_dey
Definition allins.hpp:3256
@ M65816_last
Definition allins.hpp:3323
@ M65816_txy
Definition allins.hpp:3316
@ M65816_bne
Definition allins.hpp:3239
@ M65816_jmp
Definition allins.hpp:3262
@ M65816_pha
Definition allins.hpp:3276
@ M65816_tay
Definition allins.hpp:3306
@ M65816_bvs
Definition allins.hpp:3245
@ M65816_trb
Definition allins.hpp:3310
@ M65816_bvc
Definition allins.hpp:3244
@ M65816_ldx
Definition allins.hpp:3266
@ M65816_pld
Definition allins.hpp:3285
@ M65816_tdc
Definition allins.hpp:3309
@ M65816_per
Definition allins.hpp:3275
@ M65816_and
Definition allins.hpp:3232
@ M65816_txa
Definition allins.hpp:3314
@ M65816_tax
Definition allins.hpp:3305
@ M65816_ldy
Definition allins.hpp:3267
@ M65816_lda
Definition allins.hpp:3265
@ M65816_cli
Definition allins.hpp:3248
@ M65816_plb
Definition allins.hpp:3284
@ M65816_cop
Definition allins.hpp:3251
@ M65816_clc
Definition allins.hpp:3246
@ M65816_eor
Definition allins.hpp:3257
@ M65816_beq
Definition allins.hpp:3236
@ M65816_jsr
Definition allins.hpp:3264
@ M65816_bit
Definition allins.hpp:3237
@ M65816_wdm
Definition allins.hpp:3320
@ M65816_null
Definition allins.hpp:3230
@ M65816_tcs
Definition allins.hpp:3308
@ M65816_ply
Definition allins.hpp:3288
@ M65816_sed
Definition allins.hpp:3297
@ M65816_tsb
Definition allins.hpp:3311
@ M65816_tsx
Definition allins.hpp:3313
@ M65816_ora
Definition allins.hpp:3272
@ M65816_jml
Definition allins.hpp:3261
@ M65816_tsc
Definition allins.hpp:3312
@ M65816_lsr
Definition allins.hpp:3268
@ M65816_pea
Definition allins.hpp:3273
@ M65816_jsl
Definition allins.hpp:3263
@ M65816_pei
Definition allins.hpp:3274
@ M65816_rol
Definition allins.hpp:3290
@ M65816_stx
Definition allins.hpp:3302
@ TMS_cpl2
Definition allins.hpp:2836
@ TMS_pshd
Definition allins.hpp:2882
@ TMS_banzd
Definition allins.hpp:2816
@ TMS2_ldpk
Definition allins.hpp:2995
@ TMS_rptz
Definition allins.hpp:2896
@ TMS2_add
Definition allins.hpp:2943
@ TMS_xc
Definition allins.hpp:2929
@ TMS_spm
Definition allins.hpp:2917
@ TMS2_bbz
Definition allins.hpp:2958
@ TMS2_subc
Definition allins.hpp:3061
@ TMS2_cnfd
Definition allins.hpp:2978
@ TMS_bldp
Definition allins.hpp:2823
@ TMS2_cnfp
Definition allins.hpp:2979
@ TMS2_adds
Definition allins.hpp:2947
@ TMS2_bgz
Definition allins.hpp:2961
@ TMS2_bgez
Definition allins.hpp:2960
@ TMS2_bz
Definition allins.hpp:2973
@ TMS_lacc
Definition allins.hpp:2847
@ TMS_intr
Definition allins.hpp:2845
@ TMS_ror
Definition allins.hpp:2892
@ TMS_lt
Definition allins.hpp:2856
@ TMS_subc
Definition allins.hpp:2923
@ TMS2_rsxm
Definition allins.hpp:3033
@ TMS_addb
Definition allins.hpp:2802
@ TMS2_spl
Definition allins.hpp:3050
@ TMS2_lrlk
Definition allins.hpp:2997
@ TMS_retcd
Definition allins.hpp:2886
@ TMS2_mpyk
Definition allins.hpp:3010
@ TMS2_rol
Definition allins.hpp:3028
@ TMS_sbrk
Definition allins.hpp:2906
@ TMS_or
Definition allins.hpp:2876
@ TMS_zap
Definition allins.hpp:2935
@ TMS2_blkp
Definition allins.hpp:2967
@ TMS2_zac
Definition allins.hpp:3072
@ TMS_macd
Definition allins.hpp:2862
@ TMS_mpys
Definition allins.hpp:2868
@ TMS2_conf
Definition allins.hpp:2980
@ TMS2_pop
Definition allins.hpp:3020
@ TMS_sbb
Definition allins.hpp:2904
@ TMS2_rxf
Definition allins.hpp:3036
@ TMS2_bit
Definition allins.hpp:2963
@ TMS2_subt
Definition allins.hpp:3065
@ TMS2_fort
Definition allins.hpp:2984
@ TMS_calld
Definition allins.hpp:2829
@ TMS2_rptk
Definition allins.hpp:3032
@ TMS2_zals
Definition allins.hpp:3075
@ TMS_rol
Definition allins.hpp:2890
@ TMS2_rtc
Definition allins.hpp:3034
@ TMS2_or
Definition allins.hpp:3016
@ TMS2_pac
Definition allins.hpp:3019
@ TMS2_spm
Definition allins.hpp:3051
@ TMS_nmi
Definition allins.hpp:2871
@ TMS2_sar
Definition allins.hpp:3039
@ TMS_ccd
Definition allins.hpp:2831
@ TMS_exar
Definition allins.hpp:2841
@ TMS_retd
Definition allins.hpp:2887
@ TMS_nop
Definition allins.hpp:2872
@ TMS_bd
Definition allins.hpp:2819
@ TMS_andb
Definition allins.hpp:2808
@ TMS_ldp
Definition allins.hpp:2852
@ TMS2_sxf
Definition allins.hpp:3066
@ TMS2_stc
Definition allins.hpp:3057
@ TMS_norm
Definition allins.hpp:2873
@ TMS_cala
Definition allins.hpp:2826
@ TMS_zalr
Definition allins.hpp:2934
@ TMS2_sfr
Definition allins.hpp:3044
@ TMS_adds
Definition allins.hpp:2804
@ TMS_lta
Definition allins.hpp:2857
@ TMS_apac
Definition allins.hpp:2809
@ TMS2_larp
Definition allins.hpp:2993
@ TMS2_eint
Definition allins.hpp:2983
@ TMS_retc
Definition allins.hpp:2885
@ TMS_orb
Definition allins.hpp:2877
@ TMS_neg
Definition allins.hpp:2870
@ TMS_rpt
Definition allins.hpp:2894
@ TMS_sfl
Definition allins.hpp:2908
@ TMS2_subh
Definition allins.hpp:3062
@ TMS_bcnd
Definition allins.hpp:2817
@ TMS2_addk
Definition allins.hpp:2946
@ TMS2_in
Definition allins.hpp:2986
@ TMS2_nop
Definition allins.hpp:3014
@ TMS2_lst
Definition allins.hpp:2998
@ TMS_blpd
Definition allins.hpp:2824
@ TMS_setc
Definition allins.hpp:2907
@ TMS_spac
Definition allins.hpp:2913
@ TMS_sach
Definition allins.hpp:2898
@ TMS2_ork
Definition allins.hpp:3017
@ TMS_pac
Definition allins.hpp:2879
@ TMS2_sblk
Definition allins.hpp:3040
@ TMS2_apac
Definition allins.hpp:2953
@ TMS2_bitt
Definition allins.hpp:2964
@ TMS_dmov
Definition allins.hpp:2839
@ TMS2_shm
Definition allins.hpp:3046
@ TMS_sfrb
Definition allins.hpp:2911
@ TMS_null
Definition allins.hpp:2798
@ TMS2_lact
Definition allins.hpp:2989
@ TMS_sflb
Definition allins.hpp:2909
@ TMS_xor
Definition allins.hpp:2930
@ TMS2_xork
Definition allins.hpp:3071
@ TMS2_subb
Definition allins.hpp:3060
@ TMS_bacc
Definition allins.hpp:2813
@ TMS_xorb
Definition allins.hpp:2931
@ TMS_mpya
Definition allins.hpp:2867
@ TMS_mar
Definition allins.hpp:2865
@ TMS_lar
Definition allins.hpp:2851
@ TMS2_norm
Definition allins.hpp:3015
@ TMS2_bacc
Definition allins.hpp:2955
@ TMS_estop
Definition allins.hpp:2840
@ TMS2_b
Definition allins.hpp:2954
@ TMS_cmpl
Definition allins.hpp:2833
@ TMS2_mpyu
Definition allins.hpp:3012
@ TMS2_ret
Definition allins.hpp:3025
@ TMS2_blez
Definition allins.hpp:2965
@ TMS2_push
Definition allins.hpp:3023
@ TMS2_cmpl
Definition allins.hpp:2976
@ TMS_lph
Definition allins.hpp:2854
@ TMS_ltd
Definition allins.hpp:2858
@ TMS_b
Definition allins.hpp:2812
@ TMS_rete
Definition allins.hpp:2888
@ TMS2_sst
Definition allins.hpp:3054
@ TMS_splk
Definition allins.hpp:2916
@ TMS2_lt
Definition allins.hpp:3000
@ TMS_ret
Definition allins.hpp:2884
@ TMS_sbbb
Definition allins.hpp:2905
@ TMS_lacb
Definition allins.hpp:2846
@ TMS_satl
Definition allins.hpp:2903
@ TMS_spl
Definition allins.hpp:2915
@ TMS_bcndd
Definition allins.hpp:2818
@ TMS2_sph
Definition allins.hpp:3049
@ TMS_abs
Definition allins.hpp:2799
@ TMS_mpyu
Definition allins.hpp:2869
@ TMS_rolb
Definition allins.hpp:2891
@ TMS2_bnz
Definition allins.hpp:2971
@ TMS_out
Definition allins.hpp:2878
@ TMS_crlt
Definition allins.hpp:2838
@ TMS_popd
Definition allins.hpp:2881
@ TMS_lact
Definition allins.hpp:2849
@ TMS_sst
Definition allins.hpp:2920
@ TMS_sqrs
Definition allins.hpp:2919
@ TMS_last
Definition allins.hpp:3077
@ TMS_reti
Definition allins.hpp:2889
@ TMS2_sst1
Definition allins.hpp:3055
@ TMS2_subk
Definition allins.hpp:3063
@ TMS2_sfl
Definition allins.hpp:3043
@ TMS_subt
Definition allins.hpp:2925
@ TMS_pop
Definition allins.hpp:2880
@ TMS2_subs
Definition allins.hpp:3064
@ TMS2_bnc
Definition allins.hpp:2969
@ TMS_and
Definition allins.hpp:2807
@ TMS_lts
Definition allins.hpp:2860
@ TMS2_bioz
Definition allins.hpp:2962
@ TMS2_macd
Definition allins.hpp:3006
@ TMS2_lta
Definition allins.hpp:3001
@ TMS_subs
Definition allins.hpp:2924
@ TMS2_bv
Definition allins.hpp:2972
@ TMS_zpr
Definition allins.hpp:2936
@ TMS2_trap
Definition allins.hpp:3069
@ TMS2_dint
Definition allins.hpp:2981
@ TMS2_xor
Definition allins.hpp:3070
@ TMS_cmpr
Definition allins.hpp:2834
@ TMS2_lar
Definition allins.hpp:2991
@ TMS2_bbnz
Definition allins.hpp:2957
@ TMS_trap
Definition allins.hpp:2928
@ TMS_push
Definition allins.hpp:2883
@ TMS_sar
Definition allins.hpp:2901
@ TMS2_zalr
Definition allins.hpp:3074
@ TMS_rptb
Definition allins.hpp:2895
@ TMS2_addh
Definition allins.hpp:2945
@ TMS_sub
Definition allins.hpp:2921
@ TMS_apl
Definition allins.hpp:2810
@ TMS2_bc
Definition allins.hpp:2959
@ TMS_idle2
Definition allins.hpp:2843
@ TMS_lamm
Definition allins.hpp:2850
@ TMS2_lack
Definition allins.hpp:2988
@ TMS_addt
Definition allins.hpp:2805
@ TMS2_blz
Definition allins.hpp:2968
@ TMS2_ltd
Definition allins.hpp:3002
@ TMS_banz
Definition allins.hpp:2815
@ TMS_sfr
Definition allins.hpp:2910
@ TMS2_tblw
Definition allins.hpp:3068
@ TMS2_addc
Definition allins.hpp:2944
@ TMS2_lph
Definition allins.hpp:2996
@ TMS_adcb
Definition allins.hpp:2800
@ TMS_in
Definition allins.hpp:2844
@ TMS_sqra
Definition allins.hpp:2918
@ TMS2_lts
Definition allins.hpp:3004
@ TMS2_sovm
Definition allins.hpp:3047
@ TMS2_pshd
Definition allins.hpp:3022
@ TMS_smmr
Definition allins.hpp:2912
@ TMS_cc
Definition allins.hpp:2830
@ TMS_mpy
Definition allins.hpp:2866
@ TMS_crgt
Definition allins.hpp:2837
@ TMS2_mpya
Definition allins.hpp:3009
@ TMS_clrc
Definition allins.hpp:2832
@ TMS_bldd
Definition allins.hpp:2822
@ TMS2_out
Definition allins.hpp:3018
@ TMS_add
Definition allins.hpp:2801
@ TMS2_lalk
Definition allins.hpp:2990
@ TMS2_mar
Definition allins.hpp:3007
@ TMS_madd
Definition allins.hpp:2863
@ TMS2_addt
Definition allins.hpp:2948
@ TMS_mac
Definition allins.hpp:2861
@ TMS2_sc
Definition allins.hpp:3042
@ TMS_baccd
Definition allins.hpp:2814
@ TMS2_adlk
Definition allins.hpp:2949
@ TMS2_mac
Definition allins.hpp:3005
@ TMS_call
Definition allins.hpp:2828
@ TMS2_idle
Definition allins.hpp:2985
@ TMS2_mpy
Definition allins.hpp:3008
@ TMS2_neg
Definition allins.hpp:3013
@ TMS2_sacl
Definition allins.hpp:3038
@ TMS_bitt
Definition allins.hpp:2821
@ TMS_xpl
Definition allins.hpp:2932
@ TMS2_tblr
Definition allins.hpp:3067
@ TMS2_andk
Definition allins.hpp:2952
@ TMS2_bnv
Definition allins.hpp:2970
@ TMS2_banz
Definition allins.hpp:2956
@ TMS_xpl2
Definition allins.hpp:2933
@ TMS_mads
Definition allins.hpp:2864
@ TMS2_ltp
Definition allins.hpp:3003
@ TMS_ltp
Definition allins.hpp:2859
@ TMS2_lst1
Definition allins.hpp:2999
@ TMS2_rtxm
Definition allins.hpp:3035
@ TMS2_dmov
Definition allins.hpp:2982
@ TMS_sath
Definition allins.hpp:2902
@ TMS2_rhm
Definition allins.hpp:3027
@ TMS2_sbrk
Definition allins.hpp:3041
@ TMS2_popd
Definition allins.hpp:3021
@ TMS2_rpt
Definition allins.hpp:3031
@ TMS_opl
Definition allins.hpp:2874
@ TMS_adrk
Definition allins.hpp:2806
@ TMS_tblw
Definition allins.hpp:2927
@ TMS2_blkd
Definition allins.hpp:2966
@ TMS_lacl
Definition allins.hpp:2848
@ TMS2_sfsm
Definition allins.hpp:3045
@ TMS_bit
Definition allins.hpp:2820
@ TMS_lmmr
Definition allins.hpp:2853
@ TMS2_ror
Definition allins.hpp:3029
@ TMS2_ssxm
Definition allins.hpp:3056
@ TMS2_sach
Definition allins.hpp:3037
@ TMS_cpl
Definition allins.hpp:2835
@ TMS2_call
Definition allins.hpp:2975
@ TMS_rorb
Definition allins.hpp:2893
@ TMS2_lac
Definition allins.hpp:2987
@ TMS2_sub
Definition allins.hpp:3059
@ TMS2_sqrs
Definition allins.hpp:3053
@ TMS_idle
Definition allins.hpp:2842
@ TMS2_sqra
Definition allins.hpp:3052
@ TMS2_zalh
Definition allins.hpp:3073
@ TMS2_stxm
Definition allins.hpp:3058
@ TMS2_lark
Definition allins.hpp:2992
@ TMS2_cmpr
Definition allins.hpp:2977
@ TMS2_cala
Definition allins.hpp:2974
@ TMS_samm
Definition allins.hpp:2900
@ TMS_sph
Definition allins.hpp:2914
@ TMS_calad
Definition allins.hpp:2827
@ TMS_tblr
Definition allins.hpp:2926
@ TMS_lst
Definition allins.hpp:2855
@ TMS_bsar
Definition allins.hpp:2825
@ TMS2_and
Definition allins.hpp:2951
@ TMS2_rovm
Definition allins.hpp:3030
@ TMS2_abs
Definition allins.hpp:2942
@ TMS_apl2
Definition allins.hpp:2811
@ TMS2_rc
Definition allins.hpp:3024
@ TMS2_rfsm
Definition allins.hpp:3026
@ TMS_sacl
Definition allins.hpp:2899
@ TMS_sacb
Definition allins.hpp:2897
@ TMS_addc
Definition allins.hpp:2803
@ TMS2_spac
Definition allins.hpp:3048
@ TMS_opl2
Definition allins.hpp:2875
@ TMS2_adrk
Definition allins.hpp:2950
@ TMS2_mpys
Definition allins.hpp:3011
@ TMS2_ldp
Definition allins.hpp:2994
@ TMS_subb
Definition allins.hpp:2922
@ s39_vmeb
Definition allins.hpp:22817
@ s39_mvck
Definition allins.hpp:21996
@ s39_shy
Definition allins.hpp:22198
@ s39_xc
Definition allins.hpp:23140
@ s39_wfmaxsb
Definition allins.hpp:23108
@ s39_ssar
Definition allins.hpp:22265
@ s39_ddb
Definition allins.hpp:21460
@ s39_kmac
Definition allins.hpp:21588
@ s39_vmaleh
Definition allins.hpp:22801
@ s39_clghrl
Definition allins.hpp:21267
@ s39_stckc
Definition allins.hpp:22276
@ s39_wcdlgb
Definition allins.hpp:23031
@ s39_locgrno
Definition allins.hpp:21815
@ s39_wfkhsb
Definition allins.hpp:23085
@ s39_selhhhrle
Definition allins.hpp:22168
@ s39_clgrj
Definition allins.hpp:21298
@ s39_algfr
Definition allins.hpp:20984
@ s39_edmk
Definition allins.hpp:21493
@ s39_vllezb
Definition allins.hpp:22763
@ s39_clgtnl
Definition allins.hpp:21318
@ s39_locfhe
Definition allins.hpp:21749
@ s39_vstrczbs
Definition allins.hpp:22987
@ s39_vchlh
Definition allins.hpp:22493
@ s39_lpctl
Definition allins.hpp:21861
@ s39_bic
Definition allins.hpp:21067
@ s39_fidtr
Definition allins.hpp:21515
@ s39_mvhhi
Definition allins.hpp:22006
@ s39_vsrl
Definition allins.hpp:22957
@ s39_cgitnlh
Definition allins.hpp:21177
@ s39_lxe
Definition allins.hpp:21913
@ s39_xg
Definition allins.hpp:23141
@ s39_bor
Definition allins.hpp:21026
@ s39_vsb
Definition allins.hpp:22926
@ s39_selgrne
Definition allins.hpp:22148
@ s39_vpklsg
Definition allins.hpp:22896
@ s39_sortl
Definition allins.hpp:22229
@ s39_bher
Definition allins.hpp:21035
@ s39_lhi
Definition allins.hpp:21680
@ s39_vpklsgs
Definition allins.hpp:22897
@ s39_stocghe
Definition allins.hpp:22350
@ s39_cghi
Definition allins.hpp:21156
@ s39_wfkhesbs
Definition allins.hpp:23082
@ s39_vstrszb
Definition allins.hpp:22998
@ s39_srstu
Definition allins.hpp:22262
@ s39_vmrlg
Definition allins.hpp:22863
@ s39_vacch
Definition allins.hpp:22438
@ s39_vuplhw
Definition allins.hpp:23024
@ s39_cghrl
Definition allins.hpp:21157
@ s39_locglh
Definition allins.hpp:21777
@ s39_pgin
Definition allins.hpp:22084
@ s39_vcvdg
Definition allins.hpp:22515
@ s39_vfmindb
Definition allins.hpp:22666
@ s39_stocgl
Definition allins.hpp:22344
@ s39_cgxbr
Definition allins.hpp:21203
@ s39_madbr
Definition allins.hpp:21927
@ s39_bsg
Definition allins.hpp:21083
@ s39_sty
Definition allins.hpp:22368
@ s39_lndr
Definition allins.hpp:21718
@ s39_lochi
Definition allins.hpp:21831
@ s39_aih
Definition allins.hpp:20974
@ s39_bih
Definition allins.hpp:21054
@ s39_dr
Definition allins.hpp:21478
@ s39_selgrnhe
Definition allins.hpp:22146
@ s39_mayh
Definition allins.hpp:21934
@ s39_vmrhh
Definition allins.hpp:22859
@ s39_vmalo
Definition allins.hpp:22808
@ s39_locghinl
Definition allins.hpp:21797
@ s39_jgnhe
Definition allins.hpp:21568
@ s39_clgible
Definition allins.hpp:21275
@ s39_vmhh
Definition allins.hpp:22823
@ s39_vfd
Definition allins.hpp:22603
@ s39_vlpb
Definition allins.hpp:22770
@ s39_cgf
Definition allins.hpp:21151
@ s39_vmaof
Definition allins.hpp:22814
@ s39_selgrnlh
Definition allins.hpp:22150
@ s39_vuplhb
Definition allins.hpp:23021
@ s39_locfhrnle
Definition allins.hpp:21759
@ s39_svc
Definition allins.hpp:22371
@ s39_vsumqg
Definition allins.hpp:23009
@ s39_vfaeh
Definition allins.hpp:22579
@ s39_clgitle
Definition allins.hpp:21289
@ s39_ereg
Definition allins.hpp:21501
@ s39_lnr
Definition allins.hpp:21723
@ s39_bal
Definition allins.hpp:21041
@ s39_cvdy
Definition allins.hpp:21434
@ s39_vpks
Definition allins.hpp:22900
@ s39_vled
Definition allins.hpp:22737
@ s39_lochine
Definition allins.hpp:21838
@ s39_cdlfbr
Definition allins.hpp:21102
@ s39_llghr
Definition allins.hpp:21695
@ s39_vfenezhs
Definition allins.hpp:22631
@ s39_stsch
Definition allins.hpp:22364
@ s39_vlcf
Definition allins.hpp:22728
@ s39_spt
Definition allins.hpp:22234
@ s39_vftci
Definition allins.hpp:22687
@ s39_cdbr
Definition allins.hpp:21092
@ s39_mvhi
Definition allins.hpp:22007
@ s39_clgith
Definition allins.hpp:21284
@ s39_balr
Definition allins.hpp:21042
@ s39_ngrk
Definition allins.hpp:22035
@ s39_mder
Definition allins.hpp:21946
@ s39_ap
Definition allins.hpp:20998
@ s39_deb
Definition allins.hpp:21466
@ s39_vlp
Definition allins.hpp:22769
@ s39_vsegb
Definition allins.hpp:22941
@ s39_fidbr
Definition allins.hpp:21512
@ s39_locgrl
Definition allins.hpp:21805
@ s39_llilh
Definition allins.hpp:21708
@ s39_lochinh
Definition allins.hpp:21844
@ s39_tar
Definition allins.hpp:22381
@ s39_veslv
Definition allins.hpp:22547
@ s39_vsdp
Definition allins.hpp:22939
@ s39_vmob
Definition allins.hpp:22851
@ s39_tpi
Definition allins.hpp:22407
@ s39_tbeginc
Definition allins.hpp:22386
@ s39_nihl
Definition allins.hpp:22040
@ s39_vstm
Definition allins.hpp:22978
@ s39_xilf
Definition allins.hpp:23146
@ s39_vuph
Definition allins.hpp:23012
@ s39_mlgr
Definition allins.hpp:21966
@ s39_clm
Definition allins.hpp:21344
@ s39_vstebrh
Definition allins.hpp:22969
@ s39_aeb
Definition allins.hpp:20954
@ s39_locne
Definition allins.hpp:21733
@ s39_cdsg
Definition allins.hpp:21109
@ s39_cgrl
Definition allins.hpp:21195
@ s39_vistr
Definition allins.hpp:22708
@ s39_cdstr
Definition allins.hpp:21110
@ s39_ah
Definition allins.hpp:20968
@ s39_icm
Definition allins.hpp:21529
@ s39_cgijh
Definition allins.hpp:21167
@ s39_s
Definition allins.hpp:22119
@ s39_cgrtnlh
Definition allins.hpp:21200
@ s39_vmale
Definition allins.hpp:22798
@ s39_stgsc
Definition allins.hpp:22299
@ s39_lgdr
Definition allins.hpp:21665
@ s39_lpr
Definition allins.hpp:21873
@ s39_brxhg
Definition allins.hpp:21079
@ s39_stckf
Definition allins.hpp:22278
@ s39_sdb
Definition allins.hpp:22133
@ s39_llghrl
Definition allins.hpp:21696
@ s39_vstrcf
Definition allins.hpp:22982
@ s39_lgfr
Definition allins.hpp:21668
@ s39_lbh
Definition allins.hpp:21616
@ s39_chsi
Definition allins.hpp:21215
@ s39_wfksb
Definition allins.hpp:23089
@ s39_vupllh
Definition allins.hpp:23028
@ s39_verimb
Definition allins.hpp:22528
@ s39_selhhhre
Definition allins.hpp:22164
@ s39_lamy
Definition allins.hpp:21604
@ s39_clr
Definition allins.hpp:21347
@ s39_ni
Definition allins.hpp:22036
@ s39_vmsp
Definition allins.hpp:22867
@ s39_cvb
Definition allins.hpp:21429
@ s39_cer
Definition allins.hpp:21127
@ s39_jgle
Definition allins.hpp:21575
@ s39_cgxbra
Definition allins.hpp:21204
@ s39_selgrh
Definition allins.hpp:22143
@ s39_stocgnle
Definition allins.hpp:22343
@ s39_cli
Definition allins.hpp:21327
@ s39_stoce
Definition allins.hpp:22318
@ s39_mxr
Definition allins.hpp:22020
@ s39_qaxtr
Definition allins.hpp:22100
@ s39_fixr
Definition allins.hpp:21521
@ s39_stck
Definition allins.hpp:22275
@ s39_vclgdb
Definition allins.hpp:22499
@ s39_stcmy
Definition allins.hpp:22281
@ s39_jgl
Definition allins.hpp:21567
@ s39_mayr
Definition allins.hpp:21938
@ s39_trt
Definition allins.hpp:22417
@ s39_celfbr
Definition allins.hpp:21125
@ s39_vfeezhs
Definition allins.hpp:22618
@ s39_ltxr
Definition allins.hpp:21904
@ s39_vpklshs
Definition allins.hpp:22899
@ s39_fiebra
Definition allins.hpp:21517
@ s39_vchfs
Definition allins.hpp:22481
@ s39_clghsi
Definition allins.hpp:21268
@ s39_cible
Definition allins.hpp:21223
@ s39_wfchdb
Definition allins.hpp:23049
@ s39_vleib
Definition allins.hpp:22742
@ s39_wfchexbs
Definition allins.hpp:23056
@ s39_hsch
Definition allins.hpp:21526
@ s39_sdtra
Definition allins.hpp:22137
@ s39_vnn
Definition allins.hpp:22880
@ s39_ny
Definition allins.hpp:22056
@ s39_shhlr
Definition allins.hpp:22197
@ s39_vmrlb
Definition allins.hpp:22861
@ s39_sy
Definition allins.hpp:22378
@ s39_bil
Definition allins.hpp:21056
@ s39_vlbrrepg
Definition allins.hpp:22724
@ s39_clclu
Definition allins.hpp:21244
@ s39_jlh
Definition allins.hpp:21554
@ s39_cfebr
Definition allins.hpp:21134
@ s39_ocrk
Definition allins.hpp:22060
@ s39_cgrjnl
Definition allins.hpp:21193
@ s39_vfkhsb
Definition allins.hpp:22645
@ s39_llgfr
Definition allins.hpp:21691
@ s39_vclfp
Definition allins.hpp:22497
@ s39_eextr
Definition allins.hpp:21495
@ s39_vesrlvg
Definition allins.hpp:22570
@ s39_cuutf
Definition allins.hpp:21427
@ s39_nc
Definition allins.hpp:22030
@ s39_bnler
Definition allins.hpp:21028
@ s39_locfhle
Definition allins.hpp:21753
@ s39_wfadb
Definition allins.hpp:23038
@ s39_crth
Definition allins.hpp:21403
@ s39_wfixb
Definition allins.hpp:23068
@ s39_selrh
Definition allins.hpp:22173
@ s39_sfasr
Definition allins.hpp:22187
@ s39_wflcxb
Definition allins.hpp:23093
@ s39_tceb
Definition allins.hpp:22388
@ s39_vecf
Definition allins.hpp:22519
@ s39_clgrb
Definition allins.hpp:21291
@ s39_vmlhb
Definition allins.hpp:22832
@ s39_cibh
Definition allins.hpp:21218
@ s39_wflpsb
Definition allins.hpp:23100
@ s39_verllvb
Definition allins.hpp:22538
@ s39_nihf
Definition allins.hpp:22038
@ s39_stura
Definition allins.hpp:22366
@ s39_vmlo
Definition allins.hpp:22836
@ s39_stocfhnh
Definition allins.hpp:22338
@ s39_ltgf
Definition allins.hpp:21899
@ s39_vlbrrepf
Definition allins.hpp:22723
@ s39_lochinlh
Definition allins.hpp:21840
@ s39_ssch
Definition allins.hpp:22266
@ s39_vlvgh
Definition allins.hpp:22786
@ s39_vceqfs
Definition allins.hpp:22467
@ s39_locfhrne
Definition allins.hpp:21763
@ s39_clrblh
Definition allins.hpp:21351
@ s39_alfi
Definition allins.hpp:20980
@ s39_csxtr
Definition allins.hpp:21416
@ s39_ldeb
Definition allins.hpp:21634
@ s39_lang
Definition allins.hpp:21606
@ s39_tcxb
Definition allins.hpp:22389
@ s39_vrepif
Definition allins.hpp:22921
@ s39_vstl
Definition allins.hpp:22977
@ s39_jno
Definition allins.hpp:21562
@ s39_llihl
Definition allins.hpp:21706
@ s39_vclzg
Definition allins.hpp:22503
@ s39_veslf
Definition allins.hpp:22544
@ s39_vfnmasb
Definition allins.hpp:22674
@ s39_vsl
Definition allins.hpp:22948
@ s39_vavgg
Definition allins.hpp:22449
@ s39_lfhat
Definition allins.hpp:21659
@ s39_vpksg
Definition allins.hpp:22903
@ s39_wfdxb
Definition allins.hpp:23065
@ s39_mxdr
Definition allins.hpp:22019
@ s39_msgrkc
Definition allins.hpp:21988
@ s39_laey
Definition allins.hpp:21602
@ s39_wfcexbs
Definition allins.hpp:23048
@ s39_vlerh
Definition allins.hpp:22749
@ s39_mdr
Definition allins.hpp:21947
@ s39_vllebrzg
Definition allins.hpp:22760
@ s39_ahi
Definition allins.hpp:20971
@ s39_bl
Definition allins.hpp:21015
@ s39_stocgo
Definition allins.hpp:22341
@ s39_clrbnl
Definition allins.hpp:21353
@ s39_ork
Definition allins.hpp:22073
@ s39_sdr
Definition allins.hpp:22135
@ s39_loch
Definition allins.hpp:21728
@ s39_locnh
Definition allins.hpp:21739
@ s39_stocfhnhe
Definition allins.hpp:22330
@ s39_chi
Definition allins.hpp:21212
@ s39_chrl
Definition allins.hpp:21214
@ s39_vfaefs
Definition allins.hpp:22578
@ s39_vmlh
Definition allins.hpp:22831
@ s39_vnc
Definition allins.hpp:22879
@ s39_vrepib
Definition allins.hpp:22920
@ s39_binl
Definition allins.hpp:21063
@ s39_risblg
Definition allins.hpp:22107
@ s39_mylr
Definition allins.hpp:22027
@ s39_trtr
Definition allins.hpp:22420
@ s39_wclgdb
Definition allins.hpp:23037
@ s39_lgg
Definition allins.hpp:21670
@ s39_ddbr
Definition allins.hpp:21461
@ s39_vesravf
Definition allins.hpp:22559
@ s39_vesra
Definition allins.hpp:22552
@ s39_vlm
Definition allins.hpp:22768
@ s39_cgiblh
Definition allins.hpp:21162
@ s39_vgm
Definition allins.hpp:22703
@ s39_maer
Definition allins.hpp:21932
@ s39_clgdbr
Definition allins.hpp:21260
@ s39_cfdbr
Definition allins.hpp:21130
@ s39_cksm
Definition allins.hpp:21239
@ s39_ncgrk
Definition allins.hpp:22031
@ s39_selrhe
Definition allins.hpp:22181
@ s39_vmlof
Definition allins.hpp:22838
@ s39_strl
Definition allins.hpp:22360
@ s39_vistrfs
Definition allins.hpp:22712
@ s39_clcle
Definition allins.hpp:21243
@ s39_vgfma
Definition allins.hpp:22694
@ s39_vgfmah
Definition allins.hpp:22698
@ s39_vstrs
Definition allins.hpp:22994
@ s39_wfmadb
Definition allins.hpp:23104
@ s39_llgtr
Definition allins.hpp:21699
@ s39_vledb
Definition allins.hpp:22738
@ s39_locno
Definition allins.hpp:21740
@ s39_palb
Definition allins.hpp:22076
@ s39_der
Definition allins.hpp:21468
@ s39_ark
Definition allins.hpp:21000
@ s39_cu24
Definition allins.hpp:21421
@ s39_vfaezf
Definition allins.hpp:22583
@ s39_vfkhedbs
Definition allins.hpp:22642
@ s39_clgtnlh
Definition allins.hpp:21317
@ s39_vmxb
Definition allins.hpp:22869
@ s39_clgitnl
Definition allins.hpp:21288
@ s39_wfddb
Definition allins.hpp:23063
@ s39_cegbr
Definition allins.hpp:21122
@ s39_clfitnhe
Definition allins.hpp:21252
@ s39_cxgtra
Definition allins.hpp:21444
@ s39_locghe
Definition allins.hpp:21781
@ s39_bakr
Definition allins.hpp:21040
@ s39_lt
Definition allins.hpp:21892
@ s39_llzrgf
Definition allins.hpp:21710
@ s39_vfnmsdb
Definition allins.hpp:22676
@ s39_cgrble
Definition allins.hpp:21187
@ s39_ley
Definition allins.hpp:21656
@ s39_clgitnhe
Definition allins.hpp:21285
@ s39_cgible
Definition allins.hpp:21165
@ s39_wfmaxdb
Definition allins.hpp:23107
@ s39_vcvbg
Definition allins.hpp:22513
@ s39_cgrtle
Definition allins.hpp:21202
@ s39_axtr
Definition allins.hpp:21008
@ s39_ptlb
Definition allins.hpp:22098
@ s39_wfchesb
Definition allins.hpp:23053
@ s39_mdeb
Definition allins.hpp:21944
@ s39_vgeg
Definition allins.hpp:22692
@ s39_cgijnl
Definition allins.hpp:21171
@ s39_iedtr
Definition allins.hpp:21534
@ s39_agfr
Definition allins.hpp:20961
@ s39_cith
Definition allins.hpp:21233
@ s39_mp
Definition allins.hpp:21968
@ s39_mh
Definition allins.hpp:21961
@ s39_vceqb
Definition allins.hpp:22464
@ s39_mee
Definition allins.hpp:21951
@ s39_alcg
Definition allins.hpp:20977
@ s39_locfhrno
Definition allins.hpp:21770
@ s39_cefbra
Definition allins.hpp:21120
@ s39_vfaef
Definition allins.hpp:22577
@ s39_cxpt
Definition allins.hpp:21449
@ s39_selhhhrne
Definition allins.hpp:22163
@ s39_madb
Definition allins.hpp:21926
@ s39_dsg
Definition allins.hpp:21479
@ s39_selrno
Definition allins.hpp:22185
@ s39_vmnlg
Definition allins.hpp:22848
@ s39_stfh
Definition allins.hpp:22293
@ s39_clgrtnlh
Definition allins.hpp:21310
@ s39_vpsop
Definition allins.hpp:22913
@ s39_locgl
Definition allins.hpp:21775
@ s39_lcr
Definition allins.hpp:21627
@ s39_vfeef
Definition allins.hpp:22609
@ s39_stctl
Definition allins.hpp:22285
@ s39_vfssb
Definition allins.hpp:22686
@ s39_cgfr
Definition allins.hpp:21153
@ s39_vmxg
Definition allins.hpp:22871
@ s39_vgef
Definition allins.hpp:22691
@ s39_mxdb
Definition allins.hpp:22017
@ s39_maeb
Definition allins.hpp:21930
@ s39_xgr
Definition allins.hpp:23142
@ s39_agr
Definition allins.hpp:20965
@ s39_o
Definition allins.hpp:22057
@ s39_vch
Definition allins.hpp:22477
@ s39_jne
Definition allins.hpp:21555
@ s39_stocfhl
Definition allins.hpp:22329
@ s39_ldrv
Definition allins.hpp:21640
@ s39_vslb
Definition allins.hpp:22949
@ s39_crbh
Definition allins.hpp:21387
@ s39_vldeb
Definition allins.hpp:22732
@ s39_eregg
Definition allins.hpp:21502
@ s39_vmah
Definition allins.hpp:22792
@ s39_locghio
Definition allins.hpp:21787
@ s39_iilf
Definition allins.hpp:21539
@ s39_selgrnl
Definition allins.hpp:22152
@ s39_stocnh
Definition allins.hpp:22323
@ s39_stey
Definition allins.hpp:22292
@ s39_vrp
Definition allins.hpp:22924
@ s39_clgth
Definition allins.hpp:21314
@ s39_ntstg
Definition allins.hpp:22053
@ s39_vmaeb
Definition allins.hpp:22789
@ s39_vtm
Definition allins.hpp:23010
@ s39_xy
Definition allins.hpp:23151
@ s39_jgh
Definition allins.hpp:21565
@ s39_vflcdb
Definition allins.hpp:22647
@ s39_wfssb
Definition allins.hpp:23132
@ s39_vsbcbi
Definition allins.hpp:22927
@ s39_vfmadb
Definition allins.hpp:22659
@ s39_stpq
Definition allins.hpp:22356
@ s39_vceqgs
Definition allins.hpp:22469
@ s39_iihl
Definition allins.hpp:21538
@ s39_clgrth
Definition allins.hpp:21307
@ s39_ecctr
Definition allins.hpp:21489
@ s39_aghik
Definition allins.hpp:20964
@ s39_oilh
Definition allins.hpp:22069
@ s39_clib
Definition allins.hpp:21328
@ s39_brctg
Definition allins.hpp:21076
@ s39_vlrepb
Definition allins.hpp:22776
@ s39_locfhro
Definition allins.hpp:21757
@ s39_lrer
Definition allins.hpp:21884
@ s39_jglh
Definition allins.hpp:21569
@ s39_stoche
Definition allins.hpp:22320
@ s39_vavgl
Definition allins.hpp:22451
@ s39_sgf
Definition allins.hpp:22190
@ s39_vsrp
Definition allins.hpp:22959
@ s39_vpopctf
Definition allins.hpp:22910
@ s39_clrbh
Definition allins.hpp:21349
@ s39_tbegin
Definition allins.hpp:22385
@ s39_selgro
Definition allins.hpp:22142
@ s39_lgb
Definition allins.hpp:21663
@ s39_locrh
Definition allins.hpp:21848
@ s39_vecl
Definition allins.hpp:22522
@ s39_kma
Definition allins.hpp:21587
@ s39_vcgd
Definition allins.hpp:22475
@ s39_llihh
Definition allins.hpp:21705
@ s39_crtnhe
Definition allins.hpp:21404
@ s39_tsch
Definition allins.hpp:22424
@ s39_crbnhe
Definition allins.hpp:21388
@ s39_locghih
Definition allins.hpp:21788
@ s39_stcy
Definition allins.hpp:22286
@ s39_vpk
Definition allins.hpp:22889
@ s39_crjle
Definition allins.hpp:21400
@ s39_sqer
Definition allins.hpp:22243
@ s39_nxrk
Definition allins.hpp:22055
@ s39_vstrcfs
Definition allins.hpp:22983
@ s39_locro
Definition allins.hpp:21847
@ s39_vchlhs
Definition allins.hpp:22494
@ s39_vfkhdb
Definition allins.hpp:22639
@ s39_vmhf
Definition allins.hpp:22822
@ s39_cfxbr
Definition allins.hpp:21138
@ s39_laa
Definition allins.hpp:21597
@ s39_sal
Definition allins.hpp:22122
@ s39_verllf
Definition allins.hpp:22534
@ s39_vmof
Definition allins.hpp:22852
@ s39_clgrjnl
Definition allins.hpp:21303
@ s39_verimf
Definition allins.hpp:22529
@ s39_vistrb
Definition allins.hpp:22709
@ s39_spx
Definition allins.hpp:22235
@ s39_vmlf
Definition allins.hpp:22830
@ s39_alcgr
Definition allins.hpp:20978
@ s39_locfhnh
Definition allins.hpp:21754
@ s39_stam
Definition allins.hpp:22270
@ s39_algfi
Definition allins.hpp:20983
@ s39_dlg
Definition allins.hpp:21474
@ s39_cgitle
Definition allins.hpp:21179
@ s39_tdgdt
Definition allins.hpp:22393
@ s39_lochinl
Definition allins.hpp:21842
@ s39_vstrlr
Definition allins.hpp:22993
@ s39_llilf
Definition allins.hpp:21707
@ s39_vctzb
Definition allins.hpp:22508
@ s39_cgrjle
Definition allins.hpp:21194
@ s39_seb
Definition allins.hpp:22139
@ s39_iske
Definition allins.hpp:21546
@ s39_lner
Definition allins.hpp:21720
@ s39_bcr
Definition allins.hpp:21047
@ s39_vgmf
Definition allins.hpp:22705
@ s39_sllg
Definition allins.hpp:22223
@ s39_xgrk
Definition allins.hpp:23143
@ s39_selhhhrno
Definition allins.hpp:22170
@ s39_vfcedbs
Definition allins.hpp:22590
@ s39_vscbi
Definition allins.hpp:22931
@ s39_wfminsb
Definition allins.hpp:23112
@ s39_aw
Definition allins.hpp:21004
@ s39_vx
Definition allins.hpp:23153
@ s39_vpksgs
Definition allins.hpp:22904
@ s39_lfas
Definition allins.hpp:21657
@ s39_xr
Definition allins.hpp:23148
@ s39_clgitlh
Definition allins.hpp:21286
@ s39_stocglh
Definition allins.hpp:22346
@ s39_alg
Definition allins.hpp:20981
@ s39_llgtat
Definition allins.hpp:21698
@ s39_vsumh
Definition allins.hpp:23006
@ s39_trap4
Definition allins.hpp:22413
@ s39_lochhinl
Definition allins.hpp:21827
@ s39_stocfhne
Definition allins.hpp:22332
@ s39_selhhhro
Definition allins.hpp:22157
@ s39_mvcp
Definition allins.hpp:22001
@ s39_mdb
Definition allins.hpp:21941
@ s39_veslvg
Definition allins.hpp:22550
@ s39_locfhhe
Definition allins.hpp:21751
@ s39_pack
Definition allins.hpp:22075
@ s39_vsumgh
Definition allins.hpp:23005
@ s39_lxer
Definition allins.hpp:21916
@ s39_vmnl
Definition allins.hpp:22845
@ s39_clrb
Definition allins.hpp:21348
@ s39_stap
Definition allins.hpp:22272
@ s39_lxdbr
Definition allins.hpp:21910
@ s39_wfnmsdb
Definition allins.hpp:23122
@ s39_vleif
Definition allins.hpp:22743
@ s39_citnlh
Definition allins.hpp:21236
@ s39_wflndb
Definition allins.hpp:23096
@ s39_bctgr
Definition allins.hpp:21050
@ s39_vchbs
Definition allins.hpp:22479
@ s39_cpxt
Definition allins.hpp:21383
@ s39_clc
Definition allins.hpp:21241
@ s39_locghilh
Definition allins.hpp:21792
@ s39_lochinle
Definition allins.hpp:21834
@ s39_stocg
Definition allins.hpp:22340
@ s39_mvpg
Definition allins.hpp:22012
@ s39_ptff
Definition allins.hpp:22096
@ s39_cgijnhe
Definition allins.hpp:21168
@ s39_dxbr
Definition allins.hpp:21483
@ s39_ste
Definition allins.hpp:22290
@ s39_kmc
Definition allins.hpp:21589
@ s39_alghsik
Definition allins.hpp:20985
@ s39_brcth
Definition allins.hpp:21077
@ s39_vmng
Definition allins.hpp:22843
@ s39_vmlhh
Definition allins.hpp:22834
@ s39_locgrnh
Definition allins.hpp:21814
@ s39_hdr
Definition allins.hpp:21524
@ s39_vgfmf
Definition allins.hpp:22700
@ s39_vlef
Definition allins.hpp:22739
@ s39_sck
Definition allins.hpp:22129
@ s39_mghi
Definition allins.hpp:21959
@ s39_std
Definition allins.hpp:22287
@ s39_cgij
Definition allins.hpp:21166
@ s39_vlerf
Definition allins.hpp:22747
@ s39_wfsqxb
Definition allins.hpp:23131
@ s39_strvh
Definition allins.hpp:22363
@ s39_cu42
Definition allins.hpp:21423
@ s39_vctzh
Definition allins.hpp:22511
@ s39_vdp
Definition allins.hpp:22516
@ s39_vfeeh
Definition allins.hpp:22611
@ s39_lnxbr
Definition allins.hpp:21724
@ s39_vlbrg
Definition allins.hpp:22719
@ s39_vupllb
Definition allins.hpp:23026
@ s39_msrkc
Definition allins.hpp:21990
@ s39_cgfi
Definition allins.hpp:21152
@ s39_stocnhe
Definition allins.hpp:22315
@ s39_vsum
Definition allins.hpp:23001
@ s39_vstrszf
Definition allins.hpp:22999
@ s39_vlgvf
Definition allins.hpp:22752
@ s39_cdftr
Definition allins.hpp:21096
@ s39_ipk
Definition allins.hpp:21542
@ s39_locgrne
Definition allins.hpp:21808
@ s39_lochihe
Definition allins.hpp:21841
@ s39_slag
Definition allins.hpp:22204
@ s39_crjnlh
Definition allins.hpp:21398
@ s39_loclh
Definition allins.hpp:21732
@ s39_clgdtr
Definition allins.hpp:21261
@ s39_bct
Definition allins.hpp:21048
@ s39_epsw
Definition allins.hpp:21500
@ s39_selrlh
Definition allins.hpp:22177
@ s39_vmrlh
Definition allins.hpp:22864
@ s39_cgrth
Definition allins.hpp:21197
@ s39_cdutr
Definition allins.hpp:21113
@ s39_vmnh
Definition allins.hpp:22844
@ s39_vfnmadb
Definition allins.hpp:22673
@ s39_vllebrzf
Definition allins.hpp:22759
@ s39_lam
Definition allins.hpp:21603
@ s39_bnl
Definition allins.hpp:21022
@ s39_vmaef
Definition allins.hpp:22790
@ s39_dsgfr
Definition allins.hpp:21481
@ s39_locghi
Definition allins.hpp:21786
@ s39_lgr
Definition allins.hpp:21675
@ s39_trtt
Definition allins.hpp:22422
@ s39_clrjnlh
Definition allins.hpp:21359
@ s39_selhhhrlh
Definition allins.hpp:22162
@ s39_dsgf
Definition allins.hpp:21480
@ s39_cgit
Definition allins.hpp:21173
@ s39_tbedr
Definition allins.hpp:22384
@ s39_vmxlh
Definition allins.hpp:22877
@ s39_sh
Definition allins.hpp:22195
@ s39_mvcle
Definition allins.hpp:21998
@ s39_cgxr
Definition allins.hpp:21205
@ s39_vfenebs
Definition allins.hpp:22621
@ s39_cgebr
Definition allins.hpp:21148
@ s39_b
Definition allins.hpp:21011
@ s39_lxdr
Definition allins.hpp:21911
@ s39_m
Definition allins.hpp:21924
@ s39_cdgbr
Definition allins.hpp:21097
@ s39_vsh
Definition allins.hpp:22947
@ s39_vml
Definition allins.hpp:22824
@ s39_lcdr
Definition allins.hpp:21622
@ s39_srnm
Definition allins.hpp:22257
@ s39_clgijh
Definition allins.hpp:21277
@ s39_vfae
Definition allins.hpp:22574
@ s39_ltdtr
Definition allins.hpp:21895
@ s39_llhh
Definition allins.hpp:21701
@ s39_mgrk
Definition allins.hpp:21960
@ s39_cfi
Definition allins.hpp:21137
@ s39_afi
Definition allins.hpp:20957
@ s39_selhhhrnhe
Definition allins.hpp:22161
@ s39_vleg
Definition allins.hpp:22740
@ s39_swr
Definition allins.hpp:22373
@ s39_lngr
Definition allins.hpp:21722
@ s39_vlrlr
Definition allins.hpp:22781
@ s39_locgo
Definition allins.hpp:21772
@ s39_vfsqdb
Definition allins.hpp:22684
@ s39_vesraf
Definition allins.hpp:22554
@ s39_vleb
Definition allins.hpp:22733
@ s39_crblh
Definition allins.hpp:21389
@ s39_vgfmb
Definition allins.hpp:22699
@ s39_vsceg
Definition allins.hpp:22938
@ s39_vfsq
Definition allins.hpp:22683
@ s39_vfaezfs
Definition allins.hpp:22584
@ s39_bxleg
Definition allins.hpp:21088
@ s39_cgitlh
Definition allins.hpp:21176
@ s39_selgrnh
Definition allins.hpp:22154
@ s39_vlreph
Definition allins.hpp:22779
@ s39_cger
Definition allins.hpp:21150
@ s39_mayhr
Definition allins.hpp:21935
@ s39_vfmsb
Definition allins.hpp:22669
@ s39_locfhnle
Definition allins.hpp:21744
@ s39_bnlh
Definition allins.hpp:21020
@ s39_crtlh
Definition allins.hpp:21405
@ s39_nogrk
Definition allins.hpp:22047
@ s39_csch
Definition allins.hpp:21410
@ s39_vfaeb
Definition allins.hpp:22575
@ s39_vfpsodb
Definition allins.hpp:22679
@ s39_md
Definition allins.hpp:21940
@ s39_stfle
Definition allins.hpp:22295
@ s39_lochhinh
Definition allins.hpp:21829
@ s39_vmahh
Definition allins.hpp:22795
@ s39_mgh
Definition allins.hpp:21958
@ s39_veslb
Definition allins.hpp:22543
@ s39_cxgbra
Definition allins.hpp:21441
@ s39_cgdbra
Definition allins.hpp:21144
@ s39_vcfeb
Definition allins.hpp:22472
@ s39_mser
Definition allins.hpp:21980
@ s39_vcp
Definition allins.hpp:22505
@ s39_clmy
Definition allins.hpp:21346
@ s39_vster
Definition allins.hpp:22973
@ s39_clgtnhe
Definition allins.hpp:21315
@ s39_mxtr
Definition allins.hpp:22021
@ s39_bxhg
Definition allins.hpp:21086
@ s39_vfpsosb
Definition allins.hpp:22680
@ s39_clcl
Definition allins.hpp:21242
@ s39_vseg
Definition allins.hpp:22940
@ s39_lzxr
Definition allins.hpp:21923
@ s39_vfkhdbs
Definition allins.hpp:22640
@ s39_locghile
Definition allins.hpp:21798
@ s39_clgf
Definition allins.hpp:21263
@ s39_wfkhedb
Definition allins.hpp:23079
@ s39_tracg
Definition allins.hpp:22411
@ s39_wfkdb
Definition allins.hpp:23070
@ s39_selrnlh
Definition allins.hpp:22180
@ s39_selgrnle
Definition allins.hpp:22144
@ s39_lcctl
Definition allins.hpp:21619
@ s39_clgiblh
Definition allins.hpp:21272
@ s39_sly
Definition allins.hpp:22228
@ s39_sam31
Definition allins.hpp:22124
@ s39_mdtra
Definition allins.hpp:21949
@ s39_vsldb
Definition allins.hpp:22951
@ s39_vfddb
Definition allins.hpp:22604
@ s39_c
Definition allins.hpp:21089
@ s39_locgle
Definition allins.hpp:21783
@ s39_cgdtr
Definition allins.hpp:21146
@ s39_cfxtr
Definition allins.hpp:21141
@ s39_algf
Definition allins.hpp:20982
@ s39_lghi
Definition allins.hpp:21672
@ s39_verll
Definition allins.hpp:22532
@ s39_wfcedbs
Definition allins.hpp:23044
@ s39_cu41
Definition allins.hpp:21422
@ s39_vctzg
Definition allins.hpp:22510
@ s39_locgh
Definition allins.hpp:21773
@ s39_cgrbnhe
Definition allins.hpp:21183
@ s39_vmalof
Definition allins.hpp:22810
@ s39_locgnle
Definition allins.hpp:21774
@ s39_cxzt
Definition allins.hpp:21454
@ s39_lochhinle
Definition allins.hpp:21819
@ s39_cy
Definition allins.hpp:21455
@ s39_dsgr
Definition allins.hpp:21482
@ s39_vavglh
Definition allins.hpp:22455
@ s39_vmalob
Definition allins.hpp:22809
@ s39_llgt
Definition allins.hpp:21697
@ s39_cfxbra
Definition allins.hpp:21139
@ s39_oy
Definition allins.hpp:22074
@ s39_locfhrl
Definition allins.hpp:21760
@ s39_slgf
Definition allins.hpp:22215
@ s39_ay
Definition allins.hpp:21010
@ s39_vlbrh
Definition allins.hpp:22720
@ s39_stocfhh
Definition allins.hpp:22327
@ s39_vfmin
Definition allins.hpp:22665
@ s39_voc
Definition allins.hpp:22885
@ s39_nngrk
Definition allins.hpp:22045
@ s39_srak
Definition allins.hpp:22249
@ s39_vcgdb
Definition allins.hpp:22476
@ s39_vmlob
Definition allins.hpp:22837
@ s39_vll
Definition allins.hpp:22756
@ s39_loc
Definition allins.hpp:21726
@ s39_clrl
Definition allins.hpp:21362
@ s39_locfhrnhe
Definition allins.hpp:21761
@ s39_lochih
Definition allins.hpp:21833
@ s39_iextr
Definition allins.hpp:21535
@ s39_wfnmsxb
Definition allins.hpp:23124
@ s39_ltg
Definition allins.hpp:21898
@ s39_ltgr
Definition allins.hpp:21901
@ s39_vstrsh
Definition allins.hpp:22997
@ s39_vceq
Definition allins.hpp:22463
@ s39_myhr
Definition allins.hpp:22025
@ s39_alhsik
Definition allins.hpp:20991
@ s39_vleh
Definition allins.hpp:22741
@ s39_wfdsb
Definition allins.hpp:23064
@ s39_loce
Definition allins.hpp:21734
@ s39_clmh
Definition allins.hpp:21345
@ s39_selgre
Definition allins.hpp:22149
@ s39_niai
Definition allins.hpp:22037
@ s39_lochhie
Definition allins.hpp:21824
@ s39_pfmf
Definition allins.hpp:22082
@ s39_lpsw
Definition allins.hpp:21874
@ s39_verllg
Definition allins.hpp:22535
@ s39_clrbnhe
Definition allins.hpp:21350
@ s39_lan
Definition allins.hpp:21605
@ s39_vflpdb
Definition allins.hpp:22653
@ s39_clih
Definition allins.hpp:21335
@ s39_cr
Definition allins.hpp:21385
@ s39_vfchdb
Definition allins.hpp:22594
@ s39_vstebrf
Definition allins.hpp:22967
@ s39_vpksh
Definition allins.hpp:22905
@ s39_locfh
Definition allins.hpp:21741
@ s39_vmaeh
Definition allins.hpp:22791
@ s39_vah
Definition allins.hpp:22443
@ s39_vsegf
Definition allins.hpp:22942
@ s39_aghi
Definition allins.hpp:20963
@ s39_lexbr
Definition allins.hpp:21653
@ s39_vfcesb
Definition allins.hpp:22591
@ s39_cxftr
Definition allins.hpp:21439
@ s39_tcdb
Definition allins.hpp:22387
@ s39_cdzt
Definition allins.hpp:21114
@ s39_stgrl
Definition allins.hpp:22298
@ s39_vsp
Definition allins.hpp:22952
@ s39_wfchxb
Definition allins.hpp:23059
@ s39_algrk
Definition allins.hpp:20987
@ s39_lctl
Definition allins.hpp:21628
@ s39_wftcisb
Definition allins.hpp:23135
@ s39_lgrl
Definition allins.hpp:21676
@ s39_vflcsb
Definition allins.hpp:22648
@ s39_cgxtra
Definition allins.hpp:21207
@ s39_clrjle
Definition allins.hpp:21361
@ s39_ltr
Definition allins.hpp:21902
@ s39_sla
Definition allins.hpp:22203
@ s39_sar
Definition allins.hpp:22126
@ s39_clfxbr
Definition allins.hpp:21257
@ s39_vfenezf
Definition allins.hpp:22628
@ s39_stocne
Definition allins.hpp:22317
@ s39_wfchdbs
Definition allins.hpp:23050
@ s39_locge
Definition allins.hpp:21779
@ s39_vfma
Definition allins.hpp:22658
@ s39_bnhe
Definition allins.hpp:21016
@ s39_vlrepg
Definition allins.hpp:22778
@ s39_vrepg
Definition allins.hpp:22917
@ s39_lnebr
Definition allins.hpp:21719
@ s39_mr
Definition allins.hpp:21969
@ s39_ldxr
Definition allins.hpp:21643
@ s39_d
Definition allins.hpp:21458
@ s39_sqdb
Definition allins.hpp:22237
@ s39_vchlb
Definition allins.hpp:22487
@ s39_ecpga
Definition allins.hpp:21490
@ s39_vcfpl
Definition allins.hpp:22473
@ s39_clgrjh
Definition allins.hpp:21299
@ s39_vtp
Definition allins.hpp:23011
@ s39_vfeezb
Definition allins.hpp:22613
@ s39_vmxlg
Definition allins.hpp:22876
@ s39_wfmsdb
Definition allins.hpp:23115
@ s39_cefbr
Definition allins.hpp:21119
@ s39_lfpc
Definition allins.hpp:21660
@ s39_bile
Definition allins.hpp:21064
@ s39_crtnl
Definition allins.hpp:21407
@ s39_ectg
Definition allins.hpp:21491
@ s39_tprot
Definition allins.hpp:22408
@ s39_wflrd
Definition allins.hpp:23102
@ s39_locnhe
Definition allins.hpp:21731
@ s39_lcdbr
Definition allins.hpp:21620
@ s39_vap
Definition allins.hpp:22444
@ s39_stocgh
Definition allins.hpp:22342
@ s39_vfcedb
Definition allins.hpp:22589
@ s39_vfenezb
Definition allins.hpp:22626
@ s39_lura
Definition allins.hpp:21906
@ s39_vfchesbs
Definition allins.hpp:22600
@ s39_tdget
Definition allins.hpp:22394
@ s39_locfhrle
Definition allins.hpp:21768
@ s39_tdcxt
Definition allins.hpp:22392
@ s39_epar
Definition allins.hpp:21498
@ s39_clfi
Definition allins.hpp:21249
@ s39_wfmindb
Definition allins.hpp:23111
@ s39_ssair
Definition allins.hpp:22264
@ s39_laal
Definition allins.hpp:21599
@ s39_sqe
Definition allins.hpp:22240
@ s39_esdtr
Definition allins.hpp:21505
@ s39_agfi
Definition allins.hpp:20960
@ s39_selro
Definition allins.hpp:22172
@ s39_vaccb
Definition allins.hpp:22433
@ s39_vstrczfs
Definition allins.hpp:22989
@ s39_stocfh
Definition allins.hpp:22325
@ s39_popcnt
Definition allins.hpp:22089
@ s39_dd
Definition allins.hpp:21459
@ s39_lochie
Definition allins.hpp:21839
@ s39_vstbrg
Definition allins.hpp:22963
@ s39_vfi
Definition allins.hpp:22632
@ s39_lrdr
Definition allins.hpp:21883
@ s39_vchlf
Definition allins.hpp:22489
@ s39_srnmb
Definition allins.hpp:22258
@ s39_vmlhf
Definition allins.hpp:22833
@ s39_pckmo
Definition allins.hpp:22079
@ s39_vl
Definition allins.hpp:22715
@ s39_verimh
Definition allins.hpp:22531
@ s39_laog
Definition allins.hpp:21608
@ s39_aebr
Definition allins.hpp:20955
@ s39_cih
Definition allins.hpp:21224
@ s39_binhe
Definition allins.hpp:21057
@ s39_vscbih
Definition allins.hpp:22935
@ s39_selr
Definition allins.hpp:22171
@ s39_srdl
Definition allins.hpp:22251
@ s39_vlde
Definition allins.hpp:22731
@ s39_clgxbr
Definition allins.hpp:21320
@ s39_clijnhe
Definition allins.hpp:21338
@ s39_jg
Definition allins.hpp:21563
@ s39_vech
Definition allins.hpp:22521
@ s39_lochilh
Definition allins.hpp:21837
@ s39_unpka
Definition allins.hpp:22426
@ s39_fixtr
Definition allins.hpp:21522
@ s39_cegbra
Definition allins.hpp:21123
@ s39_trto
Definition allins.hpp:22419
@ s39_vstrcbs
Definition allins.hpp:22981
@ s39_wfcesbs
Definition allins.hpp:23046
@ s39_tp
Definition allins.hpp:22405
@ s39_vfcesbs
Definition allins.hpp:22592
@ s39_vcdgb
Definition allins.hpp:22458
@ s39_lpdg
Definition allins.hpp:21865
@ s39_vlbr
Definition allins.hpp:22717
@ s39_mc
Definition allins.hpp:21939
@ s39_vmahb
Definition allins.hpp:22793
@ s39_vfsqsb
Definition allins.hpp:22685
@ s39_vmsl
Definition allins.hpp:22865
@ s39_cdfbra
Definition allins.hpp:21094
@ s39_sxtr
Definition allins.hpp:22376
@ s39_sxr
Definition allins.hpp:22375
@ s39_vmo
Definition allins.hpp:22850
@ s39_ltebr
Definition allins.hpp:21896
@ s39_vsrab
Definition allins.hpp:22955
@ s39_vsbi
Definition allins.hpp:22929
@ s39_efpc
Definition allins.hpp:21496
@ s39_slda
Definition allins.hpp:22210
@ s39_cutfu
Definition allins.hpp:21426
@ s39_wfkedb
Definition allins.hpp:23071
@ s39_locrl
Definition allins.hpp:21850
@ s39_slbgr
Definition allins.hpp:22208
@ s39_vsra
Definition allins.hpp:22954
@ s39_clibh
Definition allins.hpp:21329
@ s39_wfmasb
Definition allins.hpp:23105
@ s39_vesrlvb
Definition allins.hpp:22568
@ s39_mxd
Definition allins.hpp:22016
@ s39_qctri
Definition allins.hpp:22101
@ s39_cxutr
Definition allins.hpp:21453
@ s39_cs
Definition allins.hpp:21409
@ s39_rll
Definition allins.hpp:22108
@ s39_vstrsb
Definition allins.hpp:22995
@ s39_crtnlh
Definition allins.hpp:21406
@ s39_l
Definition allins.hpp:21595
@ s39_lexbra
Definition allins.hpp:21654
@ s39_chhr
Definition allins.hpp:21210
@ s39_esxtr
Definition allins.hpp:21508
@ s39_vfmaxsb
Definition allins.hpp:22663
@ s39_stocnle
Definition allins.hpp:22313
@ s39_cgrbnl
Definition allins.hpp:21186
@ s39_cegr
Definition allins.hpp:21124
@ s39_brxlg
Definition allins.hpp:21081
@ s39_veslvh
Definition allins.hpp:22551
@ s39_ldetr
Definition allins.hpp:21637
@ s39_ms
Definition allins.hpp:21970
@ s39_bner
Definition allins.hpp:21032
@ s39_msdbr
Definition allins.hpp:21975
@ s39_sckc
Definition allins.hpp:22130
@ s39_clibnl
Definition allins.hpp:21333
@ s39_vllebrze
Definition allins.hpp:22758
@ s39_vesrlv
Definition allins.hpp:22567
@ s39_vstrch
Definition allins.hpp:22984
@ s39_ahy
Definition allins.hpp:20973
@ s39_vbperm
Definition allins.hpp:22456
@ s39_lh
Definition allins.hpp:21678
@ s39_ddtra
Definition allins.hpp:21464
@ s39_xrk
Definition allins.hpp:23149
@ s39_stpt
Definition allins.hpp:22357
@ s39_fixbr
Definition allins.hpp:21519
@ s39_cltnl
Definition allins.hpp:21376
@ s39_msta
Definition allins.hpp:21991
@ s39_stocfhno
Definition allins.hpp:22339
@ s39_vfchsb
Definition allins.hpp:22601
@ s39_veclf
Definition allins.hpp:22524
@ s39_ch
Definition allins.hpp:21208
@ s39_madr
Definition allins.hpp:21928
@ s39_llhrl
Definition allins.hpp:21703
@ s39_wfkhexb
Definition allins.hpp:23083
@ s39_cltnlh
Definition allins.hpp:21375
@ s39_vlbrq
Definition allins.hpp:22721
@ s39_clgfrl
Definition allins.hpp:21266
@ s39_wfpsosb
Definition allins.hpp:23126
@ s39_locrnle
Definition allins.hpp:21849
@ s39_locgrnlh
Definition allins.hpp:21810
@ s39_esar
Definition allins.hpp:21504
@ s39_tdcdt
Definition allins.hpp:22390
@ s39_clgrbnlh
Definition allins.hpp:21295
@ s39_vceqg
Definition allins.hpp:22468
@ s39_verimg
Definition allins.hpp:22530
@ s39_basr
Definition allins.hpp:21044
@ s39_sqdbr
Definition allins.hpp:22238
@ s39_wcfeb
Definition allins.hpp:23034
@ s39_lndbr
Definition allins.hpp:21716
@ s39_null
Definition allins.hpp:20945
@ s39_vnx
Definition allins.hpp:22883
@ s39_j
Definition allins.hpp:21548
@ s39_prno
Definition allins.hpp:22093
@ s39_lhr
Definition allins.hpp:21681
@ s39_clrtlh
Definition allins.hpp:21366
@ s39_stoch
Definition allins.hpp:22312
@ s39_cxfbra
Definition allins.hpp:21437
@ s39_cgrjlh
Definition allins.hpp:21191
@ s39_ldxbra
Definition allins.hpp:21642
@ s39_bh
Definition allins.hpp:21013
@ s39_sfpc
Definition allins.hpp:22188
@ s39_slxt
Definition allins.hpp:22227
@ s39_kimd
Definition allins.hpp:21584
@ s39_msfi
Definition allins.hpp:21981
@ s39_clgrl
Definition allins.hpp:21305
@ s39_vscbib
Definition allins.hpp:22932
@ s39_jgne
Definition allins.hpp:21570
@ s39_llhr
Definition allins.hpp:21702
@ s39_vone
Definition allins.hpp:22886
@ s39_vcfps
Definition allins.hpp:22474
@ s39_cdgbra
Definition allins.hpp:21098
@ s39_vpkshs
Definition allins.hpp:22906
@ s39_selre
Definition allins.hpp:22179
@ s39_msd
Definition allins.hpp:21973
@ s39_msg
Definition allins.hpp:21982
@ s39_maebr
Definition allins.hpp:21931
@ s39_ae
Definition allins.hpp:20953
@ s39_czdt
Definition allins.hpp:21456
@ s39_wfmdb
Definition allins.hpp:23110
@ s39_vs
Definition allins.hpp:22925
@ s39_locfhnl
Definition allins.hpp:21752
@ s39_alc
Definition allins.hpp:20976
@ s39_vfminsb
Definition allins.hpp:22667
@ s39_vctz
Definition allins.hpp:22507
@ s39_vlebrg
Definition allins.hpp:22735
@ s39_vavgb
Definition allins.hpp:22447
@ s39_vesrab
Definition allins.hpp:22553
@ s39_wfkexb
Definition allins.hpp:23075
@ s39_cgrjnhe
Definition allins.hpp:21190
@ s39_vgfmg
Definition allins.hpp:22701
@ s39_vmxlf
Definition allins.hpp:22875
@ s39_vmaleb
Definition allins.hpp:22799
@ s39_vmrhf
Definition allins.hpp:22857
@ s39_ivsk
Definition allins.hpp:21547
@ s39_vscef
Definition allins.hpp:22937
@ s39_lurag
Definition allins.hpp:21907
@ s39_icmh
Definition allins.hpp:21530
@ s39_spm
Definition allins.hpp:22233
@ s39_mvcl
Definition allins.hpp:21997
@ s39_bilh
Definition allins.hpp:21058
@ s39_pku
Definition allins.hpp:22087
@ s39_lder
Definition allins.hpp:21636
@ s39_vfeefs
Definition allins.hpp:22610
@ s39_stdy
Definition allins.hpp:22289
@ s39_vgmb
Definition allins.hpp:22704
@ s39_locrnhe
Definition allins.hpp:21851
@ s39_dxr
Definition allins.hpp:21484
@ s39_vchg
Definition allins.hpp:22482
@ s39_clrble
Definition allins.hpp:21354
@ s39_cgijle
Definition allins.hpp:21172
@ s39_wfcexb
Definition allins.hpp:23047
@ s39_clgebr
Definition allins.hpp:21262
@ s39_stfl
Definition allins.hpp:22294
@ s39_clgrtnhe
Definition allins.hpp:21308
@ s39_locrle
Definition allins.hpp:21858
@ s39_meer
Definition allins.hpp:21954
@ s39_ldr
Definition allins.hpp:21639
@ s39_selhhhrnh
Definition allins.hpp:22169
@ s39_lpswe
Definition allins.hpp:21875
@ s39_wfmxb
Definition allins.hpp:23118
@ s39_clfitle
Definition allins.hpp:21256
@ s39_stcmh
Definition allins.hpp:22280
@ s39_n
Definition allins.hpp:22029
@ s39_km
Definition allins.hpp:21586
@ s39_wfkesbs
Definition allins.hpp:23074
@ s39_vlvgp
Definition allins.hpp:22787
@ s39_verllb
Definition allins.hpp:22533
@ s39_tb
Definition allins.hpp:22382
@ s39_alsi
Definition allins.hpp:20994
@ s39_pcc
Definition allins.hpp:22078
@ s39_srst
Definition allins.hpp:22261
@ s39_su
Definition allins.hpp:22369
@ s39_llgf
Definition allins.hpp:21689
@ s39_verllvg
Definition allins.hpp:22540
@ s39_ce
Definition allins.hpp:21115
@ s39_bctg
Definition allins.hpp:21049
@ s39_cgitnl
Definition allins.hpp:21178
@ s39_clfitnl
Definition allins.hpp:21255
@ s39_algsi
Definition allins.hpp:20988
@ s39_vllezf
Definition allins.hpp:22764
@ s39_lexr
Definition allins.hpp:21655
@ s39_ltgfr
Definition allins.hpp:21900
@ s39_clijnl
Definition allins.hpp:21341
@ s39_vfaezhs
Definition allins.hpp:22586
@ s39_srlg
Definition allins.hpp:22255
@ s39_icy
Definition allins.hpp:21532
@ s39_sgh
Definition allins.hpp:22192
@ s39_lochhino
Definition allins.hpp:21830
@ s39_vsrd
Definition allins.hpp:22956
@ s39_last
Definition allins.hpp:23154
@ s39_vstrszh
Definition allins.hpp:23000
@ s39_cxfbr
Definition allins.hpp:21436
@ s39_cgijnlh
Definition allins.hpp:21170
@ s39_csy
Definition allins.hpp:21417
@ s39_vfch
Definition allins.hpp:22593
@ s39_clgibnhe
Definition allins.hpp:21271
@ s39_cltle
Definition allins.hpp:21377
@ s39_oihl
Definition allins.hpp:22067
@ s39_ser
Definition allins.hpp:22186
@ s39_vuplhh
Definition allins.hpp:23023
@ s39_sqxbr
Definition allins.hpp:22244
@ s39_tre
Definition allins.hpp:22414
@ s39_wfnmssb
Definition allins.hpp:23123
@ s39_diag
Definition allins.hpp:21470
@ s39_agh
Definition allins.hpp:20962
@ s39_lctlg
Definition allins.hpp:21629
@ s39_sckpf
Definition allins.hpp:22131
@ s39_vmalh
Definition allins.hpp:22803
@ s39_vrepb
Definition allins.hpp:22915
@ s39_cgibnlh
Definition allins.hpp:21163
@ s39_al
Definition allins.hpp:20975
@ s39_clgij
Definition allins.hpp:21276
@ s39_wfkhesb
Definition allins.hpp:23081
@ s39_rxsbg
Definition allins.hpp:22118
@ s39_bxle
Definition allins.hpp:21087
@ s39_agsi
Definition allins.hpp:20967
@ s39_vchlfs
Definition allins.hpp:22490
@ s39_vfchedb
Definition allins.hpp:22597
@ s39_sll
Definition allins.hpp:22222
@ s39_wfsqdb
Definition allins.hpp:23129
@ s39_clgibnlh
Definition allins.hpp:21273
@ s39_lochinhe
Definition allins.hpp:21836
@ s39_vmahf
Definition allins.hpp:22794
@ s39_csp
Definition allins.hpp:21413
@ s39_vfsdb
Definition allins.hpp:22682
@ s39_lrvg
Definition allins.hpp:21887
@ s39_veslg
Definition allins.hpp:22545
@ s39_mdebr
Definition allins.hpp:21945
@ s39_thdr
Definition allins.hpp:22398
@ s39_vfeneh
Definition allins.hpp:22624
@ s39_lrv
Definition allins.hpp:21886
@ s39_clfitlh
Definition allins.hpp:21253
@ s39_wfmsb
Definition allins.hpp:23114
@ s39_vmalb
Definition allins.hpp:22797
@ s39_vistrh
Definition allins.hpp:22713
@ s39_vceqbs
Definition allins.hpp:22465
@ s39_lpdbr
Definition allins.hpp:21863
@ s39_vmleb
Definition allins.hpp:22827
@ s39_troo
Definition allins.hpp:22415
@ s39_algr
Definition allins.hpp:20986
@ s39_pka
Definition allins.hpp:22086
@ s39_locgne
Definition allins.hpp:21778
@ s39_wfchsbs
Definition allins.hpp:23058
@ s39_ldxbr
Definition allins.hpp:21641
@ s39_lpxr
Definition allins.hpp:21878
@ s39_alcr
Definition allins.hpp:20979
@ s39_va
Definition allins.hpp:22429
@ s39_llc
Definition allins.hpp:21684
@ s39_llill
Definition allins.hpp:21709
@ s39_ledr
Definition allins.hpp:21649
@ s39_ldy
Definition allins.hpp:21645
@ s39_cdfr
Definition allins.hpp:21095
@ s39_msgfr
Definition allins.hpp:21986
@ s39_vceqf
Definition allins.hpp:22466
@ s39_vupl
Definition allins.hpp:23017
@ s39_stidp
Definition allins.hpp:22304
@ s39_vmh
Definition allins.hpp:22820
@ s39_ledbra
Definition allins.hpp:21648
@ s39_vclzf
Definition allins.hpp:22502
@ s39_wftcixb
Definition allins.hpp:23136
@ s39_risbhg
Definition allins.hpp:22106
@ s39_clgit
Definition allins.hpp:21283
@ s39_mse
Definition allins.hpp:21977
@ s39_lzrf
Definition allins.hpp:21921
@ s39_vmaoh
Definition allins.hpp:22815
@ s39_fidr
Definition allins.hpp:21514
@ s39_br
Definition allins.hpp:21070
@ s39_irbm
Definition allins.hpp:21545
@ s39_asi
Definition allins.hpp:21001
@ s39_iihf
Definition allins.hpp:21536
@ s39_vfnms
Definition allins.hpp:22675
@ s39_tpei
Definition allins.hpp:22406
@ s39_selhhhrnl
Definition allins.hpp:22167
@ s39_ptf
Definition allins.hpp:22095
@ s39_xiy
Definition allins.hpp:23147
@ s39_vecg
Definition allins.hpp:22520
@ s39_bine
Definition allins.hpp:21059
@ s39_vclzb
Definition allins.hpp:22501
@ s39_vuplb
Definition allins.hpp:23018
@ s39_ag
Definition allins.hpp:20958
@ s39_vfchdbs
Definition allins.hpp:22595
@ s39_vmlef
Definition allins.hpp:22828
@ s39_rnsbg
Definition allins.hpp:22110
@ s39_srnmt
Definition allins.hpp:22259
@ s39_vsteb
Definition allins.hpp:22966
@ s39_clrjlh
Definition allins.hpp:21358
@ s39_lochhine
Definition allins.hpp:21823
@ s39_llcr
Definition allins.hpp:21686
@ s39_stcps
Definition allins.hpp:22282
@ s39_vavgf
Definition allins.hpp:22448
@ s39_srag
Definition allins.hpp:22248
@ s39_strag
Definition allins.hpp:22359
@ s39_llgfsg
Definition allins.hpp:21693
@ s39_llgfrl
Definition allins.hpp:21692
@ s39_locghinh
Definition allins.hpp:21799
@ s39_mhy
Definition allins.hpp:21963
@ s39_cdlgtr
Definition allins.hpp:21105
@ s39_cghsi
Definition allins.hpp:21158
@ s39_vpkz
Definition allins.hpp:22907
@ s39_veslvb
Definition allins.hpp:22548
@ s39_vclzh
Definition allins.hpp:22504
@ s39_stnsm
Definition allins.hpp:22309
@ s39_lcbb
Definition allins.hpp:21618
@ s39_jnle
Definition allins.hpp:21551
@ s39_veslh
Definition allins.hpp:22546
@ s39_vstebrg
Definition allins.hpp:22968
@ s39_wfkhdb
Definition allins.hpp:23077
@ s39_vllebrz
Definition allins.hpp:22757
@ s39_stocfhhe
Definition allins.hpp:22335
@ s39_exrl
Definition allins.hpp:21511
@ s39_sqebr
Definition allins.hpp:22242
@ s39_wfcdb
Definition allins.hpp:23042
@ s39_jgnh
Definition allins.hpp:21576
@ s39_bo
Definition allins.hpp:21012
@ s39_mvc
Definition allins.hpp:21993
@ s39_vfaezh
Definition allins.hpp:22585
@ s39_vlpf
Definition allins.hpp:22771
@ s39_stc
Definition allins.hpp:22273
@ s39_vfkhesbs
Definition allins.hpp:22644
@ s39_vmrl
Definition allins.hpp:22860
@ s39_vst
Definition allins.hpp:22960
@ s39_lasp
Definition allins.hpp:21610
@ s39_ddr
Definition allins.hpp:21462
@ s39_stoclh
Definition allins.hpp:22316
@ s39_vscbiq
Definition allins.hpp:22936
@ s39_vfenehs
Definition allins.hpp:22625
@ s39_msy
Definition allins.hpp:21992
@ s39_vpkh
Definition allins.hpp:22892
@ s39_vesrlb
Definition allins.hpp:22563
@ s39_vllezh
Definition allins.hpp:22766
@ s39_cgrtnl
Definition allins.hpp:21201
@ s39_pgout
Definition allins.hpp:22085
@ s39_xi
Definition allins.hpp:23144
@ s39_clgt
Definition allins.hpp:21313
@ s39_vsegh
Definition allins.hpp:22943
@ s39_clhhsi
Definition allins.hpp:21324
@ s39_vchl
Definition allins.hpp:22486
@ s39_jghe
Definition allins.hpp:21573
@ s39_vclfeb
Definition allins.hpp:22496
@ s39_vperm
Definition allins.hpp:22888
@ s39_kmf
Definition allins.hpp:21591
@ s39_vmnf
Definition allins.hpp:22842
@ s39_qadtr
Definition allins.hpp:22099
@ s39_locfhh
Definition allins.hpp:21743
@ s39_vfeezfs
Definition allins.hpp:22616
@ s39_vaccf
Definition allins.hpp:22436
@ s39_cds
Definition allins.hpp:21108
@ s39_selhhhrnle
Definition allins.hpp:22159
@ s39_vlcg
Definition allins.hpp:22729
@ s39_wfnmasb
Definition allins.hpp:23120
@ s39_locle
Definition allins.hpp:21738
@ s39_stfpc
Definition allins.hpp:22296
@ s39_wfmaxb
Definition allins.hpp:23106
@ s39_vsumq
Definition allins.hpp:23007
@ s39_selgrl
Definition allins.hpp:22145
@ s39_vpklsfs
Definition allins.hpp:22895
@ s39_jgo
Definition allins.hpp:21564
@ s39_dlgr
Definition allins.hpp:21475
@ s39_msch
Definition allins.hpp:21972
@ s39_locfhl
Definition allins.hpp:21745
@ s39_locghine
Definition allins.hpp:21793
@ s39_vlcb
Definition allins.hpp:22727
@ s39_cefr
Definition allins.hpp:21121
@ s39_cgrtnhe
Definition allins.hpp:21198
@ s39_clgitnlh
Definition allins.hpp:21287
@ s39_vlc
Definition allins.hpp:22726
@ s39_wfpsoxb
Definition allins.hpp:23127
@ s39_slbg
Definition allins.hpp:22207
@ s39_ahhlr
Definition allins.hpp:20970
@ s39_lrvr
Definition allins.hpp:21890
@ s39_crjnhe
Definition allins.hpp:21396
@ s39_verllvf
Definition allins.hpp:22539
@ s39_vec
Definition allins.hpp:22517
@ s39_ber
Definition allins.hpp:21033
@ s39_wfasb
Definition allins.hpp:23039
@ s39_vfm
Definition allins.hpp:22657
@ s39_lochhio
Definition allins.hpp:21817
@ s39_diebr
Definition allins.hpp:21472
@ s39_lgh
Definition allins.hpp:21671
@ s39_cdb
Definition allins.hpp:21091
@ s39_lpxbr
Definition allins.hpp:21877
@ s39_vcsfp
Definition allins.hpp:22506
@ s39_jh
Definition allins.hpp:21550
@ s39_vmleh
Definition allins.hpp:22829
@ s39_vllezg
Definition allins.hpp:22765
@ s39_kmo
Definition allins.hpp:21592
@ s39_vsld
Definition allins.hpp:22950
@ s39_jgno
Definition allins.hpp:21577
@ s39_clhhr
Definition allins.hpp:21323
@ s39_vflls
Definition allins.hpp:22650
@ s39_clgrt
Definition allins.hpp:21306
@ s39_bler
Definition allins.hpp:21037
@ s39_sthh
Definition allins.hpp:22301
@ s39_lgat
Definition allins.hpp:21662
@ s39_etnd
Definition allins.hpp:21509
@ s39_mvclu
Definition allins.hpp:21999
@ s39_lochhih
Definition allins.hpp:21818
@ s39_sie
Definition allins.hpp:22199
@ s39_vlvgg
Definition allins.hpp:22785
@ s39_vfa
Definition allins.hpp:22572
@ s39_rrdtr
Definition allins.hpp:22115
@ s39_tmhl
Definition allins.hpp:22401
@ s39_vstrchs
Definition allins.hpp:22985
@ s39_vgmh
Definition allins.hpp:22707
@ s39_locrne
Definition allins.hpp:21853
@ s39_lochino
Definition allins.hpp:21845
@ s39_clgrtlh
Definition allins.hpp:21309
@ s39_vchgs
Definition allins.hpp:22483
@ s39_cgrt
Definition allins.hpp:21196
@ s39_cvbg
Definition allins.hpp:21430
@ s39_lde
Definition allins.hpp:21633
@ s39_cfer
Definition allins.hpp:21136
@ s39_lmg
Definition allins.hpp:21713
@ s39_lcebr
Definition allins.hpp:21623
@ s39_vsumqf
Definition allins.hpp:23008
@ s39_stcke
Definition allins.hpp:22277
@ s39_sldl
Definition allins.hpp:22211
@ s39_vesravh
Definition allins.hpp:22561
@ s39_lpq
Definition allins.hpp:21872
@ s39_vesrav
Definition allins.hpp:22557
@ s39_ldxtr
Definition allins.hpp:21644
@ s39_oihh
Definition allins.hpp:22066
@ s39_locnl
Definition allins.hpp:21737
@ s39_wcelfb
Definition allins.hpp:23033
@ s39_cpsdr
Definition allins.hpp:21382
@ s39_vfce
Definition allins.hpp:22588
@ s39_vfkhesb
Definition allins.hpp:22643
@ s39_clgrtnl
Definition allins.hpp:21311
@ s39_vavg
Definition allins.hpp:22446
@ s39_mae
Definition allins.hpp:21929
@ s39_vgfmab
Definition allins.hpp:22695
@ s39_cgdr
Definition allins.hpp:21145
@ s39_vsel
Definition allins.hpp:22944
@ s39_myr
Definition allins.hpp:22028
@ s39_crble
Definition allins.hpp:21392
@ s39_chlr
Definition allins.hpp:21213
@ s39_wclfeb
Definition allins.hpp:23036
@ s39_lhh
Definition allins.hpp:21679
@ s39_bas
Definition allins.hpp:21043
@ s39_stocfhnle
Definition allins.hpp:22328
@ s39_nrk
Definition allins.hpp:22052
@ s39_zap
Definition allins.hpp:23152
@ s39_vlbrreph
Definition allins.hpp:22725
@ s39_vpksf
Definition allins.hpp:22901
@ s39_rp
Definition allins.hpp:22112
@ s39_vfkesb
Definition allins.hpp:22637
@ s39_loche
Definition allins.hpp:21736
@ s39_jnhe
Definition allins.hpp:21553
@ s39_lochio
Definition allins.hpp:21832
@ s39_vchlgs
Definition allins.hpp:22492
@ s39_clgib
Definition allins.hpp:21269
@ s39_vfche
Definition allins.hpp:22596
@ s39_sgfr
Definition allins.hpp:22191
@ s39_vavglg
Definition allins.hpp:22454
@ s39_wfcxb
Definition allins.hpp:23062
@ s39_vesravb
Definition allins.hpp:22558
@ s39_sterv
Definition allins.hpp:22291
@ s39_ppno
Definition allins.hpp:22091
@ s39_locnlh
Definition allins.hpp:21735
@ s39_mxdbr
Definition allins.hpp:22018
@ s39_cgfrl
Definition allins.hpp:21154
@ s39_lhrl
Definition allins.hpp:21682
@ s39_stocfhlh
Definition allins.hpp:22331
@ s39_wledb
Definition allins.hpp:23138
@ s39_her
Definition allins.hpp:21525
@ s39_selgrle
Definition allins.hpp:22153
@ s39_cxlgbr
Definition allins.hpp:21447
@ s39_wfc
Definition allins.hpp:23041
@ s39_vesrag
Definition allins.hpp:22555
@ s39_vmxlb
Definition allins.hpp:22874
@ s39_vler
Definition allins.hpp:22746
@ s39_cvd
Definition allins.hpp:21432
@ s39_clij
Definition allins.hpp:21336
@ s39_lgfi
Definition allins.hpp:21667
@ s39_oihf
Definition allins.hpp:22065
@ s39_vsumb
Definition allins.hpp:23002
@ s39_vmnlb
Definition allins.hpp:22846
@ s39_kdsa
Definition allins.hpp:21580
@ s39_vsf
Definition allins.hpp:22945
@ s39_icmy
Definition allins.hpp:21531
@ s39_nopr
Definition allins.hpp:22049
@ s39_locgrnhe
Definition allins.hpp:21806
@ s39_oilf
Definition allins.hpp:22068
@ s39_vpklsf
Definition allins.hpp:22894
@ s39_vlbrf
Definition allins.hpp:22718
@ s39_wfmaxxb
Definition allins.hpp:23109
@ s39_cu12
Definition allins.hpp:21418
@ s39_cgibnhe
Definition allins.hpp:21161
@ s39_vistrf
Definition allins.hpp:22711
@ s39_vnot
Definition allins.hpp:22882
@ s39_alhhlr
Definition allins.hpp:20990
@ s39_vfpso
Definition allins.hpp:22678
@ s39_vlip
Definition allins.hpp:22755
@ s39_bsm
Definition allins.hpp:21084
@ s39_wcefb
Definition allins.hpp:23032
@ s39_vclgd
Definition allins.hpp:22498
@ s39_vmal
Definition allins.hpp:22796
@ s39_cijh
Definition allins.hpp:21226
@ s39_vab
Definition allins.hpp:22430
@ s39_locfhrnlh
Definition allins.hpp:21765
@ s39_vfisb
Definition allins.hpp:22634
@ s39_stamy
Definition allins.hpp:22271
@ s39_clgxtr
Definition allins.hpp:21321
@ s39_wfpsodb
Definition allins.hpp:23125
@ s39_locfhno
Definition allins.hpp:21755
@ s39_lcxbr
Definition allins.hpp:21630
@ s39_locghie
Definition allins.hpp:21794
@ s39_clijle
Definition allins.hpp:21342
@ s39_wfidb
Definition allins.hpp:23066
@ s39_lfh
Definition allins.hpp:21658
@ s39_mvst
Definition allins.hpp:22013
@ s39_tmll
Definition allins.hpp:22403
@ s39_vfeeb
Definition allins.hpp:22607
@ s39_vzero
Definition allins.hpp:23029
@ s39_lochil
Definition allins.hpp:21835
@ s39_vfkedb
Definition allins.hpp:22635
@ s39_vfmax
Definition allins.hpp:22661
@ s39_vfeneb
Definition allins.hpp:22620
@ s39_wcgdb
Definition allins.hpp:23035
@ s39_vmhb
Definition allins.hpp:22821
@ s39_msr
Definition allins.hpp:21989
@ s39_vrep
Definition allins.hpp:22914
@ s39_vmalhw
Definition allins.hpp:22807
@ s39_slb
Definition allins.hpp:22206
@ s39_mdbr
Definition allins.hpp:21942
@ s39_lochhihe
Definition allins.hpp:21826
@ s39_mhi
Definition allins.hpp:21962
@ s39_cu21
Definition allins.hpp:21420
@ s39_vcvb
Definition allins.hpp:22512
@ s39_wflls
Definition allins.hpp:23095
@ s39_clfxtr
Definition allins.hpp:21258
@ s39_lngfr
Definition allins.hpp:21721
@ s39_vfmssb
Definition allins.hpp:22671
@ s39_lzer
Definition allins.hpp:21920
@ s39_cdpt
Definition allins.hpp:21106
@ s39_vgfmh
Definition allins.hpp:22702
@ s39_dp
Definition allins.hpp:21477
@ s39_vctzf
Definition allins.hpp:22509
@ s39_vstbr
Definition allins.hpp:22961
@ s39_clfith
Definition allins.hpp:21251
@ s39_cxr
Definition allins.hpp:21450
@ s39_mde
Definition allins.hpp:21943
@ s39_sqeb
Definition allins.hpp:22241
@ s39_locfhne
Definition allins.hpp:21748
@ s39_lr
Definition allins.hpp:21879
@ s39_pfdrl
Definition allins.hpp:22081
@ s39_cebr
Definition allins.hpp:21117
@ s39_nihh
Definition allins.hpp:22039
@ s39_lerv
Definition allins.hpp:21652
@ s39_axtra
Definition allins.hpp:21009
@ s39_vupkz
Definition allins.hpp:23016
@ s39_tmy
Definition allins.hpp:22404
@ s39_wfmssb
Definition allins.hpp:23116
@ s39_vpklsh
Definition allins.hpp:22898
@ s39_vstrczh
Definition allins.hpp:22990
@ s39_cly
Definition allins.hpp:21378
@ s39_clt
Definition allins.hpp:21371
@ s39_bassm
Definition allins.hpp:21045
@ s39_locgrhe
Definition allins.hpp:21811
@ s39_stosm
Definition allins.hpp:22355
@ s39_vstrczb
Definition allins.hpp:22986
@ s39_vflrd
Definition allins.hpp:22656
@ s39_vfeezbs
Definition allins.hpp:22614
@ s39_la
Definition allins.hpp:21596
@ s39_cgith
Definition allins.hpp:21174
@ s39_mer
Definition allins.hpp:21955
@ s39_locghinle
Definition allins.hpp:21789
@ s39_nxgrk
Definition allins.hpp:22054
@ s39_selrnle
Definition allins.hpp:22174
@ s39_wfkhsbs
Definition allins.hpp:23086
@ s39_clgijle
Definition allins.hpp:21282
@ s39_crjnl
Definition allins.hpp:21399
@ s39_niy
Definition allins.hpp:22044
@ s39_nop
Definition allins.hpp:22048
@ s39_slgrk
Definition allins.hpp:22219
@ s39_lgfrl
Definition allins.hpp:21669
@ s39_clfdbr
Definition allins.hpp:21245
@ s39_sam64
Definition allins.hpp:22125
@ s39_vsumgf
Definition allins.hpp:23004
@ s39_bnhr
Definition allins.hpp:21038
@ s39_vscbif
Definition allins.hpp:22933
@ s39_wfkexbs
Definition allins.hpp:23076
@ s39_larl
Definition allins.hpp:21609
@ s39_vftcidb
Definition allins.hpp:22688
@ s39_ncrk
Definition allins.hpp:22032
@ s39_cedtr
Definition allins.hpp:21118
@ s39_cxgbr
Definition allins.hpp:21440
@ s39_clgibnl
Definition allins.hpp:21274
@ s39_cfxr
Definition allins.hpp:21140
@ s39_fiebr
Definition allins.hpp:21516
@ s39_slgr
Definition allins.hpp:22218
@ s39_selgrlh
Definition allins.hpp:22147
@ s39_lcxr
Definition allins.hpp:21631
@ s39_vstbrh
Definition allins.hpp:22964
@ s39_locgrnle
Definition allins.hpp:21804
@ s39_selhhhrl
Definition allins.hpp:22160
@ s39_sthrl
Definition allins.hpp:22302
@ s39_mvi
Definition allins.hpp:22008
@ s39_wfsqsb
Definition allins.hpp:23130
@ s39_vesl
Definition allins.hpp:22542
@ s39_pfd
Definition allins.hpp:22080
@ s39_vllez
Definition allins.hpp:22762
@ s39_lzrg
Definition allins.hpp:21922
@ s39_unpk
Definition allins.hpp:22425
@ s39_vmrhb
Definition allins.hpp:22856
@ s39_vfms
Definition allins.hpp:22668
@ s39_cd
Definition allins.hpp:21090
@ s39_vchh
Definition allins.hpp:22484
@ s39_stcrw
Definition allins.hpp:22283
@ s39_clijnlh
Definition allins.hpp:21340
@ s39_citle
Definition allins.hpp:21238
@ s39_pfpo
Definition allins.hpp:22083
@ s39_stctg
Definition allins.hpp:22284
@ s39_jnh
Definition allins.hpp:21561
@ s39_vsq
Definition allins.hpp:22953
@ s39_thder
Definition allins.hpp:22397
@ s39_locnle
Definition allins.hpp:21729
@ s39_vlrepf
Definition allins.hpp:22777
@ s39_cfdtr
Definition allins.hpp:21133
@ s39_vfaehs
Definition allins.hpp:22580
@ s39_cxgtr
Definition allins.hpp:21443
@ s39_vmnlf
Definition allins.hpp:22847
@ s39_msdr
Definition allins.hpp:21976
@ s39_nilf
Definition allins.hpp:22041
@ s39_tmlh
Definition allins.hpp:22402
@ s39_vfkhedb
Definition allins.hpp:22641
@ s39_vfll
Definition allins.hpp:22649
@ s39_myl
Definition allins.hpp:22026
@ s39_vcdg
Definition allins.hpp:22457
@ s39_vuphf
Definition allins.hpp:23014
@ s39_mseb
Definition allins.hpp:21978
@ s39_lat
Definition allins.hpp:21611
@ s39_wfsdb
Definition allins.hpp:23128
@ s39_clfit
Definition allins.hpp:21250
@ s39_llgh
Definition allins.hpp:21694
@ s39_vmnlh
Definition allins.hpp:22849
@ s39_wflnsb
Definition allins.hpp:23097
@ s39_rrbm
Definition allins.hpp:22114
@ s39_stocnl
Definition allins.hpp:22321
@ s39_csst
Definition allins.hpp:21415
@ s39_shhhr
Definition allins.hpp:22196
@ s39_stocgne
Definition allins.hpp:22347
@ s39_vgfmag
Definition allins.hpp:22697
@ s39_pc
Definition allins.hpp:22077
@ s39_au
Definition allins.hpp:21002
@ s39_cxlfbr
Definition allins.hpp:21445
@ s39_locfhr
Definition allins.hpp:21756
@ s39_vlch
Definition allins.hpp:22730
@ s39_msgf
Definition allins.hpp:21984
@ s39_cliblh
Definition allins.hpp:21331
@ s39_wfchesbs
Definition allins.hpp:23054
@ s39_my
Definition allins.hpp:22023
@ s39_vlebrf
Definition allins.hpp:22734
@ s39_vmxf
Definition allins.hpp:22870
@ s39_wfminxb
Definition allins.hpp:23113
@ s39_kdbr
Definition allins.hpp:21579
@ s39_trte
Definition allins.hpp:22418
@ s39_vgfmaf
Definition allins.hpp:22696
@ s39_lper
Definition allins.hpp:21868
@ s39_og
Definition allins.hpp:22061
@ s39_ble
Definition allins.hpp:21023
@ s39_fier
Definition allins.hpp:21518
@ s39_cgrblh
Definition allins.hpp:21184
@ s39_vlvgb
Definition allins.hpp:22783
@ s39_cdgtr
Definition allins.hpp:21100
@ s39_ledtr
Definition allins.hpp:21650
@ s39_vfaebs
Definition allins.hpp:22576
@ s39_bnlr
Definition allins.hpp:21036
@ s39_cgrbnlh
Definition allins.hpp:21185
@ s39_vlgv
Definition allins.hpp:22750
@ s39_brc
Definition allins.hpp:21073
@ s39_msdb
Definition allins.hpp:21974
@ s39_vlbrrep
Definition allins.hpp:22722
@ s39_wfmsxb
Definition allins.hpp:23117
@ s39_lter
Definition allins.hpp:21897
@ s39_or
Definition allins.hpp:22072
@ s39_msgfi
Definition allins.hpp:21985
@ s39_locrnlh
Definition allins.hpp:21855
@ s39_csdtr
Definition allins.hpp:21411
@ s39_upt
Definition allins.hpp:22428
@ s39_adtr
Definition allins.hpp:20951
@ s39_wfkhexbs
Definition allins.hpp:23084
@ s39_aur
Definition allins.hpp:21003
@ s39_vleig
Definition allins.hpp:22744
@ s39_bino
Definition allins.hpp:21066
@ s39_ts
Definition allins.hpp:22423
@ s39_wflld
Definition allins.hpp:23094
@ s39_wfkhdbs
Definition allins.hpp:23078
@ s39_sg
Definition allins.hpp:22189
@ s39_msgc
Definition allins.hpp:21983
@ s39_cxstr
Definition allins.hpp:21451
@ s39_llgc
Definition allins.hpp:21687
@ s39_cextr
Definition allins.hpp:21128
@ s39_laalg
Definition allins.hpp:21600
@ s39_wfkhedbs
Definition allins.hpp:23080
@ s39_crbnl
Definition allins.hpp:21391
@ s39_dxtra
Definition allins.hpp:21486
@ s39_lgsc
Definition allins.hpp:21677
@ s39_vupll
Definition allins.hpp:23025
@ s39_mad
Definition allins.hpp:21925
@ s39_debr
Definition allins.hpp:21467
@ s39_stg
Definition allins.hpp:22297
@ s39_stocfhnl
Definition allins.hpp:22336
@ s39_scctr
Definition allins.hpp:22127
@ s39_vmalf
Definition allins.hpp:22802
@ s39_vlvgf
Definition allins.hpp:22784
@ s39_llgcr
Definition allins.hpp:21688
@ s39_vsbcbiq
Definition allins.hpp:22928
@ s39_locfhrnl
Definition allins.hpp:21767
@ s39_kebr
Definition allins.hpp:21583
@ s39_vesravg
Definition allins.hpp:22560
@ s39_stocgnhe
Definition allins.hpp:22345
@ s39_llch
Definition allins.hpp:21685
@ s39_blhr
Definition allins.hpp:21031
@ s39_vfasb
Definition allins.hpp:22587
@ s39_ocgrk
Definition allins.hpp:22059
@ s39_vaccg
Definition allins.hpp:22437
@ s39_clibnhe
Definition allins.hpp:21330
@ s39_vavglb
Definition allins.hpp:22452
@ s39_ledbr
Definition allins.hpp:21647
@ s39_vuplh
Definition allins.hpp:23020
@ s39_verim
Definition allins.hpp:22527
@ s39_blr
Definition allins.hpp:21029
@ s39_vflnsb
Definition allins.hpp:22652
@ s39_vmxh
Definition allins.hpp:22872
@ s39_cltnhe
Definition allins.hpp:21373
@ s39_ltdbr
Definition allins.hpp:21893
@ s39_slhhhr
Definition allins.hpp:22220
@ s39_meebr
Definition allins.hpp:21953
@ s39_mvn
Definition allins.hpp:22010
@ s39_jgnl
Definition allins.hpp:21574
@ s39_lndfr
Definition allins.hpp:21717
@ s39_kdtr
Definition allins.hpp:21581
@ s39_cibnlh
Definition allins.hpp:21221
@ s39_lghrl
Definition allins.hpp:21674
@ s39_cdtr
Definition allins.hpp:21112
@ s39_idte
Definition allins.hpp:21533
@ s39_slr
Definition allins.hpp:22225
@ s39_vsumg
Definition allins.hpp:23003
@ s39_lgf
Definition allins.hpp:21666
@ s39_locrhe
Definition allins.hpp:21856
@ s39_mvz
Definition allins.hpp:22014
@ s39_clth
Definition allins.hpp:21372
@ s39_cxlgtr
Definition allins.hpp:21448
@ s39_stpx
Definition allins.hpp:22358
@ s39_chhsi
Definition allins.hpp:21211
@ s39_cdgr
Definition allins.hpp:21099
@ s39_sac
Definition allins.hpp:22120
@ s39_wfkesb
Definition allins.hpp:23073
@ s39_cibnl
Definition allins.hpp:21222
@ s39_lochile
Definition allins.hpp:21843
@ s39_nill
Definition allins.hpp:22043
@ s39_srk
Definition allins.hpp:22253
@ s39_ar
Definition allins.hpp:20999
@ s39_lochhil
Definition allins.hpp:21820
@ s39_ngr
Definition allins.hpp:22034
@ s39_lae
Definition allins.hpp:21601
@ s39_crjlh
Definition allins.hpp:21397
@ s39_msgr
Definition allins.hpp:21987
@ s39_cijle
Definition allins.hpp:21231
@ s39_celgbr
Definition allins.hpp:21126
@ s39_lbr
Definition allins.hpp:21617
@ s39_trap2
Definition allins.hpp:22412
@ s39_lpebr
Definition allins.hpp:21867
@ s39_lay
Definition allins.hpp:21614
@ s39_vrepi
Definition allins.hpp:22919
@ s39_vleih
Definition allins.hpp:22745
@ s39_tr
Definition allins.hpp:22409
@ s39_stocgno
Definition allins.hpp:22354
@ s39_lsctl
Definition allins.hpp:21891
@ s39_vlrl
Definition allins.hpp:22780
@ s39_wfcesb
Definition allins.hpp:23045
@ s39_vpkg
Definition allins.hpp:22891
@ s39_vllezlf
Definition allins.hpp:22767
@ s39_ppa
Definition allins.hpp:22090
@ s39_slrk
Definition allins.hpp:22226
@ s39_lrvh
Definition allins.hpp:21889
@ s39_clgijnhe
Definition allins.hpp:21278
@ s39_bprp
Definition allins.hpp:21069
@ s39_klmd
Definition allins.hpp:21585
@ s39_sra
Definition allins.hpp:22247
@ s39_locrno
Definition allins.hpp:21860
@ s39_bhe
Definition allins.hpp:21021
@ s39_clgrblh
Definition allins.hpp:21294
@ s39_locgrle
Definition allins.hpp:21813
@ s39_wflnxb
Definition allins.hpp:23098
@ s39_vmxl
Definition allins.hpp:22873
@ s39_cgdbr
Definition allins.hpp:21143
@ s39_ear
Definition allins.hpp:21487
@ s39_vuplf
Definition allins.hpp:23019
@ s39_bnh
Definition allins.hpp:21024
@ s39_cxlftr
Definition allins.hpp:21446
@ s39_llgfat
Definition allins.hpp:21690
@ s39_mdtr
Definition allins.hpp:21948
@ s39_clgr
Definition allins.hpp:21290
@ s39_stocle
Definition allins.hpp:22322
@ s39_vreph
Definition allins.hpp:22918
@ s39_vcefb
Definition allins.hpp:22461
@ s39_vsterf
Definition allins.hpp:22974
@ s39_lb
Definition allins.hpp:21615
@ s39_selgrhe
Definition allins.hpp:22151
@ s39_cgdtra
Definition allins.hpp:21147
@ s39_sdbr
Definition allins.hpp:22134
@ s39_clhlr
Definition allins.hpp:21325
@ s39_vstrsf
Definition allins.hpp:22996
@ s39_stmy
Definition allins.hpp:22308
@ s39_bnor
Definition allins.hpp:21039
@ s39_sturg
Definition allins.hpp:22367
@ s39_cpya
Definition allins.hpp:21384
@ s39_cuxtr
Definition allins.hpp:21428
@ s39_cxgr
Definition allins.hpp:21442
@ s39_selrnl
Definition allins.hpp:22182
@ s39_sqxr
Definition allins.hpp:22245
@ s39_locfhrnh
Definition allins.hpp:21769
@ s39_vo
Definition allins.hpp:22884
@ s39_vfeezh
Definition allins.hpp:22617
@ s39_wfnmaxb
Definition allins.hpp:23121
@ s39_nilh
Definition allins.hpp:22042
@ s39_cgebra
Definition allins.hpp:21149
@ s39_stocfhnlh
Definition allins.hpp:22334
@ s39_de
Definition allins.hpp:21465
@ s39_wfkhxbs
Definition allins.hpp:23088
@ s39_vfmaxdb
Definition allins.hpp:22662
@ s39_dl
Definition allins.hpp:21473
@ s39_clgrbnhe
Definition allins.hpp:21293
@ s39_vmalhb
Definition allins.hpp:22804
@ s39_slfi
Definition allins.hpp:22213
@ s39_vftcisb
Definition allins.hpp:22689
@ s39_vsbiq
Definition allins.hpp:22930
@ s39_vmrhg
Definition allins.hpp:22858
@ s39_iihh
Definition allins.hpp:21537
@ s39_risbgn
Definition allins.hpp:22105
@ s39_stocnlh
Definition allins.hpp:22319
@ s39_czxt
Definition allins.hpp:21457
@ s39_vfadb
Definition allins.hpp:22573
@ s39_sske
Definition allins.hpp:22267
@ s39_vscbig
Definition allins.hpp:22934
@ s39_vsg
Definition allins.hpp:22946
@ s39_lptea
Definition allins.hpp:21876
@ s39_lpgfr
Definition allins.hpp:21869
@ s39_clrt
Definition allins.hpp:21363
@ s39_clgrtle
Definition allins.hpp:21312
@ s39_vfnma
Definition allins.hpp:22672
@ s39_cmpsc
Definition allins.hpp:21379
@ s39_sthy
Definition allins.hpp:22303
@ s39_vsterg
Definition allins.hpp:22975
@ s39_kxtr
Definition allins.hpp:21594
@ s39_kxbr
Definition allins.hpp:21593
@ s39_stocge
Definition allins.hpp:22348
@ s39_cvdg
Definition allins.hpp:21433
@ s39_st
Definition allins.hpp:22269
@ s39_slgfr
Definition allins.hpp:22217
@ s39_chf
Definition allins.hpp:21209
@ s39_clg
Definition allins.hpp:21259
@ s39_locghino
Definition allins.hpp:21800
@ s39_veclb
Definition allins.hpp:22523
@ s39_lxeb
Definition allins.hpp:21914
@ s39_locgr
Definition allins.hpp:21801
@ s39_strvg
Definition allins.hpp:22362
@ s39_laxg
Definition allins.hpp:21613
@ s39_mvghi
Definition allins.hpp:22005
@ s39_bnher
Definition allins.hpp:21030
@ s39_crb
Definition allins.hpp:21386
@ s39_clgrjnlh
Definition allins.hpp:21302
@ s39_binle
Definition allins.hpp:21055
@ s39_lrl
Definition allins.hpp:21885
@ s39_stoco
Definition allins.hpp:22311
@ s39_adr
Definition allins.hpp:20950
@ s39_jge
Definition allins.hpp:21571
@ s39_verllvh
Definition allins.hpp:22541
@ s39_vfaezbs
Definition allins.hpp:22582
@ s39_vfchedbs
Definition allins.hpp:22598
@ s39_vfeezf
Definition allins.hpp:22615
@ s39_clgtlh
Definition allins.hpp:21316
@ s39_mvcrl
Definition allins.hpp:22002
@ s39_selhhhrh
Definition allins.hpp:22158
@ s39_locgrnl
Definition allins.hpp:21812
@ s39_bxh
Definition allins.hpp:21085
@ s39_rchp
Definition allins.hpp:22103
@ s39_lmy
Definition allins.hpp:21715
@ s39_vchb
Definition allins.hpp:22478
@ s39_slbr
Definition allins.hpp:22209
@ s39_lmd
Definition allins.hpp:21712
@ s39_clgijlh
Definition allins.hpp:21279
@ s39_locrlh
Definition allins.hpp:21852
@ s39_blh
Definition allins.hpp:21017
@ s39_axr
Definition allins.hpp:21007
@ s39_vfeehs
Definition allins.hpp:22612
@ s39_llihf
Definition allins.hpp:21704
@ s39_strv
Definition allins.hpp:22361
@ s39_binh
Definition allins.hpp:21065
@ s39_bctr
Definition allins.hpp:21051
@ s39_vfidb
Definition allins.hpp:22633
@ s39_trtre
Definition allins.hpp:22421
@ s39_oiy
Definition allins.hpp:22071
@ s39_lxr
Definition allins.hpp:21917
@ s39_vmoh
Definition allins.hpp:22853
@ s39_epair
Definition allins.hpp:21497
@ s39_lrvgr
Definition allins.hpp:21888
@ s39_unpku
Definition allins.hpp:22427
@ s39_vag
Definition allins.hpp:22442
@ s39_ltxtr
Definition allins.hpp:21905
@ s39_stoc
Definition allins.hpp:22310
@ s39_wcdgb
Definition allins.hpp:23030
@ s39_vavglf
Definition allins.hpp:22453
@ s39_esea
Definition allins.hpp:21506
@ s39_bsa
Definition allins.hpp:21082
@ s39_rsch
Definition allins.hpp:22117
@ s39_locfhre
Definition allins.hpp:21764
@ s39_tend
Definition allins.hpp:22396
@ s39_sxbr
Definition allins.hpp:22374
@ s39_sp
Definition allins.hpp:22230
@ s39_vfdsb
Definition allins.hpp:22605
@ s39_mxtra
Definition allins.hpp:22022
@ s39_lxdtr
Definition allins.hpp:21912
@ s39_lray
Definition allins.hpp:21882
@ s39_vaq
Definition allins.hpp:22445
@ s39_vfene
Definition allins.hpp:22619
@ s39_brct
Definition allins.hpp:21075
@ s39_didbr
Definition allins.hpp:21471
@ s39_vmalhf
Definition allins.hpp:22805
@ s39_crl
Definition allins.hpp:21401
@ s39_cg
Definition allins.hpp:21142
@ s39_maylr
Definition allins.hpp:21937
@ s39_cgxtr
Definition allins.hpp:21206
@ s39_lochhi
Definition allins.hpp:21816
@ s39_mg
Definition allins.hpp:21957
@ s39_brcl
Definition allins.hpp:21074
@ s39_vmloh
Definition allins.hpp:22839
@ s39_cuse
Definition allins.hpp:21425
@ s39_aly
Definition allins.hpp:20997
@ s39_stocl
Definition allins.hpp:22314
@ s39_vmle
Definition allins.hpp:22826
@ s39_vlph
Definition allins.hpp:22773
@ s39_lcdfr
Definition allins.hpp:21621
@ s39_cgibnl
Definition allins.hpp:21164
@ s39_clgibh
Definition allins.hpp:21270
@ s39_locghinhe
Definition allins.hpp:21791
@ s39_may
Definition allins.hpp:21933
@ s39_jgnle
Definition allins.hpp:21566
@ s39_jo
Definition allins.hpp:21549
@ s39_loco
Definition allins.hpp:21727
@ s39_vstbrq
Definition allins.hpp:22965
@ s39_bhr
Definition allins.hpp:21027
@ s39_locfhlh
Definition allins.hpp:21747
@ s39_locgro
Definition allins.hpp:21802
@ s39_vfchesb
Definition allins.hpp:22599
@ s39_ltdr
Definition allins.hpp:21894
@ s39_lghr
Definition allins.hpp:21673
@ s39_clgtle
Definition allins.hpp:21319
@ s39_stcm
Definition allins.hpp:22279
@ s39_sxtra
Definition allins.hpp:22377
@ s39_locgnh
Definition allins.hpp:21784
@ s39_vmn
Definition allins.hpp:22840
@ s39_alsihn
Definition allins.hpp:20996
@ s39_vacc
Definition allins.hpp:22432
@ s39_vlgvb
Definition allins.hpp:22751
@ s39_clrtnhe
Definition allins.hpp:21365
@ s39_oc
Definition allins.hpp:22058
@ s39_wfk
Definition allins.hpp:23069
@ s39_clgrbnl
Definition allins.hpp:21296
@ s39_sl
Definition allins.hpp:22202
@ s39_vfeebs
Definition allins.hpp:22608
@ s39_clgrjle
Definition allins.hpp:21304
@ s39_lra
Definition allins.hpp:21880
@ s39_vpopctg
Definition allins.hpp:22911
@ s39_wfisb
Definition allins.hpp:23067
@ s39_adb
Definition allins.hpp:20948
@ s39_vcdlgb
Definition allins.hpp:22460
@ s39_vmp
Definition allins.hpp:22854
@ s39_wfkxb
Definition allins.hpp:23090
@ s39_flogr
Definition allins.hpp:21523
@ s39_vuplhf
Definition allins.hpp:23022
@ s39_vaccc
Definition allins.hpp:22434
@ s39_vpopcth
Definition allins.hpp:22912
@ s39_mvcos
Definition allins.hpp:22000
@ s39_vsteh
Definition allins.hpp:22972
@ s39_xihf
Definition allins.hpp:23145
@ s39_vn
Definition allins.hpp:22878
@ s39_vesrlf
Definition allins.hpp:22564
@ s39_kmctr
Definition allins.hpp:21590
@ s39_clrtnl
Definition allins.hpp:21368
@ s39_selrnh
Definition allins.hpp:22184
@ s39_wfchedbs
Definition allins.hpp:23052
@ s39_vmlhw
Definition allins.hpp:22835
@ s39_crt
Definition allins.hpp:21402
@ s39_vstef
Definition allins.hpp:22970
@ s39_wflrx
Definition allins.hpp:23103
@ s39_locfho
Definition allins.hpp:21742
@ s39_selhhhrnlh
Definition allins.hpp:22165
@ s39_vlerg
Definition allins.hpp:22748
@ s39_srlk
Definition allins.hpp:22256
@ s39_lgbr
Definition allins.hpp:21664
@ s39_sqdr
Definition allins.hpp:22239
@ s39_oi
Definition allins.hpp:22064
@ s39_crdte
Definition allins.hpp:21393
@ s39_slg
Definition allins.hpp:22214
@ s39_cgijlh
Definition allins.hpp:21169
@ s39_se
Definition allins.hpp:22138
@ s39_cfdr
Definition allins.hpp:21132
@ s39_dlr
Definition allins.hpp:21476
@ s39_vstrcb
Definition allins.hpp:22980
@ s39_vflndb
Definition allins.hpp:22651
@ s39_pt
Definition allins.hpp:22094
@ s39_tdgxt
Definition allins.hpp:22395
@ s39_sw
Definition allins.hpp:22372
@ s39_vavgh
Definition allins.hpp:22450
@ s39_vpksfs
Definition allins.hpp:22902
@ s39_vcelfb
Definition allins.hpp:22462
@ s39_trace
Definition allins.hpp:22410
@ s39_vfee
Definition allins.hpp:22606
@ s39_clrtle
Definition allins.hpp:21369
@ s39_stch
Definition allins.hpp:22274
@ s39_agrk
Definition allins.hpp:20966
@ s39_locr
Definition allins.hpp:21846
@ s39_iilh
Definition allins.hpp:21540
@ s39_vfnmssb
Definition allins.hpp:22677
@ s39_vstrczhs
Definition allins.hpp:22991
@ s39_mlg
Definition allins.hpp:21965
@ s39_cliy
Definition allins.hpp:21343
@ s39_locgrh
Definition allins.hpp:21803
@ s39_citlh
Definition allins.hpp:21235
@ s39_ltxbr
Definition allins.hpp:21903
@ s39_wflpdb
Definition allins.hpp:23099
@ s39_clijlh
Definition allins.hpp:21339
@ s39_wfcedb
Definition allins.hpp:23043
@ s39_bne
Definition allins.hpp:21018
@ s39_cgrtlh
Definition allins.hpp:21199
@ s39_aer
Definition allins.hpp:20956
@ s39_srp
Definition allins.hpp:22260
@ s39_stocgnl
Definition allins.hpp:22351
@ s39_vceqhs
Definition allins.hpp:22471
@ s39_vmrlf
Definition allins.hpp:22862
@ s39_sr
Definition allins.hpp:22246
@ s39_vfaezb
Definition allins.hpp:22581
@ s39_vmrh
Definition allins.hpp:22855
@ s39_mvcdk
Definition allins.hpp:21994
@ s39_clfdtr
Definition allins.hpp:21246
@ s39_lm
Definition allins.hpp:21711
@ s39_keb
Definition allins.hpp:21582
@ s39_clfebr
Definition allins.hpp:21247
@ s39_locfhnhe
Definition allins.hpp:21746
@ s39_rosbg
Definition allins.hpp:22111
@ s39_pti
Definition allins.hpp:22097
@ s39_ssm
Definition allins.hpp:22268
@ s39_cfebra
Definition allins.hpp:21135
@ s39_ler
Definition allins.hpp:21651
@ s39_stmh
Definition allins.hpp:22307
@ s39_vmnb
Definition allins.hpp:22841
@ s39_vlvg
Definition allins.hpp:22782
@ s39_clgfr
Definition allins.hpp:21265
@ s39_jgnlh
Definition allins.hpp:21572
@ s39_wflcdb
Definition allins.hpp:23091
@ s39_stocfho
Definition allins.hpp:22326
@ s39_axbr
Definition allins.hpp:21006
@ s39_vfmdb
Definition allins.hpp:22664
@ s39_trot
Definition allins.hpp:22416
@ s39_lpp
Definition allins.hpp:21871
@ s39_bno
Definition allins.hpp:21025
@ s39_wldeb
Definition allins.hpp:23137
@ s39_tdcet
Definition allins.hpp:22391
@ s39_ipm
Definition allins.hpp:21543
@ s39_vuphb
Definition allins.hpp:23013
@ s39_ahhhr
Definition allins.hpp:20969
@ s39_vcvd
Definition allins.hpp:22514
@ s39_vfenezh
Definition allins.hpp:22630
@ s39_locre
Definition allins.hpp:21854
@ s39_vacq
Definition allins.hpp:22440
@ s39_clgfi
Definition allins.hpp:21264
@ s39_sgrk
Definition allins.hpp:22194
@ s39_locfhrhe
Definition allins.hpp:21766
@ s39_vmao
Definition allins.hpp:22812
@ s39_locfhnlh
Definition allins.hpp:21750
@ s39_jle
Definition allins.hpp:21560
@ s39_cgrbh
Definition allins.hpp:21182
@ s39_selrnhe
Definition allins.hpp:22176
@ s39_vmslg
Definition allins.hpp:22866
@ s39_vupllf
Definition allins.hpp:23027
@ s39_tmhh
Definition allins.hpp:22400
@ s39_msebr
Definition allins.hpp:21979
@ s39_vmef
Definition allins.hpp:22818
@ s39_sebr
Definition allins.hpp:22140
@ s39_cgr
Definition allins.hpp:21180
@ s39_vesrlg
Definition allins.hpp:22565
@ s39_clrjnhe
Definition allins.hpp:21357
@ s39_mxbr
Definition allins.hpp:22015
@ s39_locrnl
Definition allins.hpp:21857
@ s39_vstrl
Definition allins.hpp:22992
@ s39_jnlh
Definition allins.hpp:21557
@ s39_clfhsi
Definition allins.hpp:21248
@ s39_selhhhrhe
Definition allins.hpp:22166
@ s39_vchlg
Definition allins.hpp:22491
@ s39_vistrbs
Definition allins.hpp:22710
@ s39_clibnlh
Definition allins.hpp:21332
@ s39_ecag
Definition allins.hpp:21488
@ s39_alhhhr
Definition allins.hpp:20989
@ s39_ex
Definition allins.hpp:21510
@ s39_vmalef
Definition allins.hpp:22800
@ s39_cgrb
Definition allins.hpp:21181
@ s39_cdlgbr
Definition allins.hpp:21104
@ s39_nnrk
Definition allins.hpp:22046
@ s39_tabort
Definition allins.hpp:22379
@ s39_vfenefs
Definition allins.hpp:22623
@ s39_vllebrzh
Definition allins.hpp:22761
@ s39_ogrk
Definition allins.hpp:22063
@ s39_jl
Definition allins.hpp:21552
@ s39_lrag
Definition allins.hpp:21881
@ s39_verllh
Definition allins.hpp:22536
@ s39_locgnhe
Definition allins.hpp:21776
@ s39_cvby
Definition allins.hpp:21431
@ s39_stdrv
Definition allins.hpp:22288
@ s39_cij
Definition allins.hpp:21225
@ s39_llh
Definition allins.hpp:21700
@ s39_vflr
Definition allins.hpp:22655
@ s39_brxh
Definition allins.hpp:21078
@ s39_cl
Definition allins.hpp:21240
@ s39_srdt
Definition allins.hpp:22252
@ s39_lpgr
Definition allins.hpp:21870
@ s39_clfitnlh
Definition allins.hpp:21254
@ s39_cxfr
Definition allins.hpp:21438
@ s39_sacf
Definition allins.hpp:22121
@ s39_xsch
Definition allins.hpp:23150
@ s39_lochhile
Definition allins.hpp:21828
@ s39_vmalhh
Definition allins.hpp:22806
@ s39_stocgnlh
Definition allins.hpp:22349
@ s39_lochhilh
Definition allins.hpp:21822
@ s39_lnxr
Definition allins.hpp:21725
@ s39_vfmsdb
Definition allins.hpp:22670
@ s39_srda
Definition allins.hpp:22250
@ s39_selhhhr
Definition allins.hpp:22156
@ s39_vchf
Definition allins.hpp:22480
@ s39_vlpg
Definition allins.hpp:22772
@ s39_slak
Definition allins.hpp:22205
@ s39_vfenezfs
Definition allins.hpp:22629
@ s39_alsih
Definition allins.hpp:20995
@ s39_cltlh
Definition allins.hpp:21374
@ s39_clgrble
Definition allins.hpp:21297
@ s39_ml
Definition allins.hpp:21964
@ s39_locgnlh
Definition allins.hpp:21780
@ s39_ng
Definition allins.hpp:22033
@ s39_vesrlvh
Definition allins.hpp:22571
@ s39_wfchedb
Definition allins.hpp:23051
@ s39_bnlhr
Definition allins.hpp:21034
@ s39_bie
Definition allins.hpp:21060
@ s39_lpdfr
Definition allins.hpp:21864
@ s39_agf
Definition allins.hpp:20959
@ s39_vmlb
Definition allins.hpp:22825
@ s39_cijlh
Definition allins.hpp:21228
@ s39_wfaxb
Definition allins.hpp:23040
@ s39_vesrl
Definition allins.hpp:22562
@ s39_schm
Definition allins.hpp:22128
@ s39_spka
Definition allins.hpp:22232
@ s39_crtle
Definition allins.hpp:21408
@ s39_cfdbra
Definition allins.hpp:21131
@ s39_clrbnlh
Definition allins.hpp:21352
@ s39_ahik
Definition allins.hpp:20972
@ s39_wflpxb
Definition allins.hpp:23101
@ s39_lxd
Definition allins.hpp:21908
@ s39_vchhs
Definition allins.hpp:22485
@ s39_csg
Definition allins.hpp:21412
@ s39_vfenezbs
Definition allins.hpp:22627
@ s39_lcgfr
Definition allins.hpp:21625
@ s39_slhhlr
Definition allins.hpp:22221
@ s39_vrepf
Definition allins.hpp:22916
@ s39_cibnhe
Definition allins.hpp:21219
@ s39_locgrlh
Definition allins.hpp:21807
@ s39_cdsy
Definition allins.hpp:21111
@ s39_clst
Definition allins.hpp:21370
@ s39_bi
Definition allins.hpp:21052
@ s39_wfnmadb
Definition allins.hpp:23119
@ s39_locg
Definition allins.hpp:21771
@ s39_vuphh
Definition allins.hpp:23015
@ s39_bras
Definition allins.hpp:21071
@ s39_clgrjlh
Definition allins.hpp:21301
@ s39_lcgr
Definition allins.hpp:21626
@ s39_clgrbh
Definition allins.hpp:21292
@ s39_lochhinhe
Definition allins.hpp:21821
@ s39_ed
Definition allins.hpp:21492
@ s39_rrxtr
Definition allins.hpp:22116
@ s39_crjh
Definition allins.hpp:21395
@ s39_mvcin
Definition allins.hpp:21995
@ s39_lzdr
Definition allins.hpp:21919
@ s39_mvcs
Definition allins.hpp:22003
@ s39_vaf
Definition allins.hpp:22441
@ s39_selgr
Definition allins.hpp:22141
@ s39_iac
Definition allins.hpp:21527
@ s39_le
Definition allins.hpp:21646
@ s39_be
Definition allins.hpp:21019
@ s39_iill
Definition allins.hpp:21541
@ s39_mfy
Definition allins.hpp:21956
@ s39_vmaloh
Definition allins.hpp:22811
@ s39_meeb
Definition allins.hpp:21952
@ s39_vaccq
Definition allins.hpp:22439
@ s39_vfs
Definition allins.hpp:22681
@ s39_chy
Definition allins.hpp:21216
@ s39_locl
Definition allins.hpp:21730
@ s39_vistrhs
Definition allins.hpp:22714
@ s39_oill
Definition allins.hpp:22070
@ s39_sllk
Definition allins.hpp:22224
@ s39_ogr
Definition allins.hpp:22062
@ s39_vsteg
Definition allins.hpp:22971
@ s39_selrl
Definition allins.hpp:22175
@ s39_bpp
Definition allins.hpp:21068
@ s39_cfc
Definition allins.hpp:21129
@ s39_lax
Definition allins.hpp:21612
@ s39_rrbe
Definition allins.hpp:22113
@ s39_vlbb
Definition allins.hpp:22716
@ s39_clgijnlh
Definition allins.hpp:21280
@ s39_bc
Definition allins.hpp:21046
@ s39_sam24
Definition allins.hpp:22123
@ s39_ldebr
Definition allins.hpp:21635
@ s39_stocfhe
Definition allins.hpp:22333
@ s39_cit
Definition allins.hpp:21232
@ s39_wfkhxb
Definition allins.hpp:23087
@ s39_clgrjnhe
Definition allins.hpp:21300
@ s39_vacccq
Definition allins.hpp:22435
@ s39_lpd
Definition allins.hpp:21862
@ s39_fixbra
Definition allins.hpp:21520
@ s39_wfchsb
Definition allins.hpp:23057
@ s39_jnl
Definition allins.hpp:21559
@ s39_vchlbs
Definition allins.hpp:22488
@ s39_eedtr
Definition allins.hpp:21494
@ s39_brxle
Definition allins.hpp:21080
@ s39_msc
Definition allins.hpp:21971
@ s39_vfchsbs
Definition allins.hpp:22602
@ s39_cijnlh
Definition allins.hpp:21229
@ s39_selgrno
Definition allins.hpp:22155
@ s39_vecb
Definition allins.hpp:22518
@ s39_locgnl
Definition allins.hpp:21782
@ s39_bnle
Definition allins.hpp:21014
@ s39_cgh
Definition allins.hpp:21155
@ s39_crj
Definition allins.hpp:21394
@ s39_alr
Definition allins.hpp:20992
@ s39_lochhinlh
Definition allins.hpp:21825
@ s39_esta
Definition allins.hpp:21507
@ s39_epctr
Definition allins.hpp:21499
@ s39_vpkls
Definition allins.hpp:22893
@ s39_vesrah
Definition allins.hpp:22556
@ s39_locghinlh
Definition allins.hpp:21795
@ s39_locgno
Definition allins.hpp:21785
@ s39_sqd
Definition allins.hpp:22236
@ s39_verllv
Definition allins.hpp:22537
@ s39_vrepig
Definition allins.hpp:22922
@ s39_mviy
Definition allins.hpp:22009
@ s39_vlebrh
Definition allins.hpp:22736
@ s39_cp
Definition allins.hpp:21380
@ s39_alrk
Definition allins.hpp:20993
@ s39_cxbr
Definition allins.hpp:21435
@ s39_nr
Definition allins.hpp:22051
@ s39_stocgle
Definition allins.hpp:22352
@ s39_esair
Definition allins.hpp:21503
@ s39_lao
Definition allins.hpp:21607
@ s39_tm
Definition allins.hpp:22399
@ s39_vmae
Definition allins.hpp:22788
@ s39_clgijnl
Definition allins.hpp:21281
@ s39_citnhe
Definition allins.hpp:21234
@ s39_srl
Definition allins.hpp:22254
@ s39_vsrlb
Definition allins.hpp:22958
@ s39_vstrc
Definition allins.hpp:22979
@ s39_cdlftr
Definition allins.hpp:21103
@ s39_wfchexb
Definition allins.hpp:23055
@ s39_cspg
Definition allins.hpp:21414
@ s39_locgre
Definition allins.hpp:21809
@ s39_vfkesbs
Definition allins.hpp:22638
@ s39_srxt
Definition allins.hpp:22263
@ s39_wfchxbs
Definition allins.hpp:23060
@ s39_veslvf
Definition allins.hpp:22549
@ s39_vfkhsbs
Definition allins.hpp:22646
@ s39_cgibh
Definition allins.hpp:21160
@ s39_binlh
Definition allins.hpp:21061
@ s39_selrne
Definition allins.hpp:22178
@ s39_ldgr
Definition allins.hpp:21638
@ s39_stmg
Definition allins.hpp:22306
@ s39_locfhrh
Definition allins.hpp:21758
@ s39_x
Definition allins.hpp:23139
@ s39_slgfi
Definition allins.hpp:22216
@ s39_adbr
Definition allins.hpp:20949
@ s39_dxtr
Definition allins.hpp:21485
@ s39_lcer
Definition allins.hpp:21624
@ s39_cdfbr
Definition allins.hpp:21093
@ s39_vstbrf
Definition allins.hpp:22962
@ s39_vfenef
Definition allins.hpp:22622
@ s39_wftcidb
Definition allins.hpp:23134
@ s39_vrepih
Definition allins.hpp:22923
@ s39_clrtnlh
Definition allins.hpp:21367
@ s39_ly
Definition allins.hpp:21918
@ s39_citnl
Definition allins.hpp:21237
@ s39_mayl
Definition allins.hpp:21936
@ s39_clrj
Definition allins.hpp:21355
@ s39_awr
Definition allins.hpp:21005
@ s39_stm
Definition allins.hpp:22305
@ s39_vclz
Definition allins.hpp:22500
@ s39_cpdt
Definition allins.hpp:21381
@ s39_clijh
Definition allins.hpp:21337
@ s39_ipte
Definition allins.hpp:21544
@ s39_vmx
Definition allins.hpp:22868
@ s39_lpdr
Definition allins.hpp:21866
@ s39_mlr
Definition allins.hpp:21967
@ s39_spctr
Definition allins.hpp:22231
@ s39_ad
Definition allins.hpp:20947
@ s39_wfcsb
Definition allins.hpp:23061
@ s39_cxtr
Definition allins.hpp:21452
@ s39_vpdi
Definition allins.hpp:22887
@ s39_cgrj
Definition allins.hpp:21188
@ s39_vceqh
Definition allins.hpp:22470
@ s39_me
Definition allins.hpp:21950
@ s39_jhe
Definition allins.hpp:21558
@ s39_vlr
Definition allins.hpp:22774
@ s39_clrjnl
Definition allins.hpp:21360
@ s39_vac
Definition allins.hpp:22431
@ s39_vstrczf
Definition allins.hpp:22988
@ s39_vfkedbs
Definition allins.hpp:22636
@ s39_wfkedbs
Definition allins.hpp:23072
@ s39_ciblh
Definition allins.hpp:21220
@ s39_vlgvh
Definition allins.hpp:22754
@ s39_stsi
Definition allins.hpp:22365
@ s39_cudtr
Definition allins.hpp:21424
@ s39_risbg
Definition allins.hpp:22104
@ s39_veclg
Definition allins.hpp:22525
@ s39_rllg
Definition allins.hpp:22109
@ s39_clhf
Definition allins.hpp:21322
@ s39_vflpsb
Definition allins.hpp:22654
@ s39_vgbm
Definition allins.hpp:22690
@ s39_ic
Definition allins.hpp:21528
@ s39_wflcsb
Definition allins.hpp:23092
@ s39_locghil
Definition allins.hpp:21790
@ s39_sldt
Definition allins.hpp:22212
@ s39_selrle
Definition allins.hpp:22183
@ s39_ddtr
Definition allins.hpp:21463
@ s39_locfhrlh
Definition allins.hpp:21762
@ s39_cijnl
Definition allins.hpp:21230
@ s39_cgib
Definition allins.hpp:21159
@ s39_sur
Definition allins.hpp:22370
@ s39_vpkf
Definition allins.hpp:22890
@ s39_lxebr
Definition allins.hpp:21915
@ s39_vcdlg
Definition allins.hpp:22459
@ s39_stocno
Definition allins.hpp:22324
@ s39_wfsxb
Definition allins.hpp:23133
@ s39_veclh
Definition allins.hpp:22526
@ s39_vesrlh
Definition allins.hpp:22566
@ s39_clrth
Definition allins.hpp:21364
@ s39_ld
Definition allins.hpp:21632
@ s39_mvo
Definition allins.hpp:22011
@ s39_vlrep
Definition allins.hpp:22775
@ s39_vmaob
Definition allins.hpp:22813
@ s39_vlgvg
Definition allins.hpp:22753
@ s39_vno
Definition allins.hpp:22881
@ s39_bihe
Definition allins.hpp:21062
@ s39_siga
Definition allins.hpp:22200
@ s39_cdgtra
Definition allins.hpp:21101
@ s39_brasl
Definition allins.hpp:21072
@ s39_vpopct
Definition allins.hpp:22908
@ s39_myh
Definition allins.hpp:22024
@ s39_tam
Definition allins.hpp:22380
@ s39_vmeh
Definition allins.hpp:22819
@ s39_ceb
Definition allins.hpp:21116
@ s39_lxdb
Definition allins.hpp:21909
@ s39_sd
Definition allins.hpp:22132
@ s39_kdb
Definition allins.hpp:21578
@ s39_dfltcc
Definition allins.hpp:21469
@ s39_cgrjnlh
Definition allins.hpp:21192
@ s39_cgrjh
Definition allins.hpp:21189
@ s39_vme
Definition allins.hpp:22816
@ s39_cib
Definition allins.hpp:21217
@ s39_cijnhe
Definition allins.hpp:21227
@ s39_sth
Definition allins.hpp:22300
@ s39_nork
Definition allins.hpp:22050
@ s39_stocgnh
Definition allins.hpp:22353
@ s39_vgfm
Definition allins.hpp:22693
@ s39_vgmg
Definition allins.hpp:22706
@ s39_crbnlh
Definition allins.hpp:21390
@ s39_locghihe
Definition allins.hpp:21796
@ s39_sgr
Definition allins.hpp:22193
@ s39_vpopctb
Definition allins.hpp:22909
@ s39_a
Definition allins.hpp:20946
@ s39_clhrl
Definition allins.hpp:21326
@ s39_fidbra
Definition allins.hpp:21513
@ s39_mvcsk
Definition allins.hpp:22004
@ s39_lg
Definition allins.hpp:21661
@ s39_stocfhle
Definition allins.hpp:22337
@ s39_locrnh
Definition allins.hpp:21859
@ s39_lhy
Definition allins.hpp:21683
@ s39_vsterh
Definition allins.hpp:22976
@ s39_lmh
Definition allins.hpp:21714
@ s39_cu14
Definition allins.hpp:21419
@ s39_clible
Definition allins.hpp:21334
@ s39_adtra
Definition allins.hpp:20952
@ s39_clrjh
Definition allins.hpp:21356
@ s39_cgitnhe
Definition allins.hpp:21175
@ s39_cdr
Definition allins.hpp:21107
@ s39_sdtr
Definition allins.hpp:22136
@ s39_vfmasb
Definition allins.hpp:22660
@ s39_tbdr
Definition allins.hpp:22383
@ s39_vesrlvf
Definition allins.hpp:22569
@ s39_plo
Definition allins.hpp:22088
@ s39_je
Definition allins.hpp:21556
@ s39_laag
Definition allins.hpp:21598
@ s39_sigp
Definition allins.hpp:22201
@ s39_qsi
Definition allins.hpp:22102
@ s39_bio
Definition allins.hpp:21053
@ s39_vcksm
Definition allins.hpp:22495
@ s39_pr
Definition allins.hpp:22092
@ C166_bcmp
Definition allins.hpp:9551
@ C166_cplb
Definition allins.hpp:9570
@ C166_jbc
Definition allins.hpp:9584
@ ST10_CoMAC
Definition allins.hpp:9633
@ C166_einit
Definition allins.hpp:9576
@ C166_callr
Definition allins.hpp:9561
@ C166_subb
Definition allins.hpp:9619
@ C166_sbrk
Definition allins.hpp:9650
@ C166_shr
Definition allins.hpp:9615
@ C166_retp
Definition allins.hpp:9609
@ C166_neg
Definition allins.hpp:9597
@ C166_srst
Definition allins.hpp:9616
@ C166_reti
Definition allins.hpp:9608
@ C166_mov
Definition allins.hpp:9591
@ C166_cpl
Definition allins.hpp:9569
@ C166_bset
Definition allins.hpp:9557
@ C166_trap
Definition allins.hpp:9622
@ C166_extpr
Definition allins.hpp:9579
@ C166_cmpd1
Definition allins.hpp:9565
@ C166_extr
Definition allins.hpp:9577
@ C166_bmovn
Definition allins.hpp:9555
@ ST10_CoCMP
Definition allins.hpp:9631
@ C166_negb
Definition allins.hpp:9598
@ C166_subc
Definition allins.hpp:9620
@ C166_band
Definition allins.hpp:9549
@ ST10_CoABS
Definition allins.hpp:9628
@ C166_enwdt
Definition allins.hpp:9649
@ C166_mulu
Definition allins.hpp:9596
@ C166_jb
Definition allins.hpp:9583
@ C166_divl
Definition allins.hpp:9573
@ C166_addc
Definition allins.hpp:9543
@ C166_addb
Definition allins.hpp:9542
@ C166_cmpb
Definition allins.hpp:9564
@ C166_jnbs
Definition allins.hpp:9590
@ ST10_CoRND
Definition allins.hpp:9641
@ ST10_CoMIN
Definition allins.hpp:9636
@ C166_movbs
Definition allins.hpp:9593
@ ST10_CoMAX
Definition allins.hpp:9635
@ C166_idle
Definition allins.hpp:9582
@ C166_last
Definition allins.hpp:9652
@ C166_ror
Definition allins.hpp:9612
@ C166_or
Definition allins.hpp:9600
@ C166_bfldh
Definition allins.hpp:9552
@ C166_nop
Definition allins.hpp:9599
@ C166_calls
Definition allins.hpp:9562
@ C166_calli
Definition allins.hpp:9560
@ C166_bclr
Definition allins.hpp:9550
@ C166_xor
Definition allins.hpp:9623
@ C166_cmp
Definition allins.hpp:9563
@ ST10_CoNOP
Definition allins.hpp:9640
@ ST10_CoMUL
Definition allins.hpp:9638
@ C166_jmpi
Definition allins.hpp:9586
@ C166_and
Definition allins.hpp:9545
@ ST10_CoSHR
Definition allins.hpp:9643
@ C166_pwrdn
Definition allins.hpp:9606
@ ST10_CoADD
Definition allins.hpp:9629
@ C166_divu
Definition allins.hpp:9575
@ ST10_CoSTORE
Definition allins.hpp:9644
@ C166_divlu
Definition allins.hpp:9574
@ C166_scxt
Definition allins.hpp:9613
@ C166_rol
Definition allins.hpp:9611
@ C166_pcall
Definition allins.hpp:9602
@ C166_movbz
Definition allins.hpp:9594
@ C166_jmpr
Definition allins.hpp:9587
@ C166_exts
Definition allins.hpp:9580
@ ST10_CoASHR
Definition allins.hpp:9630
@ C166_prior
Definition allins.hpp:9604
@ C166_extsr
Definition allins.hpp:9581
@ ST10_CoMACM
Definition allins.hpp:9634
@ ST10_CoSHL
Definition allins.hpp:9642
@ C166_addcb
Definition allins.hpp:9544
@ C166_ret
Definition allins.hpp:9607
@ C166_cmpd2
Definition allins.hpp:9566
@ C166_subcb
Definition allins.hpp:9621
@ C166_xorb
Definition allins.hpp:9624
@ C166_bxor
Definition allins.hpp:9558
@ C166_movb
Definition allins.hpp:9592
@ C166_jnb
Definition allins.hpp:9589
@ C166_rets
Definition allins.hpp:9610
@ C166_cmpi2
Definition allins.hpp:9568
@ ST10_CoLOAD
Definition allins.hpp:9632
@ C166_div
Definition allins.hpp:9572
@ C166_jmps
Definition allins.hpp:9588
@ C166_bfldl
Definition allins.hpp:9553
@ C166_bor
Definition allins.hpp:9556
@ C166_srvwdt
Definition allins.hpp:9617
@ C166_add
Definition allins.hpp:9541
@ C166_ashr
Definition allins.hpp:9547
@ ST10_CoNEG
Definition allins.hpp:9639
@ C166_atomic
Definition allins.hpp:9548
@ C166_shl
Definition allins.hpp:9614
@ C166_pop
Definition allins.hpp:9603
@ C166_push
Definition allins.hpp:9605
@ ST10_CoMOV
Definition allins.hpp:9637
@ C166_orb
Definition allins.hpp:9601
@ C166_andb
Definition allins.hpp:9546
@ C166_calla
Definition allins.hpp:9559
@ C166_sub
Definition allins.hpp:9618
@ ST10_CoSUB
Definition allins.hpp:9645
@ C166_extp
Definition allins.hpp:9578
@ C166_jmpa
Definition allins.hpp:9585
@ C166_diswdt
Definition allins.hpp:9571
@ C166_cmpi1
Definition allins.hpp:9567
@ C166_mul
Definition allins.hpp:9595
@ C166_null
Definition allins.hpp:9539
@ C166_bmov
Definition allins.hpp:9554
@ TMS320C54_cala
Definition allins.hpp:12052
@ TMS320C54_rsbx1
Definition allins.hpp:12110
@ TMS320C54_popm
Definition allins.hpp:12100
@ TMS320C54_sftl2
Definition allins.hpp:12020
@ TMS320C54_ccd2
Definition allins.hpp:12058
@ TMS320C54_intr
Definition allins.hpp:12067
@ TMS320C54_xorm
Definition allins.hpp:12010
@ TMS320C54_bcd3
Definition allins.hpp:12044
@ TMS320C54_fret
Definition allins.hpp:12072
@ TMS320C54_delay
Definition allins.hpp:11973
@ TMS320C54_mvdk
Definition allins.hpp:12175
@ TMS320C54_mvmm
Definition allins.hpp:12180
@ TMS320C54_dld
Definition allins.hpp:12121
@ TMS320C54_mac3
Definition allins.hpp:11930
@ TMS320C54_abs2
Definition allins.hpp:11970
@ TMS320C54_mvmd
Definition allins.hpp:12179
@ TMS320C54_reada
Definition allins.hpp:12184
@ TMS320C54_rnd1
Definition allins.hpp:11984
@ TMS320C54_portr
Definition allins.hpp:12182
@ TMS320C54_macd
Definition allins.hpp:11939
@ TMS320C54_sqdst
Definition allins.hpp:11987
@ TMS320C54_fcall
Definition allins.hpp:12062
@ TMS320C54_rptb
Definition allins.hpp:12092
@ TMS320C54_st_macr
Definition allins.hpp:12167
@ TMS320C54_dsub
Definition allins.hpp:11963
@ TMS320C54_calad
Definition allins.hpp:12053
@ TMS320C54_mpyr2
Definition allins.hpp:11922
@ TMS320C54_abs1
Definition allins.hpp:11969
@ TMS320C54_last
Definition allins.hpp:12187
@ TMS320C54_rc3
Definition allins.hpp:12078
@ TMS320C54_bc2
Definition allins.hpp:12041
@ TMS320C54_cmps
Definition allins.hpp:12143
@ TMS320C54_banz
Definition allins.hpp:12039
@ TMS320C54_st_mac
Definition allins.hpp:12166
@ TMS320C54_bcd2
Definition allins.hpp:12043
@ TMS320C54_maca2
Definition allins.hpp:11934
@ TMS320C54_ld_mac
Definition allins.hpp:12154
@ TMS320C54_norm1
Definition allins.hpp:11981
@ TMS320C54_mpya
Definition allins.hpp:11923
@ TMS320C54_mvdd
Definition allins.hpp:12174
@ TMS320C54_sub2
Definition allins.hpp:11912
@ TMS320C54_null
Definition allins.hpp:11896
@ TMS320C54_rptz
Definition allins.hpp:12094
@ TMS320C54_reset
Definition allins.hpp:12109
@ TMS320C54_exp
Definition allins.hpp:11974
@ TMS320C54_xor2
Definition allins.hpp:12008
@ TMS320C54_saccd
Definition allins.hpp:12144
@ TMS320C54_macp
Definition allins.hpp:11940
@ TMS320C54_xc2
Definition allins.hpp:12114
@ TMS320C54_and3
Definition allins.hpp:11995
@ TMS320C54_bacc
Definition allins.hpp:12037
@ TMS320C54_frete
Definition allins.hpp:12074
@ TMS320C54_macar3
Definition allins.hpp:11938
@ TMS320C54_fcala
Definition allins.hpp:12060
@ TMS320C54_portw
Definition allins.hpp:12183
@ TMS320C54_call
Definition allins.hpp:12054
@ TMS320C54_bitt
Definition allins.hpp:12027
@ TMS320C54_stm
Definition allins.hpp:12139
@ TMS320C54_orm
Definition allins.hpp:12003
@ TMS320C54_macsu
Definition allins.hpp:11941
@ TMS320C54_rcd3
Definition allins.hpp:12081
@ TMS320C54_bit
Definition allins.hpp:12025
@ TMS320C54_stl2
Definition allins.hpp:12136
@ TMS320C54_squrs
Definition allins.hpp:11954
@ TMS320C54_dst
Definition allins.hpp:12132
@ TMS320C54_sftl3
Definition allins.hpp:12021
@ TMS320C54_fcalld
Definition allins.hpp:12063
@ TMS320C54_or2
Definition allins.hpp:12001
@ TMS320C54_max
Definition allins.hpp:11977
@ TMS320C54_fb
Definition allins.hpp:12045
@ TMS320C54_sftc
Definition allins.hpp:12019
@ TMS320C54_st_mas
Definition allins.hpp:12168
@ TMS320C54_ccd3
Definition allins.hpp:12059
@ TMS320C54_rol
Definition allins.hpp:12014
@ TMS320C54_ld2
Definition allins.hpp:12123
@ TMS320C54_sub1
Definition allins.hpp:11911
@ TMS320C54_rcd1
Definition allins.hpp:12079
@ TMS320C54_cc2
Definition allins.hpp:12056
@ TMS320C54_rpt
Definition allins.hpp:12091
@ TMS320C54_ssbx2
Definition allins.hpp:12113
@ TMS320C54_ld3
Definition allins.hpp:12124
@ TMS320C54_mas2
Definition allins.hpp:11942
@ TMS320C54_neg1
Definition allins.hpp:11979
@ TMS320C54_macar1
Definition allins.hpp:11936
@ TMS320C54_frame
Definition allins.hpp:12098
@ TMS320C54_dsubt
Definition allins.hpp:11964
@ TMS320C54_freted
Definition allins.hpp:12075
@ TMS320C54_adds
Definition allins.hpp:11907
@ TMS320C54_squr
Definition allins.hpp:11925
@ TMS320C54_sub3
Definition allins.hpp:11913
@ TMS320C54_sfta3
Definition allins.hpp:12018
@ TMS320C54_subb
Definition allins.hpp:11914
@ TMS320C54_fcalad
Definition allins.hpp:12061
@ TMS320C54_mvpd
Definition allins.hpp:12181
@ TMS320C54_ld_mas
Definition allins.hpp:12156
@ TMS320C54_stl3
Definition allins.hpp:12137
@ TMS320C54_pshd
Definition allins.hpp:12101
@ TMS320C54_subs
Definition allins.hpp:11916
@ TMS320C54_and1
Definition allins.hpp:11993
@ TMS320C54_norm2
Definition allins.hpp:11982
@ TMS320C54_or3
Definition allins.hpp:12002
@ TMS320C54_ldu
Definition allins.hpp:12127
@ TMS320C54_ld1
Definition allins.hpp:12122
@ TMS320C54_add3
Definition allins.hpp:11904
@ TMS320C54_cc3
Definition allins.hpp:12057
@ TMS320C54_fbd
Definition allins.hpp:12046
@ TMS320C54_ltd
Definition allins.hpp:12128
@ TMS320C54_rc1
Definition allins.hpp:12076
@ TMS320C54_mpy2
Definition allins.hpp:11920
@ TMS320C54_rsbx2
Definition allins.hpp:12111
@ TMS320C54_abdst
Definition allins.hpp:11968
@ TMS320C54_cmpm
Definition allins.hpp:12028
@ TMS320C54_bd
Definition allins.hpp:12036
@ TMS320C54_trap
Definition allins.hpp:12068
@ TMS320C54_subc
Definition allins.hpp:11915
@ TMS320C54_dadd2
Definition allins.hpp:11958
@ TMS320C54_rptbd
Definition allins.hpp:12093
@ TMS320C54_addm
Definition allins.hpp:11906
@ TMS320C54_sat
Definition allins.hpp:11986
@ TMS320C54_cmpl1
Definition allins.hpp:11971
@ TMS320C54_srccd
Definition allins.hpp:12145
@ TMS320C54_add1
Definition allins.hpp:11902
@ TMS320C54_writa
Definition allins.hpp:12185
@ TMS320C54_masr2
Definition allins.hpp:11944
@ TMS320C54_retf
Definition allins.hpp:12086
@ TMS320C54_mvdp
Definition allins.hpp:12177
@ TMS320C54_andm
Definition allins.hpp:11996
@ TMS320C54_strcd
Definition allins.hpp:12146
@ TMS320C54_retfd
Definition allins.hpp:12087
@ TMS320C54_st_ld
Definition allins.hpp:12150
@ TMS320C54_st_mpy
Definition allins.hpp:12170
@ TMS320C54_squra
Definition allins.hpp:11953
@ TMS320C54_mvkd
Definition allins.hpp:12178
@ TMS320C54_masa2
Definition allins.hpp:11948
@ TMS320C54_mvdm
Definition allins.hpp:12176
@ TMS320C54_rc2
Definition allins.hpp:12077
@ TMS320C54_fretd
Definition allins.hpp:12073
@ TMS320C54_nop
Definition allins.hpp:12108
@ TMS320C54_roltc
Definition allins.hpp:12015
@ TMS320C54_xc3
Definition allins.hpp:12115
@ TMS320C54_bitf
Definition allins.hpp:12026
@ TMS320C54_masar1
Definition allins.hpp:11950
@ TMS320C54_add2
Definition allins.hpp:11903
@ TMS320C54_ssbx1
Definition allins.hpp:12112
@ TMS320C54_ror
Definition allins.hpp:12016
@ TMS320C54_ld_macr
Definition allins.hpp:12155
@ TMS320C54_masar2
Definition allins.hpp:11951
@ TMS320C54_sth3
Definition allins.hpp:12135
@ TMS320C54_macar2
Definition allins.hpp:11937
@ TMS320C54_dadd3
Definition allins.hpp:11959
@ TMS320C54_mac2
Definition allins.hpp:11929
@ TMS320C54_ld_masr
Definition allins.hpp:12157
@ TMS320C54_drsub
Definition allins.hpp:11961
@ TMS320C54_neg2
Definition allins.hpp:11980
@ TMS320C54_pshm
Definition allins.hpp:12102
@ TMS320C54_ldr
Definition allins.hpp:12126
@ TMS320C54_dsadt
Definition allins.hpp:11962
@ TMS320C54_xor3
Definition allins.hpp:12009
@ TMS320C54_sth2
Definition allins.hpp:12134
@ TMS320C54_st_masr
Definition allins.hpp:12169
@ TMS320C54_st
Definition allins.hpp:12133
@ TMS320C54_xor1
Definition allins.hpp:12007
@ TMS320C54_dadst
Definition allins.hpp:11960
@ TMS320C54_maca1
Definition allins.hpp:11933
@ TMS320C54_fbaccd
Definition allins.hpp:12048
@ TMS320C54_baccd
Definition allins.hpp:12038
@ TMS320C54_calld
Definition allins.hpp:12055
@ TMS320C54_masr3
Definition allins.hpp:11945
@ TMS320C54_reted
Definition allins.hpp:12085
@ TMS320C54_rcd2
Definition allins.hpp:12080
@ TMS320C54_ldm
Definition allins.hpp:12125
@ TMS320C54_mas3
Definition allins.hpp:11943
@ TMS320C54_addc
Definition allins.hpp:11905
@ TMS320C54_macr2
Definition allins.hpp:11931
@ TMS320C54_retd
Definition allins.hpp:12083
@ TMS320C54_st_add
Definition allins.hpp:12161
@ TMS320C54_fbacc
Definition allins.hpp:12047
@ TMS320C54_poly
Definition allins.hpp:11983
@ TMS320C54_mar
Definition allins.hpp:12107
@ TMS320C54_rete
Definition allins.hpp:12084
@ TMS320C54_cmpl2
Definition allins.hpp:11972
@ TMS320C54_macr3
Definition allins.hpp:11932
@ TMS320C54_b
Definition allins.hpp:12035
@ TMS320C54_cmpr
Definition allins.hpp:12029
@ TMS320C54_firs
Definition allins.hpp:11975
@ TMS320C54_banzd
Definition allins.hpp:12040
@ TMS320C54_st_sub
Definition allins.hpp:12162
@ TMS320C54_min
Definition allins.hpp:11978
@ TMS320C54_sfta2
Definition allins.hpp:12017
@ TMS320C54_lms
Definition allins.hpp:11976
@ TMS320C54_bc3
Definition allins.hpp:12042
@ TMS320C54_idle
Definition allins.hpp:12106
@ TMS320C54_mpy3
Definition allins.hpp:11921
@ TMS320C54_and2
Definition allins.hpp:11994
@ TMS320C54_masar3
Definition allins.hpp:11952
@ TMS320C54_ret
Definition allins.hpp:12082
@ TMS320C54_masa3
Definition allins.hpp:11949
@ TMS320C54_or1
Definition allins.hpp:12000
@ TMS320C54_popd
Definition allins.hpp:12099
@ TMS320C54_mpyu
Definition allins.hpp:11924
@ TMS320C54_rnd2
Definition allins.hpp:11985
@ TMS320C54_maca3
Definition allins.hpp:11935
@ TMS320C54_masa1
Definition allins.hpp:11947
@ TMS320C54_stlm
Definition allins.hpp:12138
@ AD218X_mac_7
Definition allins.hpp:14415
@ AD218X_flag_out
Definition allins.hpp:14464
@ AD218X_alu_06
Definition allins.hpp:14384
@ AD218X_amf_0b
Definition allins.hpp:14339
@ AD218X_alu_03
Definition allins.hpp:14381
@ AD218X_alu_0e
Definition allins.hpp:14392
@ AD218X_alu_04
Definition allins.hpp:14382
@ AD218X_shft_6
Definition allins.hpp:14367
@ AD218X_move_3
Definition allins.hpp:14437
@ AD218X_shft_8
Definition allins.hpp:14369
@ AD218X_shft_5
Definition allins.hpp:14366
@ AD218X_shft_f
Definition allins.hpp:14376
@ AD218X_mac_2
Definition allins.hpp:14410
@ AD218X_shft_7
Definition allins.hpp:14368
@ AD218X_amf_1c
Definition allins.hpp:14356
@ AD218X_move_7
Definition allins.hpp:14441
@ AD218X_amf_01
Definition allins.hpp:14329
@ AD218X_alu_1a
Definition allins.hpp:14404
@ AD218X_jump_3
Definition allins.hpp:14450
@ AD218X_amf_move_a
Definition allins.hpp:14484
@ AD218X_amf_move_2
Definition allins.hpp:14476
@ AD218X_amf_move_6
Definition allins.hpp:14480
@ AD218X_shifter_6
Definition allins.hpp:14431
@ AD218X_jump_2
Definition allins.hpp:14449
@ AD218X_amf_0c
Definition allins.hpp:14340
@ AD218X_double_move
Definition allins.hpp:14473
@ AD218X_alu_15
Definition allins.hpp:14399
@ AD218X_amf_move_9
Definition allins.hpp:14483
@ AD218X_alu_07
Definition allins.hpp:14385
@ AD218X_amf_move_8
Definition allins.hpp:14482
@ AD218X_amf_08
Definition allins.hpp:14336
@ AD218X_move_2
Definition allins.hpp:14436
@ AD218X_call_2
Definition allins.hpp:14454
@ AD218X_null
Definition allins.hpp:14327
@ AD218X_shft_b
Definition allins.hpp:14372
@ AD218X_shft_3
Definition allins.hpp:14364
@ AD218X_alu_1d
Definition allins.hpp:14407
@ AD218X_amf_1d
Definition allins.hpp:14357
@ AD218X_move_8
Definition allins.hpp:14442
@ AD218X_shft_0
Definition allins.hpp:14361
@ AD218X_shft
Definition allins.hpp:14423
@ AD218X_amf_11
Definition allins.hpp:14345
@ AD218X_rts
Definition allins.hpp:14455
@ AD218X_mac_6
Definition allins.hpp:14414
@ AD218X_amf_12
Definition allins.hpp:14346
@ AD218X_alu_16
Definition allins.hpp:14400
@ AD218X_amf_19
Definition allins.hpp:14353
@ AD218X_amf_0e
Definition allins.hpp:14342
@ AD218X_amf_09
Definition allins.hpp:14337
@ AD218X_alu_17
Definition allins.hpp:14401
@ AD218X_alu_0a
Definition allins.hpp:14388
@ AD218X_rts_cond
Definition allins.hpp:14456
@ AD218X_shifter_1
Definition allins.hpp:14426
@ AD218X_amf_1f
Definition allins.hpp:14359
@ AD218X_rti_cond
Definition allins.hpp:14458
@ AD218X_call
Definition allins.hpp:14452
@ AD218X_last
Definition allins.hpp:14485
@ AD218X_shifter_3
Definition allins.hpp:14428
@ AD218X_amf_15
Definition allins.hpp:14349
@ AD218X_amf_move_4
Definition allins.hpp:14478
@ AD218X_move_9
Definition allins.hpp:14443
@ AD218X_alu_0c
Definition allins.hpp:14390
@ AD218X_move_4
Definition allins.hpp:14438
@ AD218X_call_1
Definition allins.hpp:14453
@ AD218X_alu_1b
Definition allins.hpp:14405
@ AD218X_alu_14
Definition allins.hpp:14398
@ AD218X_mac_b
Definition allins.hpp:14419
@ AD218X_shifter_2
Definition allins.hpp:14427
@ AD218X_amf_move_1
Definition allins.hpp:14475
@ AD218X_amf_0a
Definition allins.hpp:14338
@ AD218X_jump_4
Definition allins.hpp:14451
@ AD218X_alu_1c
Definition allins.hpp:14406
@ AD218X_shifter_7
Definition allins.hpp:14432
@ AD218X_amf_move_5
Definition allins.hpp:14479
@ AD218X_nop
Definition allins.hpp:14459
@ AD218X_mode_ctl
Definition allins.hpp:14466
@ AD218X_amf_13
Definition allins.hpp:14347
@ AD218X_alu_11
Definition allins.hpp:14395
@ AD218X_amf_16
Definition allins.hpp:14350
@ AD218X_shifter_5
Definition allins.hpp:14430
@ AD218X_shft_c
Definition allins.hpp:14373
@ AD218X_amf_1e
Definition allins.hpp:14358
@ AD218X_mac_a
Definition allins.hpp:14418
@ AD218X_mac_8
Definition allins.hpp:14416
@ AD218X_mac_0
Definition allins.hpp:14408
@ AD218X_alu_0d
Definition allins.hpp:14391
@ AD218X_mac_1
Definition allins.hpp:14409
@ AD218X_amf_03
Definition allins.hpp:14330
@ AD218X_amf_02
Definition allins.hpp:14331
@ AD218X_shft_e
Definition allins.hpp:14375
@ AD218X_alu_09
Definition allins.hpp:14387
@ AD218X_shifter_4
Definition allins.hpp:14429
@ AD218X_shft_2
Definition allins.hpp:14363
@ AD218X_do
Definition allins.hpp:14460
@ AD218X_move_5
Definition allins.hpp:14439
@ AD218X_shft_4
Definition allins.hpp:14365
@ AD218X_idle_1
Definition allins.hpp:14463
@ AD218X_alu_19
Definition allins.hpp:14403
@ AD218X_mac_4
Definition allins.hpp:14412
@ AD218X_alu_05
Definition allins.hpp:14383
@ AD218X_amf_18
Definition allins.hpp:14352
@ AD218X_amf
Definition allins.hpp:14421
@ AD218X_shft_a
Definition allins.hpp:14371
@ AD218X_mac_9
Definition allins.hpp:14417
@ AD218X_amf_move_7
Definition allins.hpp:14481
@ AD218X_jump_1
Definition allins.hpp:14448
@ AD218X_shft_d
Definition allins.hpp:14374
@ AD218X_move_0
Definition allins.hpp:14434
@ AD218X_amf_05
Definition allins.hpp:14333
@ AD218X_tops_r
Definition allins.hpp:14468
@ AD218X_idle
Definition allins.hpp:14462
@ AD218X_jump
Definition allins.hpp:14447
@ AD218X_move_b
Definition allins.hpp:14445
@ AD218X_move_6
Definition allins.hpp:14440
@ AD218X_shft_1
Definition allins.hpp:14362
@ AD218X_amf_04
Definition allins.hpp:14332
@ AD218X_alu_18
Definition allins.hpp:14402
@ AD218X_mac_5
Definition allins.hpp:14413
@ AD218X_alu_13
Definition allins.hpp:14397
@ AD218X_ints_ena
Definition allins.hpp:14470
@ AD218X_shft_9
Definition allins.hpp:14370
@ AD218X_alu_01
Definition allins.hpp:14379
@ AD218X_amf_move_3
Definition allins.hpp:14477
@ AD218X_alu_12
Definition allins.hpp:14396
@ AD218X_amf_10
Definition allins.hpp:14344
@ AD218X_move_a
Definition allins.hpp:14444
@ AD218X_rti
Definition allins.hpp:14457
@ AD218X_alu_08
Definition allins.hpp:14386
@ AD218X_mac_3
Definition allins.hpp:14411
@ AD218X_stack_ctl
Definition allins.hpp:14465
@ AD218X_amf_1a
Definition allins.hpp:14354
@ AD218X_modify
Definition allins.hpp:14471
@ AD218X_amf_1b
Definition allins.hpp:14355
@ AD218X_alu_0f
Definition allins.hpp:14393
@ AD218X_alu_02
Definition allins.hpp:14380
@ AD218X_amf_14
Definition allins.hpp:14348
@ AD218X_tops_w
Definition allins.hpp:14467
@ AD218X_amf_move_0
Definition allins.hpp:14474
@ AD218X_alu_10
Definition allins.hpp:14394
@ AD218X_amf_0f
Definition allins.hpp:14343
@ AD218X_ints_dis
Definition allins.hpp:14469
@ AD218X_amf_17
Definition allins.hpp:14351
@ AD218X_alu_0b
Definition allins.hpp:14389
@ AD218X_shifter_0
Definition allins.hpp:14425
@ AD218X_alu_00
Definition allins.hpp:14378
@ AD218X_amf_0d
Definition allins.hpp:14341
@ AD218X_amf_07
Definition allins.hpp:14335
@ AD218X_amf_06
Definition allins.hpp:14334
@ AD218X_move_1
Definition allins.hpp:14435
@ TMS28_vcrc32p2l_1
Definition allins.hpp:20444
@ TMS28_vshlmb
Definition allins.hpp:20494
@ TMS28_dec
Definition allins.hpp:20198
@ TMS28_absi64div32
Definition allins.hpp:20502
@ TMS28_negf64
Definition allins.hpp:20391
@ TMS28_divf32
Definition allins.hpp:20521
@ TMS28_vcrc16p1h_1
Definition allins.hpp:20422
@ TMS28_absf64
Definition allins.hpp:20390
@ TMS28_mpy
Definition allins.hpp:20255
@ TMS28_mpyxu
Definition allins.hpp:20260
@ TMS28_ui16tof32
Definition allins.hpp:20363
@ TMS28_csb
Definition allins.hpp:20197
@ TMS28_movb
Definition allins.hpp:20245
@ TMS28_sbbu
Definition allins.hpp:20287
@ TMS28_sat
Definition allins.hpp:20284
@ TMS28_c28obj
Definition allins.hpp:20190
@ TMS28_vmov32
Definition allins.hpp:20402
@ TMS28_asp
Definition allins.hpp:20178
@ TMS28_vclearall
Definition allins.hpp:20398
@ TMS28_vcsub
Definition allins.hpp:20419
@ TMS28_asr64
Definition allins.hpp:20180
@ TMS28_vcrc32h_1
Definition allins.hpp:20426
@ TMS28_imacl
Definition allins.hpp:20211
@ TMS28_addl
Definition allins.hpp:20172
@ TMS28_maxl
Definition allins.hpp:20238
@ TMS28_movl
Definition allins.hpp:20248
@ TMS28_tclr
Definition allins.hpp:20307
@ TMS28_vxormov32
Definition allins.hpp:20459
@ TMS28_save
Definition allins.hpp:20358
@ TMS28_einvf32
Definition allins.hpp:20331
@ TMS28_lc
Definition allins.hpp:20221
@ TMS28_f32toi32
Definition allins.hpp:20335
@ TMS28_ui32tof32
Definition allins.hpp:20364
@ TMS28_swapf
Definition allins.hpp:20361
@ TMS28_movf32
Definition allins.hpp:20348
@ TMS28_vclrdive
Definition allins.hpp:20472
@ TMS28_vcfft7
Definition allins.hpp:20483
@ TMS28_movxi
Definition allins.hpp:20351
@ TMS28_impyxul
Definition allins.hpp:20215
@ TMS28_vcrc16p2l_1
Definition allins.hpp:20425
@ TMS28_absi64div64
Definition allins.hpp:20504
@ TMS28_aborti
Definition allins.hpp:20165
@ TMS28_qmpyl
Definition allins.hpp:20277
@ TMS28_addul
Definition allins.hpp:20174
@ TMS28_f64toi64
Definition allins.hpp:20382
@ TMS28_ui64tof64
Definition allins.hpp:20385
@ TMS28_min
Definition allins.hpp:20239
@ TMS28_negi64div32
Definition allins.hpp:20511
@ TMS28_vcdadd16
Definition allins.hpp:20414
@ TMS28_vccmac
Definition allins.hpp:20465
@ TMS28_vcrcclr
Definition allins.hpp:20428
@ TMS28_tset
Definition allins.hpp:20310
@ TMS28_pop
Definition allins.hpp:20271
@ TMS28_c27obj
Definition allins.hpp:20187
@ TMS28_maxcul
Definition allins.hpp:20237
@ TMS28_i16tof32
Definition allins.hpp:20340
@ TMS28_vsatoff
Definition allins.hpp:20409
@ TMS28_dmov
Definition allins.hpp:20201
@ TMS28_vsetcpack
Definition allins.hpp:20456
@ TMS28_sfr
Definition allins.hpp:20291
@ TMS28_vclrovfi
Definition allins.hpp:20399
@ TMS28_vmovxi
Definition allins.hpp:20406
@ TMS28_f64toui64
Definition allins.hpp:20383
@ TMS28_spm
Definition allins.hpp:20292
@ TMS28_mnegi64div64
Definition allins.hpp:20516
@ TMS28_asr
Definition allins.hpp:20179
@ TMS28_f32toui16
Definition allins.hpp:20336
@ TMS28_iexp2f32
Definition allins.hpp:20527
@ TMS28_subl
Definition allins.hpp:20300
@ TMS28_vpack4
Definition allins.hpp:20492
@ TMS28_movw
Definition allins.hpp:20252
@ TMS28_movh
Definition allins.hpp:20247
@ TMS28_nasp
Definition allins.hpp:20261
@ TMS28_absi64div64u
Definition allins.hpp:20505
@ TMS28_vswap32
Definition allins.hpp:20458
@ TMS28_sqrs
Definition allins.hpp:20294
@ TMS28_i32tof64
Definition allins.hpp:20380
@ TMS28_eisqrtf32
Definition allins.hpp:20332
@ TMS28_c28addr
Definition allins.hpp:20188
@ TMS28_vmovix
Definition allins.hpp:20404
@ TMS28_xbanz
Definition allins.hpp:20313
@ TMS28_xor
Definition allins.hpp:20317
@ TMS28_zalr
Definition allins.hpp:20323
@ TMS28_rol
Definition allins.hpp:20281
@ TMS28_vcfft6
Definition allins.hpp:20482
@ TMS28_lsr64
Definition allins.hpp:20233
@ TMS28_qmpysl
Definition allins.hpp:20278
@ TMS28_absi32div32u
Definition allins.hpp:20501
@ TMS28_vtclear
Definition allins.hpp:20437
@ TMS28_trap
Definition allins.hpp:20309
@ TMS28_vcfft9
Definition allins.hpp:20485
@ TMS28_vgfmpy4
Definition allins.hpp:20491
@ TMS28_loopnz
Definition allins.hpp:20223
@ TMS28_push
Definition allins.hpp:20273
@ TMS28_vcmpy
Definition allins.hpp:20417
@ TMS28_out
Definition allins.hpp:20270
@ TMS28_vneg
Definition allins.hpp:20418
@ TMS28_vashr32
Definition allins.hpp:20461
@ TMS28_movd32
Definition allins.hpp:20347
@ TMS28_sqrtf32
Definition allins.hpp:20522
@ TMS28_lcr
Definition allins.hpp:20222
@ TMS28_vrevb
Definition allins.hpp:20493
@ TMS28_edis
Definition allins.hpp:20203
@ TMS28_movs
Definition allins.hpp:20250
@ TMS28_xpread
Definition allins.hpp:20319
@ TMS28_subr
Definition allins.hpp:20301
@ TMS28_negi32div32
Definition allins.hpp:20508
@ TMS28_subcu
Definition allins.hpp:20298
@ TMS28_vccon
Definition allins.hpp:20467
@ TMS28_abs
Definition allins.hpp:20166
@ TMS28_zero
Definition allins.hpp:20365
@ TMS28_cmpb
Definition allins.hpp:20194
@ TMS28_vitdhsubadd
Definition allins.hpp:20432
@ TMS28_cmp64
Definition allins.hpp:20193
@ TMS28_vcshl16
Definition allins.hpp:20470
@ TMS28_sat64
Definition allins.hpp:20285
@ TMS28_vcfft5
Definition allins.hpp:20481
@ TMS28_movp
Definition allins.hpp:20249
@ TMS28_vcrc16p1l_1
Definition allins.hpp:20423
@ TMS28_ror
Definition allins.hpp:20282
@ TMS28_flip
Definition allins.hpp:20208
@ TMS28_subcul
Definition allins.hpp:20299
@ TMS28_iack
Definition allins.hpp:20209
@ TMS28_clrc
Definition allins.hpp:20191
@ TMS28_addf64
Definition allins.hpp:20373
@ TMS28_i64tof64
Definition allins.hpp:20384
@ TMS28_vitdlsubadd
Definition allins.hpp:20434
@ TMS28_vcrc8h_1
Definition allins.hpp:20420
@ TMS28_setflg
Definition allins.hpp:20359
@ TMS28_sbrk
Definition allins.hpp:20289
@ TMS28_mov64
Definition allins.hpp:20392
@ TMS28_mnegi32div32
Definition allins.hpp:20510
@ TMS28_c28map
Definition allins.hpp:20189
@ TMS28_vcrc8l_1
Definition allins.hpp:20421
@ TMS28_maxf64
Definition allins.hpp:20376
@ TMS28_div2pif32
Definition allins.hpp:20520
@ TMS28_vsaton
Definition allins.hpp:20410
@ TMS28_cmp
Definition allins.hpp:20192
@ TMS28_mpya
Definition allins.hpp:20256
@ TMS28_subb
Definition allins.hpp:20296
@ TMS28_f32toui32
Definition allins.hpp:20338
@ TMS28_vlshl32
Definition allins.hpp:20463
@ TMS28_negi64div64
Definition allins.hpp:20514
@ TMS28_last
Definition allins.hpp:20530
@ TMS28_addcl
Definition allins.hpp:20170
@ TMS28_vgfadd4
Definition allins.hpp:20488
@ TMS28_pread
Definition allins.hpp:20272
@ TMS28_macf32
Definition allins.hpp:20342
@ TMS28_vcmag
Definition allins.hpp:20469
@ TMS28_lsl
Definition allins.hpp:20229
@ TMS28_addf32
Definition allins.hpp:20329
@ TMS28_mpy2pif32
Definition allins.hpp:20519
@ TMS28_vccmpy
Definition allins.hpp:20466
@ TMS28_movix
Definition allins.hpp:20370
@ TMS28_vcrch
Definition allins.hpp:20450
@ TMS28_mpys
Definition allins.hpp:20258
@ TMS28_sb
Definition allins.hpp:20286
@ TMS28_vcfft8
Definition allins.hpp:20484
@ TMS28_c27map
Definition allins.hpp:20186
@ TMS28_mpyf64
Definition allins.hpp:20372
@ TMS28_qmpyxul
Definition allins.hpp:20280
@ TMS28_zap
Definition allins.hpp:20324
@ TMS28_impyal
Definition allins.hpp:20212
@ TMS28_vcrc24h_1
Definition allins.hpp:20447
@ TMS28_subf64
Definition allins.hpp:20374
@ TMS28_impyl
Definition allins.hpp:20213
@ TMS28_movu
Definition allins.hpp:20251
@ TMS28_vcadd
Definition allins.hpp:20413
@ TMS28_mincul
Definition allins.hpp:20240
@ TMS28_zeroa
Definition allins.hpp:20366
@ TMS28_vcrcl
Definition allins.hpp:20449
@ TMS28_impysl
Definition allins.hpp:20214
@ TMS28_lretr
Definition allins.hpp:20228
@ TMS28_mov
Definition allins.hpp:20242
@ TMS28_log2f32
Definition allins.hpp:20528
@ TMS28_vcfft4
Definition allins.hpp:20480
@ TMS28_dint
Definition allins.hpp:20199
@ TMS28_tbit
Definition allins.hpp:20306
@ TMS28_minf32
Definition allins.hpp:20344
@ TMS28_maxf32
Definition allins.hpp:20343
@ TMS28_vmovd32
Definition allins.hpp:20403
@ TMS28_rpt
Definition allins.hpp:20283
@ TMS28_subu
Definition allins.hpp:20303
@ TMS28_vclrcpack
Definition allins.hpp:20454
@ TMS28_cmpf32
Definition allins.hpp:20330
@ TMS28_vitstage
Definition allins.hpp:20495
@ TMS28_test
Definition allins.hpp:20308
@ TMS28_vitdhaddsub
Definition allins.hpp:20431
@ TMS28_f32dtof64
Definition allins.hpp:20389
@ TMS28_fracf32
Definition allins.hpp:20339
@ TMS28_subc2ui64
Definition allins.hpp:20507
@ TMS28_andb
Definition allins.hpp:20177
@ TMS28_macf64
Definition allins.hpp:20371
@ TMS28_subc4ui32
Definition allins.hpp:20506
@ TMS28_neg64
Definition allins.hpp:20263
@ TMS28_inc
Definition allins.hpp:20217
@ TMS28_vsetk
Definition allins.hpp:20496
@ TMS28_vcflip
Definition allins.hpp:20468
@ TMS28_asrl
Definition allins.hpp:20181
@ TMS28_vdec
Definition allins.hpp:20473
@ TMS28_mpyf32
Definition allins.hpp:20352
@ TMS28_xret
Definition allins.hpp:20321
@ TMS28_addu
Definition allins.hpp:20173
@ TMS28_vgfinit
Definition allins.hpp:20489
@ TMS28_b
Definition allins.hpp:20182
@ TMS28_vgfacc
Definition allins.hpp:20487
@ TMS28_max
Definition allins.hpp:20236
@ TMS28_lpaddr
Definition allins.hpp:20225
@ TMS28_movst0
Definition allins.hpp:20350
@ TMS28_add
Definition allins.hpp:20168
@ TMS28_xcall
Definition allins.hpp:20314
@ TMS28_vitdladdsub
Definition allins.hpp:20433
@ TMS28_mov16
Definition allins.hpp:20345
@ TMS28_lret
Definition allins.hpp:20226
@ TMS28_mnegi64div32
Definition allins.hpp:20513
@ TMS28_lsr
Definition allins.hpp:20232
@ TMS28_fracf64
Definition allins.hpp:20386
@ TMS28_mpyb
Definition allins.hpp:20257
@ TMS28_vsetshl
Definition allins.hpp:20411
@ TMS28_vgfmac4
Definition allins.hpp:20490
@ TMS28_minf64
Definition allins.hpp:20377
@ TMS28_enegi64div32
Definition allins.hpp:20512
@ TMS28_or
Definition allins.hpp:20268
@ TMS28_intr
Definition allins.hpp:20218
@ TMS28_setc
Definition allins.hpp:20290
@ TMS28_vcrc32p2h_1
Definition allins.hpp:20445
@ TMS28_ui32tof64
Definition allins.hpp:20381
@ TMS28_eisqrtf64
Definition allins.hpp:20393
@ TMS28_estop0
Definition allins.hpp:20205
@ TMS28_vclear
Definition allins.hpp:20397
@ TMS28_poprb
Definition allins.hpp:20354
@ TMS28_vcshr16
Definition allins.hpp:20471
@ TMS28_vsetcrcsize
Definition allins.hpp:20448
@ TMS28_lsll
Definition allins.hpp:20231
@ TMS28_f32toui16r
Definition allins.hpp:20337
@ TMS28_lsl64
Definition allins.hpp:20230
@ TMS28_ffc
Definition allins.hpp:20207
@ TMS28_absf32
Definition allins.hpp:20328
@ TMS28_vmod32
Definition allins.hpp:20475
@ TMS28_adrk
Definition allins.hpp:20175
@ TMS28_absi32div32
Definition allins.hpp:20500
@ TMS28_mpyu
Definition allins.hpp:20259
@ TMS28_norm
Definition allins.hpp:20266
@ TMS28_dmac
Definition allins.hpp:20200
@ TMS28_vitbm3
Definition allins.hpp:20430
@ TMS28_zapa
Definition allins.hpp:20325
@ TMS28_vitbm2
Definition allins.hpp:20429
@ TMS28_vtrace
Definition allins.hpp:20438
@ TMS28_abstc
Definition allins.hpp:20167
@ TMS28_vrndon
Definition allins.hpp:20408
@ TMS28_estop1
Definition allins.hpp:20206
@ TMS28_vcfft1
Definition allins.hpp:20477
@ TMS28_enegi64div64
Definition allins.hpp:20515
@ TMS28_loopz
Definition allins.hpp:20224
@ TMS28_vclropack
Definition allins.hpp:20455
@ TMS28_f32toi16
Definition allins.hpp:20333
@ TMS28_xmacd
Definition allins.hpp:20316
@ TMS28_bar
Definition allins.hpp:20184
@ TMS28_movdl
Definition allins.hpp:20246
@ TMS28_uout
Definition allins.hpp:20311
@ TMS28_vcrc32l_1
Definition allins.hpp:20427
@ TMS28_vbitflip
Definition allins.hpp:20462
@ TMS28_xpwrite
Definition allins.hpp:20320
@ TMS28_movx
Definition allins.hpp:20253
@ TMS28_nop
Definition allins.hpp:20265
@ TMS28_vswapcrc
Definition allins.hpp:20451
@ TMS28_vcfft10
Definition allins.hpp:20486
@ TMS28_quadf32
Definition allins.hpp:20526
@ TMS28_not
Definition allins.hpp:20267
@ TMS28_xmac
Definition allins.hpp:20315
@ TMS28_f32tof64
Definition allins.hpp:20388
@ TMS28_null
Definition allins.hpp:20163
@ TMS28_vcfft2
Definition allins.hpp:20478
@ TMS28_lrete
Definition allins.hpp:20227
@ TMS28_iret
Definition allins.hpp:20219
@ TMS28_qmpyul
Definition allins.hpp:20279
@ TMS28_vcrc16p2h_1
Definition allins.hpp:20424
@ TMS28_vmov16
Definition allins.hpp:20401
@ TMS28_i32tof32
Definition allins.hpp:20341
@ TMS28_vsetopack
Definition allins.hpp:20457
@ TMS28_subul
Definition allins.hpp:20304
@ TMS28_vnop
Definition allins.hpp:20441
@ TMS28_xretc
Definition allins.hpp:20322
@ TMS28_pushrb
Definition allins.hpp:20355
@ TMS28_addcu
Definition allins.hpp:20171
@ TMS28_vashl32
Definition allins.hpp:20460
@ TMS28_eallow
Definition allins.hpp:20202
@ TMS28_sub
Definition allins.hpp:20295
@ TMS28_mova
Definition allins.hpp:20243
@ TMS28_lb
Definition allins.hpp:20220
@ TMS28_minl
Definition allins.hpp:20241
@ TMS28_sinpuf32
Definition allins.hpp:20523
@ TMS28_restore
Definition allins.hpp:20356
@ TMS28_movz
Definition allins.hpp:20254
@ TMS28_vcdsub16
Definition allins.hpp:20415
@ TMS28_vmpyadd
Definition allins.hpp:20476
@ TMS28_cmpl
Definition allins.hpp:20195
@ TMS28_f64toui32
Definition allins.hpp:20379
@ TMS28_banz
Definition allins.hpp:20183
@ TMS28_rptb
Definition allins.hpp:20357
@ TMS28_qmacl
Definition allins.hpp:20275
@ TMS28_bf
Definition allins.hpp:20185
@ TMS28_vsminit
Definition allins.hpp:20497
@ TMS28_qmpyal
Definition allins.hpp:20276
@ TMS28_xorb
Definition allins.hpp:20318
@ TMS28_vclrovfr
Definition allins.hpp:20400
@ TMS28_idle
Definition allins.hpp:20210
@ TMS28_eint
Definition allins.hpp:20204
@ TMS28_lsrl
Definition allins.hpp:20234
@ TMS28_negtc
Definition allins.hpp:20264
@ TMS28_xb
Definition allins.hpp:20312
@ TMS28_vithsel
Definition allins.hpp:20435
@ TMS28_vclrcrcmsgflip
Definition allins.hpp:20443
@ TMS28_mac
Definition allins.hpp:20235
@ TMS28_moviz
Definition allins.hpp:20349
@ TMS28_vsetcrcmsgflip
Definition allins.hpp:20442
@ TMS28_cmpf64
Definition allins.hpp:20375
@ TMS28_f64tof32
Definition allins.hpp:20387
@ TMS28_sbf
Definition allins.hpp:20288
@ TMS28_movad
Definition allins.hpp:20244
@ TMS28_vmovzi
Definition allins.hpp:20405
@ TMS28_einvf64
Definition allins.hpp:20394
@ TMS28_vitlsel
Definition allins.hpp:20436
@ TMS28_subrl
Definition allins.hpp:20302
@ TMS28_cospuf32
Definition allins.hpp:20524
@ TMS28_addb
Definition allins.hpp:20169
@ TMS28_cmpr
Definition allins.hpp:20196
@ TMS28_sqra
Definition allins.hpp:20293
@ TMS28_neg
Definition allins.hpp:20262
@ TMS28_vinc
Definition allins.hpp:20474
@ TMS28_f32toi16r
Definition allins.hpp:20334
@ TMS28_vsetshr
Definition allins.hpp:20412
@ TMS28_vcmac
Definition allins.hpp:20416
@ TMS28_sxtb
Definition allins.hpp:20305
@ TMS28_movdd32
Definition allins.hpp:20369
@ TMS28_negf32
Definition allins.hpp:20353
@ TMS28_vlshr32
Definition allins.hpp:20464
@ TMS28_absi64div32u
Definition allins.hpp:20503
@ TMS28_testtf
Definition allins.hpp:20362
@ TMS28_f64toi32
Definition allins.hpp:20378
@ TMS28_vcfft3
Definition allins.hpp:20479
@ TMS28_mov32
Definition allins.hpp:20346
@ TMS28_orb
Definition allins.hpp:20269
@ TMS28_enegi32div32
Definition allins.hpp:20509
@ TMS28_pwrite
Definition allins.hpp:20274
@ TMS28_vcrc24l_1
Definition allins.hpp:20446
@ TMS28_and
Definition allins.hpp:20176
@ TMS28_atanpuf32
Definition allins.hpp:20525
@ TMS28_subbl
Definition allins.hpp:20297
@ TMS28_subf32
Definition allins.hpp:20360
@ TMS28_vrndoff
Definition allins.hpp:20407
@ TMS28_in
Definition allins.hpp:20216
@ SPARC_rett
Definition allins.hpp:8917
@ SPARC_ldx
Definition allins.hpp:8761
@ SPARC_udivx
Definition allins.hpp:8830
@ SPARC_udiv
Definition allins.hpp:8828
@ SPARC_deccc
Definition allins.hpp:8861
@ SPARC_setsw
Definition allins.hpp:8849
@ SPARC_sth
Definition allins.hpp:8808
@ SPARC_fdtos
Definition allins.hpp:8723
@ SPARC_fneg
Definition allins.hpp:8712
@ SPARC_fornot2
Definition allins.hpp:8900
@ SPARC_last
Definition allins.hpp:8927
@ SPARC_casxl
Definition allins.hpp:8857
@ SPARC_clr
Definition allins.hpp:8866
@ SPARC_stxfsr
Definition allins.hpp:8816
@ SPARC_lddfa
Definition allins.hpp:8741
@ SPARC_fexpand
Definition allins.hpp:8886
@ SPARC_fnot2
Definition allins.hpp:8897
@ SPARC_inc
Definition allins.hpp:8858
@ SPARC_fnand
Definition allins.hpp:8894
@ SPARC_fcmp
Definition allins.hpp:8702
@ SPARC_lduh
Definition allins.hpp:8757
@ SPARC_lddf
Definition allins.hpp:8740
@ SPARC_stw
Definition allins.hpp:8812
@ SPARC_stha
Definition allins.hpp:8809
@ SPARC_clruw
Definition allins.hpp:8870
@ SPARC_restored
Definition allins.hpp:8780
@ SPARC_lduw
Definition allins.hpp:8759
@ SPARC_stba
Definition allins.hpp:8799
@ SPARC_addc
Definition allins.hpp:8685
@ SPARC_pdist
Definition allins.hpp:8912
@ SPARC_stx
Definition allins.hpp:8814
@ SPARC_ldxa
Definition allins.hpp:8762
@ SPARC_stb
Definition allins.hpp:8798
@ SPARC_fsrc2
Definition allins.hpp:8908
@ SPARC_prefetcha
Definition allins.hpp:8776
@ SPARC_fdmulq
Definition allins.hpp:8705
@ SPARC_taddcc
Definition allins.hpp:8823
@ SPARC_stfa
Definition allins.hpp:8806
@ SPARC_ldfsr
Definition allins.hpp:8744
@ SPARC_b
Definition allins.hpp:8691
@ SPARC_call
Definition allins.hpp:8694
@ SPARC_tsubcc
Definition allins.hpp:8825
@ SPARC_fand
Definition allins.hpp:8881
@ SPARC_fcmpeq
Definition allins.hpp:8882
@ SPARC_rdpr
Definition allins.hpp:8778
@ SPARC_wr
Definition allins.hpp:8833
@ SPARC_casx
Definition allins.hpp:8856
@ SPARC_edge
Definition allins.hpp:8877
@ SPARC_fcmple
Definition allins.hpp:8884
@ SPARC_inccc
Definition allins.hpp:8859
@ SPARC_ldsba
Definition allins.hpp:8748
@ SPARC_siam
Definition allins.hpp:8925
@ SPARC_fdtox
Definition allins.hpp:8717
@ SPARC_ldstub
Definition allins.hpp:8751
@ SPARC_fmovr
Definition allins.hpp:8710
@ SPARC_ldfa
Definition allins.hpp:8743
@ SPARC_umulcc
Definition allins.hpp:8832
@ SPARC_setuw
Definition allins.hpp:8848
@ SPARC_sra
Definition allins.hpp:8794
@ SPARC_fstoi
Definition allins.hpp:8731
@ SPARC_fxnor
Definition allins.hpp:8909
@ SPARC_ldda
Definition allins.hpp:8739
@ SPARC_add
Definition allins.hpp:8683
@ SPARC_subcc
Definition allins.hpp:8818
@ SPARC_fsqrt
Definition allins.hpp:8714
@ SPARC_flushw
Definition allins.hpp:8707
@ SPARC_setx
Definition allins.hpp:8850
@ SPARC_stbar
Definition allins.hpp:8800
@ SPARC_impdep2
Definition allins.hpp:8736
@ SPARC_xor
Definition allins.hpp:8837
@ SPARC_fdtoq
Definition allins.hpp:8730
@ SPARC_fadd
Definition allins.hpp:8699
@ SPARC_illtrap
Definition allins.hpp:8734
@ SPARC_fbp
Definition allins.hpp:8700
@ SPARC_bmask
Definition allins.hpp:8920
@ SPARC_srlx
Definition allins.hpp:8797
@ SPARC_ldub
Definition allins.hpp:8755
@ SPARC_tst
Definition allins.hpp:8845
@ SPARC_fmul8x16
Definition allins.hpp:8889
@ SPARC_jmp
Definition allins.hpp:8843
@ SPARC_lduba
Definition allins.hpp:8756
@ SPARC_clrx
Definition allins.hpp:8869
@ SPARC_srl
Definition allins.hpp:8796
@ SPARC_fpmerge
Definition allins.hpp:8905
@ SPARC_null
Definition allins.hpp:8679
@ SPARC_orcc
Definition allins.hpp:8771
@ SPARC_fabs
Definition allins.hpp:8698
@ SPARC_orncc
Definition allins.hpp:8773
@ SPARC_stwa
Definition allins.hpp:8813
@ SPARC_andcc
Definition allins.hpp:8688
@ SPARC_sdiv
Definition allins.hpp:8785
@ SPARC_retry
Definition allins.hpp:8781
@ SPARC_swap
Definition allins.hpp:8821
@ SPARC_for
Definition allins.hpp:8901
@ SPARC_fcmpne
Definition allins.hpp:8885
@ SPARC_ldswa
Definition allins.hpp:8754
@ SPARC_btst
Definition allins.hpp:8862
@ SPARC_fitos
Definition allins.hpp:8722
@ SPARC_xnorcc
Definition allins.hpp:8836
@ SPARC_sethi
Definition allins.hpp:8788
@ SPARC_lduwa
Definition allins.hpp:8760
@ SPARC_stfsr
Definition allins.hpp:8807
@ SPARC_ldsw
Definition allins.hpp:8753
@ SPARC_rdhpr
Definition allins.hpp:8923
@ SPARC_fandnot1
Definition allins.hpp:8879
@ SPARC_faligndata
Definition allins.hpp:8878
@ SPARC_ldsb
Definition allins.hpp:8747
@ SPARC_fstoq
Definition allins.hpp:8729
@ SPARC_bp
Definition allins.hpp:8692
@ SPARC_not
Definition allins.hpp:8852
@ SPARC_sir
Definition allins.hpp:8789
@ SPARC_tsubcctv
Definition allins.hpp:8826
@ SPARC_edgen
Definition allins.hpp:8922
@ SPARC_fsmuld
Definition allins.hpp:8713
@ SPARC_done
Definition allins.hpp:8697
@ SPARC_fmul8ulx16
Definition allins.hpp:8888
@ SPARC_smulcc
Definition allins.hpp:8793
@ SPARC_fitod
Definition allins.hpp:8725
@ SPARC_fqtos
Definition allins.hpp:8724
@ SPARC_swapa
Definition allins.hpp:8822
@ SPARC_popc
Definition allins.hpp:8774
@ SPARC_ret
Definition allins.hpp:8846
@ SPARC_subc
Definition allins.hpp:8819
@ SPARC_fxtoq
Definition allins.hpp:8721
@ SPARC_ldstuba
Definition allins.hpp:8752
@ SPARC_signx
Definition allins.hpp:8851
@ SPARC_fstod
Definition allins.hpp:8726
@ SPARC_t
Definition allins.hpp:8827
@ SPARC_fstox
Definition allins.hpp:8716
@ SPARC_prefetch
Definition allins.hpp:8775
@ SPARC_ldsha
Definition allins.hpp:8750
@ SPARC_fornot1
Definition allins.hpp:8899
@ SPARC_orn
Definition allins.hpp:8772
@ SPARC_srax
Definition allins.hpp:8795
@ SPARC_stqf
Definition allins.hpp:8810
@ SPARC_sll
Definition allins.hpp:8790
@ SPARC_fqtox
Definition allins.hpp:8718
@ SPARC_fmov
Definition allins.hpp:8708
@ SPARC_ldf
Definition allins.hpp:8742
@ SPARC_bpr
Definition allins.hpp:8693
@ SPARC_fsub
Definition allins.hpp:8715
@ SPARC_alignaddress
Definition allins.hpp:8875
@ SPARC_fandnot2
Definition allins.hpp:8880
@ SPARC_smul
Definition allins.hpp:8792
@ SPARC_andncc
Definition allins.hpp:8690
@ SPARC_stda
Definition allins.hpp:8802
@ SPARC_mov
Definition allins.hpp:8765
@ SPARC_ldxfsr
Definition allins.hpp:8763
@ SPARC_fitoq
Definition allins.hpp:8728
@ SPARC_and
Definition allins.hpp:8687
@ SPARC_fmuld8ulx16
Definition allins.hpp:8893
@ SPARC_taddcctv
Definition allins.hpp:8824
@ SPARC_btog
Definition allins.hpp:8865
@ SPARC_fmul
Definition allins.hpp:8711
@ SPARC_fpack
Definition allins.hpp:8903
@ SPARC_stxa
Definition allins.hpp:8815
@ SPARC_fmovcc
Definition allins.hpp:8709
@ SPARC_fnot1
Definition allins.hpp:8896
@ SPARC_fdiv
Definition allins.hpp:8704
@ SPARC_shutdown
Definition allins.hpp:8913
@ SPARC_rd
Definition allins.hpp:8777
@ SPARC_iprefetch
Definition allins.hpp:8844
@ SPARC_flush
Definition allins.hpp:8706
@ SPARC_neg
Definition allins.hpp:8853
@ SPARC_udivcc
Definition allins.hpp:8829
@ SPARC_ldd
Definition allins.hpp:8738
@ SPARC_impdep1
Definition allins.hpp:8735
@ SPARC_sllx
Definition allins.hpp:8791
@ SPARC_wrhpr
Definition allins.hpp:8924
@ SPARC_stdfa
Definition allins.hpp:8804
@ SPARC_save
Definition allins.hpp:8783
@ SPARC_sub
Definition allins.hpp:8817
@ SPARC_lduha
Definition allins.hpp:8758
@ SPARC_fqtod
Definition allins.hpp:8727
@ SPARC_fqtoi
Definition allins.hpp:8733
@ SPARC_sdivcc
Definition allins.hpp:8786
@ SPARC_sdivx
Definition allins.hpp:8787
@ SPARC_addcc
Definition allins.hpp:8684
@ SPARC_saved
Definition allins.hpp:8784
@ SPARC_addccc
Definition allins.hpp:8686
@ SPARC_umul
Definition allins.hpp:8831
@ SPARC_fxtod
Definition allins.hpp:8720
@ SPARC_movr
Definition allins.hpp:8766
@ SPARC_subccc
Definition allins.hpp:8820
@ SPARC_ldqfa
Definition allins.hpp:8746
@ SPARC_fpackfix
Definition allins.hpp:8902
@ SPARC_xnor
Definition allins.hpp:8835
@ SPARC_fmuld8sux16
Definition allins.hpp:8892
@ SPARC_casl
Definition allins.hpp:8855
@ SPARC_cmp
Definition allins.hpp:8842
@ SPARC_stqfa
Definition allins.hpp:8811
@ SPARC_fxtos
Definition allins.hpp:8719
@ SPARC_clrb
Definition allins.hpp:8867
@ SPARC_std
Definition allins.hpp:8801
@ SPARC_fmul8x16al
Definition allins.hpp:8890
@ SPARC_fb
Definition allins.hpp:8701
@ SPARC_fzero
Definition allins.hpp:8911
@ SPARC_fxor
Definition allins.hpp:8910
@ SPARC_bset
Definition allins.hpp:8863
@ SPARC_cas
Definition allins.hpp:8854
@ SPARC_stf
Definition allins.hpp:8805
@ SPARC_mulx
Definition allins.hpp:8768
@ SPARC_stdf
Definition allins.hpp:8803
@ SPARC_casa
Definition allins.hpp:8695
@ SPARC_fnor
Definition allins.hpp:8895
@ SPARC_dec
Definition allins.hpp:8860
@ SPARC_bshuffle
Definition allins.hpp:8921
@ SPARC_or
Definition allins.hpp:8770
@ SPARC_mulscc
Definition allins.hpp:8767
@ SPARC_andn
Definition allins.hpp:8689
@ SPARC_fcmpe
Definition allins.hpp:8703
@ SPARC_return
Definition allins.hpp:8782
@ SPARC_ldqf
Definition allins.hpp:8745
@ SPARC_array
Definition allins.hpp:8876
@ SPARC_pseudo_mov
Definition allins.hpp:8871
@ SPARC_nop
Definition allins.hpp:8769
@ SPARC_clrh
Definition allins.hpp:8868
@ SPARC_fpadd
Definition allins.hpp:8904
@ SPARC_fsrc1
Definition allins.hpp:8907
@ SPARC_restore
Definition allins.hpp:8779
@ SPARC_casxa
Definition allins.hpp:8696
@ SPARC_jmpl
Definition allins.hpp:8737
@ SPARC_wrpr
Definition allins.hpp:8834
@ SPARC_fmul8x16au
Definition allins.hpp:8891
@ SPARC_fpsub
Definition allins.hpp:8906
@ SPARC_fdtoi
Definition allins.hpp:8732
@ SPARC_fmul8sux16
Definition allins.hpp:8887
@ SPARC_bclr
Definition allins.hpp:8864
@ SPARC_xorcc
Definition allins.hpp:8838
@ SPARC_fcmpgt
Definition allins.hpp:8883
@ SPARC_fone
Definition allins.hpp:8898
@ SPARC_retl
Definition allins.hpp:8847
@ SPARC_ldsh
Definition allins.hpp:8749
@ SPARC_membar
Definition allins.hpp:8764
@ RL78_oneb
Definition allins.hpp:23811
@ RL78_cmps
Definition allins.hpp:23806
@ RL78_bnz
Definition allins.hpp:23760
@ RL78_divhu
Definition allins.hpp:23825
@ RL78_bc
Definition allins.hpp:23793
@ RL78_rolwc
Definition allins.hpp:23804
@ RL78_sknc
Definition allins.hpp:23781
@ RL78_clr1
Definition allins.hpp:23777
@ RL78_subc
Definition allins.hpp:23800
@ RL78_bh
Definition allins.hpp:23795
@ RL78_inc
Definition allins.hpp:23768
@ RL78_not1
Definition allins.hpp:23779
@ RL78_sel
Definition allins.hpp:23755
@ RL78_cmp0
Definition allins.hpp:23809
@ RL78_halt
Definition allins.hpp:23808
@ RL78_bnh
Definition allins.hpp:23796
@ RL78_mach
Definition allins.hpp:23828
@ RL78_decw
Definition allins.hpp:23767
@ RL78_nop
Definition allins.hpp:23820
@ RL78_ror
Definition allins.hpp:23812
@ RL78_and
Definition allins.hpp:23762
@ RL78_movw
Definition allins.hpp:23750
@ RL78_skh
Definition allins.hpp:23772
@ RL78_pop
Definition allins.hpp:23765
@ RL78_brk
Definition allins.hpp:23816
@ RL78_addw
Definition allins.hpp:23753
@ RL78_call
Definition allins.hpp:23751
@ RL78_skc
Definition allins.hpp:23780
@ RL78_null
Definition allins.hpp:23748
@ RL78_shlw
Definition allins.hpp:23790
@ RL78_retb
Definition allins.hpp:23817
@ RL78_mov1
Definition allins.hpp:23776
@ RL78_mov
Definition allins.hpp:23783
@ RL78_sknz
Definition allins.hpp:23770
@ RL78_divwu
Definition allins.hpp:23826
@ RL78_onew
Definition allins.hpp:23757
@ RL78_xch
Definition allins.hpp:23802
@ RL78_rol
Definition allins.hpp:23813
@ RL78_callt
Definition allins.hpp:23821
@ RL78_bnc
Definition allins.hpp:23794
@ RL78_set1
Definition allins.hpp:23778
@ RL78_bf
Definition allins.hpp:23786
@ RL78_bt
Definition allins.hpp:23785
@ RL78_stop
Definition allins.hpp:23819
@ RL78_sub
Definition allins.hpp:23799
@ RL78_cmpw
Definition allins.hpp:23759
@ RL78_machu
Definition allins.hpp:23827
@ RL78_add
Definition allins.hpp:23797
@ RL78_cmp
Definition allins.hpp:23766
@ RL78_addc
Definition allins.hpp:23798
@ RL78_mulh
Definition allins.hpp:23824
@ RL78_or
Definition allins.hpp:23763
@ RL78_sarw
Definition allins.hpp:23792
@ RL78_shr
Definition allins.hpp:23788
@ RL78_movs
Definition allins.hpp:23807
@ RL78_bz
Definition allins.hpp:23769
@ RL78_btclr
Definition allins.hpp:23784
@ RL78_incw
Definition allins.hpp:23758
@ RL78_shrw
Definition allins.hpp:23791
@ RL78_skz
Definition allins.hpp:23782
@ RL78_sknh
Definition allins.hpp:23771
@ RL78_mulhu
Definition allins.hpp:23823
@ RL78_shl
Definition allins.hpp:23787
@ RL78_reti
Definition allins.hpp:23818
@ RL78_rolc
Definition allins.hpp:23815
@ RL78_xor
Definition allins.hpp:23801
@ RL78_sar
Definition allins.hpp:23789
@ RL78_subw
Definition allins.hpp:23749
@ RL78_mulu
Definition allins.hpp:23810
@ RL78_ret
Definition allins.hpp:23754
@ RL78_clrb
Definition allins.hpp:23761
@ RL78_br
Definition allins.hpp:23764
@ RL78_clrw
Definition allins.hpp:23752
@ RL78_or1
Definition allins.hpp:23774
@ RL78_xchw
Definition allins.hpp:23805
@ RL78_and1
Definition allins.hpp:23775
@ RL78_xor1
Definition allins.hpp:23773
@ RL78_rorc
Definition allins.hpp:23814
@ RL78_last
Definition allins.hpp:23830
@ RL78_push
Definition allins.hpp:23756
@ RL78_dec
Definition allins.hpp:23803
@ CR16_jhs
Definition allins.hpp:14953
@ CR16_null
Definition allins.hpp:14899
@ CR16_sge
Definition allins.hpp:14996
@ CR16_bls
Definition allins.hpp:14916
@ CR16_movw
Definition allins.hpp:14966
@ CR16_cbitw
Definition allins.hpp:15012
@ CR16_ei
Definition allins.hpp:14939
@ CR16_subb
Definition allins.hpp:15002
@ CR16_beq0w
Definition allins.hpp:14933
@ CR16_orw
Definition allins.hpp:14977
@ CR16_shs
Definition allins.hpp:14994
@ CR16_popret
Definition allins.hpp:14980
@ CR16_jeq
Definition allins.hpp:14942
@ CR16_scc
Definition allins.hpp:14986
@ CR16_beq1b
Definition allins.hpp:14930
@ CR16_tbitb
Definition allins.hpp:15007
@ CR16_mulb
Definition allins.hpp:14970
@ CR16_di
Definition allins.hpp:14938
@ CR16_nop
Definition allins.hpp:14975
@ CR16_wait
Definition allins.hpp:15013
@ CR16_jcs
Definition allins.hpp:14944
@ CR16_eiwait
Definition allins.hpp:15014
@ CR16_lshb
Definition allins.hpp:14963
@ CR16_seq
Definition allins.hpp:14983
@ CR16_slt
Definition allins.hpp:14995
@ CR16_jge
Definition allins.hpp:14955
@ CR16_addb
Definition allins.hpp:14900
@ CR16_lshw
Definition allins.hpp:14964
@ CR16_cmpb
Definition allins.hpp:14928
@ CR16_ashub
Definition allins.hpp:14908
@ CR16_orb
Definition allins.hpp:14976
@ CR16_blo
Definition allins.hpp:14921
@ CR16_lpr
Definition allins.hpp:14962
@ CR16_tbit
Definition allins.hpp:15006
@ CR16_xorb
Definition allins.hpp:15015
@ CR16_bne0w
Definition allins.hpp:14937
@ CR16_jle
Definition allins.hpp:14949
@ CR16_push
Definition allins.hpp:14978
@ CR16_andw
Definition allins.hpp:14907
@ CR16_storw
Definition allins.hpp:15000
@ CR16_movb
Definition allins.hpp:14965
@ CR16_bne1b
Definition allins.hpp:14934
@ CR16_jcc
Definition allins.hpp:14945
@ CR16_movzb
Definition allins.hpp:14968
@ CR16_excp
Definition allins.hpp:14940
@ CR16_slo
Definition allins.hpp:14993
@ CR16_tbitw
Definition allins.hpp:15008
@ CR16_jump
Definition allins.hpp:14956
@ CR16_jne
Definition allins.hpp:14943
@ CR16_bcc
Definition allins.hpp:14914
@ CR16_jhi
Definition allins.hpp:14946
@ CR16_ble
Definition allins.hpp:14918
@ CR16_sls
Definition allins.hpp:14988
@ CR16_jlo
Definition allins.hpp:14952
@ CR16_mulsb
Definition allins.hpp:14972
@ CR16_jlt
Definition allins.hpp:14954
@ CR16_movxb
Definition allins.hpp:14967
@ CR16_subcb
Definition allins.hpp:15004
@ CR16_scs
Definition allins.hpp:14985
@ CR16_bne1w
Definition allins.hpp:14935
@ CR16_beq
Definition allins.hpp:14911
@ CR16_loadb
Definition allins.hpp:14959
@ CR16_addcb
Definition allins.hpp:14904
@ CR16_sle
Definition allins.hpp:14990
@ CR16_sbitb
Definition allins.hpp:15009
@ CR16_sbitw
Definition allins.hpp:15010
@ CR16_beq0b
Definition allins.hpp:14932
@ CR16_ashuw
Definition allins.hpp:14909
@ CR16_addw
Definition allins.hpp:14901
@ CR16_br
Definition allins.hpp:14925
@ CR16_jfc
Definition allins.hpp:14951
@ CR16_blt
Definition allins.hpp:14923
@ CR16_pop
Definition allins.hpp:14979
@ CR16_mulsw
Definition allins.hpp:14973
@ CR16_andb
Definition allins.hpp:14906
@ CR16_bcs
Definition allins.hpp:14913
@ CR16_bgt
Definition allins.hpp:14917
@ CR16_movd
Definition allins.hpp:14969
@ CR16_mulw
Definition allins.hpp:14971
@ CR16_muluw
Definition allins.hpp:14974
@ CR16_sfs
Definition allins.hpp:14991
@ CR16_addcw
Definition allins.hpp:14905
@ CR16_storm
Definition allins.hpp:15001
@ CR16_loadm
Definition allins.hpp:14961
@ CR16_xorw
Definition allins.hpp:15016
@ CR16_bal
Definition allins.hpp:14927
@ CR16_bne
Definition allins.hpp:14912
@ CR16_shi
Definition allins.hpp:14987
@ CR16_sgt
Definition allins.hpp:14989
@ CR16_sfc
Definition allins.hpp:14992
@ CR16_bfs
Definition allins.hpp:14919
@ CR16_bhi
Definition allins.hpp:14915
@ CR16_spr
Definition allins.hpp:14998
@ CR16_bfc
Definition allins.hpp:14920
@ CR16_jal
Definition allins.hpp:14958
@ CR16_cmpw
Definition allins.hpp:14929
@ CR16_subcw
Definition allins.hpp:15005
@ CR16_last
Definition allins.hpp:15017
@ CR16_bhs
Definition allins.hpp:14922
@ CR16_jfs
Definition allins.hpp:14950
@ CR16_addub
Definition allins.hpp:14902
@ CR16_bne0b
Definition allins.hpp:14936
@ CR16_bge
Definition allins.hpp:14924
@ CR16_sne
Definition allins.hpp:14984
@ CR16_jgt
Definition allins.hpp:14948
@ CR16_adduw
Definition allins.hpp:14903
@ CR16_cbitb
Definition allins.hpp:15011
@ CR16_jls
Definition allins.hpp:14947
@ CR16_subw
Definition allins.hpp:15003
@ CR16_beq1w
Definition allins.hpp:14931
@ CR16_storb
Definition allins.hpp:14999
@ CR16_loadw
Definition allins.hpp:14960
@ CR16_retx
Definition allins.hpp:14981
@ F2MC_dwbnz16
Definition allins.hpp:11762
@ F2MC_orw2
Definition allins.hpp:11631
@ F2MC_unlink
Definition allins.hpp:11692
@ F2MC_mov
Definition allins.hpp:11570
@ F2MC_decl
Definition allins.hpp:11601
@ F2MC_notw
Definition allins.hpp:11634
@ F2MC_asr
Definition allins.hpp:11646
@ F2MC_subcw
Definition allins.hpp:11593
@ F2MC_scweqd
Definition allins.hpp:11736
@ F2MC_dbnz
Definition allins.hpp:11685
@ F2MC_bbc
Definition allins.hpp:11717
@ F2MC_pcb
Definition allins.hpp:11710
@ F2MC_mulw1
Definition allins.hpp:11619
@ F2MC_add
Definition allins.hpp:11580
@ F2MC_jctx
Definition allins.hpp:11700
@ F2MC_andl
Definition allins.hpp:11635
@ F2MC_bv16
Definition allins.hpp:11747
@ F2MC_cmp1
Definition allins.hpp:11602
@ F2MC_andw1
Definition allins.hpp:11628
@ F2MC_lsrw2
Definition allins.hpp:11652
@ F2MC_popw
Definition allins.hpp:11699
@ F2MC_divu1
Definition allins.hpp:11607
@ F2MC_dwbnz
Definition allins.hpp:11686
@ F2MC_movb
Definition allins.hpp:11714
@ F2MC_bp16
Definition allins.hpp:11746
@ F2MC_subl
Definition allins.hpp:11595
@ F2MC_lsrl
Definition allins.hpp:11656
@ F2MC_cmpw2
Definition allins.hpp:11605
@ F2MC_xch
Definition allins.hpp:11573
@ F2MC_lsl
Definition allins.hpp:11648
@ F2MC_int9
Definition allins.hpp:11689
@ F2MC_bnz
Definition allins.hpp:11662
@ F2MC_scweqi
Definition allins.hpp:11735
@ F2MC_blt16
Definition allins.hpp:11751
@ F2MC_adddc
Definition allins.hpp:11583
@ F2MC_bge16
Definition allins.hpp:11752
@ F2MC_dbnz16
Definition allins.hpp:11761
@ F2MC_bnv16
Definition allins.hpp:11748
@ F2MC_rolc
Definition allins.hpp:11645
@ F2MC_subdc
Definition allins.hpp:11587
@ F2MC_mulw2
Definition allins.hpp:11620
@ F2MC_setb
Definition allins.hpp:11715
@ F2MC_incw
Definition allins.hpp:11598
@ F2MC_addw2
Definition allins.hpp:11589
@ F2MC_lsrw1
Definition allins.hpp:11651
@ F2MC_bnc
Definition allins.hpp:11664
@ F2MC_bc16
Definition allins.hpp:11743
@ F2MC_bge
Definition allins.hpp:11672
@ F2MC_adb
Definition allins.hpp:11708
@ F2MC_bhi16
Definition allins.hpp:11756
@ F2MC_bls16
Definition allins.hpp:11755
@ F2MC_cbne16
Definition allins.hpp:11758
@ F2MC_movw
Definition allins.hpp:11574
@ F2MC_and
Definition allins.hpp:11624
@ F2MC_movn
Definition allins.hpp:11571
@ F2MC_movsi
Definition allins.hpp:11728
@ F2MC_call
Definition allins.hpp:11680
@ F2MC_subc1
Definition allins.hpp:11585
@ F2MC_callv
Definition allins.hpp:11681
@ F2MC_not
Definition allins.hpp:11627
@ F2MC_neg
Definition allins.hpp:11638
@ F2MC_nop
Definition allins.hpp:11707
@ F2MC_bgt
Definition allins.hpp:11674
@ F2MC_lsll
Definition allins.hpp:11657
@ F2MC_cmpl
Definition allins.hpp:11606
@ F2MC_bnt
Definition allins.hpp:11670
@ F2MC_movea
Definition allins.hpp:11704
@ F2MC_cwbne
Definition allins.hpp:11684
@ F2MC_retp
Definition allins.hpp:11694
@ F2MC_filswi
Definition allins.hpp:11737
@ F2MC_jmp
Definition allins.hpp:11678
@ F2MC_lslw2
Definition allins.hpp:11654
@ F2MC_link
Definition allins.hpp:11691
@ F2MC_ret
Definition allins.hpp:11693
@ F2MC_xorw1
Definition allins.hpp:11632
@ F2MC_reti
Definition allins.hpp:11690
@ F2MC_xor
Definition allins.hpp:11626
@ F2MC_int
Definition allins.hpp:11687
@ F2MC_callp
Definition allins.hpp:11682
@ F2MC_xorl
Definition allins.hpp:11637
@ F2MC_cwbne16
Definition allins.hpp:11759
@ F2MC_swapw
Definition allins.hpp:11723
@ F2MC_nrml
Definition allins.hpp:11640
@ F2MC_asrw2
Definition allins.hpp:11650
@ F2MC_or
Definition allins.hpp:11625
@ F2MC_blt
Definition allins.hpp:11671
@ F2MC_bt16
Definition allins.hpp:11749
@ F2MC_spb
Definition allins.hpp:11711
@ F2MC_muluw2
Definition allins.hpp:11613
@ F2MC_sceqi
Definition allins.hpp:11730
@ F2MC_ble
Definition allins.hpp:11673
@ F2MC_wbtc
Definition allins.hpp:11721
@ F2MC_swap
Definition allins.hpp:11722
@ F2MC_cmr
Definition allins.hpp:11713
@ F2MC_div2
Definition allins.hpp:11615
@ F2MC_bra
Definition allins.hpp:11677
@ F2MC_sceqd
Definition allins.hpp:11731
@ F2MC_jmpp
Definition allins.hpp:11679
@ F2MC_decw
Definition allins.hpp:11599
@ F2MC_subw1
Definition allins.hpp:11591
@ F2MC_null
Definition allins.hpp:11566
@ F2MC_sub
Definition allins.hpp:11584
@ F2MC_bls
Definition allins.hpp:11675
@ F2MC_bn
Definition allins.hpp:11665
@ F2MC_orl
Definition allins.hpp:11636
@ F2MC_movl
Definition allins.hpp:11576
@ F2MC_bp
Definition allins.hpp:11666
@ F2MC_rorc
Definition allins.hpp:11644
@ F2MC_orw1
Definition allins.hpp:11630
@ F2MC_zextw
Definition allins.hpp:11727
@ F2MC_mul2
Definition allins.hpp:11618
@ F2MC_cbne
Definition allins.hpp:11683
@ F2MC_bn16
Definition allins.hpp:11745
@ F2MC_xchw
Definition allins.hpp:11575
@ F2MC_div1
Definition allins.hpp:11614
@ F2MC_pushw
Definition allins.hpp:11698
@ F2MC_addl
Definition allins.hpp:11594
@ F2MC_cmpw1
Definition allins.hpp:11604
@ F2MC_subw2
Definition allins.hpp:11592
@ F2MC_dec
Definition allins.hpp:11597
@ F2MC_bt
Definition allins.hpp:11669
@ F2MC_bnv
Definition allins.hpp:11668
@ F2MC_bgt16
Definition allins.hpp:11754
@ F2MC_ext
Definition allins.hpp:11724
@ F2MC_mulu1
Definition allins.hpp:11610
@ F2MC_last
Definition allins.hpp:11768
@ F2MC_sbbs16
Definition allins.hpp:11766
@ F2MC_asrl
Definition allins.hpp:11655
@ F2MC_ncc
Definition allins.hpp:11712
@ F2MC_addw1
Definition allins.hpp:11588
@ F2MC_addcw
Definition allins.hpp:11590
@ F2MC_bbs16
Definition allins.hpp:11765
@ F2MC_subc2
Definition allins.hpp:11586
@ F2MC_movsd
Definition allins.hpp:11729
@ F2MC_movswd
Definition allins.hpp:11734
@ F2MC_inc
Definition allins.hpp:11596
@ F2MC_divuw
Definition allins.hpp:11609
@ F2MC_bnc16
Definition allins.hpp:11744
@ F2MC_addc2
Definition allins.hpp:11582
@ F2MC_incl
Definition allins.hpp:11600
@ F2MC_mul1
Definition allins.hpp:11617
@ F2MC_bbs
Definition allins.hpp:11718
@ F2MC_bnt16
Definition allins.hpp:11750
@ F2MC_divw
Definition allins.hpp:11616
@ F2MC_dtb
Definition allins.hpp:11709
@ F2MC_bbc16
Definition allins.hpp:11764
@ F2MC_mulu2
Definition allins.hpp:11611
@ F2MC_filsi
Definition allins.hpp:11732
@ F2MC_bv
Definition allins.hpp:11667
@ F2MC_cmp2
Definition allins.hpp:11603
@ F2MC_xorw2
Definition allins.hpp:11633
@ F2MC_intp
Definition allins.hpp:11688
@ F2MC_bz
Definition allins.hpp:11661
@ F2MC_divu2
Definition allins.hpp:11608
@ F2MC_ble16
Definition allins.hpp:11753
@ F2MC_movx
Definition allins.hpp:11572
@ F2MC_andw2
Definition allins.hpp:11629
@ F2MC_sbbs
Definition allins.hpp:11719
@ F2MC_addsp
Definition allins.hpp:11705
@ F2MC_lsr
Definition allins.hpp:11647
@ F2MC_lslw1
Definition allins.hpp:11653
@ F2MC_movswi
Definition allins.hpp:11733
@ F2MC_asrw1
Definition allins.hpp:11649
@ F2MC_extw
Definition allins.hpp:11725
@ F2MC_bc
Definition allins.hpp:11663
@ F2MC_negw
Definition allins.hpp:11639
@ F2MC_clrb
Definition allins.hpp:11716
@ F2MC_wbts
Definition allins.hpp:11720
@ F2MC_zext
Definition allins.hpp:11726
@ F2MC_bnz16
Definition allins.hpp:11742
@ F2MC_bhi
Definition allins.hpp:11676
@ F2MC_addc1
Definition allins.hpp:11581
@ F2MC_bz16
Definition allins.hpp:11741
@ F2MC_muluw1
Definition allins.hpp:11612
@ C39_phw
Definition allins.hpp:14837
@ C39_ply
Definition allins.hpp:14846
@ C39_sed
Definition allins.hpp:14863
@ C39_and
Definition allins.hpp:14774
@ C39_sre
Definition allins.hpp:14871
@ C39_pul
Definition allins.hpp:14848
@ C39_isb
Definition allins.hpp:14812
@ C39_lae
Definition allins.hpp:14818
@ C39_bra
Definition allins.hpp:14790
@ C39_neg
Definition allins.hpp:14830
@ C39_sty
Definition allins.hpp:14875
@ C39_slo
Definition allins.hpp:14869
@ C39_sta
Definition allins.hpp:14872
@ C39_bbr
Definition allins.hpp:14781
@ C39_nop
Definition allins.hpp:14831
@ C39_last
Definition allins.hpp:14885
@ C39_sba
Definition allins.hpp:14859
@ C39_bcc
Definition allins.hpp:14783
@ C39_exc
Definition allins.hpp:14807
@ C39_cld
Definition allins.hpp:14795
@ C39_pha
Definition allins.hpp:14834
@ C39_tsx
Definition allins.hpp:14880
@ C39_plw
Definition allins.hpp:14844
@ C39_bvs
Definition allins.hpp:14793
@ C39_mpy
Definition allins.hpp:14829
@ C39_lsr
Definition allins.hpp:14826
@ C39_inc
Definition allins.hpp:14808
@ C39_bvc
Definition allins.hpp:14792
@ C39_sha
Definition allins.hpp:14865
@ C39_dey
Definition allins.hpp:14805
@ C39_rra
Definition allins.hpp:14855
@ C39_ane
Definition allins.hpp:14775
@ C39_stx
Definition allins.hpp:14874
@ C39_sax
Definition allins.hpp:14858
@ C39_rmb
Definition allins.hpp:14851
@ C39_sbx
Definition allins.hpp:14861
@ C39_phx
Definition allins.hpp:14838
@ C39_iny
Definition allins.hpp:14811
@ C39_sec
Definition allins.hpp:14862
@ C39_bit
Definition allins.hpp:14786
@ C39_bpl
Definition allins.hpp:14789
@ C39_pli
Definition allins.hpp:14842
@ C39_cpy
Definition allins.hpp:14801
@ C39_inx
Definition allins.hpp:14810
@ C39_cmp
Definition allins.hpp:14799
@ C39_tya
Definition allins.hpp:14884
@ C39_nxt
Definition allins.hpp:14832
@ C39_txa
Definition allins.hpp:14882
@ C39_bcs
Definition allins.hpp:14784
@ C39_add
Definition allins.hpp:14772
@ C39_bne
Definition allins.hpp:14788
@ C39_bmi
Definition allins.hpp:14787
@ C39_dec
Definition allins.hpp:14803
@ C39_ini
Definition allins.hpp:14809
@ C39_lxa
Definition allins.hpp:14827
@ C39_pla
Definition allins.hpp:14841
@ C39_phy
Definition allins.hpp:14839
@ C39_plx
Definition allins.hpp:14845
@ C39_clc
Definition allins.hpp:14794
@ C39_bbs
Definition allins.hpp:14782
@ C39_shx
Definition allins.hpp:14867
@ C39_cli
Definition allins.hpp:14796
@ C39_brk
Definition allins.hpp:14791
@ C39_rts
Definition allins.hpp:14857
@ C39_adc
Definition allins.hpp:14771
@ C39_jmp
Definition allins.hpp:14813
@ C39_shs
Definition allins.hpp:14866
@ C39_shy
Definition allins.hpp:14868
@ C39_cpx
Definition allins.hpp:14800
@ C39_lda
Definition allins.hpp:14822
@ C39_lax
Definition allins.hpp:14821
@ C39_jsb
Definition allins.hpp:14815
@ C39_ror
Definition allins.hpp:14854
@ C39_mpa
Definition allins.hpp:14828
@ C39_ora
Definition allins.hpp:14833
@ C39_jsr
Definition allins.hpp:14816
@ C39_lab
Definition allins.hpp:14817
@ C39_rti
Definition allins.hpp:14856
@ C39_asr
Definition allins.hpp:14778
@ C39_anc
Definition allins.hpp:14773
@ C39_bas
Definition allins.hpp:14780
@ C39_ldy
Definition allins.hpp:14824
@ C39_dex
Definition allins.hpp:14804
@ C39_sbc
Definition allins.hpp:14860
@ C39_lii
Definition allins.hpp:14825
@ C39_lai
Definition allins.hpp:14819
@ C39_jpi
Definition allins.hpp:14814
@ C39_ldx
Definition allins.hpp:14823
@ C39_null
Definition allins.hpp:14770
@ C39_txs
Definition allins.hpp:14883
@ C39_clv
Definition allins.hpp:14797
@ C39_beq
Definition allins.hpp:14785
@ C39_arr
Definition allins.hpp:14776
@ C39_psh
Definition allins.hpp:14847
@ C39_rba
Definition allins.hpp:14849
@ C39_tax
Definition allins.hpp:14876
@ C39_sei
Definition allins.hpp:14864
@ C39_sti
Definition allins.hpp:14873
@ C39_tip
Definition allins.hpp:14879
@ C39_clw
Definition allins.hpp:14798
@ C39_rla
Definition allins.hpp:14850
@ C39_tay
Definition allins.hpp:14877
@ C39_pia
Definition allins.hpp:14840
@ C39_phi
Definition allins.hpp:14835
@ C39_smb
Definition allins.hpp:14870
@ C39_dcp
Definition allins.hpp:14802
@ C39_taw
Definition allins.hpp:14878
@ C39_plp
Definition allins.hpp:14843
@ C39_bar
Definition allins.hpp:14779
@ C39_rnd
Definition allins.hpp:14852
@ C39_asl
Definition allins.hpp:14777
@ C39_eor
Definition allins.hpp:14806
@ C39_twa
Definition allins.hpp:14881
@ C39_php
Definition allins.hpp:14836
@ C39_rol
Definition allins.hpp:14853
@ C39_lan
Definition allins.hpp:14820
@ SH3_div1
Definition allins.hpp:5987
@ SH3_bsrf
Definition allins.hpp:5971
@ SH3_negc
Definition allins.hpp:6023
@ SH4_fsca
Definition allins.hpp:6097
@ SH3_null
Definition allins.hpp:5959
@ SH2a_clipu_b
Definition allins.hpp:6117
@ SH3_bf_s
Definition allins.hpp:5967
@ SH3_rotr
Definition allins.hpp:6032
@ SH2a_bld_b
Definition allins.hpp:6106
@ SH3_swap_b
Definition allins.hpp:6057
@ SH2a_divs
Definition allins.hpp:6119
@ SH3_addv
Definition allins.hpp:5963
@ SH2a_movmu_l
Definition allins.hpp:6126
@ SH3_not
Definition allins.hpp:6025
@ SH3_mov_w
Definition allins.hpp:6006
@ SH3_lds_l
Definition allins.hpp:6000
@ SH3_ldc_l
Definition allins.hpp:5998
@ SH3_cmp_str
Definition allins.hpp:5984
@ SH4_fmul
Definition allins.hpp:6083
@ SH3_movs_w
Definition allins.hpp:6015
@ SH2a_ldbank
Definition allins.hpp:6122
@ SH3_subc
Definition allins.hpp:6055
@ SH4_fsts
Definition allins.hpp:6088
@ SH2a_bset
Definition allins.hpp:6110
@ SH3_cmp_ge
Definition allins.hpp:5978
@ SH2a_movu_w
Definition allins.hpp:6129
@ SH3_stc_l
Definition allins.hpp:6051
@ SH3_mul
Definition allins.hpp:6019
@ SH3_shll2
Definition allins.hpp:6042
@ SH3_shld
Definition allins.hpp:6040
@ SH3_tst
Definition allins.hpp:6061
@ SH4_frchg
Definition allins.hpp:6085
@ SH3_cmp_hs
Definition allins.hpp:5981
@ SH4_fcmp_eq
Definition allins.hpp:6069
@ SH3_rts
Definition allins.hpp:6034
@ SH4_fneg
Definition allins.hpp:6084
@ SH2a_bxor_b
Definition allins.hpp:6114
@ SH4a_prefi
Definition allins.hpp:6143
@ SH3_movp_w
Definition allins.hpp:6012
@ SH3_mov_b
Definition allins.hpp:6005
@ SH4_fcmp_gt
Definition allins.hpp:6070
@ SH4_fabs
Definition allins.hpp:6067
@ SH4_fdiv
Definition allins.hpp:6073
@ SH4_ftrc
Definition allins.hpp:6090
@ SH3_shll16
Definition allins.hpp:6044
@ SH2a_jsr_n
Definition allins.hpp:6121
@ SH3_rte
Definition allins.hpp:6033
@ SH3_bf
Definition allins.hpp:5966
@ SH3_cmp_pz
Definition allins.hpp:5983
@ SH3_or
Definition allins.hpp:6026
@ SH3_sets
Definition allins.hpp:6035
@ SH2a_bclr
Definition allins.hpp:6103
@ SH4a_fsrra
Definition allins.hpp:6145
@ SH4_fmov
Definition allins.hpp:6080
@ SH4_float
Definition allins.hpp:6078
@ SH2a_divu
Definition allins.hpp:6120
@ SH2a_bset_b
Definition allins.hpp:6111
@ SH3_shlr16
Definition allins.hpp:6048
@ SH3_extu_b
Definition allins.hpp:5993
@ SH4_movca_l
Definition allins.hpp:6093
@ SH3_xor_b
Definition allins.hpp:6064
@ SH3_mac_l
Definition allins.hpp:6003
@ SH4_last
Definition allins.hpp:6148
@ SH3_dmulu_l
Definition allins.hpp:5989
@ SH2a_rtv_n
Definition allins.hpp:6134
@ SH4_fmovex
Definition allins.hpp:6082
@ SH3_movi
Definition allins.hpp:6008
@ SH3_mova
Definition allins.hpp:6017
@ SH3_shll8
Definition allins.hpp:6043
@ SH3_rotcl
Definition allins.hpp:6029
@ SH3_movi_l
Definition allins.hpp:6010
@ SH3_stc
Definition allins.hpp:6050
@ SH3_subv
Definition allins.hpp:6056
@ SH4_fldi0
Definition allins.hpp:6075
@ SH4_ocbi
Definition allins.hpp:6094
@ SH3_tst_b
Definition allins.hpp:6062
@ SH2a_clips_b
Definition allins.hpp:6115
@ SH3_trapa
Definition allins.hpp:6060
@ SH3_dt
Definition allins.hpp:5990
@ SH4a_fpchg
Definition allins.hpp:6146
@ SH3_movp_b
Definition allins.hpp:6011
@ SH2a_bst_b
Definition allins.hpp:6113
@ SH2a_stbank
Definition allins.hpp:6135
@ SH3_shlr8
Definition allins.hpp:6047
@ SH4_fldi1
Definition allins.hpp:6076
@ SH3_jmp
Definition allins.hpp:5995
@ SH3_shal
Definition allins.hpp:6038
@ SH2a_clipu_w
Definition allins.hpp:6118
@ SH3_div0u
Definition allins.hpp:5986
@ SH3_nop
Definition allins.hpp:6024
@ SH2a_bornot_b
Definition allins.hpp:6109
@ SH3_exts_b
Definition allins.hpp:5991
@ SH2a_band_b
Definition allins.hpp:6101
@ SH3_braf
Definition allins.hpp:5969
@ SH4_ftrv
Definition allins.hpp:6091
@ SH3_clrt
Definition allins.hpp:5976
@ SH3_cmp_eq
Definition allins.hpp:5977
@ SH2a_resbank
Definition allins.hpp:6132
@ SH3_pref
Definition allins.hpp:6028
@ SH3_bt
Definition allins.hpp:5972
@ SH3_lds
Definition allins.hpp:5999
@ SH4_fsqrt
Definition allins.hpp:6087
@ SH4a_movua_l
Definition allins.hpp:6141
@ SH3_movi_w
Definition allins.hpp:6009
@ SH3_neg
Definition allins.hpp:6022
@ SH4_fmac
Definition allins.hpp:6079
@ SH2a_movi20s
Definition allins.hpp:6124
@ SH2a_bst
Definition allins.hpp:6112
@ SH3_ldc
Definition allins.hpp:5997
@ SH3_sts_l
Definition allins.hpp:6053
@ SH3_dmuls_l
Definition allins.hpp:5988
@ SH3_shlr
Definition allins.hpp:6045
@ SH4_fadd
Definition allins.hpp:6068
@ SH3_xtrct
Definition allins.hpp:6065
@ SH2a_movu_b
Definition allins.hpp:6128
@ SH2a_clips_w
Definition allins.hpp:6116
@ SH4a_icbi
Definition allins.hpp:6142
@ SH3_shad
Definition allins.hpp:6037
@ SH3_clrs
Definition allins.hpp:5975
@ SH3_movs_l
Definition allins.hpp:6016
@ SH3_mac_w
Definition allins.hpp:6002
@ SH3_swap_w
Definition allins.hpp:6058
@ SH3_or_b
Definition allins.hpp:6027
@ SH3_rotl
Definition allins.hpp:6031
@ SH2a_movi20
Definition allins.hpp:6123
@ SH3_bsr
Definition allins.hpp:5970
@ SH2a_bld
Definition allins.hpp:6105
@ SH4_flds
Definition allins.hpp:6077
@ SH3_jsr
Definition allins.hpp:5996
@ SH3_addc
Definition allins.hpp:5962
@ SH3_bra
Definition allins.hpp:5968
@ SH3_sleep
Definition allins.hpp:6049
@ SH4a_movli_l
Definition allins.hpp:6140
@ SH3_movp_l
Definition allins.hpp:6013
@ SH3_add
Definition allins.hpp:5961
@ SH3_movt
Definition allins.hpp:6018
@ SH3_shll
Definition allins.hpp:6041
@ SH3_div0s
Definition allins.hpp:5985
@ SH2a_mulr
Definition allins.hpp:6130
@ SH4_ocbwb
Definition allins.hpp:6096
@ SH2a_movml_l
Definition allins.hpp:6125
@ SH3_bt_s
Definition allins.hpp:5973
@ SH2a_rts_n
Definition allins.hpp:6133
@ SH3_tas_b
Definition allins.hpp:6059
@ SH2a_nott
Definition allins.hpp:6131
@ SH4_fmov_s
Definition allins.hpp:6081
@ SH3_mov_l
Definition allins.hpp:6007
@ SH3_exts_w
Definition allins.hpp:5992
@ SH4_fschg
Definition allins.hpp:6086
@ SH4_fcnvsd
Definition allins.hpp:6072
@ SH3_cmp_hi
Definition allins.hpp:5980
@ SH4_ftstn
Definition allins.hpp:6092
@ SH3_shlr2
Definition allins.hpp:6046
@ SH4_fcnvds
Definition allins.hpp:6071
@ SH3_rotcr
Definition allins.hpp:6030
@ SH3_mulu
Definition allins.hpp:6021
@ SH3_xor
Definition allins.hpp:6063
@ SH4_fsub
Definition allins.hpp:6089
@ SH2a_bclr_b
Definition allins.hpp:6104
@ SH4a_synco
Definition allins.hpp:6144
@ SH3_extu_w
Definition allins.hpp:5994
@ SH3_clrmac
Definition allins.hpp:5974
@ SH3_and
Definition allins.hpp:5964
@ SH3_mov
Definition allins.hpp:6004
@ SH2a_bor_b
Definition allins.hpp:6108
@ SH3_movs_b
Definition allins.hpp:6014
@ SH2a_movrt
Definition allins.hpp:6127
@ SH3_cmp_gt
Definition allins.hpp:5979
@ SH3_ldtlb
Definition allins.hpp:6001
@ SH3_sts
Definition allins.hpp:6052
@ SH3_cmp_pl
Definition allins.hpp:5982
@ SH3_and_b
Definition allins.hpp:5965
@ SH3_sub
Definition allins.hpp:6054
@ SH4_ocbp
Definition allins.hpp:6095
@ SH2a_bldnot_b
Definition allins.hpp:6107
@ SH3_muls
Definition allins.hpp:6020
@ SH4_fipr
Definition allins.hpp:6074
@ SH4a_movco_l
Definition allins.hpp:6139
@ SH3_sett
Definition allins.hpp:6036
@ SH3_shar
Definition allins.hpp:6039
@ SH2a_bandnot_b
Definition allins.hpp:6102
@ I860_m12apm
Definition allins.hpp:2641
@ I860_mr2p1
Definition allins.hpp:2664
@ I860_lock
Definition allins.hpp:2593
@ I860_mi2p1
Definition allins.hpp:2668
@ I860_mr2mpt
Definition allins.hpp:2667
@ I860_xor
Definition allins.hpp:2627
@ I860_mi2s1
Definition allins.hpp:2683
@ I860_bc_t
Definition allins.hpp:2557
@ I860_i2ast
Definition allins.hpp:2655
@ I860_pfmul
Definition allins.hpp:2607
@ I860_mi2mst
Definition allins.hpp:2686
@ I860_mimt1p2
Definition allins.hpp:2676
@ I860_pform
Definition allins.hpp:2609
@ I860_mm12tsm
Definition allins.hpp:2692
@ I860_addu
Definition allins.hpp:2551
@ I860_ra1s2
Definition allins.hpp:2658
@ I860_call
Definition allins.hpp:2565
@ I860_pfiadd
Definition allins.hpp:2602
@ I860_andnot
Definition allins.hpp:2554
@ I860_r2s1
Definition allins.hpp:2648
@ I860_shra
Definition allins.hpp:2618
@ I860_r2p1
Definition allins.hpp:2632
@ I860_mim1p2
Definition allins.hpp:2678
@ I860_pfld
Definition allins.hpp:2605
@ I860_mr2mst
Definition allins.hpp:2682
@ I860_fmul
Definition allins.hpp:2577
@ I860_calli
Definition allins.hpp:2566
@ I860_i2st
Definition allins.hpp:2653
@ I860_m12tpm
Definition allins.hpp:2645
@ I860_fld
Definition allins.hpp:2574
@ I860_faddz
Definition allins.hpp:2569
@ I860_btne
Definition allins.hpp:2564
@ I860_scyc
Definition allins.hpp:2615
@ I860_mm12tpm
Definition allins.hpp:2677
@ I860_pfmul3_dd
Definition allins.hpp:2608
@ I860_rat1s2
Definition allins.hpp:2656
@ I860_fix
Definition allins.hpp:2573
@ I860_flush
Definition allins.hpp:2575
@ I860_bte
Definition allins.hpp:2563
@ I860_mi2ms1
Definition allins.hpp:2685
@ I860_andh
Definition allins.hpp:2553
@ I860_mim1s2
Definition allins.hpp:2693
@ I860_i2apt
Definition allins.hpp:2639
@ I860_ldio
Definition allins.hpp:2592
@ I860_fzchks
Definition allins.hpp:2586
@ I860_ia1p2
Definition allins.hpp:2646
@ I860_bri
Definition allins.hpp:2562
@ I860_iat1s2
Definition allins.hpp:2660
@ I860_mr2s1
Definition allins.hpp:2679
@ I860_subs
Definition allins.hpp:2623
@ I860_m12tpa
Definition allins.hpp:2647
@ I860_trap
Definition allins.hpp:2625
@ I860_i2p1
Definition allins.hpp:2636
@ I860_null
Definition allins.hpp:2544
@ I860_mi2pt
Definition allins.hpp:2669
@ I860_faddp
Definition allins.hpp:2568
@ I860_orh
Definition allins.hpp:2595
@ I860_r2pt
Definition allins.hpp:2633
@ I860_mimt1s2
Definition allins.hpp:2691
@ I860_ixfr
Definition allins.hpp:2588
@ I860_ld_c
Definition allins.hpp:2589
@ I860_shrd
Definition allins.hpp:2619
@ I860_shl
Definition allins.hpp:2616
@ I860_bla
Definition allins.hpp:2558
@ I860_or
Definition allins.hpp:2594
@ I860_mm12mpm
Definition allins.hpp:2673
@ I860_br
Definition allins.hpp:2561
@ I860_rat1p2
Definition allins.hpp:2640
@ I860_r2ast
Definition allins.hpp:2651
@ I860_stio
Definition allins.hpp:2622
@ I860_pfeq
Definition allins.hpp:2600
@ I860_ia1s2
Definition allins.hpp:2662
@ I860_fzchkl
Definition allins.hpp:2585
@ I860_st_c
Definition allins.hpp:2620
@ I860_bnc_t
Definition allins.hpp:2560
@ I860_m12ttsa
Definition allins.hpp:2659
@ I860_r2ap1
Definition allins.hpp:2634
@ I860_pfaddz
Definition allins.hpp:2598
@ I860_form
Definition allins.hpp:2578
@ I860_fst
Definition allins.hpp:2581
@ I860_mrmt1s2
Definition allins.hpp:2687
@ I860_introvr
Definition allins.hpp:2587
@ I860_mr2mp1
Definition allins.hpp:2666
@ I860_mrm1s2
Definition allins.hpp:2689
@ I860_pftrunc
Definition allins.hpp:2611
@ I860_adds
Definition allins.hpp:2550
@ I860_iat1p2
Definition allins.hpp:2644
@ I860_r2st
Definition allins.hpp:2649
@ I860_m12tsa
Definition allins.hpp:2663
@ I860_and
Definition allins.hpp:2552
@ I860_subu
Definition allins.hpp:2624
@ I860_pfix
Definition allins.hpp:2604
@ I860_andnoth
Definition allins.hpp:2555
@ I860_i2as1
Definition allins.hpp:2654
@ I860_bnc
Definition allins.hpp:2559
@ I860_mr2pt
Definition allins.hpp:2665
@ I860_mi2mp1
Definition allins.hpp:2670
@ I860_pfgt
Definition allins.hpp:2601
@ I860_pfzchkl
Definition allins.hpp:2612
@ I860_ldint
Definition allins.hpp:2591
@ I860_pst_d
Definition allins.hpp:2614
@ I860_famov
Definition allins.hpp:2570
@ I860_ftrunc
Definition allins.hpp:2583
@ I860_mm12ttsm
Definition allins.hpp:2690
@ I860_fadd
Definition allins.hpp:2567
@ I860_r2apt
Definition allins.hpp:2635
@ I860_pfzchks
Definition allins.hpp:2613
@ I860_last
Definition allins.hpp:2695
@ I860_ld
Definition allins.hpp:2590
@ I860_mr2ms1
Definition allins.hpp:2681
@ I860_frsqr
Definition allins.hpp:2580
@ I860_mr2st
Definition allins.hpp:2680
@ I860_mi2st
Definition allins.hpp:2684
@ I860_ra1p2
Definition allins.hpp:2642
@ I860_i2ap1
Definition allins.hpp:2638
@ I860_pfaddp
Definition allins.hpp:2597
@ I860_frcp
Definition allins.hpp:2579
@ I860_pfadd
Definition allins.hpp:2596
@ I860_st
Definition allins.hpp:2621
@ I860_fiadd
Definition allins.hpp:2571
@ I860_m12tsm
Definition allins.hpp:2661
@ I860_pfamov
Definition allins.hpp:2599
@ I860_unlock
Definition allins.hpp:2626
@ I860_pfsub
Definition allins.hpp:2610
@ I860_i2s1
Definition allins.hpp:2652
@ I860_fmlow_dd
Definition allins.hpp:2576
@ I860_i2pt
Definition allins.hpp:2637
@ I860_m12ttpa
Definition allins.hpp:2643
@ I860_m12asm
Definition allins.hpp:2657
@ I860_mm12msm
Definition allins.hpp:2688
@ I860_pfle
Definition allins.hpp:2606
@ I860_mi2mpt
Definition allins.hpp:2671
@ I860_mrmt1p2
Definition allins.hpp:2672
@ I860_shr
Definition allins.hpp:2617
@ I860_r2as1
Definition allins.hpp:2650
@ I860_fsub
Definition allins.hpp:2582
@ I860_bc
Definition allins.hpp:2556
@ I860_xorh
Definition allins.hpp:2628
@ I860_mrm1p2
Definition allins.hpp:2674
@ I860_pfisub
Definition allins.hpp:2603
@ I860_mm12ttpm
Definition allins.hpp:2675
@ I860_fxfr
Definition allins.hpp:2584
@ I860_fisub
Definition allins.hpp:2572
@ RX_xor
Definition allins.hpp:24000
@ RX_ddiv
Definition allins.hpp:24008
@ RX_clrpsw
Definition allins.hpp:23888
@ RX_scmpu
Definition allins.hpp:23982
@ RX_fmul
Definition allins.hpp:23900
@ RX_rte
Definition allins.hpp:23958
@ RX_sbb
Definition allins.hpp:23965
@ RX_bo
Definition allins.hpp:23866
@ RX_racl
Definition allins.hpp:23945
@ RX_mvtaclo
Definition allins.hpp:23932
@ RX_bclr
Definition allins.hpp:23851
@ RX_mvtipl
Definition allins.hpp:23934
@ RX_sceq
Definition allins.hpp:23967
@ RX_and
Definition allins.hpp:23848
@ RX_rstr
Definition allins.hpp:23957
@ RX_divu
Definition allins.hpp:23891
@ RX_ftou
Definition allins.hpp:23904
@ RX_cmp
Definition allins.hpp:23889
@ RX_movu
Definition allins.hpp:23917
@ RX_popc
Definition allins.hpp:23940
@ RX_revw
Definition allins.hpp:23950
@ RX_wait
Definition allins.hpp:23998
@ RX_max
Definition allins.hpp:23912
@ RX_swhile
Definition allins.hpp:23995
@ RX_dcmpun
Definition allins.hpp:24004
@ RX_bmgt
Definition allins.hpp:23879
@ RX_bmno
Definition allins.hpp:23882
@ RX_int
Definition allins.hpp:23905
@ RX_fcmp
Definition allins.hpp:23898
@ RX_shar
Definition allins.hpp:23984
@ RX_mullh
Definition allins.hpp:23924
@ RX_bmgeu
Definition allins.hpp:23871
@ RX_round
Definition allins.hpp:23956
@ RX_dtoi
Definition allins.hpp:24018
@ RX_msblh
Definition allins.hpp:23920
@ RX_abs
Definition allins.hpp:23845
@ RX_racw
Definition allins.hpp:23947
@ RX_bfmovz
Definition allins.hpp:23853
@ RX_not
Definition allins.hpp:23937
@ RX_scno
Definition allins.hpp:23980
@ RX_bmo
Definition allins.hpp:23881
@ RX_fdiv
Definition allins.hpp:23899
@ RX_bne
Definition allins.hpp:23855
@ RX_mov
Definition allins.hpp:23914
@ RX_rtsd
Definition allins.hpp:23961
@ RX_bmle
Definition allins.hpp:23880
@ RX_shll
Definition allins.hpp:23985
@ RX_jmp
Definition allins.hpp:23907
@ RX_or
Definition allins.hpp:23938
@ RX_blt
Definition allins.hpp:23863
@ RX_rmpa
Definition allins.hpp:23951
@ RX_mvfacmi
Definition allins.hpp:23927
@ RX_save
Definition allins.hpp:23964
@ RX_rtfi
Definition allins.hpp:23959
@ RX_mvtacgu
Definition allins.hpp:23930
@ RX_mvfdr
Definition allins.hpp:24023
@ RX_scgt
Definition allins.hpp:23977
@ RX_mvtachi
Definition allins.hpp:23931
@ RX_bmltu
Definition allins.hpp:23872
@ RX_fsqrt
Definition allins.hpp:23901
@ RX_fadd
Definition allins.hpp:23897
@ RX_emul
Definition allins.hpp:23895
@ RX_dtou
Definition allins.hpp:24019
@ RX_mvfachi
Definition allins.hpp:23925
@ RX_ftoi
Definition allins.hpp:23903
@ RX_emula
Definition allins.hpp:23894
@ RX_bgeu
Definition allins.hpp:23856
@ RX_mvfaclo
Definition allins.hpp:23926
@ RX_movco
Definition allins.hpp:23915
@ RX_pushc
Definition allins.hpp:23943
@ RX_bge
Definition allins.hpp:23862
@ RX_maclh
Definition allins.hpp:23911
@ RX_bn
Definition allins.hpp:23861
@ RX_rdacl
Definition allins.hpp:23946
@ RX_last
Definition allins.hpp:24026
@ RX_bpz
Definition allins.hpp:23860
@ RX_nop
Definition allins.hpp:23936
@ RX_scge
Definition allins.hpp:23975
@ RX_min
Definition allins.hpp:23913
@ RX_bmleu
Definition allins.hpp:23874
@ RX_msbhi
Definition allins.hpp:23918
@ RX_bmpz
Definition allins.hpp:23875
@ RX_msblo
Definition allins.hpp:23919
@ RX_mvfdc
Definition allins.hpp:24022
@ RX_bmge
Definition allins.hpp:23877
@ RX_mvfc
Definition allins.hpp:23929
@ RX_itod
Definition allins.hpp:24021
@ RX_dcmpeq
Definition allins.hpp:24005
@ RX_mul
Definition allins.hpp:23921
@ RX_dcmple
Definition allins.hpp:24007
@ RX_setpsw
Definition allins.hpp:23983
@ RX_dmov
Definition allins.hpp:24009
@ RX_scn
Definition allins.hpp:23974
@ RX_pop
Definition allins.hpp:23939
@ RX_mvtc
Definition allins.hpp:23933
@ RX_dsqrt
Definition allins.hpp:24015
@ RX_null
Definition allins.hpp:23843
@ RX_sstr
Definition allins.hpp:23990
@ RX_smovu
Definition allins.hpp:23989
@ RX_mullo
Definition allins.hpp:23923
@ RX_xchg
Definition allins.hpp:23999
@ RX_rolc
Definition allins.hpp:23952
@ RX_dadd
Definition allins.hpp:24003
@ RX_ftod
Definition allins.hpp:24020
@ RX_sat
Definition allins.hpp:23962
@ RX_fsub
Definition allins.hpp:23902
@ RX_mvfacgu
Definition allins.hpp:23928
@ RX_sco
Definition allins.hpp:23979
@ RX_beq
Definition allins.hpp:23854
@ RX_mvtdc
Definition allins.hpp:24024
@ RX_bno
Definition allins.hpp:23867
@ RX_bra
Definition allins.hpp:23849
@ RX_btst
Definition allins.hpp:23887
@ RX_scpz
Definition allins.hpp:23973
@ RX_jsr
Definition allins.hpp:23908
@ RX_dcmplt
Definition allins.hpp:24006
@ RX_suntil
Definition allins.hpp:23994
@ RX_bmne
Definition allins.hpp:23870
@ RX_bmlt
Definition allins.hpp:23878
@ RX_dabs
Definition allins.hpp:24002
@ RX_utof
Definition allins.hpp:23997
@ RX_bgt
Definition allins.hpp:23864
@ RX_bset
Definition allins.hpp:23885
@ RX_dround
Definition allins.hpp:24014
@ RX_smovb
Definition allins.hpp:23987
@ RX_push
Definition allins.hpp:23942
@ RX_rdacw
Definition allins.hpp:23948
@ RX_emsba
Definition allins.hpp:23893
@ RX_dsub
Definition allins.hpp:24016
@ RX_scltu
Definition allins.hpp:23970
@ RX_machi
Definition allins.hpp:23909
@ RX_tst
Definition allins.hpp:23996
@ RX_itof
Definition allins.hpp:23906
@ RX_add
Definition allins.hpp:23847
@ RX_mulhi
Definition allins.hpp:23922
@ RX_bmgtu
Definition allins.hpp:23873
@ RX_smovf
Definition allins.hpp:23988
@ RX_dpopm
Definition allins.hpp:24012
@ RX_scle
Definition allins.hpp:23978
@ RX_scgtu
Definition allins.hpp:23971
@ RX_scne
Definition allins.hpp:23968
@ RX_bmn
Definition allins.hpp:23876
@ RX_bfmov
Definition allins.hpp:23852
@ RX_revl
Definition allins.hpp:23949
@ RX_bsr
Definition allins.hpp:23886
@ RX_sub
Definition allins.hpp:23993
@ RX_dneg
Definition allins.hpp:24011
@ RX_maclo
Definition allins.hpp:23910
@ RX_stnz
Definition allins.hpp:23991
@ RX_popm
Definition allins.hpp:23941
@ RX_emulu
Definition allins.hpp:23896
@ RX_pushm
Definition allins.hpp:23944
@ RX_rts
Definition allins.hpp:23960
@ RX_adc
Definition allins.hpp:23846
@ RX_rotr
Definition allins.hpp:23955
@ RX_bgtu
Definition allins.hpp:23858
@ RX_dpushm
Definition allins.hpp:24013
@ RX_stz
Definition allins.hpp:23992
@ RX_dtof
Definition allins.hpp:24017
@ RX_rorc
Definition allins.hpp:23953
@ RX_bmeq
Definition allins.hpp:23869
@ RX_utod
Definition allins.hpp:24025
@ RX_scleu
Definition allins.hpp:23972
@ RX_sclt
Definition allins.hpp:23976
@ RX_satr
Definition allins.hpp:23963
@ RX_bnot
Definition allins.hpp:23884
@ RX_div
Definition allins.hpp:23890
@ RX_neg
Definition allins.hpp:23935
@ RX_brk
Definition allins.hpp:23850
@ RX_movli
Definition allins.hpp:23916
@ RX_emaca
Definition allins.hpp:23892
@ RX_scgeu
Definition allins.hpp:23969
@ RX_bltu
Definition allins.hpp:23857
@ RX_shlr
Definition allins.hpp:23986
@ RX_bleu
Definition allins.hpp:23859
@ RX_rotl
Definition allins.hpp:23954
@ RX_dmul
Definition allins.hpp:24010
@ RX_ble
Definition allins.hpp:23865
@ ST7_rrc
Definition allins.hpp:9956
@ ST7_iret
Definition allins.hpp:9923
@ ST7_wfi
Definition allins.hpp:9969
@ ST7_pop
Definition allins.hpp:9950
@ ST7_callr
Definition allins.hpp:9917
@ ST7_last
Definition allins.hpp:9972
@ ST7_mul
Definition allins.hpp:9946
@ ST7_jrt
Definition allins.hpp:9927
@ ST7_jrh
Definition allins.hpp:9931
@ ST7_push
Definition allins.hpp:9951
@ ST7_rlc
Definition allins.hpp:9955
@ ST7_trap
Definition allins.hpp:9968
@ ST7_null
Definition allins.hpp:9906
@ ST7_neg
Definition allins.hpp:9947
@ ST7_swap
Definition allins.hpp:9966
@ ST7_cp
Definition allins.hpp:9919
@ ST7_rim
Definition allins.hpp:9954
@ ST7_nop
Definition allins.hpp:9948
@ ST7_dec
Definition allins.hpp:9921
@ ST7_jp
Definition allins.hpp:9925
@ ST7_sub
Definition allins.hpp:9965
@ ST7_xor
Definition allins.hpp:9970
@ ST7_sll
Definition allins.hpp:9962
@ ST7_scf
Definition allins.hpp:9959
@ ST7_clr
Definition allins.hpp:9918
@ ST7_jrpl
Definition allins.hpp:9936
@ ST7_and
Definition allins.hpp:9910
@ ST7_tnz
Definition allins.hpp:9967
@ ST7_bset
Definition allins.hpp:9913
@ ST7_jrule
Definition allins.hpp:9944
@ ST7_rsp
Definition allins.hpp:9957
@ ST7_or
Definition allins.hpp:9949
@ ST7_jrnm
Definition allins.hpp:9934
@ ST7_adc
Definition allins.hpp:9908
@ ST7_ld
Definition allins.hpp:9945
@ ST7_jrult
Definition allins.hpp:9941
@ ST7_jrmi
Definition allins.hpp:9935
@ ST7_inc
Definition allins.hpp:9924
@ ST7_sla
Definition allins.hpp:9961
@ ST7_ret
Definition allins.hpp:9953
@ ST7_cpl
Definition allins.hpp:9920
@ ST7_jrf
Definition allins.hpp:9928
@ ST7_btjt
Definition allins.hpp:9915
@ ST7_jril
Definition allins.hpp:9930
@ ST7_call
Definition allins.hpp:9916
@ ST7_sim
Definition allins.hpp:9960
@ ST7_sra
Definition allins.hpp:9964
@ ST7_jruge
Definition allins.hpp:9942
@ ST7_jrne
Definition allins.hpp:9938
@ ST7_rcf
Definition allins.hpp:9952
@ ST7_jrih
Definition allins.hpp:9929
@ ST7_sbc
Definition allins.hpp:9958
@ ST7_jrugt
Definition allins.hpp:9943
@ ST7_srl
Definition allins.hpp:9963
@ ST7_jreq
Definition allins.hpp:9937
@ ST7_bcp
Definition allins.hpp:9911
@ ST7_jrnh
Definition allins.hpp:9932
@ ST7_halt
Definition allins.hpp:9922
@ ST7_jra
Definition allins.hpp:9926
@ ST7_jrm
Definition allins.hpp:9933
@ ST7_jrnc
Definition allins.hpp:9940
@ ST7_jrc
Definition allins.hpp:9939
@ ST7_btjf
Definition allins.hpp:9914
@ ST7_add
Definition allins.hpp:9909
@ ST7_bres
Definition allins.hpp:9912
@ NEC_78K_0_ret
Definition allins.hpp:12827
@ NEC_78K_0_ror
Definition allins.hpp:12805
@ NEC_78K_0_clr1
Definition allins.hpp:12820
@ NEC_78K_0_xch
Definition allins.hpp:12780
@ NEC_78K_0_xor1
Definition allins.hpp:12818
@ NEC_78K_0_xchw
Definition allins.hpp:12782
@ NEC_78K_0_callf
Definition allins.hpp:12824
@ NEC_78K_0_subw
Definition allins.hpp:12794
@ NEC_78K_0_rolc
Definition allins.hpp:12808
@ NEC_78K_0_adjba
Definition allins.hpp:12812
@ NEC_78K_0_pop
Definition allins.hpp:12832
@ NEC_78K_0_bc
Definition allins.hpp:12835
@ NEC_78K_0_and1
Definition allins.hpp:12816
@ NEC_78K_0_rol
Definition allins.hpp:12806
@ NEC_78K_0_sub
Definition allins.hpp:12786
@ NEC_78K_0_mov
Definition allins.hpp:12779
@ NEC_78K_0_decw
Definition allins.hpp:12803
@ NEC_78K_0_rol4
Definition allins.hpp:12810
@ NEC_78K_0_reti
Definition allins.hpp:12829
@ NEC_78K_0_or
Definition allins.hpp:12789
@ NEC_78K_0_STOP
Definition allins.hpp:12851
@ NEC_78K_0_or1
Definition allins.hpp:12817
@ NEC_78K_0_retb
Definition allins.hpp:12828
@ NEC_78K_0_mulu
Definition allins.hpp:12797
@ NEC_78K_0_bz
Definition allins.hpp:12837
@ NEC_78K_0_set1
Definition allins.hpp:12819
@ NEC_78K_0_incw
Definition allins.hpp:12802
@ NEC_78K_0_callt
Definition allins.hpp:12825
@ NEC_78K_0_divuw
Definition allins.hpp:12798
@ NEC_78K_0_cmpw
Definition allins.hpp:12795
@ NEC_78K_0_xor
Definition allins.hpp:12790
@ NEC_78K_0_ror4
Definition allins.hpp:12809
@ NEC_78K_0_add
Definition allins.hpp:12784
@ NEC_78K_0_call
Definition allins.hpp:12823
@ NEC_78K_0_addc
Definition allins.hpp:12785
@ NEC_78K_0_addw
Definition allins.hpp:12793
@ NEC_78K_0_bf
Definition allins.hpp:12840
@ NEC_78K_0_push
Definition allins.hpp:12831
@ NEC_78K_0_last
Definition allins.hpp:12854
@ NEC_78K_0_bnz
Definition allins.hpp:12838
@ NEC_78K_0_DI
Definition allins.hpp:12849
@ NEC_78K_0_bnc
Definition allins.hpp:12836
@ NEC_78K_0_nop
Definition allins.hpp:12847
@ NEC_78K_0_adjbs
Definition allins.hpp:12813
@ NEC_78K_0_brk
Definition allins.hpp:12826
@ NEC_78K_0_HALT
Definition allins.hpp:12850
@ NEC_78K_0_mov1
Definition allins.hpp:12815
@ NEC_78K_0_not1
Definition allins.hpp:12821
@ NEC_78K_0_sel
Definition allins.hpp:12844
@ NEC_78K_0_inc
Definition allins.hpp:12800
@ NEC_78K_0_rorc
Definition allins.hpp:12807
@ NEC_78K_0_movw
Definition allins.hpp:12781
@ NEC_78K_0_bt
Definition allins.hpp:12839
@ NEC_78K_0_cmp
Definition allins.hpp:12791
@ NEC_78K_0_btclr
Definition allins.hpp:12841
@ NEC_78K_0_and
Definition allins.hpp:12788
@ NEC_78K_0_null
Definition allins.hpp:12777
@ NEC_78K_0_dbnz
Definition allins.hpp:12842
@ NEC_78K_0_subc
Definition allins.hpp:12787
@ NEC_78K_0_EI
Definition allins.hpp:12848
@ NEC_78K_0_dec
Definition allins.hpp:12801
@ NEC_78K_0_br
Definition allins.hpp:12834
@ TRIMEDIA_allocx
Definition allins.hpp:12719
@ TRIMEDIA_ild16
Definition allins.hpp:12728
@ TRIMEDIA_st32d
Definition allins.hpp:12737
@ TRIMEDIA_fmulflags
Definition allins.hpp:12671
@ TRIMEDIA_fgeq
Definition allins.hpp:12674
@ TRIMEDIA_uclipu
Definition allins.hpp:12621
@ TRIMEDIA_uld16r
Definition allins.hpp:12705
@ TRIMEDIA_quadavg
Definition allins.hpp:12618
@ TRIMEDIA_uld16d
Definition allins.hpp:12704
@ TRIMEDIA_ume8uu
Definition allins.hpp:12576
@ TRIMEDIA_iclipi
Definition allins.hpp:12619
@ TRIMEDIA_fsign
Definition allins.hpp:12680
@ TRIMEDIA_null
Definition allins.hpp:12548
@ TRIMEDIA_ifloat
Definition allins.hpp:12570
@ TRIMEDIA_fsignflags
Definition allins.hpp:12681
@ TRIMEDIA_ugtri
Definition allins.hpp:12584
@ TRIMEDIA_uleqi
Definition allins.hpp:12593
@ TRIMEDIA_umin
Definition allins.hpp:12759
@ TRIMEDIA_ufloat
Definition allins.hpp:12662
@ TRIMEDIA_ieql
Definition allins.hpp:12587
@ TRIMEDIA_st32
Definition allins.hpp:12736
@ TRIMEDIA_ueql
Definition allins.hpp:12754
@ TRIMEDIA_ufixrzflags
Definition allins.hpp:12661
@ TRIMEDIA_writepcsw
Definition allins.hpp:12689
@ TRIMEDIA_readspc
Definition allins.hpp:12685
@ TRIMEDIA_ld32r
Definition allins.hpp:12707
@ TRIMEDIA_flesflags
Definition allins.hpp:12756
@ TRIMEDIA_ubytesel
Definition allins.hpp:12605
@ TRIMEDIA_ibytesel
Definition allins.hpp:12606
@ TRIMEDIA_zex8
Definition allins.hpp:12743
@ TRIMEDIA_bitand
Definition allins.hpp:12566
@ TRIMEDIA_ld32
Definition allins.hpp:12731
@ TRIMEDIA_ilesi
Definition allins.hpp:12552
@ TRIMEDIA_ufixrz
Definition allins.hpp:12660
@ TRIMEDIA_dspumul
Definition allins.hpp:12670
@ TRIMEDIA_pref
Definition allins.hpp:12732
@ TRIMEDIA_iflip
Definition allins.hpp:12622
@ TRIMEDIA_faddflags
Definition allins.hpp:12647
@ TRIMEDIA_ufloatflags
Definition allins.hpp:12663
@ TRIMEDIA_pref16x
Definition allins.hpp:12715
@ TRIMEDIA_ifixrzflags
Definition allins.hpp:12664
@ TRIMEDIA_lsr
Definition allins.hpp:12635
@ TRIMEDIA_igeq
Definition allins.hpp:12564
@ TRIMEDIA_feqlflags
Definition allins.hpp:12677
@ TRIMEDIA_ules
Definition allins.hpp:12750
@ TRIMEDIA_ld32d
Definition allins.hpp:12557
@ TRIMEDIA_jmpi
Definition allins.hpp:12693
@ TRIMEDIA_ijmpt
Definition allins.hpp:12692
@ TRIMEDIA_iles
Definition allins.hpp:12748
@ TRIMEDIA_ugeqi
Definition allins.hpp:12586
@ TRIMEDIA_pack16lsb
Definition allins.hpp:12603
@ TRIMEDIA_quadumin
Definition allins.hpp:12624
@ TRIMEDIA_iabs
Definition allins.hpp:12727
@ TRIMEDIA_ineqi
Definition allins.hpp:12553
@ TRIMEDIA_writespc
Definition allins.hpp:12687
@ TRIMEDIA_st16
Definition allins.hpp:12734
@ TRIMEDIA_fadd
Definition allins.hpp:12572
@ TRIMEDIA_dualiclipi
Definition allins.hpp:12626
@ TRIMEDIA_jmpt
Definition allins.hpp:12691
@ TRIMEDIA_ild16r
Definition allins.hpp:12702
@ TRIMEDIA_ileqi
Definition allins.hpp:12592
@ TRIMEDIA_fdivflags
Definition allins.hpp:12644
@ TRIMEDIA_jmpf
Definition allins.hpp:12695
@ TRIMEDIA_roli
Definition allins.hpp:12637
@ TRIMEDIA_asri
Definition allins.hpp:12560
@ TRIMEDIA_bitxor
Definition allins.hpp:12598
@ TRIMEDIA_mergedual16lsb
Definition allins.hpp:12642
@ TRIMEDIA_funshift2
Definition allins.hpp:12639
@ TRIMEDIA_fsub
Definition allins.hpp:12648
@ TRIMEDIA_igeqi
Definition allins.hpp:12551
@ TRIMEDIA_ifir8ui
Definition allins.hpp:12630
@ TRIMEDIA_quadumax
Definition allins.hpp:12625
@ TRIMEDIA_allocr
Definition allins.hpp:12718
@ TRIMEDIA_inonzero
Definition allins.hpp:12597
@ TRIMEDIA_ifloatflags
Definition allins.hpp:12665
@ TRIMEDIA_iclr
Definition allins.hpp:12697
@ TRIMEDIA_dspiadd
Definition allins.hpp:12611
@ TRIMEDIA_ild8
Definition allins.hpp:12729
@ TRIMEDIA_nop
Definition allins.hpp:12720
@ TRIMEDIA_ieqli
Definition allins.hpp:12554
@ TRIMEDIA_fgeqflags
Definition allins.hpp:12675
@ TRIMEDIA_h_st8d
Definition allins.hpp:12579
@ TRIMEDIA_imul
Definition allins.hpp:12577
@ TRIMEDIA_st8
Definition allins.hpp:12738
@ TRIMEDIA_fsqrtflags
Definition allins.hpp:12646
@ TRIMEDIA_dspimul
Definition allins.hpp:12669
@ TRIMEDIA_uld16
Definition allins.hpp:12740
@ TRIMEDIA_fneqflags
Definition allins.hpp:12679
@ TRIMEDIA_ufixieeeflags
Definition allins.hpp:12659
@ TRIMEDIA_pack16msb
Definition allins.hpp:12604
@ TRIMEDIA_asl
Definition allins.hpp:12569
@ TRIMEDIA_lsri
Definition allins.hpp:12559
@ TRIMEDIA_h_dspiabs
Definition allins.hpp:12610
@ TRIMEDIA_bitinv
Definition allins.hpp:12600
@ TRIMEDIA_asr
Definition allins.hpp:12568
@ TRIMEDIA_ugtr
Definition allins.hpp:12583
@ TRIMEDIA_fgtrflags
Definition allins.hpp:12673
@ TRIMEDIA_fsubflags
Definition allins.hpp:12649
@ TRIMEDIA_mergelsb
Definition allins.hpp:12607
@ TRIMEDIA_ufir16
Definition allins.hpp:12633
@ TRIMEDIA_quadumulmsb
Definition allins.hpp:12628
@ TRIMEDIA_ijmpf
Definition allins.hpp:12696
@ TRIMEDIA_st16d
Definition allins.hpp:12735
@ TRIMEDIA_ileq
Definition allins.hpp:12749
@ TRIMEDIA_ifixieee
Definition allins.hpp:12656
@ TRIMEDIA_dspuadd
Definition allins.hpp:12612
@ TRIMEDIA_imax
Definition allins.hpp:12574
@ TRIMEDIA_uneqi
Definition allins.hpp:12590
@ TRIMEDIA_uld16x
Definition allins.hpp:12706
@ TRIMEDIA_ident
Definition allins.hpp:12744
@ TRIMEDIA_hicycles
Definition allins.hpp:12683
@ TRIMEDIA_ifir8ii
Definition allins.hpp:12631
@ TRIMEDIA_dcb
Definition allins.hpp:12711
@ TRIMEDIA_ild16x
Definition allins.hpp:12703
@ TRIMEDIA_iavgonep
Definition allins.hpp:12575
@ TRIMEDIA_iadd
Definition allins.hpp:12562
@ TRIMEDIA_isub
Definition allins.hpp:12563
@ TRIMEDIA_lsl
Definition allins.hpp:12760
@ TRIMEDIA_rdstatus
Definition allins.hpp:12710
@ TRIMEDIA_ifloatrz
Definition allins.hpp:12652
@ TRIMEDIA_alloc
Definition allins.hpp:12724
@ TRIMEDIA_ume8ii
Definition allins.hpp:12609
@ TRIMEDIA_dspidualabs
Definition allins.hpp:12726
@ TRIMEDIA_izero
Definition allins.hpp:12596
@ TRIMEDIA_ld32x
Definition allins.hpp:12708
@ TRIMEDIA_packbytes
Definition allins.hpp:12602
@ TRIMEDIA_last
Definition allins.hpp:12763
@ TRIMEDIA_igtri
Definition allins.hpp:12550
@ TRIMEDIA_umulm
Definition allins.hpp:12668
@ TRIMEDIA_ufloatrzflags
Definition allins.hpp:12655
@ TRIMEDIA_sex8
Definition allins.hpp:12733
@ TRIMEDIA_ufloatrz
Definition allins.hpp:12654
@ TRIMEDIA_ineg
Definition allins.hpp:12730
@ TRIMEDIA_ugeq
Definition allins.hpp:12585
@ TRIMEDIA_readdpc
Definition allins.hpp:12684
@ TRIMEDIA_h_st16d
Definition allins.hpp:12580
@ TRIMEDIA_allocd
Definition allins.hpp:12717
@ TRIMEDIA_fles
Definition allins.hpp:12752
@ TRIMEDIA_ufir8uu
Definition allins.hpp:12629
@ TRIMEDIA_ueqli
Definition allins.hpp:12588
@ TRIMEDIA_dspiabs
Definition allins.hpp:12725
@ TRIMEDIA_ifloatrzflags
Definition allins.hpp:12653
@ TRIMEDIA_fsqrt
Definition allins.hpp:12645
@ TRIMEDIA_writedpc
Definition allins.hpp:12688
@ TRIMEDIA_funshift3
Definition allins.hpp:12640
@ TRIMEDIA_ineq
Definition allins.hpp:12589
@ TRIMEDIA_dspusub
Definition allins.hpp:12614
@ TRIMEDIA_imin
Definition allins.hpp:12573
@ TRIMEDIA_pref32x
Definition allins.hpp:12716
@ TRIMEDIA_uimm
Definition allins.hpp:12698
@ TRIMEDIA_fabsval
Definition allins.hpp:12650
@ TRIMEDIA_mergemsb
Definition allins.hpp:12608
@ TRIMEDIA_fleq
Definition allins.hpp:12753
@ TRIMEDIA_fabsvalflags
Definition allins.hpp:12651
@ TRIMEDIA_bitandinv
Definition allins.hpp:12599
@ TRIMEDIA_cycles
Definition allins.hpp:12682
@ TRIMEDIA_imulm
Definition allins.hpp:12667
@ TRIMEDIA_uleq
Definition allins.hpp:12751
@ TRIMEDIA_umul
Definition allins.hpp:12666
@ TRIMEDIA_h_st32d
Definition allins.hpp:12581
@ TRIMEDIA_ifir16
Definition allins.hpp:12632
@ TRIMEDIA_ild8d
Definition allins.hpp:12699
@ TRIMEDIA_ifixrz
Definition allins.hpp:12571
@ TRIMEDIA_carry
Definition allins.hpp:12595
@ TRIMEDIA_dspisub
Definition allins.hpp:12613
@ TRIMEDIA_fgtr
Definition allins.hpp:12672
@ TRIMEDIA_zex16
Definition allins.hpp:12742
@ TRIMEDIA_ild16d
Definition allins.hpp:12556
@ TRIMEDIA_sex16
Definition allins.hpp:12601
@ TRIMEDIA_fleqflags
Definition allins.hpp:12757
@ TRIMEDIA_borrow
Definition allins.hpp:12758
@ TRIMEDIA_uld8r
Definition allins.hpp:12701
@ TRIMEDIA_st8d
Definition allins.hpp:12739
@ TRIMEDIA_isubi
Definition allins.hpp:12582
@ TRIMEDIA_ufixieee
Definition allins.hpp:12658
@ TRIMEDIA_asli
Definition allins.hpp:12561
@ TRIMEDIA_dspidualadd
Definition allins.hpp:12615
@ TRIMEDIA_dinvalid
Definition allins.hpp:12712
@ TRIMEDIA_uld8d
Definition allins.hpp:12558
@ TRIMEDIA_ijmpi
Definition allins.hpp:12694
@ TRIMEDIA_dspuquadaddui
Definition allins.hpp:12623
@ TRIMEDIA_dualasr
Definition allins.hpp:12641
@ TRIMEDIA_uneq
Definition allins.hpp:12755
@ TRIMEDIA_ifixieeeflags
Definition allins.hpp:12657
@ TRIMEDIA_funshift1
Definition allins.hpp:12638
@ TRIMEDIA_fmul
Definition allins.hpp:12578
@ TRIMEDIA_ulesi
Definition allins.hpp:12591
@ TRIMEDIA_uclipi
Definition allins.hpp:12620
@ TRIMEDIA_ild8r
Definition allins.hpp:12700
@ TRIMEDIA_rdtag
Definition allins.hpp:12709
@ TRIMEDIA_dspidualsub
Definition allins.hpp:12616
@ TRIMEDIA_fdiv
Definition allins.hpp:12643
@ TRIMEDIA_prefd
Definition allins.hpp:12713
@ TRIMEDIA_dualuclipi
Definition allins.hpp:12627
@ TRIMEDIA_feql
Definition allins.hpp:12676
@ TRIMEDIA_uld8
Definition allins.hpp:12741
@ TRIMEDIA_curcycles
Definition allins.hpp:12690
@ TRIMEDIA_dspidualmul
Definition allins.hpp:12634
@ TRIMEDIA_h_dspidualabs
Definition allins.hpp:12617
@ TRIMEDIA_prefr
Definition allins.hpp:12714
@ TRIMEDIA_fneq
Definition allins.hpp:12678
@ TRIMEDIA_readpcsw
Definition allins.hpp:12686
@ TRIMEDIA_lsli
Definition allins.hpp:12761
@ TRIMEDIA_rol
Definition allins.hpp:12636
@ TRIMEDIA_bitor
Definition allins.hpp:12567
@ TRIMEDIA_igtr
Definition allins.hpp:12565
@ TRIMEDIA_iaddi
Definition allins.hpp:12555
@ TRIMEDIA_h_iabs
Definition allins.hpp:12594
@ TRICORE_enable
Definition allins.hpp:19382
@ TRICORE_xor32
Definition allins.hpp:19676
@ TRICORE_max_u
Definition allins.hpp:19500
@ TRICORE_ftoin
Definition allins.hpp:19730
@ TRICORE_eq_b
Definition allins.hpp:19384
@ TRICORE_absdif_h
Definition allins.hpp:19301
@ TRICORE_itodf
Definition allins.hpp:19719
@ TRICORE_addsc16_a
Definition allins.hpp:19323
@ TRICORE_tlbprobe_i
Definition allins.hpp:19660
@ TRICORE_mul_u
Definition allins.hpp:19544
@ TRICORE_abss_h
Definition allins.hpp:19305
@ TRICORE_syscall
Definition allins.hpp:19654
@ TRICORE_sh_xor_t
Definition allins.hpp:19617
@ TRICORE_mfdcr
Definition allins.hpp:19737
@ TRICORE_maddrs_h
Definition allins.hpp:19483
@ TRICORE_msubr_h
Definition allins.hpp:19532
@ TRICORE_absdif
Definition allins.hpp:19299
@ TRICORE_abss
Definition allins.hpp:19304
@ TRICORE_xor_eq
Definition allins.hpp:19668
@ TRICORE_crc32l_w
Definition allins.hpp:19702
@ TRICORE_jz16
Definition allins.hpp:19439
@ TRICORE_eqz_a
Definition allins.hpp:19391
@ TRICORE_mulr_h
Definition allins.hpp:19549
@ TRICORE_cadd32
Definition allins.hpp:19349
@ TRICORE_and_ge_u
Definition allins.hpp:19330
@ TRICORE_jl
Definition allins.hpp:19422
@ TRICORE_j16
Definition allins.hpp:19410
@ TRICORE_and_or_t
Definition allins.hpp:19335
@ TRICORE_dvstep
Definition allins.hpp:19380
@ TRICORE_mov16_d
Definition allins.hpp:19512
@ TRICORE_min_hu
Definition allins.hpp:19506
@ TRICORE_ixmin_u
Definition allins.hpp:19409
@ TRICORE_loop16
Definition allins.hpp:19461
@ TRICORE_sh32
Definition allins.hpp:19619
@ TRICORE_eq32
Definition allins.hpp:19388
@ TRICORE_and_andn_t
Definition allins.hpp:19327
@ TRICORE_unpack
Definition allins.hpp:19663
@ TRICORE_swapmsk_w
Definition allins.hpp:19698
@ TRICORE_cachea_w_vm
Definition allins.hpp:19732
@ TRICORE_jne_a
Definition allins.hpp:19429
@ TRICORE_msub
Definition allins.hpp:19519
@ TRICORE_xnor
Definition allins.hpp:19666
@ TRICORE_nop16
Definition allins.hpp:19558
@ TRICORE_msub_h
Definition allins.hpp:19521
@ TRICORE_cmp_f
Definition allins.hpp:19364
@ TRICORE_andn
Definition allins.hpp:19339
@ TRICORE_ld32_bu
Definition allins.hpp:19454
@ TRICORE_div_u
Definition allins.hpp:19683
@ TRICORE_mov_u
Definition allins.hpp:19508
@ TRICORE_maddsurs_h
Definition allins.hpp:19493
@ TRICORE_nop32
Definition allins.hpp:19559
@ TRICORE_subs32
Definition allins.hpp:19650
@ TRICORE_ld16_bu
Definition allins.hpp:19450
@ TRICORE_ld32_w
Definition allins.hpp:19456
@ TRICORE_sat32_hu
Definition allins.hpp:19600
@ TRICORE_mulm_h
Definition allins.hpp:19547
@ TRICORE_or_andn_t
Definition allins.hpp:19564
@ TRICORE_dftof
Definition allins.hpp:19724
@ TRICORE_or_or_t
Definition allins.hpp:19572
@ TRICORE_min_h
Definition allins.hpp:19505
@ TRICORE_ltodf
Definition allins.hpp:19715
@ TRICORE_msubr_q
Definition allins.hpp:19533
@ TRICORE_mtdcr
Definition allins.hpp:19738
@ TRICORE_st_t
Definition allins.hpp:19627
@ TRICORE_subs16
Definition allins.hpp:19649
@ TRICORE_cachei_wi
Definition allins.hpp:19681
@ TRICORE_abs
Definition allins.hpp:19296
@ TRICORE_call32
Definition allins.hpp:19353
@ TRICORE_and32
Definition allins.hpp:19338
@ TRICORE_sh_xnor_t
Definition allins.hpp:19616
@ TRICORE_crc32_b
Definition allins.hpp:19701
@ TRICORE_rfe32
Definition allins.hpp:19585
@ TRICORE_subs_h
Definition allins.hpp:19646
@ TRICORE_msubrs_h
Definition allins.hpp:19534
@ TRICORE_rsub16
Definition allins.hpp:19589
@ TRICORE_xor_t
Definition allins.hpp:19674
@ TRICORE_min_df
Definition allins.hpp:19748
@ TRICORE_jned
Definition allins.hpp:19432
@ TRICORE_rfm
Definition allins.hpp:19586
@ TRICORE_stlcx
Definition allins.hpp:19636
@ TRICORE_or_and_t
Definition allins.hpp:19563
@ TRICORE_madds_q
Definition allins.hpp:19487
@ TRICORE_xor_lt
Definition allins.hpp:19671
@ TRICORE_st16_b
Definition allins.hpp:19629
@ TRICORE_ji32
Definition allins.hpp:19421
@ TRICORE_stucx
Definition allins.hpp:19637
@ TRICORE_xor_ge_u
Definition allins.hpp:19670
@ TRICORE_absdifs
Definition allins.hpp:19302
@ TRICORE_mul_h
Definition allins.hpp:19542
@ TRICORE_msubadms_h
Definition allins.hpp:19526
@ TRICORE_fcalli
Definition allins.hpp:19686
@ TRICORE_sh_lt_u
Definition allins.hpp:19610
@ TRICORE_pack
Definition allins.hpp:19578
@ TRICORE_mov32_d
Definition allins.hpp:19516
@ TRICORE_null
Definition allins.hpp:19295
@ TRICORE_dvinit_u
Definition allins.hpp:19379
@ TRICORE_lea
Definition allins.hpp:19460
@ TRICORE_loopu
Definition allins.hpp:19463
@ TRICORE_subx
Definition allins.hpp:19651
@ TRICORE_ultodf
Definition allins.hpp:19718
@ TRICORE_st_d
Definition allins.hpp:19624
@ TRICORE_tlbmap
Definition allins.hpp:19658
@ TRICORE_jz16_t
Definition allins.hpp:19441
@ TRICORE_disable
Definition allins.hpp:19370
@ TRICORE_cmov16
Definition allins.hpp:19362
@ TRICORE_dvadj
Definition allins.hpp:19373
@ TRICORE_eq_a
Definition allins.hpp:19383
@ TRICORE_ld_dd
Definition allins.hpp:19754
@ TRICORE_lha
Definition allins.hpp:19706
@ TRICORE_bsplit
Definition allins.hpp:19344
@ TRICORE_rsubs_u
Definition allins.hpp:19592
@ TRICORE_or16
Definition allins.hpp:19574
@ TRICORE_addc
Definition allins.hpp:19313
@ TRICORE_debug16
Definition allins.hpp:19367
@ TRICORE_jla
Definition allins.hpp:19423
@ TRICORE_min_b
Definition allins.hpp:19503
@ TRICORE_caddn16
Definition allins.hpp:19350
@ TRICORE_max
Definition allins.hpp:19495
@ TRICORE_lt_a
Definition allins.hpp:19464
@ TRICORE_ftohp
Definition allins.hpp:19707
@ TRICORE_jlt_u
Definition allins.hpp:19427
@ TRICORE_sh_nand_t
Definition allins.hpp:19611
@ TRICORE_add32
Definition allins.hpp:19311
@ TRICORE_call16
Definition allins.hpp:19352
@ TRICORE_ret16
Definition allins.hpp:19582
@ TRICORE_bisr32
Definition allins.hpp:19342
@ TRICORE_ftoiz
Definition allins.hpp:19689
@ TRICORE_mul_q
Definition allins.hpp:19543
@ TRICORE_sh_orn_t
Definition allins.hpp:19615
@ TRICORE_rslcx
Definition allins.hpp:19587
@ TRICORE_sh_or_t
Definition allins.hpp:19614
@ TRICORE_msubadr_h
Definition allins.hpp:19527
@ TRICORE_qseed_f
Definition allins.hpp:19581
@ TRICORE_maddsum_h
Definition allins.hpp:19490
@ TRICORE_sh_and_t
Definition allins.hpp:19603
@ TRICORE_and_lt_u
Definition allins.hpp:19332
@ TRICORE_jz16_a
Definition allins.hpp:19440
@ TRICORE_ftoi
Definition allins.hpp:19394
@ TRICORE_muls
Definition allins.hpp:19551
@ TRICORE_msubs
Definition allins.hpp:19536
@ TRICORE_orn_t
Definition allins.hpp:19577
@ TRICORE_ld32_h
Definition allins.hpp:19455
@ TRICORE_mov32_aa
Definition allins.hpp:19515
@ TRICORE_adds_u
Definition allins.hpp:19320
@ TRICORE_and_ne
Definition allins.hpp:19333
@ TRICORE_maddms_h
Definition allins.hpp:19480
@ TRICORE_tlbdemap
Definition allins.hpp:19655
@ TRICORE_or_ge
Definition allins.hpp:19566
@ TRICORE_sh_eq
Definition allins.hpp:19605
@ TRICORE_sub16_a
Definition allins.hpp:19642
@ TRICORE_sh16
Definition allins.hpp:19618
@ TRICORE_xor_ne
Definition allins.hpp:19673
@ TRICORE_mulr_q
Definition allins.hpp:19550
@ TRICORE_jeq32
Definition allins.hpp:19415
@ TRICORE_msubadm_h
Definition allins.hpp:19525
@ TRICORE_jz32_a
Definition allins.hpp:19442
@ TRICORE_and16
Definition allins.hpp:19337
@ TRICORE_dftoul
Definition allins.hpp:19722
@ TRICORE_mtcr
Definition allins.hpp:19540
@ TRICORE_jne32
Definition allins.hpp:19431
@ TRICORE_sat16_b
Definition allins.hpp:19593
@ TRICORE_addih
Definition allins.hpp:19315
@ TRICORE_nand
Definition allins.hpp:19553
@ TRICORE_utodf
Definition allins.hpp:19717
@ TRICORE_mov16
Definition allins.hpp:19509
@ TRICORE_msubm_h
Definition allins.hpp:19530
@ TRICORE_min_bu
Definition allins.hpp:19504
@ TRICORE_and_and_t
Definition allins.hpp:19326
@ TRICORE_dvinit_h
Definition allins.hpp:19377
@ TRICORE_adds
Definition allins.hpp:19317
@ TRICORE_nez_a
Definition allins.hpp:19557
@ TRICORE_dftol
Definition allins.hpp:19723
@ TRICORE_subc
Definition allins.hpp:19645
@ TRICORE_nand_t
Definition allins.hpp:19554
@ TRICORE_tlbflush_a
Definition allins.hpp:19656
@ TRICORE_sub_b
Definition allins.hpp:19638
@ TRICORE_rstv
Definition allins.hpp:19588
@ TRICORE_swap_w
Definition allins.hpp:19653
@ TRICORE_clo
Definition allins.hpp:19356
@ TRICORE_add_f
Definition allins.hpp:19307
@ TRICORE_msubms_h
Definition allins.hpp:19531
@ TRICORE_sha32
Definition allins.hpp:19622
@ TRICORE_mul_df
Definition allins.hpp:19741
@ TRICORE_orn
Definition allins.hpp:19576
@ TRICORE_madd_u
Definition allins.hpp:19478
@ TRICORE_maddr_q
Definition allins.hpp:19482
@ TRICORE_neg_df
Definition allins.hpp:19749
@ TRICORE_xnor_t
Definition allins.hpp:19667
@ TRICORE_ld_d
Definition allins.hpp:19445
@ TRICORE_st32_b
Definition allins.hpp:19633
@ TRICORE_st32_w
Definition allins.hpp:19635
@ TRICORE_sub32_a
Definition allins.hpp:19644
@ TRICORE_cmovn16
Definition allins.hpp:19363
@ TRICORE_div_df
Definition allins.hpp:19740
@ TRICORE_andn_t
Definition allins.hpp:19340
@ TRICORE_jge_u
Definition allins.hpp:19417
@ TRICORE_maddrs_q
Definition allins.hpp:19484
@ TRICORE_jnz32_t
Definition allins.hpp:19438
@ TRICORE_mul_f
Definition allins.hpp:19541
@ TRICORE_maddsur_h
Definition allins.hpp:19492
@ TRICORE_trapinv
Definition allins.hpp:19713
@ TRICORE_muls_u
Definition allins.hpp:19552
@ TRICORE_jeq16
Definition allins.hpp:19414
@ TRICORE_ld32_a
Definition allins.hpp:19453
@ TRICORE_adds16
Definition allins.hpp:19321
@ TRICORE_add16_a
Definition allins.hpp:19310
@ TRICORE_fret32
Definition allins.hpp:19688
@ TRICORE_sub32
Definition allins.hpp:19643
@ TRICORE_ld_q
Definition allins.hpp:19448
@ TRICORE_sub16
Definition allins.hpp:19641
@ TRICORE_adds_h
Definition allins.hpp:19318
@ TRICORE_or_lt
Definition allins.hpp:19568
@ TRICORE_utof
Definition allins.hpp:19665
@ TRICORE_updfl
Definition allins.hpp:19664
@ TRICORE_addx
Definition allins.hpp:19325
@ TRICORE_not16
Definition allins.hpp:19561
@ TRICORE_min_u
Definition allins.hpp:19507
@ TRICORE_or_eq
Definition allins.hpp:19565
@ TRICORE_dvstep_u
Definition allins.hpp:19381
@ TRICORE_lt_bu
Definition allins.hpp:19466
@ TRICORE_wait
Definition allins.hpp:19696
@ TRICORE_div64_u
Definition allins.hpp:19756
@ TRICORE_ld_da
Definition allins.hpp:19446
@ TRICORE_fret16
Definition allins.hpp:19687
@ TRICORE_fcalla
Definition allins.hpp:19685
@ TRICORE_svlcx
Definition allins.hpp:19652
@ TRICORE_st32_h
Definition allins.hpp:19634
@ TRICORE_mfcr
Definition allins.hpp:19501
@ TRICORE_jne16
Definition allins.hpp:19430
@ TRICORE_addi
Definition allins.hpp:19314
@ TRICORE_jnz16
Definition allins.hpp:19434
@ TRICORE_restore
Definition allins.hpp:19692
@ TRICORE_lt32
Definition allins.hpp:19473
@ TRICORE_jltz16
Definition allins.hpp:19428
@ TRICORE_subs_u
Definition allins.hpp:19648
@ TRICORE_st16_a
Definition allins.hpp:19628
@ TRICORE_maddm_h
Definition allins.hpp:19479
@ TRICORE_ge
Definition allins.hpp:19397
@ TRICORE_rem64_u
Definition allins.hpp:19759
@ TRICORE_tlbprobe_a
Definition allins.hpp:19659
@ TRICORE_nor_t
Definition allins.hpp:19560
@ TRICORE_st32_a
Definition allins.hpp:19632
@ TRICORE_dftoiz
Definition allins.hpp:19729
@ TRICORE_ge_u
Definition allins.hpp:19399
@ TRICORE_debug32
Definition allins.hpp:19368
@ TRICORE_dvinit_bu
Definition allins.hpp:19376
@ TRICORE_msubad_h
Definition allins.hpp:19524
@ TRICORE_cmp_df
Definition allins.hpp:19739
@ TRICORE_lsync
Definition allins.hpp:19712
@ TRICORE_dftolz
Definition allins.hpp:19726
@ TRICORE_sat32_b
Definition allins.hpp:19597
@ TRICORE_cadd16
Definition allins.hpp:19348
@ TRICORE_abs_b
Definition allins.hpp:19297
@ TRICORE_sub_h
Definition allins.hpp:19640
@ TRICORE_ixmax_u
Definition allins.hpp:19407
@ TRICORE_clz
Definition allins.hpp:19360
@ TRICORE_add_b
Definition allins.hpp:19306
@ TRICORE_eq_h
Definition allins.hpp:19385
@ TRICORE_ixmax
Definition allins.hpp:19406
@ TRICORE_div64
Definition allins.hpp:19757
@ TRICORE_ji16
Definition allins.hpp:19420
@ TRICORE_ja
Definition allins.hpp:19412
@ TRICORE_calla
Definition allins.hpp:19354
@ TRICORE_abs_f
Definition allins.hpp:19752
@ TRICORE_rem64
Definition allins.hpp:19758
@ TRICORE_sh_h
Definition allins.hpp:19608
@ TRICORE_nor32
Definition allins.hpp:19562
@ TRICORE_jge
Definition allins.hpp:19416
@ TRICORE_msub_u
Definition allins.hpp:19523
@ TRICORE_madds
Definition allins.hpp:19485
@ TRICORE_jlez16
Definition allins.hpp:19424
@ TRICORE_madd_q
Definition allins.hpp:19477
@ TRICORE_trapv
Definition allins.hpp:19662
@ TRICORE_eqany_b
Definition allins.hpp:19389
@ TRICORE_add16
Definition allins.hpp:19309
@ TRICORE_fcall
Definition allins.hpp:19684
@ TRICORE_jnz32_a
Definition allins.hpp:19437
@ TRICORE_jli
Definition allins.hpp:19425
@ TRICORE_mulms_h
Definition allins.hpp:19548
@ TRICORE_lt_w
Definition allins.hpp:19470
@ TRICORE_qseed_df
Definition allins.hpp:19761
@ TRICORE_mov32_a
Definition allins.hpp:19514
@ TRICORE_calli16
Definition allins.hpp:19763
@ TRICORE_absdif_b
Definition allins.hpp:19300
@ TRICORE_sh_andn_t
Definition allins.hpp:19604
@ TRICORE_madds_h
Definition allins.hpp:19486
@ TRICORE_sat32_bu
Definition allins.hpp:19598
@ TRICORE_maddsu_h
Definition allins.hpp:19489
@ TRICORE_jnz16_a
Definition allins.hpp:19435
@ TRICORE_msubs_u
Definition allins.hpp:19539
@ TRICORE_rfe16
Definition allins.hpp:19584
@ TRICORE_ftou
Definition allins.hpp:19396
@ TRICORE_cls
Definition allins.hpp:19358
@ TRICORE_lducx
Definition allins.hpp:19459
@ TRICORE_and_ge
Definition allins.hpp:19329
@ TRICORE_ldmst
Definition allins.hpp:19458
@ TRICORE_and_lt
Definition allins.hpp:19331
@ TRICORE_st_da
Definition allins.hpp:19625
@ TRICORE_extr
Definition allins.hpp:19392
@ TRICORE_addsc32_a
Definition allins.hpp:19324
@ TRICORE_and_t
Definition allins.hpp:19336
@ TRICORE_add_df
Definition allins.hpp:19744
@ TRICORE_dftou
Definition allins.hpp:19725
@ TRICORE_sat16_bu
Definition allins.hpp:19594
@ TRICORE_sub_f
Definition allins.hpp:19639
@ TRICORE_mov32
Definition allins.hpp:19513
@ TRICORE_max_f
Definition allins.hpp:19750
@ TRICORE_rsub32
Definition allins.hpp:19590
@ TRICORE_dftoulz
Definition allins.hpp:19728
@ TRICORE_ld16_w
Definition allins.hpp:19452
@ TRICORE_rfh
Definition allins.hpp:19711
@ TRICORE_jlt
Definition allins.hpp:19426
@ TRICORE_shuffle
Definition allins.hpp:19704
@ TRICORE_crc32
Definition allins.hpp:19695
@ TRICORE_bmerge
Definition allins.hpp:19343
@ TRICORE_shas
Definition allins.hpp:19623
@ TRICORE_rsubs
Definition allins.hpp:19591
@ TRICORE_madd
Definition allins.hpp:19474
@ TRICORE_jri
Definition allins.hpp:19762
@ TRICORE_max_df
Definition allins.hpp:19745
@ TRICORE_itof
Definition allins.hpp:19405
@ TRICORE_ld_hu
Definition allins.hpp:19447
@ TRICORE_parity
Definition allins.hpp:19579
@ TRICORE_calli
Definition allins.hpp:19355
@ TRICORE_ixmin
Definition allins.hpp:19408
@ TRICORE_max_h
Definition allins.hpp:19498
@ TRICORE_eq16
Definition allins.hpp:19387
@ TRICORE_hptof
Definition allins.hpp:19708
@ TRICORE_mov16_aa
Definition allins.hpp:19511
@ TRICORE_st_dd
Definition allins.hpp:19755
@ TRICORE_jgtz16
Definition allins.hpp:19419
@ TRICORE_ftoq31
Definition allins.hpp:19395
@ TRICORE_dvinit
Definition allins.hpp:19374
@ TRICORE_or_t
Definition allins.hpp:19573
@ TRICORE_cls_h
Definition allins.hpp:19359
@ TRICORE_msub_df
Definition allins.hpp:19747
@ TRICORE_max_hu
Definition allins.hpp:19499
@ TRICORE_trapsv
Definition allins.hpp:19661
@ TRICORE_ge_a
Definition allins.hpp:19398
@ TRICORE_madd_df
Definition allins.hpp:19746
@ TRICORE_max_bu
Definition allins.hpp:19497
@ TRICORE_dvinit_b
Definition allins.hpp:19375
@ TRICORE_abs_h
Definition allins.hpp:19298
@ TRICORE_seln
Definition allins.hpp:19602
@ TRICORE_neg_f
Definition allins.hpp:19751
@ TRICORE_jeq_a
Definition allins.hpp:19413
@ TRICORE_msubrs_q
Definition allins.hpp:19535
@ TRICORE_sat16_h
Definition allins.hpp:19595
@ TRICORE_eqany_h
Definition allins.hpp:19390
@ TRICORE_sh_nor_t
Definition allins.hpp:19613
@ TRICORE_dextr
Definition allins.hpp:19369
@ TRICORE_absdifs_h
Definition allins.hpp:19303
@ TRICORE_msubadrs_h
Definition allins.hpp:19528
@ TRICORE_lt_hu
Definition allins.hpp:19468
@ TRICORE_last
Definition allins.hpp:19765
@ TRICORE_csub
Definition allins.hpp:19365
@ TRICORE_msubads_h
Definition allins.hpp:19529
@ TRICORE_madd_f
Definition allins.hpp:19475
@ TRICORE_mul32
Definition allins.hpp:19546
@ TRICORE_msubs_q
Definition allins.hpp:19538
@ TRICORE_cachea_wi_vm
Definition allins.hpp:19733
@ TRICORE_sha_h
Definition allins.hpp:19620
@ TRICORE_dftoin
Definition allins.hpp:19720
@ TRICORE_sat32_h
Definition allins.hpp:19599
@ TRICORE_dftoi
Definition allins.hpp:19721
@ TRICORE_msubs_h
Definition allins.hpp:19537
@ TRICORE_add32_a
Definition allins.hpp:19312
@ TRICORE_dsync
Definition allins.hpp:19372
@ TRICORE_subs_hu
Definition allins.hpp:19647
@ TRICORE_or32
Definition allins.hpp:19575
@ TRICORE_or_lt_u
Definition allins.hpp:19569
@ TRICORE_clo_h
Definition allins.hpp:19357
@ TRICORE_cmpswap_w
Definition allins.hpp:19697
@ TRICORE_and_nor_t
Definition allins.hpp:19334
@ TRICORE_movh
Definition allins.hpp:19517
@ TRICORE_popcnt_w
Definition allins.hpp:19705
@ TRICORE_tlbflush_b
Definition allins.hpp:19657
@ TRICORE_ld_b
Definition allins.hpp:19444
@ TRICORE_min_f
Definition allins.hpp:19753
@ TRICORE_or_nor_t
Definition allins.hpp:19571
@ TRICORE_lt_b
Definition allins.hpp:19465
@ TRICORE_sh_ge
Definition allins.hpp:19606
@ TRICORE_lt_u
Definition allins.hpp:19469
@ TRICORE_cachea_i_vm
Definition allins.hpp:19731
@ TRICORE_maddsums_h
Definition allins.hpp:19491
@ TRICORE_insert
Definition allins.hpp:19402
@ TRICORE_j32
Definition allins.hpp:19411
@ TRICORE_cachea_i
Definition allins.hpp:19345
@ TRICORE_lt_h
Definition allins.hpp:19467
@ TRICORE_bisr16
Definition allins.hpp:19341
@ TRICORE_xor_lt_u
Definition allins.hpp:19672
@ TRICORE_cachei_w_vm
Definition allins.hpp:19735
@ TRICORE_st16_w
Definition allins.hpp:19631
@ TRICORE_jz32_t
Definition allins.hpp:19443
@ TRICORE_div_f
Definition allins.hpp:19371
@ TRICORE_min
Definition allins.hpp:19502
@ TRICORE_maddsus_h
Definition allins.hpp:19494
@ TRICORE_max_b
Definition allins.hpp:19496
@ TRICORE_eq_w
Definition allins.hpp:19386
@ TRICORE_ldlcx
Definition allins.hpp:19457
@ TRICORE_clz_h
Definition allins.hpp:19361
@ TRICORE_ne
Definition allins.hpp:19555
@ TRICORE_sat16_hu
Definition allins.hpp:19596
@ TRICORE_extr_u
Definition allins.hpp:19393
@ TRICORE_or_ne
Definition allins.hpp:19570
@ TRICORE_ftouz
Definition allins.hpp:19691
@ TRICORE_movh_a
Definition allins.hpp:19518
@ TRICORE_cachei_i
Definition allins.hpp:19679
@ TRICORE_cachei_wi_vm
Definition allins.hpp:19736
@ TRICORE_ins_t
Definition allins.hpp:19401
@ TRICORE_div
Definition allins.hpp:19682
@ TRICORE_jgez16
Definition allins.hpp:19418
@ TRICORE_lt_wu
Definition allins.hpp:19471
@ TRICORE_adds_hu
Definition allins.hpp:19319
@ TRICORE_imask
Definition allins.hpp:19400
@ TRICORE_insn_t
Definition allins.hpp:19403
@ TRICORE_madd_h
Definition allins.hpp:19476
@ TRICORE_sha16
Definition allins.hpp:19621
@ TRICORE_lt16
Definition allins.hpp:19472
@ TRICORE_msub_q
Definition allins.hpp:19522
@ TRICORE_cachea_w
Definition allins.hpp:19346
@ TRICORE_mulp_b
Definition allins.hpp:19760
@ TRICORE_ne_a
Definition allins.hpp:19556
@ TRICORE_crcn
Definition allins.hpp:19703
@ TRICORE_abs_df
Definition allins.hpp:19742
@ TRICORE_ftoq31z
Definition allins.hpp:19690
@ TRICORE_maddr_h
Definition allins.hpp:19481
@ TRICORE_jnei
Definition allins.hpp:19433
@ TRICORE_ftodf
Definition allins.hpp:19716
@ TRICORE_or_ge_u
Definition allins.hpp:19567
@ TRICORE_msub_f
Definition allins.hpp:19520
@ TRICORE_mov16_a
Definition allins.hpp:19510
@ TRICORE_sel
Definition allins.hpp:19601
@ TRICORE_ld16_a
Definition allins.hpp:19449
@ TRICORE_ld16_h
Definition allins.hpp:19451
@ TRICORE_cachei_w
Definition allins.hpp:19680
@ TRICORE_ret32
Definition allins.hpp:19583
@ TRICORE_q31tof
Definition allins.hpp:19580
@ TRICORE_and_eq
Definition allins.hpp:19328
@ TRICORE_loop32
Definition allins.hpp:19462
@ TRICORE_dvinit_hu
Definition allins.hpp:19378
@ TRICORE_sub_df
Definition allins.hpp:19743
@ TRICORE_st_q
Definition allins.hpp:19626
@ TRICORE_cachei_i_vm
Definition allins.hpp:19734
@ TRICORE_isync
Definition allins.hpp:19404
@ TRICORE_hvcall
Definition allins.hpp:19714
@ TRICORE_addih_a
Definition allins.hpp:19316
@ TRICORE_st16_h
Definition allins.hpp:19630
@ TRICORE_addsc_at
Definition allins.hpp:19322
@ TRICORE_add_h
Definition allins.hpp:19308
@ TRICORE_dftouz
Definition allins.hpp:19727
@ TRICORE_sh_ne
Definition allins.hpp:19612
@ TRICORE_mul16
Definition allins.hpp:19545
@ TRICORE_jnz16_t
Definition allins.hpp:19436
@ TRICORE_caddn32
Definition allins.hpp:19351
@ TRICORE_xor_ge
Definition allins.hpp:19669
@ TRICORE_sh_lt
Definition allins.hpp:19609
@ TRICORE_xor16
Definition allins.hpp:19675
@ TRICORE_cachea_wi
Definition allins.hpp:19347
@ TRICORE_csubn
Definition allins.hpp:19366
@ TRICORE_madds_u
Definition allins.hpp:19488
@ TRICORE_sh_ge_u
Definition allins.hpp:19607
@ DSP96_fmpyfsub
Definition allins.hpp:9439
@ DSP96_negc
Definition allins.hpp:9483
@ DSP96_rti
Definition allins.hpp:9493
@ DSP96_ori
Definition allins.hpp:9488
@ DSP96_int
Definition allins.hpp:9453
@ DSP96_btst
Definition allins.hpp:9400
@ DSP96_fseedr
Definition allins.hpp:9445
@ DSP96_bra
Definition allins.hpp:9390
@ DSP96_sub
Definition allins.hpp:9500
@ DSP96_orc
Definition allins.hpp:9487
@ DSP96_rol
Definition allins.hpp:9491
@ DSP96_floatu
Definition allins.hpp:9432
@ DSP96_lea
Definition allins.hpp:9469
@ DSP96_setw
Definition allins.hpp:9496
@ DSP96_jclr
Definition allins.hpp:9459
@ DSP96_bclr
Definition allins.hpp:9388
@ DSP96_tfr
Definition allins.hpp:9502
@ DSP96_nop
Definition allins.hpp:9484
@ DSP96_or
Definition allins.hpp:9486
@ DSP96_intrz
Definition allins.hpp:9454
@ DSP96_trapcc
Definition allins.hpp:9503
@ DSP96_mpyu
Definition allins.hpp:9481
@ DSP96_extb
Definition allins.hpp:9411
@ DSP96_fabs
Definition allins.hpp:9412
@ DSP96_movem
Definition allins.hpp:9476
@ DSP96_fcmp
Definition allins.hpp:9420
@ DSP96_fbccd
Definition allins.hpp:9416
@ DSP96_fint
Definition allins.hpp:9426
@ DSP96_lsl
Definition allins.hpp:9471
@ DSP96_intu
Definition allins.hpp:9455
@ DSP96_fscale
Definition allins.hpp:9443
@ DSP96_ftrapcc
Definition allins.hpp:9448
@ DSP96_bsr
Definition allins.hpp:9397
@ DSP96_and
Definition allins.hpp:9380
@ DSP96_movec
Definition allins.hpp:9474
@ DSP96_fmove
Definition allins.hpp:9434
@ DSP96_bchg
Definition allins.hpp:9387
@ DSP96_debugcc
Definition allins.hpp:9404
@ DSP96_reset
Definition allins.hpp:9490
@ DSP96_fcopys
Definition allins.hpp:9423
@ DSP96_fcmpg
Definition allins.hpp:9421
@ DSP96_rts
Definition allins.hpp:9495
@ DSP96_getexp
Definition allins.hpp:9450
@ DSP96_fbscc
Definition allins.hpp:9417
@ DSP96_rtr
Definition allins.hpp:9494
@ DSP96_last
Definition allins.hpp:9506
@ DSP96_tst
Definition allins.hpp:9504
@ DSP96_floor
Definition allins.hpp:9433
@ DSP96_move
Definition allins.hpp:9473
@ DSP96_float
Definition allins.hpp:9431
@ DSP96_abs
Definition allins.hpp:9377
@ DSP96_fjscc
Definition allins.hpp:9429
@ DSP96_moves
Definition allins.hpp:9478
@ DSP96_stop
Definition allins.hpp:9499
@ DSP96_faddsub
Definition allins.hpp:9414
@ DSP96_fdebugcc
Definition allins.hpp:9424
@ DSP96_dec
Definition allins.hpp:9405
@ DSP96_jcc
Definition allins.hpp:9457
@ DSP96_splitb
Definition allins.hpp:9498
@ DSP96_dor
Definition allins.hpp:9407
@ DSP96_split
Definition allins.hpp:9497
@ DSP96_inc
Definition allins.hpp:9452
@ DSP96_andc
Definition allins.hpp:9381
@ DSP96_clr
Definition allins.hpp:9401
@ DSP96_subc
Definition allins.hpp:9501
@ DSP96_neg
Definition allins.hpp:9482
@ DSP96_jscc
Definition allins.hpp:9463
@ DSP96_bsccd
Definition allins.hpp:9394
@ DSP96_cmp
Definition allins.hpp:9402
@ DSP96_null
Definition allins.hpp:9375
@ DSP96_not
Definition allins.hpp:9485
@ DSP96_fneg
Definition allins.hpp:9442
@ DSP96_ftst
Definition allins.hpp:9449
@ DSP96_bsset
Definition allins.hpp:9399
@ DSP96_asl
Definition allins.hpp:9383
@ DSP96_add
Definition allins.hpp:9378
@ DSP96_ror
Definition allins.hpp:9492
@ DSP96_brset
Definition allins.hpp:9392
@ DSP96_brclr
Definition allins.hpp:9391
@ DSP96_fadd
Definition allins.hpp:9413
@ DSP96_rep
Definition allins.hpp:9489
@ DSP96_bsclr
Definition allins.hpp:9395
@ DSP96_fjcc
Definition allins.hpp:9427
@ DSP96_fsub
Definition allins.hpp:9446
@ DSP96_illegal
Definition allins.hpp:9451
@ DSP96_ext
Definition allins.hpp:9410
@ DSP96_wait
Definition allins.hpp:9505
@ DSP96_asr
Definition allins.hpp:9384
@ DSP96_fseedd
Definition allins.hpp:9444
@ DSP96_fclr
Definition allins.hpp:9419
@ DSP96_inturz
Definition allins.hpp:9456
@ DSP96_movei
Definition allins.hpp:9475
@ DSP96_jsccd
Definition allins.hpp:9464
@ DSP96_fgetman
Definition allins.hpp:9425
@ DSP96_jccd
Definition allins.hpp:9458
@ DSP96_jsset
Definition allins.hpp:9468
@ DSP96_fmpy
Definition allins.hpp:9441
@ DSP96_bccd
Definition allins.hpp:9386
@ DSP96_fmpyfaddsub
Definition allins.hpp:9437
@ DSP96_cmpg
Definition allins.hpp:9403
@ DSP96_join
Definition allins.hpp:9461
@ DSP96_fbsccd
Definition allins.hpp:9418
@ DSP96_fmpyfadd
Definition allins.hpp:9435
@ DSP96_addc
Definition allins.hpp:9379
@ DSP96_jset
Definition allins.hpp:9466
@ DSP96_jsclr
Definition allins.hpp:9465
@ DSP96_bfind
Definition allins.hpp:9389
@ DSP96_bset
Definition allins.hpp:9396
@ DSP96_fjsccd
Definition allins.hpp:9430
@ DSP96_bcc
Definition allins.hpp:9385
@ DSP96_enddo
Definition allins.hpp:9408
@ DSP96_mpys
Definition allins.hpp:9480
@ DSP96_eor
Definition allins.hpp:9409
@ DSP96_do
Definition allins.hpp:9406
@ DSP96_bsrd
Definition allins.hpp:9398
@ DSP96_fjccd
Definition allins.hpp:9428
@ DSP96_movep
Definition allins.hpp:9477
@ DSP96_joinb
Definition allins.hpp:9462
@ DSP96_fcmpm
Definition allins.hpp:9422
@ DSP96_ftfr
Definition allins.hpp:9447
@ DSP96_lra
Definition allins.hpp:9470
@ DSP96_moveta
Definition allins.hpp:9479
@ DSP96_fbcc
Definition allins.hpp:9415
@ DSP96_andi
Definition allins.hpp:9382
@ DSP96_bscc
Definition allins.hpp:9393
@ DSP96_lsr
Definition allins.hpp:9472
@ MC6816_incw
Definition allins.hpp:11024
@ MC6816_clre
Definition allins.hpp:11031
@ MC6816_xgey
Definition allins.hpp:11201
@ MC6816_tbxk
Definition allins.hpp:11207
@ MC6816_lbpl
Definition allins.hpp:11133
@ MC6816_tst
Definition allins.hpp:10999
@ MC6816_orab
Definition allins.hpp:11056
@ MC6816_xgde
Definition allins.hpp:10962
@ MC6816_anda
Definition allins.hpp:11047
@ MC6816_ord
Definition allins.hpp:11057
@ MC6816_tstd
Definition allins.hpp:11002
@ MC6816_bge
Definition allins.hpp:11118
@ MC6816_bsr
Definition allins.hpp:11151
@ MC6816_jsr
Definition allins.hpp:11152
@ MC6816_bitb
Definition allins.hpp:11063
@ MC6816_daa
Definition allins.hpp:10990
@ MC6816_adx
Definition allins.hpp:11167
@ MC6816_ldz
Definition allins.hpp:11181
@ MC6816_dec
Definition allins.hpp:11017
@ MC6816_asra
Definition allins.hpp:11084
@ MC6816_ldaa
Definition allins.hpp:10937
@ MC6816_asrm
Definition allins.hpp:11243
@ MC6816_rola
Definition allins.hpp:11090
@ MC6816_adcd
Definition allins.hpp:10971
@ MC6816_eorb
Definition allins.hpp:11052
@ MC6816_sube
Definition allins.hpp:10987
@ MC6816_ldd
Definition allins.hpp:10939
@ MC6816_asrw
Definition allins.hpp:11088
@ MC6816_asla
Definition allins.hpp:11078
@ MC6816_ais
Definition allins.hpp:11218
@ MC6816_ror
Definition allins.hpp:11095
@ MC6816_tmet
Definition allins.hpp:11254
@ MC6816_stx
Definition allins.hpp:11182
@ MC6816_adz
Definition allins.hpp:11169
@ MC6816_neg
Definition allins.hpp:11039
@ MC6816_decb
Definition allins.hpp:11019
@ MC6816_aex
Definition allins.hpp:11170
@ MC6816_tbek
Definition allins.hpp:11205
@ MC6816_xgdx
Definition allins.hpp:11197
@ MC6816_aez
Definition allins.hpp:11172
@ MC6816_xgab
Definition allins.hpp:10961
@ MC6816_lble
Definition allins.hpp:11140
@ MC6816_ted
Definition allins.hpp:10958
@ MC6816_role
Definition allins.hpp:11093
@ MC6816_bcs
Definition allins.hpp:11109
@ MC6816_aslb
Definition allins.hpp:11079
@ MC6816_come
Definition allins.hpp:11037
@ MC6816_tbyk
Definition allins.hpp:11208
@ MC6816_lbsr
Definition allins.hpp:11153
@ MC6816_rts
Definition allins.hpp:11154
@ MC6816_lbrn
Definition allins.hpp:11125
@ MC6816_andd
Definition allins.hpp:11049
@ MC6816_tba
Definition allins.hpp:10956
@ MC6816_coma
Definition allins.hpp:11034
@ MC6816_sts
Definition allins.hpp:11221
@ MC6816_brclr
Definition allins.hpp:11144
@ MC6816_bset
Definition allins.hpp:11066
@ MC6816_andb
Definition allins.hpp:11048
@ MC6816_lbhi
Definition allins.hpp:11136
@ MC6816_eord
Definition allins.hpp:11053
@ MC6816_tyx
Definition allins.hpp:11192
@ MC6816_ade
Definition allins.hpp:10977
@ MC6816_ore
Definition allins.hpp:11058
@ MC6816_stab
Definition allins.hpp:10949
@ MC6816_sbcb
Definition allins.hpp:10980
@ MC6816_blt
Definition allins.hpp:11121
@ MC6816_adde
Definition allins.hpp:10976
@ MC6816_pula
Definition allins.hpp:11225
@ MC6816_lbls
Definition allins.hpp:11137
@ MC6816_bgnd
Definition allins.hpp:11264
@ MC6816_cba
Definition allins.hpp:10994
@ MC6816_clrb
Definition allins.hpp:11029
@ MC6816_sbcd
Definition allins.hpp:10981
@ MC6816_bclr
Definition allins.hpp:11064
@ MC6816_cps
Definition allins.hpp:11219
@ MC6816_bclrw
Definition allins.hpp:11065
@ MC6816_tpd
Definition allins.hpp:11236
@ MC6816_ace
Definition allins.hpp:11240
@ MC6816_lsr
Definition allins.hpp:11071
@ MC6816_last
Definition allins.hpp:11267
@ MC6816_aiz
Definition allins.hpp:11175
@ MC6816_oraa
Definition allins.hpp:11055
@ MC6816_tykb
Definition allins.hpp:11213
@ MC6816_beq
Definition allins.hpp:11110
@ MC6816_andp
Definition allins.hpp:11231
@ MC6816_ande
Definition allins.hpp:11050
@ MC6816_aby
Definition allins.hpp:11165
@ MC6816_txz
Definition allins.hpp:11190
@ MC6816_adce
Definition allins.hpp:10972
@ MC6816_idiv
Definition allins.hpp:11013
@ MC6816_rold
Definition allins.hpp:11092
@ MC6816_ldhi
Definition allins.hpp:11245
@ MC6816_sbca
Definition allins.hpp:10979
@ MC6816_rorw
Definition allins.hpp:11100
@ MC6816_lbvc
Definition allins.hpp:11134
@ MC6816_nega
Definition allins.hpp:11040
@ MC6816_incb
Definition allins.hpp:11023
@ MC6816_lsrd
Definition allins.hpp:11074
@ MC6816_eora
Definition allins.hpp:11051
@ MC6816_ldy
Definition allins.hpp:11180
@ MC6816_jmp
Definition allins.hpp:11148
@ MC6816_emuls
Definition allins.hpp:11010
@ MC6816_cpe
Definition allins.hpp:10998
@ MC6816_rol
Definition allins.hpp:11089
@ MC6816_nege
Definition allins.hpp:11043
@ MC6816_lbcc
Definition allins.hpp:11126
@ MC6816_aslm
Definition allins.hpp:11242
@ MC6816_movb
Definition allins.hpp:10944
@ MC6816_asr
Definition allins.hpp:11083
@ MC6816_eore
Definition allins.hpp:11054
@ MC6816_tsx
Definition allins.hpp:11185
@ MC6816_aced
Definition allins.hpp:11241
@ MC6816_asle
Definition allins.hpp:11081
@ MC6816_adda
Definition allins.hpp:10973
@ MC6816_txkb
Definition allins.hpp:11212
@ MC6816_tzkb
Definition allins.hpp:11214
@ MC6816_xgdz
Definition allins.hpp:11199
@ MC6816_tys
Definition allins.hpp:11191
@ MC6816_aey
Definition allins.hpp:11171
@ MC6816_pulmac
Definition allins.hpp:11248
@ MC6816_tde
Definition allins.hpp:10957
@ MC6816_xgex
Definition allins.hpp:11200
@ MC6816_tste
Definition allins.hpp:11003
@ MC6816_rord
Definition allins.hpp:11098
@ MC6816_ste
Definition allins.hpp:10951
@ MC6816_lbra
Definition allins.hpp:11124
@ MC6816_aslw
Definition allins.hpp:11082
@ MC6816_lde
Definition allins.hpp:10940
@ MC6816_lbcs
Definition allins.hpp:11127
@ MC6816_asrd
Definition allins.hpp:11086
@ MC6816_lsrw
Definition allins.hpp:11076
@ MC6816_sbce
Definition allins.hpp:10982
@ MC6816_aix
Definition allins.hpp:11173
@ MC6816_brn
Definition allins.hpp:11107
@ MC6816_negb
Definition allins.hpp:11041
@ MC6816_lded
Definition allins.hpp:10941
@ MC6816_lbmv
Definition allins.hpp:11131
@ MC6816_pshm
Definition allins.hpp:11224
@ MC6816_comb
Definition allins.hpp:11035
@ MC6816_clrd
Definition allins.hpp:11030
@ MC6816_tsz
Definition allins.hpp:11187
@ MC6816_lbge
Definition allins.hpp:11138
@ MC6816_lpstop
Definition allins.hpp:11259
@ MC6816_clra
Definition allins.hpp:11028
@ MC6816_rore
Definition allins.hpp:11099
@ MC6816_mul
Definition allins.hpp:11014
@ MC6816_tedm
Definition allins.hpp:11251
@ MC6816_tzy
Definition allins.hpp:11196
@ MC6816_clr
Definition allins.hpp:11027
@ MC6816_bpl
Definition allins.hpp:11113
@ MC6816_ble
Definition allins.hpp:11120
@ MC6816_subd
Definition allins.hpp:10986
@ MC6816_tstb
Definition allins.hpp:11001
@ MC6816_lbne
Definition allins.hpp:11132
@ MC6816_addb
Definition allins.hpp:10974
@ MC6816_lbmi
Definition allins.hpp:11130
@ MC6816_cpx
Definition allins.hpp:11176
@ MC6816_lbeq
Definition allins.hpp:11128
@ MC6816_edivs
Definition allins.hpp:11008
@ MC6816_comd
Definition allins.hpp:11036
@ MC6816_lbev
Definition allins.hpp:11129
@ MC6816_swi
Definition allins.hpp:11158
@ MC6816_negd
Definition allins.hpp:11042
@ MC6816_tzx
Definition allins.hpp:11195
@ MC6816_pshb
Definition allins.hpp:11223
@ MC6816_sted
Definition allins.hpp:10952
@ MC6816_sde
Definition allins.hpp:10983
@ MC6816_subb
Definition allins.hpp:10985
@ MC6816_txs
Definition allins.hpp:11188
@ MC6816_asre
Definition allins.hpp:11087
@ MC6816_deca
Definition allins.hpp:11018
@ MC6816_lblt
Definition allins.hpp:11141
@ MC6816_pulb
Definition allins.hpp:11226
@ MC6816_rti
Definition allins.hpp:11157
@ MC6816_lsrb
Definition allins.hpp:11073
@ MC6816_ldx
Definition allins.hpp:11179
@ MC6816_abx
Definition allins.hpp:11164
@ MC6816_nop
Definition allins.hpp:11265
@ MC6816_cpz
Definition allins.hpp:11178
@ MC6816_tskb
Definition allins.hpp:11211
@ MC6816_fdiv
Definition allins.hpp:11011
@ MC6816_tpa
Definition allins.hpp:11235
@ MC6816_tekb
Definition allins.hpp:11210
@ MC6816_tab
Definition allins.hpp:10955
@ MC6816_pulm
Definition allins.hpp:11227
@ MC6816_cpy
Definition allins.hpp:11177
@ MC6816_emul
Definition allins.hpp:11009
@ MC6816_ldab
Definition allins.hpp:10938
@ MC6816_inc
Definition allins.hpp:11021
@ MC6816_tyz
Definition allins.hpp:11193
@ MC6816_txy
Definition allins.hpp:11189
@ MC6816_rolb
Definition allins.hpp:11091
@ MC6816_tzs
Definition allins.hpp:11194
@ MC6816_null
Definition allins.hpp:10931
@ MC6816_bita
Definition allins.hpp:11062
@ MC6816_bhi
Definition allins.hpp:11116
@ MC6816_com
Definition allins.hpp:11033
@ MC6816_adca
Definition allins.hpp:10969
@ MC6816_sty
Definition allins.hpp:11183
@ MC6816_std
Definition allins.hpp:10950
@ MC6816_ady
Definition allins.hpp:11168
@ MC6816_aba
Definition allins.hpp:10968
@ MC6816_cpd
Definition allins.hpp:10997
@ MC6816_movw
Definition allins.hpp:10945
@ MC6816_lbgt
Definition allins.hpp:11139
@ MC6816_tbzk
Definition allins.hpp:11209
@ MC6816_bne
Definition allins.hpp:11112
@ MC6816_negw
Definition allins.hpp:11044
@ MC6816_clrw
Definition allins.hpp:11032
@ MC6816_asrb
Definition allins.hpp:11085
@ MC6816_staa
Definition allins.hpp:10948
@ MC6816_rolw
Definition allins.hpp:11094
@ MC6816_tsta
Definition allins.hpp:11000
@ MC6816_ediv
Definition allins.hpp:11007
@ MC6816_psha
Definition allins.hpp:11222
@ MC6816_decw
Definition allins.hpp:11020
@ MC6816_rora
Definition allins.hpp:11096
@ MC6816_comw
Definition allins.hpp:11038
@ MC6816_tdp
Definition allins.hpp:11234
@ MC6816_bcc
Definition allins.hpp:11108
@ MC6816_fmuls
Definition allins.hpp:11012
@ MC6816_suba
Definition allins.hpp:10984
@ MC6816_bmi
Definition allins.hpp:11111
@ MC6816_tsy
Definition allins.hpp:11186
@ MC6816_lsra
Definition allins.hpp:11072
@ MC6816_bgt
Definition allins.hpp:11119
@ MC6816_lds
Definition allins.hpp:11220
@ MC6816_addd
Definition allins.hpp:10975
@ MC6816_asl
Definition allins.hpp:11077
@ MC6816_tbsk
Definition allins.hpp:11206
@ MC6816_sba
Definition allins.hpp:10978
@ MC6816_cmpb
Definition allins.hpp:10996
@ MC6816_bsetw
Definition allins.hpp:11067
@ MC6816_tdmsk
Definition allins.hpp:11250
@ MC6816_bra
Definition allins.hpp:11106
@ MC6816_brset
Definition allins.hpp:11145
@ MC6816_tstw
Definition allins.hpp:11004
@ MC6816_sxt
Definition allins.hpp:10991
@ MC6816_aiy
Definition allins.hpp:11174
@ MC6816_tmxed
Definition allins.hpp:11255
@ MC6816_rorb
Definition allins.hpp:11097
@ MC6816_tap
Definition allins.hpp:11233
@ MC6816_tmer
Definition allins.hpp:11253
@ MC6816_stz
Definition allins.hpp:11184
@ MC6816_mac
Definition allins.hpp:11246
@ MC6816_bls
Definition allins.hpp:11117
@ MC6816_abz
Definition allins.hpp:11166
@ MC6816_tem
Definition allins.hpp:11252
@ MC6816_adcb
Definition allins.hpp:10970
@ MC6816_xgdy
Definition allins.hpp:11198
@ MC6816_xgez
Definition allins.hpp:11202
@ MC6816_clrm
Definition allins.hpp:11244
@ MC6816_inca
Definition allins.hpp:11022
@ MC6816_rmac
Definition allins.hpp:11249
@ MC6816_asld
Definition allins.hpp:11080
@ MC6816_cmpa
Definition allins.hpp:10995
@ MC6816_orp
Definition allins.hpp:11232
@ MC6816_bvc
Definition allins.hpp:11114
@ MC6816_wai
Definition allins.hpp:11260
@ MC6816_pshmac
Definition allins.hpp:11247
@ MC6816_lsre
Definition allins.hpp:11075
@ MC6816_lbvs
Definition allins.hpp:11135
@ MC6816_bvs
Definition allins.hpp:11115
@ H8500_bcs
Definition allins.hpp:9185
@ H8500_pjmp
Definition allins.hpp:9197
@ H8500_orc
Definition allins.hpp:9218
@ H8500_shal
Definition allins.hpp:9162
@ H8500_movtpe
Definition allins.hpp:9127
@ H8500_addx
Definition allins.hpp:9137
@ H8500_add_q
Definition allins.hpp:9133
@ H8500_mov_l
Definition allins.hpp:9121
@ H8500_exts
Definition allins.hpp:9146
@ H8500_rotl
Definition allins.hpp:9166
@ H8500_pjsr
Definition allins.hpp:9200
@ H8500_bls
Definition allins.hpp:9183
@ H8500_xor
Definition allins.hpp:9157
@ H8500_clr
Definition allins.hpp:9150
@ H8500_bvc
Definition allins.hpp:9188
@ H8500_sub
Definition allins.hpp:9134
@ H8500_movfpe
Definition allins.hpp:9128
@ H8500_cmp_g
Definition allins.hpp:9143
@ H8500_link
Definition allins.hpp:9212
@ H8500_jsr
Definition allins.hpp:9199
@ H8500_rotxr
Definition allins.hpp:9169
@ H8500_prtd
Definition allins.hpp:9204
@ H8500_nop
Definition allins.hpp:9220
@ H8500_extu
Definition allins.hpp:9147
@ H8500_jmp
Definition allins.hpp:9196
@ H8500_add_g
Definition allins.hpp:9132
@ H8500_andc
Definition allins.hpp:9217
@ H8500_adds
Definition allins.hpp:9135
@ H8500_cmp_i
Definition allins.hpp:9145
@ H8500_ldc
Definition allins.hpp:9215
@ H8500_mov_i
Definition allins.hpp:9119
@ H8500_rotr
Definition allins.hpp:9167
@ H8500_mov_f
Definition allins.hpp:9120
@ H8500_null
Definition allins.hpp:9113
@ H8500_mulxu
Definition allins.hpp:9141
@ H8500_trapa
Definition allins.hpp:9209
@ H8500_xorc
Definition allins.hpp:9219
@ H8500_trap_vs
Definition allins.hpp:9210
@ H8500_dsub
Definition allins.hpp:9140
@ H8500_bsr
Definition allins.hpp:9198
@ H8500_cmp_e
Definition allins.hpp:9144
@ H8500_neg
Definition allins.hpp:9149
@ H8500_stc
Definition allins.hpp:9216
@ H8500_ble
Definition allins.hpp:9195
@ H8500_bvs
Definition allins.hpp:9189
@ H8500_or
Definition allins.hpp:9156
@ H8500_rotxl
Definition allins.hpp:9168
@ H8500_bpl
Definition allins.hpp:9190
@ H8500_btst
Definition allins.hpp:9176
@ H8500_blt
Definition allins.hpp:9193
@ H8500_scb
Definition allins.hpp:9205
@ H8500_bset
Definition allins.hpp:9173
@ H8500_bclr
Definition allins.hpp:9174
@ H8500_xch
Definition allins.hpp:9125
@ H8500_bcc
Definition allins.hpp:9184
@ H8500_shar
Definition allins.hpp:9163
@ H8500_brn
Definition allins.hpp:9181
@ H8500_mov_g
Definition allins.hpp:9117
@ H8500_stm
Definition allins.hpp:9124
@ H8500_bra
Definition allins.hpp:9180
@ H8500_sleep
Definition allins.hpp:9214
@ H8500_rte
Definition allins.hpp:9211
@ H8500_tst
Definition allins.hpp:9148
@ H8500_tas
Definition allins.hpp:9151
@ H8500_not
Definition allins.hpp:9158
@ H8500_subs
Definition allins.hpp:9136
@ H8500_unlk
Definition allins.hpp:9213
@ H8500_bhi
Definition allins.hpp:9182
@ H8500_swap
Definition allins.hpp:9126
@ H8500_bmi
Definition allins.hpp:9191
@ H8500_shlr
Definition allins.hpp:9165
@ H8500_dadd
Definition allins.hpp:9139
@ H8500_and
Definition allins.hpp:9155
@ H8500_divxu
Definition allins.hpp:9142
@ H8500_prts
Definition allins.hpp:9202
@ H8500_last
Definition allins.hpp:9223
@ H8500_bgt
Definition allins.hpp:9194
@ H8500_mov_e
Definition allins.hpp:9118
@ H8500_ldm
Definition allins.hpp:9123
@ H8500_beq
Definition allins.hpp:9187
@ H8500_bne
Definition allins.hpp:9186
@ H8500_mov_s
Definition allins.hpp:9122
@ H8500_bge
Definition allins.hpp:9192
@ H8500_rtd
Definition allins.hpp:9203
@ H8500_subx
Definition allins.hpp:9138
@ H8500_bnot
Definition allins.hpp:9175
@ H8500_bpt
Definition allins.hpp:9221
@ H8500_rts
Definition allins.hpp:9201
@ H8500_shll
Definition allins.hpp:9164
@ mn102_tbnz
Definition allins.hpp:15098
@ mn102_bncx
Definition allins.hpp:15057
@ mn102_beq
Definition allins.hpp:15042
@ mn102_addnf
Definition allins.hpp:15034
@ mn102_mulq
Definition allins.hpp:15084
@ mn102_xor
Definition allins.hpp:15100
@ mn102_bgt
Definition allins.hpp:15046
@ mn102_blsx
Definition allins.hpp:15053
@ mn102_ble
Definition allins.hpp:15050
@ mn102_bra
Definition allins.hpp:15062
@ mn102_last
Definition allins.hpp:15101
@ mn102_rti
Definition allins.hpp:15094
@ mn102_extxu
Definition allins.hpp:15075
@ mn102_bne
Definition allins.hpp:15058
@ mn102_beqx
Definition allins.hpp:15043
@ mn102_rol
Definition allins.hpp:15092
@ mn102_cmp
Definition allins.hpp:15069
@ mn102_bccx
Definition allins.hpp:15038
@ mn102_blt
Definition allins.hpp:15054
@ mn102_extxb
Definition allins.hpp:15073
@ mn102_extx
Definition allins.hpp:15072
@ mn102_ror
Definition allins.hpp:15093
@ mn102_bls
Definition allins.hpp:15052
@ mn102_bgtx
Definition allins.hpp:15047
@ mn102_extxbu
Definition allins.hpp:15074
@ mn102_btst
Definition allins.hpp:15064
@ mn102_and
Definition allins.hpp:15035
@ mn102_bset
Definition allins.hpp:15063
@ mn102_null
Definition allins.hpp:15031
@ mn102_mulqh
Definition allins.hpp:15085
@ mn102_bclr
Definition allins.hpp:15039
@ mn102_bvsx
Definition allins.hpp:15068
@ mn102_bgex
Definition allins.hpp:15045
@ mn102_not
Definition allins.hpp:15089
@ mn102_jmp
Definition allins.hpp:15076
@ mn102_movb
Definition allins.hpp:15080
@ mn102_subc
Definition allins.hpp:15097
@ mn102_mulql
Definition allins.hpp:15086
@ mn102_bnex
Definition allins.hpp:15059
@ mn102_blex
Definition allins.hpp:15051
@ mn102_asr
Definition allins.hpp:15036
@ mn102_bhix
Definition allins.hpp:15049
@ mn102_bltx
Definition allins.hpp:15055
@ mn102_bvcx
Definition allins.hpp:15066
@ mn102_mul
Definition allins.hpp:15083
@ mn102_bhi
Definition allins.hpp:15048
@ mn102_ext
Definition allins.hpp:15071
@ mn102_bcsx
Definition allins.hpp:15041
@ mn102_pxst
Definition allins.hpp:15091
@ mn102_rts
Definition allins.hpp:15095
@ mn102_sub
Definition allins.hpp:15096
@ mn102_bcc
Definition allins.hpp:15037
@ mn102_movx
Definition allins.hpp:15082
@ mn102_bge
Definition allins.hpp:15044
@ mn102_addc
Definition allins.hpp:15033
@ mn102_divu
Definition allins.hpp:15070
@ mn102_bvc
Definition allins.hpp:15065
@ mn102_nop
Definition allins.hpp:15088
@ mn102_or
Definition allins.hpp:15090
@ mn102_movbu
Definition allins.hpp:15081
@ mn102_lsr
Definition allins.hpp:15078
@ mn102_bvs
Definition allins.hpp:15067
@ mn102_bnsx
Definition allins.hpp:15061
@ mn102_add
Definition allins.hpp:15032
@ mn102_bnc
Definition allins.hpp:15056
@ mn102_jsr
Definition allins.hpp:15077
@ mn102_bcs
Definition allins.hpp:15040
@ mn102_mov
Definition allins.hpp:15079
@ mn102_mulu
Definition allins.hpp:15087
@ mn102_tbz
Definition allins.hpp:15099
@ mn102_bns
Definition allins.hpp:15060
@ m740_ldx
Definition allins.hpp:13329
@ m740_bvs
Definition allins.hpp:13306
@ m740_null
Definition allins.hpp:13290
@ m740_and
Definition allins.hpp:13292
@ m740_jsr
Definition allins.hpp:13326
@ m740_wit
Definition allins.hpp:13361
@ m740_clc
Definition allins.hpp:13308
@ m740_inx
Definition allins.hpp:13323
@ m740_rrf
Definition allins.hpp:13341
@ m740_tya
Definition allins.hpp:13360
@ m740_nop
Definition allins.hpp:13333
@ m740_cmp
Definition allins.hpp:13313
@ m740_plp
Definition allins.hpp:13338
@ m740_bpl
Definition allins.hpp:13302
@ m740_dec
Definition allins.hpp:13317
@ m740_clv
Definition allins.hpp:13312
@ m740_ldm
Definition allins.hpp:13328
@ m740_cpx
Definition allins.hpp:13315
@ m740_cld
Definition allins.hpp:13309
@ m740_set
Definition allins.hpp:13349
@ m740_eor
Definition allins.hpp:13321
@ m740_bvc
Definition allins.hpp:13305
@ m740_pha
Definition allins.hpp:13335
@ m740_bra
Definition allins.hpp:13303
@ m740_div
Definition allins.hpp:13320
@ m740_lda
Definition allins.hpp:13327
@ m740_ror
Definition allins.hpp:13340
@ m740_clb
Definition allins.hpp:13307
@ m740_rti
Definition allins.hpp:13342
@ m740_cpy
Definition allins.hpp:13316
@ m740_bmi
Definition allins.hpp:13300
@ m740_cli
Definition allins.hpp:13310
@ m740_mul
Definition allins.hpp:13332
@ m740_jmp
Definition allins.hpp:13325
@ m740_asl
Definition allins.hpp:13293
@ m740_bne
Definition allins.hpp:13301
@ m740_lsr
Definition allins.hpp:13331
@ m740_tax
Definition allins.hpp:13354
@ m740_inc
Definition allins.hpp:13322
@ m740_brk
Definition allins.hpp:13304
@ m740_bbs
Definition allins.hpp:13295
@ m740_rts
Definition allins.hpp:13343
@ m740_ora
Definition allins.hpp:13334
@ m740_ldy
Definition allins.hpp:13330
@ m740_sei
Definition allins.hpp:13348
@ m740_sed
Definition allins.hpp:13347
@ m740_php
Definition allins.hpp:13336
@ m740_last
Definition allins.hpp:13363
@ m740_iny
Definition allins.hpp:13324
@ m740_adc
Definition allins.hpp:13291
@ m740_bcc
Definition allins.hpp:13296
@ m740_bcs
Definition allins.hpp:13297
@ m740_tsx
Definition allins.hpp:13357
@ m740_dey
Definition allins.hpp:13319
@ m740_sbc
Definition allins.hpp:13344
@ m740_bbc
Definition allins.hpp:13294
@ m740_txa
Definition allins.hpp:13358
@ m740_sty
Definition allins.hpp:13353
@ m740_pla
Definition allins.hpp:13337
@ m740_stx
Definition allins.hpp:13352
@ m740_sta
Definition allins.hpp:13350
@ m740_tst
Definition allins.hpp:13356
@ m740_beq
Definition allins.hpp:13298
@ m740_bit
Definition allins.hpp:13299
@ m740_sec
Definition allins.hpp:13346
@ m740_tay
Definition allins.hpp:13355
@ m740_com
Definition allins.hpp:13314
@ m740_rol
Definition allins.hpp:13339
@ m740_dex
Definition allins.hpp:13318
@ m740_clt
Definition allins.hpp:13311
@ m740_stp
Definition allins.hpp:13351
@ m740_seb
Definition allins.hpp:13345
@ m740_txs
Definition allins.hpp:13359