diff options
author | Michael Meissner <gnu@the-meissners.org> | 1995-11-09 02:35:15 +0000 |
---|---|---|
committer | Michael Meissner <gnu@the-meissners.org> | 1995-11-09 02:35:15 +0000 |
commit | c5addc193d90f24d60acb7e3c025f2bb6ba01be7 (patch) | |
tree | bbcec41eb08105ff1d1dd079a75e653b1fa49c1b /sim/ppc/function_unit.c | |
parent | 33698029dbb6a003bf4a79c177f4f43d9269212d (diff) | |
download | gdb-c5addc193d90f24d60acb7e3c025f2bb6ba01be7.zip gdb-c5addc193d90f24d60acb7e3c025f2bb6ba01be7.tar.gz gdb-c5addc193d90f24d60acb7e3c025f2bb6ba01be7.tar.bz2 |
General cleanup; add -t options support to print all options
Diffstat (limited to 'sim/ppc/function_unit.c')
-rw-r--r-- | sim/ppc/function_unit.c | 232 |
1 files changed, 116 insertions, 116 deletions
diff --git a/sim/ppc/function_unit.c b/sim/ppc/function_unit.c index 7793c7b..a4f2768 100644 --- a/sim/ppc/function_unit.c +++ b/sim/ppc/function_unit.c @@ -79,8 +79,8 @@ struct _function_unit { /* Flags used in timing info */ -#define LOAD 0x00000001 /* this is a load */ -#define STORE 0x00000002 /* this is a store */ +#define FUNC_LOAD 0x00000001 /* this is a load */ +#define FUNC_STORE 0x00000002 /* this is a store */ /* 603 timings */ @@ -162,36 +162,36 @@ static timing time_603[] = { { itable_Floating_Subtract_Single, UNIT_FPU, 1, 0 }, { itable_Instruction_Cache_Block_Invalidate, UNIT_MEM, 3, 0 }, { itable_Instruction_Synchronize, UNIT_SREG, 1, 0 }, - { itable_Load_Byte_and_Zero, UNIT_MEM, 2, LOAD }, - { itable_Load_Byte_and_Zero_Indexed, UNIT_MEM, 2, LOAD }, - { itable_Load_Byte_and_Zero_with_Update, UNIT_MEM, 2, LOAD }, - { itable_Load_Byte_and_Zero_with_Update_Indexed, UNIT_MEM, 2, LOAD }, - { itable_Load_FloatingPoint_Double, UNIT_MEM, 2, LOAD }, - { itable_Load_FloatingPoint_Double_Indexed, UNIT_MEM, 2, LOAD }, - { itable_Load_FloatingPoint_Double_with_Update, UNIT_MEM, 2, LOAD }, - { itable_Load_FloatingPoint_Double_with_Update_Indexed, UNIT_MEM, 2, LOAD }, - { itable_Load_FloatingPoint_Single, UNIT_MEM, 2, LOAD }, - { itable_Load_FloatingPoint_Single_Indexed, UNIT_MEM, 2, LOAD }, - { itable_Load_FloatingPoint_Single_with_Update, UNIT_MEM, 2, LOAD }, - { itable_Load_FloatingPoint_Single_with_Update_Indexed, UNIT_MEM, 2, LOAD }, - { itable_Load_Halfword_Algebraic, UNIT_MEM, 2, LOAD }, - { itable_Load_Halfword_Algebraic_Indexed, UNIT_MEM, 2, LOAD }, - { itable_Load_Halfword_Algebraic_with_Update, UNIT_MEM, 2, LOAD }, - { itable_Load_Halfword_Algebraic_with_Update_Indexed, UNIT_MEM, 2, LOAD }, - { itable_Load_Halfword_ByteReverse_Indexed, UNIT_MEM, 2, LOAD }, - { itable_Load_Halfword_and_Zero, UNIT_MEM, 2, LOAD }, - { itable_Load_Halfword_and_Zero_Indexed, UNIT_MEM, 2, LOAD }, - { itable_Load_Halfword_and_Zero_with_Update, UNIT_MEM, 2, LOAD }, - { itable_Load_Halfword_and_Zero_with_Update_Indexed, UNIT_MEM, 2, LOAD }, - { itable_Load_Multiple_Word, UNIT_MEM, 2, LOAD }, - { itable_Load_String_Word_Immediate, UNIT_MEM, 2, LOAD }, - { itable_Load_String_Word_Indexed, UNIT_MEM, 2, LOAD }, - { itable_Load_Word_And_Reserve_Indexed, UNIT_MEM, 2, LOAD }, - { itable_Load_Word_ByteReverse_Indexed, UNIT_MEM, 2, LOAD }, - { itable_Load_Word_and_Zero, UNIT_MEM, 2, LOAD }, - { itable_Load_Word_and_Zero_Indexed, UNIT_MEM, 2, LOAD }, - { itable_Load_Word_and_Zero_with_Update, UNIT_MEM, 2, LOAD }, - { itable_Load_Word_and_Zero_with_Update_Indexed, UNIT_MEM, 2, LOAD }, + { itable_Load_Byte_and_Zero, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Byte_and_Zero_Indexed, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Byte_and_Zero_with_Update, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Byte_and_Zero_with_Update_Indexed, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_FloatingPoint_Double, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_FloatingPoint_Double_Indexed, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_FloatingPoint_Double_with_Update, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_FloatingPoint_Double_with_Update_Indexed, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_FloatingPoint_Single, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_FloatingPoint_Single_Indexed, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_FloatingPoint_Single_with_Update, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_FloatingPoint_Single_with_Update_Indexed, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Halfword_Algebraic, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Halfword_Algebraic_Indexed, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Halfword_Algebraic_with_Update, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Halfword_Algebraic_with_Update_Indexed, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Halfword_ByteReverse_Indexed, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Halfword_and_Zero, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Halfword_and_Zero_Indexed, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Halfword_and_Zero_with_Update, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Halfword_and_Zero_with_Update_Indexed, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Multiple_Word, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_String_Word_Immediate, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_String_Word_Indexed, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Word_And_Reserve_Indexed, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Word_ByteReverse_Indexed, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Word_and_Zero, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Word_and_Zero_Indexed, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Word_and_Zero_with_Update, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Word_and_Zero_with_Update_Indexed, UNIT_MEM, 2, FUNC_LOAD }, { itable_Move_Condition_Register_Field, UNIT_SREG, 1, 0 }, { itable_Move_From_Condition_Register, UNIT_SREG, 1, 0 }, { itable_Move_From_FPSCR, UNIT_FPU, 1, 0 }, @@ -230,33 +230,33 @@ static timing time_603[] = { { itable_Shift_Right_Algebraic_Word, UNIT_INT, 1, 0 }, { itable_Shift_Right_Algebraic_Word_Immediate, UNIT_INT, 1, 0 }, { itable_Shift_Right_Word, UNIT_INT, 1, 0 }, - { itable_Store_Byte, UNIT_MEM, 1, STORE }, - { itable_Store_Byte_Indexed, UNIT_MEM, 1, STORE }, - { itable_Store_Byte_with_Update, UNIT_MEM, 1, STORE }, - { itable_Store_Byte_with_Update_Indexed, UNIT_MEM, 1, STORE }, - { itable_Store_FloatingPoint_Double, UNIT_MEM, 1, STORE }, - { itable_Store_FloatingPoint_Double_Indexed, UNIT_MEM, 1, STORE }, - { itable_Store_FloatingPoint_Double_with_Update, UNIT_MEM, 1, STORE }, - { itable_Store_FloatingPoint_Double_with_Update_Indexed, UNIT_MEM, 1, STORE }, - { itable_Store_FloatingPoint_Single, UNIT_MEM, 1, STORE }, - { itable_Store_FloatingPoint_Single_Indexed, UNIT_MEM, 1, STORE }, - { itable_Store_FloatingPoint_Single_with_Update, UNIT_MEM, 1, STORE }, - { itable_Store_FloatingPoint_Single_with_Update_Indexed, UNIT_MEM, 1, STORE }, - { itable_Store_FloatingPoint_as_Integer_Word_Indexed, UNIT_MEM, 1, STORE }, - { itable_Store_Half_Word, UNIT_MEM, 1, STORE }, - { itable_Store_Half_Word_ByteReversed_Indexed, UNIT_MEM, 1, STORE }, - { itable_Store_Half_Word_Indexed, UNIT_MEM, 1, STORE }, - { itable_Store_Half_Word_with_Update, UNIT_MEM, 1, STORE }, - { itable_Store_Half_Word_with_Update_Indexed, UNIT_MEM, 1, STORE }, - { itable_Store_Multiple_Word, UNIT_MEM, 1, STORE }, - { itable_Store_String_Word_Immedate, UNIT_MEM, 1, STORE }, - { itable_Store_String_Word_Indexed, UNIT_MEM, 1, STORE }, - { itable_Store_Word, UNIT_MEM, 1, STORE }, - { itable_Store_Word_ByteReversed_Indexed, UNIT_MEM, 1, STORE }, - { itable_Store_Word_Conditional_Indexed, UNIT_MEM, 1, STORE }, - { itable_Store_Word_Indexed, UNIT_MEM, 1, STORE }, - { itable_Store_Word_with_Update, UNIT_MEM, 1, STORE }, - { itable_Store_Word_with_Update_Indexed, UNIT_MEM, 1, STORE }, + { itable_Store_Byte, UNIT_MEM, 1, FUNC_STORE }, + { itable_Store_Byte_Indexed, UNIT_MEM, 1, FUNC_STORE }, + { itable_Store_Byte_with_Update, UNIT_MEM, 1, FUNC_STORE }, + { itable_Store_Byte_with_Update_Indexed, UNIT_MEM, 1, FUNC_STORE }, + { itable_Store_FloatingPoint_Double, UNIT_MEM, 1, FUNC_STORE }, + { itable_Store_FloatingPoint_Double_Indexed, UNIT_MEM, 1, FUNC_STORE }, + { itable_Store_FloatingPoint_Double_with_Update, UNIT_MEM, 1, FUNC_STORE }, + { itable_Store_FloatingPoint_Double_with_Update_Indexed, UNIT_MEM, 1, FUNC_STORE }, + { itable_Store_FloatingPoint_Single, UNIT_MEM, 1, FUNC_STORE }, + { itable_Store_FloatingPoint_Single_Indexed, UNIT_MEM, 1, FUNC_STORE }, + { itable_Store_FloatingPoint_Single_with_Update, UNIT_MEM, 1, FUNC_STORE }, + { itable_Store_FloatingPoint_Single_with_Update_Indexed, UNIT_MEM, 1, FUNC_STORE }, + { itable_Store_FloatingPoint_as_Integer_Word_Indexed, UNIT_MEM, 1, FUNC_STORE }, + { itable_Store_Half_Word, UNIT_MEM, 1, FUNC_STORE }, + { itable_Store_Half_Word_ByteReversed_Indexed, UNIT_MEM, 1, FUNC_STORE }, + { itable_Store_Half_Word_Indexed, UNIT_MEM, 1, FUNC_STORE }, + { itable_Store_Half_Word_with_Update, UNIT_MEM, 1, FUNC_STORE }, + { itable_Store_Half_Word_with_Update_Indexed, UNIT_MEM, 1, FUNC_STORE }, + { itable_Store_Multiple_Word, UNIT_MEM, 1, FUNC_STORE }, + { itable_Store_String_Word_Immedate, UNIT_MEM, 1, FUNC_STORE }, + { itable_Store_String_Word_Indexed, UNIT_MEM, 1, FUNC_STORE }, + { itable_Store_Word, UNIT_MEM, 1, FUNC_STORE }, + { itable_Store_Word_ByteReversed_Indexed, UNIT_MEM, 1, FUNC_STORE }, + { itable_Store_Word_Conditional_Indexed, UNIT_MEM, 1, FUNC_STORE }, + { itable_Store_Word_Indexed, UNIT_MEM, 1, FUNC_STORE }, + { itable_Store_Word_with_Update, UNIT_MEM, 1, FUNC_STORE }, + { itable_Store_Word_with_Update_Indexed, UNIT_MEM, 1, FUNC_STORE }, { itable_Subtract_From, UNIT_INT, 1, 0 }, { itable_Subtract_From_Carrying, UNIT_INT, 1, 0 }, { itable_Subtract_From_Extended, UNIT_INT, 1, 0 }, @@ -356,36 +356,36 @@ static timing time_604[] = { { itable_Floating_Subtract_Single, UNIT_FPU, 3, 0 }, { itable_Instruction_Cache_Block_Invalidate, UNIT_MEM, 1, 0 }, { itable_Instruction_Synchronize, UNIT_INT, 1, 0 }, - { itable_Load_Byte_and_Zero, UNIT_MEM, 2, LOAD }, - { itable_Load_Byte_and_Zero_Indexed, UNIT_MEM, 2, LOAD }, - { itable_Load_Byte_and_Zero_with_Update, UNIT_MEM, 2, LOAD }, - { itable_Load_Byte_and_Zero_with_Update_Indexed, UNIT_MEM, 2, LOAD }, - { itable_Load_FloatingPoint_Double, UNIT_MEM, 3, LOAD }, - { itable_Load_FloatingPoint_Double_Indexed, UNIT_MEM, 3, LOAD }, - { itable_Load_FloatingPoint_Double_with_Update, UNIT_MEM, 3, LOAD }, - { itable_Load_FloatingPoint_Double_with_Update_Indexed, UNIT_MEM, 3, LOAD }, - { itable_Load_FloatingPoint_Single, UNIT_MEM, 3, LOAD }, - { itable_Load_FloatingPoint_Single_Indexed, UNIT_MEM, 3, LOAD }, - { itable_Load_FloatingPoint_Single_with_Update, UNIT_MEM, 3, LOAD }, - { itable_Load_FloatingPoint_Single_with_Update_Indexed, UNIT_MEM, 3, LOAD }, - { itable_Load_Halfword_Algebraic, UNIT_MEM, 2, LOAD }, - { itable_Load_Halfword_Algebraic_Indexed, UNIT_MEM, 2, LOAD }, - { itable_Load_Halfword_Algebraic_with_Update, UNIT_MEM, 2, LOAD }, - { itable_Load_Halfword_Algebraic_with_Update_Indexed, UNIT_MEM, 2, LOAD }, - { itable_Load_Halfword_ByteReverse_Indexed, UNIT_MEM, 2, LOAD }, - { itable_Load_Halfword_and_Zero, UNIT_MEM, 2, LOAD }, - { itable_Load_Halfword_and_Zero_Indexed, UNIT_MEM, 2, LOAD }, - { itable_Load_Halfword_and_Zero_with_Update, UNIT_MEM, 2, LOAD }, - { itable_Load_Halfword_and_Zero_with_Update_Indexed, UNIT_MEM, 2, LOAD }, - { itable_Load_Multiple_Word, UNIT_MEM, 2, LOAD }, - { itable_Load_String_Word_Immediate, UNIT_MEM, 2, LOAD }, - { itable_Load_String_Word_Indexed, UNIT_MEM, 2, LOAD }, - { itable_Load_Word_And_Reserve_Indexed, UNIT_MEM, 2, LOAD }, - { itable_Load_Word_ByteReverse_Indexed, UNIT_MEM, 2, LOAD }, - { itable_Load_Word_and_Zero, UNIT_MEM, 2, LOAD }, - { itable_Load_Word_and_Zero_Indexed, UNIT_MEM, 2, LOAD }, - { itable_Load_Word_and_Zero_with_Update, UNIT_MEM, 2, LOAD }, - { itable_Load_Word_and_Zero_with_Update_Indexed, UNIT_MEM, 2, LOAD }, + { itable_Load_Byte_and_Zero, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Byte_and_Zero_Indexed, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Byte_and_Zero_with_Update, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Byte_and_Zero_with_Update_Indexed, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_FloatingPoint_Double, UNIT_MEM, 3, FUNC_LOAD }, + { itable_Load_FloatingPoint_Double_Indexed, UNIT_MEM, 3, FUNC_LOAD }, + { itable_Load_FloatingPoint_Double_with_Update, UNIT_MEM, 3, FUNC_LOAD }, + { itable_Load_FloatingPoint_Double_with_Update_Indexed, UNIT_MEM, 3, FUNC_LOAD }, + { itable_Load_FloatingPoint_Single, UNIT_MEM, 3, FUNC_LOAD }, + { itable_Load_FloatingPoint_Single_Indexed, UNIT_MEM, 3, FUNC_LOAD }, + { itable_Load_FloatingPoint_Single_with_Update, UNIT_MEM, 3, FUNC_LOAD }, + { itable_Load_FloatingPoint_Single_with_Update_Indexed, UNIT_MEM, 3, FUNC_LOAD }, + { itable_Load_Halfword_Algebraic, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Halfword_Algebraic_Indexed, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Halfword_Algebraic_with_Update, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Halfword_Algebraic_with_Update_Indexed, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Halfword_ByteReverse_Indexed, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Halfword_and_Zero, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Halfword_and_Zero_Indexed, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Halfword_and_Zero_with_Update, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Halfword_and_Zero_with_Update_Indexed, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Multiple_Word, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_String_Word_Immediate, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_String_Word_Indexed, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Word_And_Reserve_Indexed, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Word_ByteReverse_Indexed, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Word_and_Zero, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Word_and_Zero_Indexed, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Word_and_Zero_with_Update, UNIT_MEM, 2, FUNC_LOAD }, + { itable_Load_Word_and_Zero_with_Update_Indexed, UNIT_MEM, 2, FUNC_LOAD }, { itable_Move_Condition_Register_Field, UNIT_BRANCH, 1, 0 }, { itable_Move_From_Condition_Register, UNIT_CINT, 3, 0 }, { itable_Move_From_FPSCR, UNIT_FPU, 3, 0 }, @@ -424,33 +424,33 @@ static timing time_604[] = { { itable_Shift_Right_Algebraic_Word, UNIT_INT, 1, 0 }, { itable_Shift_Right_Algebraic_Word_Immediate, UNIT_INT, 1, 0 }, { itable_Shift_Right_Word, UNIT_INT, 1, 0 }, - { itable_Store_Byte, UNIT_MEM, 3, STORE }, - { itable_Store_Byte_Indexed, UNIT_MEM, 3, STORE }, - { itable_Store_Byte_with_Update, UNIT_MEM, 3, STORE }, - { itable_Store_Byte_with_Update_Indexed, UNIT_MEM, 3, STORE }, - { itable_Store_FloatingPoint_Double, UNIT_MEM, 3, STORE }, - { itable_Store_FloatingPoint_Double_Indexed, UNIT_MEM, 3, STORE }, - { itable_Store_FloatingPoint_Double_with_Update, UNIT_MEM, 3, STORE }, - { itable_Store_FloatingPoint_Double_with_Update_Indexed, UNIT_MEM, 3, STORE }, - { itable_Store_FloatingPoint_Single, UNIT_MEM, 3, STORE }, - { itable_Store_FloatingPoint_Single_Indexed, UNIT_MEM, 3, STORE }, - { itable_Store_FloatingPoint_Single_with_Update, UNIT_MEM, 3, STORE }, - { itable_Store_FloatingPoint_Single_with_Update_Indexed, UNIT_MEM, 3, STORE }, - { itable_Store_FloatingPoint_as_Integer_Word_Indexed, UNIT_MEM, 3, STORE }, - { itable_Store_Half_Word, UNIT_MEM, 3, STORE }, - { itable_Store_Half_Word_ByteReversed_Indexed, UNIT_MEM, 3, STORE }, - { itable_Store_Half_Word_Indexed, UNIT_MEM, 3, STORE }, - { itable_Store_Half_Word_with_Update, UNIT_MEM, 3, STORE }, - { itable_Store_Half_Word_with_Update_Indexed, UNIT_MEM, 3, STORE }, - { itable_Store_Multiple_Word, UNIT_MEM, 3, STORE }, - { itable_Store_String_Word_Immedate, UNIT_MEM, 3, STORE }, - { itable_Store_String_Word_Indexed, UNIT_MEM, 3, STORE }, - { itable_Store_Word, UNIT_MEM, 3, STORE }, - { itable_Store_Word_ByteReversed_Indexed, UNIT_MEM, 3, STORE }, - { itable_Store_Word_Conditional_Indexed, UNIT_MEM, 3, STORE }, - { itable_Store_Word_Indexed, UNIT_MEM, 3, STORE }, - { itable_Store_Word_with_Update, UNIT_MEM, 3, STORE }, - { itable_Store_Word_with_Update_Indexed, UNIT_MEM, 3, STORE }, + { itable_Store_Byte, UNIT_MEM, 3, FUNC_STORE }, + { itable_Store_Byte_Indexed, UNIT_MEM, 3, FUNC_STORE }, + { itable_Store_Byte_with_Update, UNIT_MEM, 3, FUNC_STORE }, + { itable_Store_Byte_with_Update_Indexed, UNIT_MEM, 3, FUNC_STORE }, + { itable_Store_FloatingPoint_Double, UNIT_MEM, 3, FUNC_STORE }, + { itable_Store_FloatingPoint_Double_Indexed, UNIT_MEM, 3, FUNC_STORE }, + { itable_Store_FloatingPoint_Double_with_Update, UNIT_MEM, 3, FUNC_STORE }, + { itable_Store_FloatingPoint_Double_with_Update_Indexed, UNIT_MEM, 3, FUNC_STORE }, + { itable_Store_FloatingPoint_Single, UNIT_MEM, 3, FUNC_STORE }, + { itable_Store_FloatingPoint_Single_Indexed, UNIT_MEM, 3, FUNC_STORE }, + { itable_Store_FloatingPoint_Single_with_Update, UNIT_MEM, 3, FUNC_STORE }, + { itable_Store_FloatingPoint_Single_with_Update_Indexed, UNIT_MEM, 3, FUNC_STORE }, + { itable_Store_FloatingPoint_as_Integer_Word_Indexed, UNIT_MEM, 3, FUNC_STORE }, + { itable_Store_Half_Word, UNIT_MEM, 3, FUNC_STORE }, + { itable_Store_Half_Word_ByteReversed_Indexed, UNIT_MEM, 3, FUNC_STORE }, + { itable_Store_Half_Word_Indexed, UNIT_MEM, 3, FUNC_STORE }, + { itable_Store_Half_Word_with_Update, UNIT_MEM, 3, FUNC_STORE }, + { itable_Store_Half_Word_with_Update_Indexed, UNIT_MEM, 3, FUNC_STORE }, + { itable_Store_Multiple_Word, UNIT_MEM, 3, FUNC_STORE }, + { itable_Store_String_Word_Immedate, UNIT_MEM, 3, FUNC_STORE }, + { itable_Store_String_Word_Indexed, UNIT_MEM, 3, FUNC_STORE }, + { itable_Store_Word, UNIT_MEM, 3, FUNC_STORE }, + { itable_Store_Word_ByteReversed_Indexed, UNIT_MEM, 3, FUNC_STORE }, + { itable_Store_Word_Conditional_Indexed, UNIT_MEM, 3, FUNC_STORE }, + { itable_Store_Word_Indexed, UNIT_MEM, 3, FUNC_STORE }, + { itable_Store_Word_with_Update, UNIT_MEM, 3, FUNC_STORE }, + { itable_Store_Word_with_Update_Indexed, UNIT_MEM, 3, FUNC_STORE }, { itable_Subtract_From, UNIT_INT, 1, 0 }, { itable_Subtract_From_Carrying, UNIT_INT, 1, 0 }, { itable_Subtract_From_Extended, UNIT_INT, 1, 0 }, |