diff --git a/.gitignore b/.gitignore index 00620b5359..5f0a4aa5ee 100644 --- a/.gitignore +++ b/.gitignore @@ -3,5 +3,4 @@ cmake-build-debug/* .idea/* build/* decompiler_out/* -logs/* -log/* \ No newline at end of file +logs/* \ No newline at end of file diff --git a/decomp.bat b/decomp.bat new file mode 100644 index 0000000000..e28ad3dbbe --- /dev/null +++ b/decomp.bat @@ -0,0 +1,8 @@ +@echo off +:: The caret ^ acts as a line break but does not make the next line a different command. +out\build\Release\bin\decompiler decompiler\config\jak1_ntsc_black_label.jsonc iso_data ^ +decompiler_out +:: The pause command makes the batch operation halt with a "Press any key to continue..." message. +:: Useful for example if the decompiler failed and exited for whatever reason, or for verifying its +:: success. +pause diff --git a/decompiler/CMakeLists.txt b/decompiler/CMakeLists.txt index 5137c768b6..18bc92b651 100644 --- a/decompiler/CMakeLists.txt +++ b/decompiler/CMakeLists.txt @@ -1,60 +1,60 @@ add_library( decomp SHARED - data/game_count.cpp - data/game_text.cpp - data/StrFileReader.cpp - data/tpage.cpp + data/game_count.cpp + data/game_text.cpp + data/StrFileReader.cpp + data/tpage.cpp Disasm/Instruction.cpp Disasm/InstructionDecode.cpp - Disasm/InstructionMatching.cpp - Disasm/InstructionParser.cpp + Disasm/InstructionMatching.cpp + Disasm/InstructionParser.cpp Disasm/OpcodeInfo.cpp Disasm/Register.cpp - Function/BasicBlocks.cpp - Function/CfgVtx.cpp - Function/ExpressionBuilder.cpp - Function/ExpressionStack.cpp - Function/Function.cpp - Function/RegUsage.cpp - Function/TypeAnalysis.cpp - Function/TypeInspector.cpp + Function/BasicBlocks.cpp + Function/CfgVtx.cpp + Function/ExpressionBuilder.cpp + Function/ExpressionStack.cpp + Function/Function.cpp + Function/RegUsage.cpp + Function/TypeAnalysis.cpp + Function/TypeInspector.cpp - IR/BasicOpBuilder.cpp - IR/CfgBuilder.cpp - IR/IR.cpp - IR/IR_ExpressionStack.cpp - IR/IR_TypeAnalysis.cpp + IR/BasicOpBuilder.cpp + IR/CfgBuilder.cpp + IR/IR.cpp + IR/IR_ExpressionStack.cpp + IR/IR_TypeAnalysis.cpp - IR2/AtomicOp.cpp - IR2/AtomicOpBuilder.cpp - IR2/Env.cpp + IR2/AtomicOp.cpp + IR2/AtomicOpBuilder.cpp + IR2/Env.cpp - ObjectFile/LinkedObjectFile.cpp + ObjectFile/LinkedObjectFile.cpp ObjectFile/LinkedObjectFileCreation.cpp - ObjectFile/ObjectFileDB.cpp - ObjectFile/ObjectFileDB_IR2.cpp + ObjectFile/ObjectFileDB.cpp + ObjectFile/ObjectFileDB_IR2.cpp util/DecompilerTypeSystem.cpp - util/TP_Type.cpp + util/TP_Type.cpp - config.cpp + config.cpp ) target_link_libraries(decomp - minilzo - common - fmt - ) + minilzo + common + fmt + ) add_executable(decompiler main.cpp ) target_link_libraries(decompiler - decomp + decomp common minilzo fmt) diff --git a/decompiler/IR/BasicOpBuilder.cpp b/decompiler/IR/BasicOpBuilder.cpp index 273c4facd6..6027a434c9 100644 --- a/decompiler/IR/BasicOpBuilder.cpp +++ b/decompiler/IR/BasicOpBuilder.cpp @@ -1009,7 +1009,7 @@ std::shared_ptr try_sw(Instruction& instr, int idx) { return op; } else if (instr.kind == InstructionKind::SW && instr.get_src(1).is_imm()) { if (instr.get_src(1).get_imm() == 0) { - auto op = std::make_shared(IR_Store_Atomic::INTEGER, + auto op = std::make_shared(IR_Store_Atomic::Kind::INTEGER, make_reg(instr.get_src(2).get_reg(), idx), make_reg(instr.get_src(0).get_reg(), idx), 4); op->update_reginfo_self(0, 2, 0); @@ -1027,7 +1027,7 @@ std::shared_ptr try_sw(Instruction& instr, int idx) { return op; } else { auto op = std::make_shared( - IR_Store_Atomic::INTEGER, + IR_Store_Atomic::Kind::INTEGER, std::make_shared( IR_IntMath2::ADD, make_reg(instr.get_src(2).get_reg(), idx), std::make_shared(instr.get_src(1).get_imm())), @@ -1044,13 +1044,13 @@ std::shared_ptr try_sb(Instruction& instr, int idx) { if (instr.kind == InstructionKind::SB && instr.get_src(1).is_imm()) { if (instr.get_src(1).get_imm() == 0) { if (instr.get_src(0).is_reg(make_gpr(Reg::R0))) { - auto op = std::make_shared(IR_Store_Atomic::INTEGER, + auto op = std::make_shared(IR_Store_Atomic::Kind::INTEGER, make_reg(instr.get_src(2).get_reg(), idx), std::make_shared(0), 1); op->update_reginfo_self(0, 1, 0); return op; } else { - auto op = std::make_shared(IR_Store_Atomic::INTEGER, + auto op = std::make_shared(IR_Store_Atomic::Kind::INTEGER, make_reg(instr.get_src(2).get_reg(), idx), make_reg(instr.get_src(0).get_reg(), idx), 1); op->update_reginfo_self(0, 2, 0); @@ -1060,7 +1060,7 @@ std::shared_ptr try_sb(Instruction& instr, int idx) { } else { if (instr.get_src(0).is_reg(make_gpr(Reg::R0))) { auto op = std::make_shared( - IR_Store_Atomic::INTEGER, + IR_Store_Atomic::Kind::INTEGER, std::make_shared( IR_IntMath2::ADD, make_reg(instr.get_src(2).get_reg(), idx), std::make_shared(instr.get_src(1).get_imm())), @@ -1069,7 +1069,7 @@ std::shared_ptr try_sb(Instruction& instr, int idx) { return op; } else { auto op = std::make_shared( - IR_Store_Atomic::INTEGER, + IR_Store_Atomic::Kind::INTEGER, std::make_shared( IR_IntMath2::ADD, make_reg(instr.get_src(2).get_reg(), idx), std::make_shared(instr.get_src(1).get_imm())), @@ -1085,7 +1085,7 @@ std::shared_ptr try_sb(Instruction& instr, int idx) { std::shared_ptr try_sh(Instruction& instr, int idx) { if (instr.kind == InstructionKind::SH && instr.get_src(1).is_imm()) { auto op = std::make_shared( - IR_Store_Atomic::INTEGER, + IR_Store_Atomic::Kind::INTEGER, std::make_shared( IR_IntMath2::ADD, make_reg(instr.get_src(2).get_reg(), idx), std::make_shared(instr.get_src(1).get_imm())), @@ -1099,7 +1099,7 @@ std::shared_ptr try_sh(Instruction& instr, int idx) { std::shared_ptr try_sd(Instruction& instr, int idx) { if (instr.kind == InstructionKind::SD && instr.get_src(1).is_imm()) { auto op = std::make_shared( - IR_Store_Atomic::INTEGER, + IR_Store_Atomic::Kind::INTEGER, std::make_shared( IR_IntMath2::ADD, make_reg(instr.get_src(2).get_reg(), idx), std::make_shared(instr.get_src(1).get_imm())), @@ -1113,7 +1113,7 @@ std::shared_ptr try_sd(Instruction& instr, int idx) { std::shared_ptr try_sq(Instruction& instr, int idx) { if (instr.kind == InstructionKind::SQ && instr.get_src(1).is_imm()) { auto op = std::make_shared( - IR_Store_Atomic::INTEGER, + IR_Store_Atomic::Kind::INTEGER, std::make_shared( IR_IntMath2::ADD, make_reg(instr.get_src(2).get_reg(), idx), std::make_shared(instr.get_src(1).get_imm())), @@ -1127,7 +1127,7 @@ std::shared_ptr try_sq(Instruction& instr, int idx) { std::shared_ptr try_swc1(Instruction& instr, int idx) { if (instr.kind == InstructionKind::SWC1 && instr.get_src(1).is_imm()) { auto op = std::make_shared( - IR_Store_Atomic::FLOAT, + IR_Store_Atomic::Kind::FLOAT, std::make_shared( IR_IntMath2::ADD, make_reg(instr.get_src(2).get_reg(), idx), std::make_shared(instr.get_src(1).get_imm())), diff --git a/decompiler/IR/IR.cpp b/decompiler/IR/IR.cpp index 8c4edd2688..5c6bb28ce7 100644 --- a/decompiler/IR/IR.cpp +++ b/decompiler/IR/IR.cpp @@ -275,10 +275,10 @@ void IR_Set_Atomic::update_reginfo_regreg() { goos::Object IR_Store::to_form(const LinkedObjectFile& file) const { std::string store_operator; switch (kind) { - case FLOAT: + case Kind::FLOAT: store_operator = "s.f"; break; - case INTEGER: + case Kind::INTEGER: switch (size) { case 1: store_operator = "s.b"; @@ -310,10 +310,10 @@ goos::Object IR_Store::to_form(const LinkedObjectFile& file) const { goos::Object IR_Store_Atomic::to_form(const LinkedObjectFile& file) const { std::string store_operator; switch (kind) { - case FLOAT: + case Kind::FLOAT: store_operator = "s.f"; break; - case INTEGER: + case Kind::INTEGER: switch (size) { case 1: store_operator = "s.b"; diff --git a/decompiler/IR/IR.h b/decompiler/IR/IR.h index 3c9198d1d5..5d71448d57 100644 --- a/decompiler/IR/IR.h +++ b/decompiler/IR/IR.h @@ -139,7 +139,7 @@ void IR_Set_Atomic::update_reginfo_self(int n_dest, int n_src, int class IR_Store : public virtual IR_Set { public: - enum Kind { INTEGER, FLOAT } kind; + enum class Kind { INTEGER, FLOAT } kind; IR_Store(Kind _kind, std::shared_ptr _dst, std::shared_ptr _src, int _size) : IR_Set(IR_Set::STORE, std::move(_dst), std::move(_src)), kind(_kind), size(_size) {} int size; @@ -152,7 +152,7 @@ class IR_Store : public virtual IR_Set { */ class IR_Store_Atomic : public IR_Set_Atomic { public: - enum Kind { INTEGER, FLOAT } kind; + enum class Kind { INTEGER, FLOAT } kind; IR_Store_Atomic(Kind _kind, std::shared_ptr _dst, std::shared_ptr _src, int _size) : IR_Set_Atomic(IR_Set::STORE, std::move(_dst), std::move(_src)), kind(_kind), size(_size) {} int size; diff --git a/decompiler/config/all-types.gc b/decompiler/config/all-types.gc index a177fb1efd..cd95ff458b 100644 --- a/decompiler/config/all-types.gc +++ b/decompiler/config/all-types.gc @@ -3423,7 +3423,7 @@ :method-count-assert 16 :size-assert #xa8 :flag-assert #x10004000a8 - ;; inherited inpspect of process + ;; inherited inspect of process (:methods (dummy-14 () none 14) (dummy-15 () none 15) @@ -4562,7 +4562,7 @@ :method-count-assert 14 :size-assert #xb8 :flag-assert #xe005000b8 - ;; inherited inpspect of process + ;; inherited inspect of process ) (define-extern *time-of-day-proc* time-of-day-proc) @@ -6771,7 +6771,7 @@ :method-count-assert 20 :size-assert #xb0 :flag-assert #x14004000b0 - ;; inherited inpspect of process + ;; inherited inspect of process (:methods (dummy-14 () none 14) (dummy-15 () none 15) @@ -6906,7 +6906,7 @@ ; :method-count-assert 20 ; :size-assert #x114 ; :flag-assert #x1400b00114 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -6933,7 +6933,7 @@ :method-count-assert 21 :size-assert #xd0 :flag-assert #x15006000d0 - ;; inherited inpspect of process-drawable + ;; inherited inspect of process-drawable (:methods (dummy-20 () none 20) ) @@ -6945,7 +6945,7 @@ ; :method-count-assert 14 ; :size-assert #xf8 ; :flag-assert #xe009000f8 -; ;; inherited inpspect of process +; ;; inherited inspect of process ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -6983,7 +6983,7 @@ :method-count-assert 15 :size-assert #xe0 :flag-assert #xf007000e0 - ;; inherited inpspect of processfield ~Tuserdata is a basic loaded with a signed load + ;; inherited inspect of processfield ~Tuserdata is a basic loaded with a signed load (:methods (dummy-14 () none 14) ) @@ -7002,7 +7002,7 @@ :method-count-assert 20 :size-assert #xd0 :flag-assert #x14006000d0 - ;; inherited inpspect of process-drawable + ;; inherited inspect of process-drawable ) ;; generic-obs-h @@ -7016,7 +7016,7 @@ :method-count-assert 14 :size-assert #x98 :flag-assert #xe00300098 - ;; inherited inpspect of process + ;; inherited inspect of process ) ;; generic-obs-h @@ -7057,7 +7057,7 @@ :method-count-assert 14 :size-assert #xc4 :flag-assert #xe006000c4 - ;; inherited inpspect of process + ;; inherited inspect of process ) ;; generic-obs-h @@ -7086,7 +7086,7 @@ :method-count-assert 30 :size-assert #xdc :flag-assert #x1e007000dc - ;; inherited inpspect of process-drawable + ;; inherited inspect of process-drawable (:methods (dummy-20 () none 20) (dummy-21 () none 21) @@ -8354,7 +8354,7 @@ :method-count-assert 29 :size-assert #x19c :flag-assert #x1d0130019c - ;; inherited inpspect of process-drawable + ;; inherited inspect of process-drawable (:methods (dummy-20 () none 20) (dummy-21 () none 21) @@ -8377,7 +8377,7 @@ :method-count-assert 29 :size-assert #x1a4 :flag-assert #x1d014001a4 - ;; inherited inpspect of projectile + ;; inherited inspect of projectile ) ; ;; projectiles-h @@ -8388,7 +8388,7 @@ ; :method-count-assert 29 ; :size-assert #x1a4 ; :flag-assert #x1d014001a4 -; ;; inherited inpspect of projectile +; ;; inherited inspect of projectile ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -8444,7 +8444,7 @@ :method-count-assert 21 :size-assert #x248 :flag-assert #x1501e00248 - ;; inherited inpspect of process-drawable + ;; inherited inspect of process-drawable (:methods (dummy-20 () none 20) ) @@ -8464,7 +8464,7 @@ :method-count-assert 20 :size-assert #xcc :flag-assert #x14006000cc - ;; inherited inpspect of process-drawable + ;; inherited inspect of process-drawable ) ;; depth-cue-h @@ -10344,7 +10344,7 @@ :method-count-assert 14 :size-assert #x1e0 :flag-assert #xe017001e0 - ;; inherited inpspect of process + ;; inherited inspect of process ) ;; camera-h @@ -10404,7 +10404,7 @@ :method-count-assert 14 :size-assert #xa04 :flag-assert #xe09a00a04 - ;; inherited inpspect of process + ;; inherited inspect of process ) ;; camera-h @@ -10467,7 +10467,7 @@ :method-count-assert 14 :size-assert #x964 :flag-assert #xe09000964 - ;; inherited inpspect of process + ;; inherited inspect of process ) ;; assert-h @@ -10544,7 +10544,7 @@ :method-count-assert 27 :size-assert #x118 :flag-assert #x1b00b00118 - ;; inherited inpspect of process + ;; inherited inspect of process (:methods (dummy-14 () none 14) (dummy-15 () none 15) @@ -10701,7 +10701,7 @@ ; :method-count-assert 59 ; :size-assert #x2dc ; :flag-assert #x3b027002dc -; ;; inherited inpspect of process +; ;; inherited inspect of process ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -12036,7 +12036,7 @@ :method-count-assert 53 :size-assert #x17c :flag-assert #x350110017c - ;; inherited inpspect of process-drawable + ;; inherited inspect of process-drawable (:methods (dummy-20 () none 20) (dummy-21 () none 21) @@ -12160,7 +12160,7 @@ :method-count-assert 23 :size-assert #x1cc :flag-assert #x17016001cc - ;; inherited inpspect of process + ;; inherited inspect of process (:methods (dummy-14 () none 14) (dummy-15 () none 15) @@ -12666,7 +12666,7 @@ :method-count-assert 30 :size-assert #xd4 :flag-assert #x1e007000d4 - ;; inherited inpspect of process-drawable + ;; inherited inspect of process-drawable (:methods (dummy-20 () none 20) (dummy-21 () none 21) @@ -12705,7 +12705,7 @@ :method-count-assert 14 :size-assert #x74 :flag-assert #xe00100074 - ;; inherited inpspect of process + ;; inherited inspect of process ) ; ;; cam-states @@ -13139,7 +13139,7 @@ ; :method-count-assert 20 ; :size-assert #xbc ; :flag-assert #x14005000bc -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -13167,7 +13167,7 @@ ; :method-count-assert 20 ; :size-assert #xe4 ; :flag-assert #x14008000e4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -13300,7 +13300,7 @@ ; :method-count-assert 23 ; :size-assert #xe8 ; :flag-assert #x17008000e8 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -13825,7 +13825,7 @@ ; :method-count-assert 30 ; :size-assert #x100 ; :flag-assert #x1e00900100 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -13954,7 +13954,7 @@ ; :method-count-assert 30 ; :size-assert #x104 ; :flag-assert #x1e00a00104 -; ;; inherited inpspect of crate +; ;; inherited inspect of crate ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -14016,7 +14016,7 @@ ; :method-count-assert 27 ; :size-assert #x11c ; :flag-assert #x1b00b0011c -; ;; inherited inpspect of hud +; ;; inherited inspect of hud ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -14051,7 +14051,7 @@ ; :method-count-assert 27 ; :size-assert #x138 ; :flag-assert #x1b00d00138 -; ;; inherited inpspect of hud +; ;; inherited inspect of hud ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -14083,7 +14083,7 @@ ; :method-count-assert 27 ; :size-assert #x124 ; :flag-assert #x1b00c00124 -; ;; inherited inpspect of hud +; ;; inherited inspect of hud ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -14119,7 +14119,7 @@ ; :method-count-assert 27 ; :size-assert #x134 ; :flag-assert #x1b00d00134 -; ;; inherited inpspect of hud +; ;; inherited inspect of hud ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -14150,7 +14150,7 @@ ; :method-count-assert 27 ; :size-assert #x120 ; :flag-assert #x1b00b00120 -; ;; inherited inpspect of hud +; ;; inherited inspect of hud ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -14182,7 +14182,7 @@ ; :method-count-assert 27 ; :size-assert #x124 ; :flag-assert #x1b00c00124 -; ;; inherited inpspect of hud +; ;; inherited inspect of hud ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -14354,7 +14354,7 @@ ; :method-count-assert 20 ; :size-assert #xb4 ; :flag-assert #x14005000b4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -14447,7 +14447,7 @@ ; :method-count-assert 30 ; :size-assert #xdc ; :flag-assert #x1e007000dc -; ;; inherited inpspect of water-vol +; ;; inherited inspect of water-vol ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -14580,7 +14580,7 @@ ; :method-count-assert 35 ; :size-assert #x2d4 ; :flag-assert #x23027002d4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -14700,7 +14700,7 @@ ; :method-count-assert 76 ; :size-assert #x190 ; :flag-assert #x4c01200190 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -14781,7 +14781,7 @@ ; :method-count-assert 27 ; :size-assert #xe4 ; :flag-assert #x1b008000e4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -14821,7 +14821,7 @@ ; :method-count-assert 27 ; :size-assert #x104 ; :flag-assert #x1b00a00104 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -14863,7 +14863,7 @@ ; :method-count-assert 32 ; :size-assert #x100 ; :flag-assert #x2000900100 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -14901,7 +14901,7 @@ ; :method-count-assert 24 ; :size-assert #xc0 ; :flag-assert #x18005000c0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -15029,7 +15029,7 @@ ; :method-count-assert 29 ; :size-assert #x210 ; :flag-assert #x1d01a00210 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -15153,7 +15153,7 @@ ; :method-count-assert 76 ; :size-assert #x1ec ; :flag-assert #x4c018001ec -; ;; inherited inpspect of nav-enemy +; ;; inherited inspect of nav-enemy ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -15240,7 +15240,7 @@ ; :method-count-assert 29 ; :size-assert #x4c0 ; :flag-assert #x1d045004c0 -; ;; inherited inpspect of baseplat +; ;; inherited inspect of baseplat ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -15274,7 +15274,7 @@ ; :method-count-assert 33 ; :size-assert #x108 ; :flag-assert #x2100a00108 -; ;; inherited inpspect of baseplat +; ;; inherited inspect of baseplat ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -15318,7 +15318,7 @@ ; :method-count-assert 33 ; :size-assert #xf0 ; :flag-assert #x21008000f0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -15360,7 +15360,7 @@ ; :method-count-assert 33 ; :size-assert #x165 ; :flag-assert #x2101000165 -; ;; inherited inpspect of plat +; ;; inherited inspect of plat ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -15446,7 +15446,7 @@ ; :method-count-assert 29 ; :size-assert #x840 ; :flag-assert #x1d07d00840 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -15519,7 +15519,7 @@ ; :method-count-assert 21 ; :size-assert #xe8 ; :flag-assert #x15008000e8 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -15574,7 +15574,7 @@ ; :method-count-assert 24 ; :size-assert #x174 ; :flag-assert #x1801100174 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -15626,7 +15626,7 @@ ; :method-count-assert 76 ; :size-assert #x198 ; :flag-assert #x4c01300198 -; ;; inherited inpspect of babak +; ;; inherited inspect of babak ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -15776,7 +15776,7 @@ ; :method-count-assert 20 ; :size-assert #xb4 ; :flag-assert #x14005000b4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -15803,7 +15803,7 @@ ; :method-count-assert 20 ; :size-assert #xc8 ; :flag-assert #x14006000c8 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -15848,7 +15848,7 @@ ; :method-count-assert 20 ; :size-assert #xc0 ; :flag-assert #x14005000c0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -15871,7 +15871,7 @@ ; :method-count-assert 20 ; :size-assert #xb4 ; :flag-assert #x14005000b4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -15903,7 +15903,7 @@ ; :method-count-assert 21 ; :size-assert #x110 ; :flag-assert #x1500a00110 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -15927,7 +15927,7 @@ ; :method-count-assert 20 ; :size-assert #xb4 ; :flag-assert #x14005000b4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -16048,7 +16048,7 @@ ; :method-count-assert 53 ; :size-assert #x190 ; :flag-assert #x3501200190 -; ;; inherited inpspect of process-taskable +; ;; inherited inspect of process-taskable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -16159,7 +16159,7 @@ ; :method-count-assert 53 ; :size-assert #x188 ; :flag-assert #x3501200188 -; ;; inherited inpspect of process-taskable +; ;; inherited inspect of process-taskable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -16255,7 +16255,7 @@ ; :method-count-assert 20 ; :size-assert #x160 ; :flag-assert #x1400f00160 -; ;; inherited inpspect of process-drawablefield ~Tstate-object is a basic loaded with a signed load +; ;; inherited inspect of process-drawablefield ~Tstate-object is a basic loaded with a signed load ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -16283,7 +16283,7 @@ ; :method-count-assert 22 ; :size-assert #xc8 ; :flag-assert #x16006000c8 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -16308,7 +16308,7 @@ ; :method-count-assert 76 ; :size-assert #x194 ; :flag-assert #x4c01300194 -; ;; inherited inpspect of nav-enemy +; ;; inherited inspect of nav-enemy ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -16469,7 +16469,7 @@ ; :method-count-assert 24 ; :size-assert #xcc ; :flag-assert #x18006000cc -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -16534,7 +16534,7 @@ ; :method-count-assert 28 ; :size-assert #xe8 ; :flag-assert #x1c008000e8 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -16579,7 +16579,7 @@ ; :method-count-assert 17 ; :size-assert #x1f0 ; :flag-assert #x11018001f0 -; ;; inherited inpspect of process +; ;; inherited inspect of process ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -16670,7 +16670,7 @@ ; :method-count-assert 33 ; :size-assert #x108 ; :flag-assert #x2100a00108 -; ;; inherited inpspect of basebutton +; ;; inherited inspect of basebutton ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -16709,7 +16709,7 @@ ; :method-count-assert 15 ; :size-assert #x88 ; :flag-assert #xf00200088 -; ;; inherited inpspect of process +; ;; inherited inspect of process ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -16730,7 +16730,7 @@ ; :method-count-assert 53 ; :size-assert #x190 ; :flag-assert #x3501200190 -; ;; inherited inpspect of process-taskable +; ;; inherited inspect of process-taskable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -16833,7 +16833,7 @@ ; :method-count-assert 29 ; :size-assert #x27c ; :flag-assert #x1d0210027c -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -16878,7 +16878,7 @@ ; :method-count-assert 23 ; :size-assert #xdc ; :flag-assert #x17007000dc -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -17105,7 +17105,7 @@ ; :method-count-assert 22 ; :size-assert #xbc ; :flag-assert #x16005000bc -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -17289,7 +17289,7 @@ ; :method-count-assert 33 ; :size-assert #x10c ; :flag-assert #x2100a0010c -; ;; inherited inpspect of plat +; ;; inherited inspect of plat ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -17325,7 +17325,7 @@ ; :method-count-assert 20 ; :size-assert #xb4 ; :flag-assert #x14005000b4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -17348,7 +17348,7 @@ ; :method-count-assert 20 ; :size-assert #xb4 ; :flag-assert #x14005000b4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -17442,7 +17442,7 @@ ; :method-count-assert 22 ; :size-assert #x124 ; :flag-assert #x1600c00124 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -17520,7 +17520,7 @@ ; :method-count-assert 25 ; :size-assert #xb4 ; :flag-assert #x19005000b4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -17583,7 +17583,7 @@ ; :method-count-assert 33 ; :size-assert #x120 ; :flag-assert #x2100b00120 -; ;; inherited inpspect of plat +; ;; inherited inspect of plat ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -17622,7 +17622,7 @@ ; :method-count-assert 25 ; :size-assert #xcc ; :flag-assert #x19006000cc -; ;; inherited inpspect of citb-base-plat +; ;; inherited inspect of citb-base-plat ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -17654,7 +17654,7 @@ ; :method-count-assert 35 ; :size-assert #x318 ; :flag-assert #x2302b00318 -; ;; inherited inpspect of rigid-body-platform +; ;; inherited inspect of rigid-body-platform ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -17719,7 +17719,7 @@ ; :method-count-assert 25 ; :size-assert #xbc ; :flag-assert #x19005000bc -; ;; inherited inpspect of citb-base-plat +; ;; inherited inspect of citb-base-plat ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -17785,7 +17785,7 @@ ; :method-count-assert 20 ; :size-assert #xd0 ; :flag-assert #x14006000d0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -17810,7 +17810,7 @@ ; :method-count-assert 33 ; :size-assert #xfc ; :flag-assert #x21009000fc -; ;; inherited inpspect of plat-button +; ;; inherited inspect of plat-button ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -17849,7 +17849,7 @@ ; :method-count-assert 22 ; :size-assert #x17c ; :flag-assert #x160110017c -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -17889,7 +17889,7 @@ ; :method-count-assert 53 ; :size-assert #x1e8 ; :flag-assert #x35018001e8 -; ;; inherited inpspect of process-taskable +; ;; inherited inspect of process-taskable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -18114,7 +18114,7 @@ ; :method-count-assert 53 ; :size-assert #x210 ; :flag-assert #x3501a00210 -; ;; inherited inpspect of citb-sage +; ;; inherited inspect of citb-sage ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -18189,7 +18189,7 @@ ; :method-count-assert 77 ; :size-assert #x200 ; :flag-assert #x4d01900200 -; ;; inherited inpspect of nav-enemy +; ;; inherited inspect of nav-enemy ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -18367,7 +18367,7 @@ ; :method-count-assert 22 ; :size-assert #xe1 ; :flag-assert #x16008000e1 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -18415,7 +18415,7 @@ ; :method-count-assert 20 ; :size-assert #x120 ; :flag-assert #x1400b00120 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -18444,7 +18444,7 @@ ; :method-count-assert 22 ; :size-assert #xe1 ; :flag-assert #x16008000e1 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -18492,7 +18492,7 @@ ; :method-count-assert 20 ; :size-assert #x120 ; :flag-assert #x1400b00120 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -18590,7 +18590,7 @@ ; :method-count-assert 22 ; :size-assert #x140 ; :flag-assert #x1600d00140 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -18616,7 +18616,7 @@ ; :method-count-assert 15 ; :size-assert #x80 ; :flag-assert #xf00100080 -; ;; inherited inpspect of process +; ;; inherited inspect of process ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -18658,7 +18658,7 @@ ; :method-count-assert 21 ; :size-assert #x118 ; :flag-assert #x1500b00118 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -18687,7 +18687,7 @@ ; :method-count-assert 22 ; :size-assert #xd8 ; :flag-assert #x16007000d8 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -18742,7 +18742,7 @@ ; :method-count-assert 20 ; :size-assert #xe0 ; :flag-assert #x14007000e0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -18768,7 +18768,7 @@ ; :method-count-assert 20 ; :size-assert #xf4 ; :flag-assert #x14009000f4 -; ;; inherited inpspect of arcing-shot +; ;; inherited inspect of arcing-shot ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -18791,7 +18791,7 @@ ; :method-count-assert 20 ; :size-assert #xe8 ; :flag-assert #x14008000e8 -; ;; inherited inpspect of arcing-shot +; ;; inherited inspect of arcing-shot ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -18820,7 +18820,7 @@ ; :method-count-assert 20 ; :size-assert #x130 ; :flag-assert #x1400c00130 -; ;; inherited inpspect of arcing-shot +; ;; inherited inspect of arcing-shot ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -18843,7 +18843,7 @@ ; :method-count-assert 20 ; :size-assert #xe8 ; :flag-assert #x14008000e8 -; ;; inherited inpspect of arcing-shot +; ;; inherited inspect of arcing-shot ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -18877,7 +18877,7 @@ ; :method-count-assert 20 ; :size-assert #x110 ; :flag-assert #x1400a00110 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -18900,7 +18900,7 @@ ; :method-count-assert 22 ; :size-assert #xb4 ; :flag-assert #x16005000b4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -18925,7 +18925,7 @@ ; :method-count-assert 53 ; :size-assert #x188 ; :flag-assert #x3501200188 -; ;; inherited inpspect of process-taskable +; ;; inherited inspect of process-taskable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -18984,7 +18984,7 @@ ; :method-count-assert 76 ; :size-assert #x1d8 ; :flag-assert #x4c017001d8 -; ;; inherited inpspect of nav-enemy +; ;; inherited inspect of nav-enemy ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -19065,7 +19065,7 @@ ; :method-count-assert 20 ; :size-assert #xbc ; :flag-assert #x14005000bc -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -19225,7 +19225,7 @@ ; :method-count-assert 23 ; :size-assert #xd4 ; :flag-assert #x17007000d4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -19255,7 +19255,7 @@ ; :method-count-assert 33 ; :size-assert #x180 ; :flag-assert #x2101100180 -; ;; inherited inpspect of plat-eco +; ;; inherited inspect of plat-eco ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -19317,7 +19317,7 @@ ; :method-count-assert 53 ; :size-assert #x270 ; :flag-assert #x3502000270 -; ;; inherited inpspect of process-taskable +; ;; inherited inspect of process-taskable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -19377,7 +19377,7 @@ ; :method-count-assert 33 ; :size-assert #x180 ; :flag-assert #x2101100180 -; ;; inherited inpspect of plat-eco +; ;; inherited inspect of plat-eco ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -19439,7 +19439,7 @@ ; :method-count-assert 53 ; :size-assert #x270 ; :flag-assert #x3502000270 -; ;; inherited inpspect of process-taskable +; ;; inherited inspect of process-taskable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -19495,7 +19495,7 @@ ; :method-count-assert 53 ; :size-assert #x180 ; :flag-assert #x3501100180 -; ;; inherited inpspect of process-taskable +; ;; inherited inspect of process-taskable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -19607,7 +19607,7 @@ ; :method-count-assert 20 ; :size-assert #xbc ; :flag-assert #x14005000bc -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -19667,7 +19667,7 @@ ; :method-count-assert 20 ; :size-assert #x100 ; :flag-assert #x1400900100 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -19690,7 +19690,7 @@ ; :method-count-assert 76 ; :size-assert #x194 ; :flag-assert #x4c01300194 -; ;; inherited inpspect of nav-enemy +; ;; inherited inspect of nav-enemy ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -19798,7 +19798,7 @@ ; :method-count-assert 33 ; :size-assert #xfc ; :flag-assert #x21009000fc -; ;; inherited inpspect of plat-button +; ;; inherited inspect of plat-button ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -19835,7 +19835,7 @@ ; :method-count-assert 20 ; :size-assert #xb8 ; :flag-assert #x14005000b8 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -19859,7 +19859,7 @@ ; :method-count-assert 76 ; :size-assert #x198 ; :flag-assert #x4c01300198 -; ;; inherited inpspect of nav-enemy +; ;; inherited inspect of nav-enemy ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -19970,7 +19970,7 @@ ; :method-count-assert 25 ; :size-assert #x28c ; :flag-assert #x190220028c -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -20004,7 +20004,7 @@ ; :method-count-assert 20 ; :size-assert #xd4 ; :flag-assert #x14007000d4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -20073,7 +20073,7 @@ ; :method-count-assert 20 ; :size-assert #xb8 ; :flag-assert #x14005000b8 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -20097,7 +20097,7 @@ ; :method-count-assert 20 ; :size-assert #xb8 ; :flag-assert #x14005000b8 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -20124,7 +20124,7 @@ ; :method-count-assert 20 ; :size-assert #xe8 ; :flag-assert #x14008000e8 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -20148,7 +20148,7 @@ ; :method-count-assert 20 ; :size-assert #xb8 ; :flag-assert #x14005000b8 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -20256,7 +20256,7 @@ ; :method-count-assert 20 ; :size-assert #x110 ; :flag-assert #x1400a00110 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -20279,7 +20279,7 @@ ; :method-count-assert 20 ; :size-assert #xc0 ; :flag-assert #x14005000c0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -20332,7 +20332,7 @@ ; :method-count-assert 20 ; :size-assert #xbc ; :flag-assert #x14005000bc -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -20410,7 +20410,7 @@ ; :method-count-assert 20 ; :size-assert #x184 ; :flag-assert #x1401200184 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -20459,7 +20459,7 @@ ; :method-count-assert 20 ; :size-assert #xdc ; :flag-assert #x14007000dc -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -20482,7 +20482,7 @@ ; :method-count-assert 20 ; :size-assert #xc0 ; :flag-assert #x14005000c0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -20634,7 +20634,7 @@ ; :method-count-assert 53 ; :size-assert #x260 ; :flag-assert #x3501f00260 -; ;; inherited inpspect of process-taskable +; ;; inherited inspect of process-taskable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -20695,7 +20695,7 @@ ; :method-count-assert 20 ; :size-assert #xd4 ; :flag-assert #x14007000d4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -20769,7 +20769,7 @@ ; :method-count-assert 53 ; :size-assert #x260 ; :flag-assert #x3501f00260 -; ;; inherited inpspect of process-taskable +; ;; inherited inspect of process-taskable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -20830,7 +20830,7 @@ ; :method-count-assert 20 ; :size-assert #xd4 ; :flag-assert #x14007000d4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -20880,7 +20880,7 @@ ; :method-count-assert 20 ; :size-assert #xc4 ; :flag-assert #x14006000c4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -21208,7 +21208,7 @@ ; :method-count-assert 24 ; :size-assert #xe0 ; :flag-assert #x18007000e0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -21264,7 +21264,7 @@ ; :method-count-assert 24 ; :size-assert #xe0 ; :flag-assert #x18007000e0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -21419,7 +21419,7 @@ ; :method-count-assert 53 ; :size-assert #x180 ; :flag-assert #x3501100180 -; ;; inherited inpspect of process-taskable +; ;; inherited inspect of process-taskable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -21476,7 +21476,7 @@ ; :method-count-assert 53 ; :size-assert #x188 ; :flag-assert #x3501200188 -; ;; inherited inpspect of process-taskable +; ;; inherited inspect of process-taskable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -21581,7 +21581,7 @@ ; :method-count-assert 20 ; :size-assert #x120 ; :flag-assert #x1400b00120 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -21608,7 +21608,7 @@ ; :method-count-assert 20 ; :size-assert #xe8 ; :flag-assert #x14008000e8 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -21633,7 +21633,7 @@ ; :method-count-assert 20 ; :size-assert #xe0 ; :flag-assert #x14007000e0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -21659,7 +21659,7 @@ ; :method-count-assert 20 ; :size-assert #xd8 ; :flag-assert #x14007000d8 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -21682,7 +21682,7 @@ ; :method-count-assert 20 ; :size-assert #xb4 ; :flag-assert #x14005000b4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -21706,7 +21706,7 @@ ; :method-count-assert 20 ; :size-assert #xd0 ; :flag-assert #x14006000d0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -21751,7 +21751,7 @@ ; :method-count-assert 20 ; :size-assert #xb1 ; :flag-assert #x14005000b1 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -21852,7 +21852,7 @@ ; :method-count-assert 20 ; :size-assert #xb1 ; :flag-assert #x14005000b1 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -21930,7 +21930,7 @@ ; :method-count-assert 20 ; :size-assert #xbc ; :flag-assert #x14005000bc -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -22035,7 +22035,7 @@ ; :method-count-assert 20 ; :size-assert #xe8 ; :flag-assert #x14008000e8 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -22060,7 +22060,7 @@ ; :method-count-assert 20 ; :size-assert #xe0 ; :flag-assert #x14007000e0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -22086,7 +22086,7 @@ ; :method-count-assert 20 ; :size-assert #xd8 ; :flag-assert #x14007000d8 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -22109,7 +22109,7 @@ ; :method-count-assert 20 ; :size-assert #xb4 ; :flag-assert #x14005000b4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -22133,7 +22133,7 @@ ; :method-count-assert 20 ; :size-assert #xd0 ; :flag-assert #x14006000d0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -22178,7 +22178,7 @@ ; :method-count-assert 20 ; :size-assert #xb1 ; :flag-assert #x14005000b1 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -22279,7 +22279,7 @@ ; :method-count-assert 20 ; :size-assert #xb1 ; :flag-assert #x14005000b1 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -22357,7 +22357,7 @@ ; :method-count-assert 20 ; :size-assert #xbc ; :flag-assert #x14005000bc -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -22546,7 +22546,7 @@ ; :method-count-assert 35 ; :size-assert #x520 ; :flag-assert #x2304b00520 -; ;; inherited inpspect of rigid-body-platform +; ;; inherited inspect of rigid-body-platform ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -22594,7 +22594,7 @@ ; :method-count-assert 53 ; :size-assert #x190 ; :flag-assert #x3501200190 -; ;; inherited inpspect of process-taskable +; ;; inherited inspect of process-taskable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -22685,7 +22685,7 @@ ; :method-count-assert 15 ; :size-assert #x88 ; :flag-assert #xf00200088 -; ;; inherited inpspect of process +; ;; inherited inspect of process ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -22703,7 +22703,7 @@ ; :method-count-assert 35 ; :size-assert #x2f0 ; :flag-assert #x23028002f0 -; ;; inherited inpspect of rigid-body-platform +; ;; inherited inspect of rigid-body-platform ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -22771,7 +22771,7 @@ ; :method-count-assert 22 ; :size-assert #xd0 ; :flag-assert #x16006000d0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -22797,7 +22797,7 @@ ; :method-count-assert 22 ; :size-assert #xd0 ; :flag-assert #x16006000d0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -22868,7 +22868,7 @@ ; :method-count-assert 20 ; :size-assert #xb8 ; :flag-assert #x14005000b8 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -22894,7 +22894,7 @@ ; :method-count-assert 20 ; :size-assert #xbd ; :flag-assert #x14005000bd -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -23013,7 +23013,7 @@ ; :method-count-assert 35 ; :size-assert #x2f0 ; :flag-assert #x23028002f0 -; ;; inherited inpspect of rigid-body-platform +; ;; inherited inspect of rigid-body-platform ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -23124,7 +23124,7 @@ ; :method-count-assert 20 ; :size-assert #xb4 ; :flag-assert #x14005000b4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -23148,7 +23148,7 @@ ; :method-count-assert 20 ; :size-assert #xc0 ; :flag-assert #x14005000c0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -23201,7 +23201,7 @@ ; :method-count-assert 20 ; :size-assert #xd0 ; :flag-assert #x14006000d0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -23225,7 +23225,7 @@ ; :method-count-assert 20 ; :size-assert #xbc ; :flag-assert #x14005000bc -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -23253,7 +23253,7 @@ ; :method-count-assert 20 ; :size-assert #x104 ; :flag-assert #x1400a00104 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -23317,7 +23317,7 @@ ; :method-count-assert 76 ; :size-assert #x200 ; :flag-assert #x4c01900200 -; ;; inherited inpspect of nav-enemy +; ;; inherited inspect of nav-enemy ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -23411,7 +23411,7 @@ ; :method-count-assert 76 ; :size-assert #x198 ; :flag-assert #x4c01300198 -; ;; inherited inpspect of nav-enemy +; ;; inherited inspect of nav-enemy ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -23527,7 +23527,7 @@ ; :method-count-assert 20 ; :size-assert #xd4 ; :flag-assert #x14007000d4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -23552,7 +23552,7 @@ ; :method-count-assert 20 ; :size-assert #xbc ; :flag-assert #x14005000bc -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -23614,7 +23614,7 @@ ; :method-count-assert 35 ; :size-assert #x369 ; :flag-assert #x2303000369 -; ;; inherited inpspect of rigid-body-platform +; ;; inherited inspect of rigid-body-platform ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -23822,7 +23822,7 @@ ; :method-count-assert 30 ; :size-assert #xe8 ; :flag-assert #x1e008000e8 -; ;; inherited inpspect of pov-camera +; ;; inherited inspect of pov-camera ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -23857,7 +23857,7 @@ ; :method-count-assert 35 ; :size-assert #x2f2 ; :flag-assert #x23029002f2 -; ;; inherited inpspect of rigid-body-platform +; ;; inherited inspect of rigid-body-platform ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -23969,7 +23969,7 @@ ; :method-count-assert 20 ; :size-assert #xb1 ; :flag-assert #x14005000b1 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -23993,7 +23993,7 @@ ; :method-count-assert 20 ; :size-assert #xb9 ; :flag-assert #x14005000b9 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -24039,7 +24039,7 @@ ; :method-count-assert 21 ; :size-assert #xc8 ; :flag-assert #x15006000c8 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -24063,7 +24063,7 @@ ; :method-count-assert 20 ; :size-assert #xb8 ; :flag-assert #x14005000b8 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -24406,7 +24406,7 @@ ; :method-count-assert 20 ; :size-assert #xf4 ; :flag-assert #x14009000f4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -24436,7 +24436,7 @@ ; :method-count-assert 20 ; :size-assert #x114 ; :flag-assert #x1400b00114 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -24470,7 +24470,7 @@ ; :method-count-assert 21 ; :size-assert #x120 ; :flag-assert #x1500b00120 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -24509,7 +24509,7 @@ ; :method-count-assert 20 ; :size-assert #x260 ; :flag-assert #x1401f00260 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -24535,7 +24535,7 @@ ; :method-count-assert 53 ; :size-assert #x190 ; :flag-assert #x3501200190 -; ;; inherited inpspect of process-taskable +; ;; inherited inspect of process-taskable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -24592,7 +24592,7 @@ ; :method-count-assert 53 ; :size-assert #x184 ; :flag-assert #x3501200184 -; ;; inherited inpspect of process-taskable +; ;; inherited inspect of process-taskable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -24704,7 +24704,7 @@ ; :method-count-assert 53 ; :size-assert #x190 ; :flag-assert #x3501200190 -; ;; inherited inpspect of process-taskable +; ;; inherited inspect of process-taskable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -24762,7 +24762,7 @@ ; :method-count-assert 33 ; :size-assert #xfc ; :flag-assert #x21009000fc -; ;; inherited inpspect of plat-button +; ;; inherited inspect of plat-button ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -24800,7 +24800,7 @@ ; :method-count-assert 21 ; :size-assert #xc0 ; :flag-assert #x15005000c0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -24852,7 +24852,7 @@ ; :method-count-assert 20 ; :size-assert #xc8 ; :flag-assert #x14006000c8 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -24898,7 +24898,7 @@ ; :method-count-assert 35 ; :size-assert #x2f4 ; :flag-assert #x23029002f4 -; ;; inherited inpspect of rigid-body-platform +; ;; inherited inspect of rigid-body-platform ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -25061,7 +25061,7 @@ ; :method-count-assert 20 ; :size-assert #x10b ; :flag-assert #x1400a0010b -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -25093,7 +25093,7 @@ ; :method-count-assert 21 ; :size-assert #x118 ; :flag-assert #x1500b00118 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -25127,7 +25127,7 @@ ; :method-count-assert 76 ; :size-assert #x1f0 ; :flag-assert #x4c018001f0 -; ;; inherited inpspect of nav-enemy +; ;; inherited inspect of nav-enemy ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -25215,7 +25215,7 @@ ; :method-count-assert 20 ; :size-assert #xd4 ; :flag-assert #x14007000d4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -25242,7 +25242,7 @@ ; :method-count-assert 22 ; :size-assert #xcc ; :flag-assert #x16006000cc -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -25356,7 +25356,7 @@ ; :method-count-assert 20 ; :size-assert #xb4 ; :flag-assert #x14005000b4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -25386,7 +25386,7 @@ ; :method-count-assert 76 ; :size-assert #x1bc ; :flag-assert #x4c015001bc -; ;; inherited inpspect of nav-enemy +; ;; inherited inspect of nav-enemy ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -25501,7 +25501,7 @@ ; :method-count-assert 53 ; :size-assert #x1c0 ; :flag-assert #x35015001c0 -; ;; inherited inpspect of process-taskable +; ;; inherited inspect of process-taskable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -25557,7 +25557,7 @@ ; :method-count-assert 20 ; :size-assert #xb4 ; :flag-assert #x14005000b4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -25583,7 +25583,7 @@ ; :method-count-assert 76 ; :size-assert #x214 ; :flag-assert #x4c01b00214 -; ;; inherited inpspect of swamp-rat +; ;; inherited inspect of swamp-rat ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -25697,7 +25697,7 @@ ; :method-count-assert 30 ; :size-assert #xe8 ; :flag-assert #x1e008000e8 -; ;; inherited inpspect of pov-camera +; ;; inherited inspect of pov-camera ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -25784,7 +25784,7 @@ ; :method-count-assert 22 ; :size-assert #xb4 ; :flag-assert #x16005000b4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -25815,7 +25815,7 @@ ; :method-count-assert 20 ; :size-assert #xf0 ; :flag-assert #x14008000f0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -25838,7 +25838,7 @@ ; :method-count-assert 20 ; :size-assert #xb8 ; :flag-assert #x14005000b8 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -25861,7 +25861,7 @@ ; :method-count-assert 20 ; :size-assert #xb8 ; :flag-assert #x14005000b8 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -25892,7 +25892,7 @@ ; :method-count-assert 22 ; :size-assert #x150 ; :flag-assert #x1600e00150 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -25963,7 +25963,7 @@ ; :method-count-assert 20 ; :size-assert #xb4 ; :flag-assert #x14005000b4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -25992,7 +25992,7 @@ ; :method-count-assert 22 ; :size-assert #x100 ; :flag-assert #x1600900100 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -26051,7 +26051,7 @@ ; :method-count-assert 76 ; :size-assert #x200 ; :flag-assert #x4c01900200 -; ;; inherited inpspect of nav-enemy +; ;; inherited inspect of nav-enemy ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -26133,7 +26133,7 @@ ; :method-count-assert 20 ; :size-assert #xf0 ; :flag-assert #x14008000f0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -26239,7 +26239,7 @@ ; :method-count-assert 32 ; :size-assert #x1f0 ; :flag-assert #x20018001f0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -26281,7 +26281,7 @@ ; :method-count-assert 22 ; :size-assert #x150 ; :flag-assert #x1600e00150 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -26306,7 +26306,7 @@ ; :method-count-assert 29 ; :size-assert #x1b0 ; :flag-assert #x1d014001b0 -; ;; inherited inpspect of projectile +; ;; inherited inspect of projectile ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -26340,7 +26340,7 @@ ; :method-count-assert 21 ; :size-assert #xe0 ; :flag-assert #x15007000e0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -26421,7 +26421,7 @@ ; :method-count-assert 31 ; :size-assert #x5d0 ; :flag-assert #x1f056005d0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -26478,7 +26478,7 @@ ; :method-count-assert 28 ; :size-assert #x128 ; :flag-assert #x1c00c00128 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -26554,7 +26554,7 @@ ; :method-count-assert 22 ; :size-assert #xf0 ; :flag-assert #x16008000f0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -26621,7 +26621,7 @@ ; :method-count-assert 33 ; :size-assert #x10c ; :flag-assert #x2100a0010c -; ;; inherited inpspect of plat +; ;; inherited inspect of plat ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -26657,7 +26657,7 @@ ; :method-count-assert 30 ; :size-assert #xe8 ; :flag-assert #x1e008000e8 -; ;; inherited inpspect of pov-camera +; ;; inherited inspect of pov-camera ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -26690,7 +26690,7 @@ ; :method-count-assert 20 ; :size-assert #xb4 ; :flag-assert #x14005000b4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -26713,7 +26713,7 @@ ; :method-count-assert 20 ; :size-assert #xb4 ; :flag-assert #x14005000b4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -26745,7 +26745,7 @@ ; :method-count-assert 28 ; :size-assert #x130 ; :flag-assert #x1c00c00130 -; ;; inherited inpspect of baseplat +; ;; inherited inspect of baseplat ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -26818,7 +26818,7 @@ ; :method-count-assert 20 ; :size-assert #x100 ; :flag-assert #x1400900100 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -26850,7 +26850,7 @@ ; :method-count-assert 22 ; :size-assert #x100 ; :flag-assert #x1600900100 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -26875,7 +26875,7 @@ ; :method-count-assert 21 ; :size-assert #xb4 ; :flag-assert #x15005000b4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -26905,7 +26905,7 @@ ; :method-count-assert 29 ; :size-assert #x118 ; :flag-assert #x1d00b00118 -; ;; inherited inpspect of baseplat +; ;; inherited inspect of baseplat ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -26940,7 +26940,7 @@ ; :method-count-assert 14 ; :size-assert #x8c ; :flag-assert #xe0020008c -; ;; inherited inpspect of process +; ;; inherited inspect of process ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -26959,7 +26959,7 @@ ; :method-count-assert 28 ; :size-assert #xf0 ; :flag-assert #x1c008000f0 -; ;; inherited inpspect of baseplat +; ;; inherited inspect of baseplat ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -27024,7 +27024,7 @@ ; :method-count-assert 20 ; :size-assert #xf0 ; :flag-assert #x14008000f0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -27073,7 +27073,7 @@ ; :method-count-assert 35 ; :size-assert #x300 ; :flag-assert #x2302900300 -; ;; inherited inpspect of rigid-body-platform +; ;; inherited inspect of rigid-body-platform ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -27121,7 +27121,7 @@ ; :method-count-assert 21 ; :size-assert #x100 ; :flag-assert #x1500900100 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -27165,7 +27165,7 @@ ; :method-count-assert 22 ; :size-assert #x160 ; :flag-assert #x1600f00160 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -27193,7 +27193,7 @@ ; :method-count-assert 21 ; :size-assert #xf0 ; :flag-assert #x15008000f0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -27219,7 +27219,7 @@ ; :method-count-assert 22 ; :size-assert #xbc ; :flag-assert #x16005000bc -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -27266,7 +27266,7 @@ ; :method-count-assert 25 ; :size-assert #x100 ; :flag-assert #x1900900100 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -27329,7 +27329,7 @@ ; :method-count-assert 27 ; :size-assert #xec ; :flag-assert #x1b008000ec -; ;; inherited inpspect of baseplat +; ;; inherited inspect of baseplat ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -27367,7 +27367,7 @@ ; :method-count-assert 31 ; :size-assert #x140 ; :flag-assert #x1f00d00140 -; ;; inherited inpspect of water-anim +; ;; inherited inspect of water-anim ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -27404,7 +27404,7 @@ ; :method-count-assert 21 ; :size-assert #xcc ; :flag-assert #x15006000cc -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -27487,7 +27487,7 @@ ; :method-count-assert 23 ; :size-assert #x2a0 ; :flag-assert #x17023002a0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -27547,7 +27547,7 @@ ; :method-count-assert 21 ; :size-assert #xf4 ; :flag-assert #x15009000f4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -27571,7 +27571,7 @@ ; :method-count-assert 76 ; :size-assert #x1a0 ; :flag-assert #x4c013001a0 -; ;; inherited inpspect of nav-enemy +; ;; inherited inspect of nav-enemy ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -27654,7 +27654,7 @@ ; :method-count-assert 76 ; :size-assert #x1a8 ; :flag-assert #x4c014001a8 -; ;; inherited inpspect of nav-enemy +; ;; inherited inspect of nav-enemy ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -27759,7 +27759,7 @@ ; :method-count-assert 20 ; :size-assert #xe0 ; :flag-assert #x14007000e0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -27819,7 +27819,7 @@ ; :method-count-assert 22 ; :size-assert #xc8 ; :flag-assert #x16006000c8 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -27870,7 +27870,7 @@ ; :method-count-assert 32 ; :size-assert #x198 ; :flag-assert #x2001300198 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -27932,7 +27932,7 @@ ; :method-count-assert 28 ; :size-assert #x140 ; :flag-assert #x1c00d00140 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -28028,7 +28028,7 @@ ; :method-count-assert 20 ; :size-assert #xb4 ; :flag-assert #x14005000b4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -28052,7 +28052,7 @@ ; :method-count-assert 20 ; :size-assert #xf8 ; :flag-assert #x14009000f8 -; ;; inherited inpspect of pusher-base +; ;; inherited inspect of pusher-base ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -28075,7 +28075,7 @@ ; :method-count-assert 20 ; :size-assert #xb8 ; :flag-assert #x14005000b8 -; ;; inherited inpspect of pusher-base +; ;; inherited inspect of pusher-base ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -28099,7 +28099,7 @@ ; :method-count-assert 20 ; :size-assert #xc4 ; :flag-assert #x14006000c4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -28122,7 +28122,7 @@ ; :method-count-assert 20 ; :size-assert #xb4 ; :flag-assert #x14005000b4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -28155,7 +28155,7 @@ ; :method-count-assert 20 ; :size-assert #xf5 ; :flag-assert #x14009000f5 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -28180,7 +28180,7 @@ ; :method-count-assert 20 ; :size-assert #xf8 ; :flag-assert #x14009000f8 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -28209,7 +28209,7 @@ ; :method-count-assert 20 ; :size-assert #x140 ; :flag-assert #x1400d00140 -; ;; inherited inpspect of gorge +; ;; inherited inspect of gorge ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -28232,7 +28232,7 @@ ; :method-count-assert 20 ; :size-assert #xfc ; :flag-assert #x14009000fc -; ;; inherited inpspect of gorge +; ;; inherited inspect of gorge ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -28340,7 +28340,7 @@ ; :method-count-assert 76 ; :size-assert #x20c ; :flag-assert #x4c01a0020c -; ;; inherited inpspect of nav-enemy +; ;; inherited inspect of nav-enemy ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -28420,7 +28420,7 @@ ; :method-count-assert 76 ; :size-assert #x224 ; :flag-assert #x4c01c00224 -; ;; inherited inpspect of fleeing-nav-enemy +; ;; inherited inspect of fleeing-nav-enemy ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -28534,7 +28534,7 @@ ; :method-count-assert 20 ; :size-assert #x118 ; :flag-assert #x1400b00118 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -28565,7 +28565,7 @@ ; :method-count-assert 20 ; :size-assert #x130 ; :flag-assert #x1400c00130 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -28610,7 +28610,7 @@ ; :method-count-assert 20 ; :size-assert #xb4 ; :flag-assert #x14005000b4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -28740,7 +28740,7 @@ ; :method-count-assert 35 ; :size-assert #x308 ; :flag-assert #x2302a00308 -; ;; inherited inpspect of rigid-body-platform +; ;; inherited inspect of rigid-body-platform ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -29112,7 +29112,7 @@ ; :method-count-assert 20 ; :size-assert #xd1 ; :flag-assert #x14007000d1 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -29158,7 +29158,7 @@ ; :method-count-assert 30 ; :size-assert #xe4 ; :flag-assert #x1e008000e4 -; ;; inherited inpspect of water-anim +; ;; inherited inspect of water-anim ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -29191,7 +29191,7 @@ ; :method-count-assert 20 ; :size-assert #xd1 ; :flag-assert #x14007000d1 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -29215,7 +29215,7 @@ ; :method-count-assert 20 ; :size-assert #xb8 ; :flag-assert #x14005000b8 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -29256,7 +29256,7 @@ ; :method-count-assert 21 ; :size-assert #x130 ; :flag-assert #x1500c00130 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -29322,7 +29322,7 @@ ; :method-count-assert 23 ; :size-assert #xf0 ; :flag-assert #x17008000f0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -29397,7 +29397,7 @@ ; :method-count-assert 21 ; :size-assert #xc0 ; :flag-assert #x15005000c0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -29476,7 +29476,7 @@ ; :method-count-assert 53 ; :size-assert #x180 ; :flag-assert #x3501100180 -; ;; inherited inpspect of process-taskable +; ;; inherited inspect of process-taskable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -29612,7 +29612,7 @@ ; :method-count-assert 53 ; :size-assert #x194 ; :flag-assert #x3501300194 -; ;; inherited inpspect of process-taskable +; ;; inherited inspect of process-taskable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -29672,7 +29672,7 @@ ; :method-count-assert 21 ; :size-assert #xe0 ; :flag-assert #x15007000e0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -29696,7 +29696,7 @@ ; :method-count-assert 20 ; :size-assert #xb8 ; :flag-assert #x14005000b8 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -29739,7 +29739,7 @@ ; :method-count-assert 20 ; :size-assert #xd5 ; :flag-assert #x14007000d5 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -29817,7 +29817,7 @@ ; :method-count-assert 76 ; :size-assert #x1f0 ; :flag-assert #x4c018001f0 -; ;; inherited inpspect of nav-enemy +; ;; inherited inspect of nav-enemy ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -29951,7 +29951,7 @@ ; :method-count-assert 23 ; :size-assert #x150 ; :flag-assert #x1700e00150 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -29981,7 +29981,7 @@ ; :method-count-assert 16 ; :size-assert #x8c ; :flag-assert #x100020008c -; ;; inherited inpspect of process +; ;; inherited inspect of process ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -30000,7 +30000,7 @@ ; :method-count-assert 30 ; :size-assert #xe8 ; :flag-assert #x1e008000e8 -; ;; inherited inpspect of pov-camera +; ;; inherited inspect of pov-camera ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -30034,7 +30034,7 @@ ; :method-count-assert 20 ; :size-assert #xc4 ; :flag-assert #x14006000c4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -30060,7 +30060,7 @@ ; :method-count-assert 20 ; :size-assert #xf0 ; :flag-assert #x14008000f0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -30084,7 +30084,7 @@ ; :method-count-assert 27 ; :size-assert #x130 ; :flag-assert #x1b00c00130 -; ;; inherited inpspect of baseplat +; ;; inherited inspect of baseplat ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -30117,7 +30117,7 @@ ; :method-count-assert 20 ; :size-assert #xe0 ; :flag-assert #x14007000e0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -30165,7 +30165,7 @@ ; :method-count-assert 20 ; :size-assert #xd0 ; :flag-assert #x14006000d0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -30188,7 +30188,7 @@ ; :method-count-assert 20 ; :size-assert #xb4 ; :flag-assert #x14005000b4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -30212,7 +30212,7 @@ ; :method-count-assert 20 ; :size-assert #xd0 ; :flag-assert #x14006000d0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -30246,7 +30246,7 @@ ; :method-count-assert 33 ; :size-assert #x180 ; :flag-assert #x2101100180 -; ;; inherited inpspect of plat +; ;; inherited inspect of plat ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -30286,7 +30286,7 @@ ; :method-count-assert 20 ; :size-assert #xf0 ; :flag-assert #x14008000f0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -30418,7 +30418,7 @@ ; :method-count-assert 22 ; :size-assert #xc8 ; :flag-assert #x16006000c8 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -30448,7 +30448,7 @@ ; :method-count-assert 23 ; :size-assert #xe0 ; :flag-assert #x17007000e0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -30479,7 +30479,7 @@ ; :method-count-assert 29 ; :size-assert #x1d0 ; :flag-assert #x1d016001d0 -; ;; inherited inpspect of projectile +; ;; inherited inspect of projectile ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -30524,7 +30524,7 @@ ; :method-count-assert 76 ; :size-assert #x1f4 ; :flag-assert #x4c019001f4 -; ;; inherited inpspect of nav-enemy +; ;; inherited inspect of nav-enemy ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -30627,7 +30627,7 @@ ; :method-count-assert 76 ; :size-assert #x198 ; :flag-assert #x4c01300198 -; ;; inherited inpspect of nav-enemy +; ;; inherited inspect of nav-enemy ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -30709,7 +30709,7 @@ ; :method-count-assert 22 ; :size-assert #xc8 ; :flag-assert #x16006000c8 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -30811,7 +30811,7 @@ ; :method-count-assert 20 ; :size-assert #xc0 ; :flag-assert #x14005000c0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -30840,7 +30840,7 @@ ; :method-count-assert 20 ; :size-assert #x1b0 ; :flag-assert #x14014001b0 -; ;; inherited inpspect of darkecobarrel-base +; ;; inherited inspect of darkecobarrel-base ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -30864,7 +30864,7 @@ ; :method-count-assert 20 ; :size-assert #xc8 ; :flag-assert #x14006000c8 -; ;; inherited inpspect of darkecobarrel-base +; ;; inherited inspect of darkecobarrel-base ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -30955,7 +30955,7 @@ ; :method-count-assert 22 ; :size-assert #xb4 ; :flag-assert #x16005000b4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -31034,7 +31034,7 @@ ; :method-count-assert 20 ; :size-assert #xb4 ; :flag-assert #x14005000b4 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -31087,7 +31087,7 @@ ; :method-count-assert 20 ; :size-assert #x1b0 ; :flag-assert #x14014001b0 -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -31118,7 +31118,7 @@ ; :method-count-assert 20 ; :size-assert #x1ac ; :flag-assert #x14014001ac -; ;; inherited inpspect of process-drawable +; ;; inherited inspect of process-drawable ; (:methods ; (dummy-9 () none 9) ; (dummy-10 () none 10) @@ -31259,7 +31259,7 @@ :method-count-assert 24 :size-assert #xf0 :flag-assert #x18008000f0 - ;; inherited inpspect of process-drawable + ;; inherited inspect of process-drawable (:methods (dummy-20 () none 20) (dummy-21 () none 21) @@ -31276,7 +31276,7 @@ :method-count-assert 21 :size-assert #xb4 :flag-assert #x15005000b4 - ;; inherited inpspect of process-drawable + ;; inherited inspect of process-drawable (:methods (dummy-20 () none 20) ) diff --git a/gc.bat b/gc.bat new file mode 100644 index 0000000000..5a553dc582 --- /dev/null +++ b/gc.bat @@ -0,0 +1,2 @@ +@echo off +out\build\Release\bin\goalc -v diff --git a/gk.bat b/gk.bat new file mode 100644 index 0000000000..aacc58a653 --- /dev/null +++ b/gk.bat @@ -0,0 +1,2 @@ +@echo off +out\build\Release\bin\gk -fakeiso -debug -v diff --git a/goal_src/kernel/gcommon.gc b/goal_src/kernel/gcommon.gc index 6c6e0b1768..fcaf8d7ed5 100644 --- a/goal_src/kernel/gcommon.gc +++ b/goal_src/kernel/gcommon.gc @@ -195,7 +195,7 @@ ((data float :offset-assert 4)) (:methods (print (_type_) _type_ 2) ;; we will override print later on. This is optional to include - (inspect (_type_) _type_ 3) ;; this is a parent method we won't override. This is also optional to inlcude + (inspect (_type_) _type_ 3) ;; this is a parent method we won't override. This is also optional to include ) :size-assert 8 diff --git a/goalc/compiler/CodeGenerator.cpp b/goalc/compiler/CodeGenerator.cpp index c25b5a0b42..d39b775066 100644 --- a/goalc/compiler/CodeGenerator.cpp +++ b/goalc/compiler/CodeGenerator.cpp @@ -89,14 +89,14 @@ void CodeGenerator::do_goal_function(FunctionEnv* env, int f_idx) { // offset the stack stack_offset += xmm_backup_stack_offset; m_gen.add_instr_no_ir(f_rec, IGen::sub_gpr64_imm(RSP, xmm_backup_stack_offset), - InstructionInfo::PROLOGUE); + InstructionInfo::Kind::PROLOGUE); // back up xmms int i = 0; for (auto& saved_reg : allocs.used_saved_regs) { if (saved_reg.is_xmm()) { int offset = i * XMM_SIZE; m_gen.add_instr_no_ir(f_rec, IGen::store128_xmm128_reg_offset(RSP, saved_reg, offset), - InstructionInfo::PROLOGUE); + InstructionInfo::Kind::PROLOGUE); i++; } } @@ -106,9 +106,9 @@ void CodeGenerator::do_goal_function(FunctionEnv* env, int f_idx) { for (auto& saved_reg : allocs.used_saved_regs) { if (saved_reg.is_xmm()) { m_gen.add_instr_no_ir(f_rec, IGen::sub_gpr64_imm8s(RSP, XMM_SIZE), - InstructionInfo::PROLOGUE); + InstructionInfo::Kind::PROLOGUE); m_gen.add_instr_no_ir(f_rec, IGen::store128_gpr64_xmm128(RSP, saved_reg), - InstructionInfo::PROLOGUE); + InstructionInfo::Kind::PROLOGUE); stack_offset += XMM_SIZE; } } @@ -117,7 +117,7 @@ void CodeGenerator::do_goal_function(FunctionEnv* env, int f_idx) { // back up gprs for (auto& saved_reg : allocs.used_saved_regs) { if (saved_reg.is_gpr()) { - m_gen.add_instr_no_ir(f_rec, IGen::push_gpr64(saved_reg), InstructionInfo::PROLOGUE); + m_gen.add_instr_no_ir(f_rec, IGen::push_gpr64(saved_reg), InstructionInfo::Kind::PROLOGUE); stack_offset += GPR_SIZE; } } @@ -141,7 +141,7 @@ void CodeGenerator::do_goal_function(FunctionEnv* env, int f_idx) { // otherwise to an extra push, and remember so we can do an extra pop later on. bonus_push = true; m_gen.add_instr_no_ir(f_rec, IGen::push_gpr64(ri.get_saved_gpr(0)), - InstructionInfo::PROLOGUE); + InstructionInfo::Kind::PROLOGUE); } stack_offset += 8; } @@ -151,7 +151,7 @@ void CodeGenerator::do_goal_function(FunctionEnv* env, int f_idx) { // do manual stack offset. if (manually_added_stack_offset) { m_gen.add_instr_no_ir(f_rec, IGen::sub_gpr64_imm(RSP, manually_added_stack_offset), - InstructionInfo::PROLOGUE); + InstructionInfo::Kind::PROLOGUE); } } @@ -209,19 +209,20 @@ void CodeGenerator::do_goal_function(FunctionEnv* env, int f_idx) { env->needs_aligned_stack()) { if (manually_added_stack_offset) { m_gen.add_instr_no_ir(f_rec, IGen::add_gpr64_imm(RSP, manually_added_stack_offset), - InstructionInfo::EPILOGUE); + InstructionInfo::Kind::EPILOGUE); } if (bonus_push) { assert(!manually_added_stack_offset); - m_gen.add_instr_no_ir(f_rec, IGen::pop_gpr64(ri.get_saved_gpr(0)), InstructionInfo::EPILOGUE); + m_gen.add_instr_no_ir(f_rec, IGen::pop_gpr64(ri.get_saved_gpr(0)), + InstructionInfo::Kind::EPILOGUE); } } for (int i = int(allocs.used_saved_regs.size()); i-- > 0;) { auto& saved_reg = allocs.used_saved_regs.at(i); if (saved_reg.is_gpr()) { - m_gen.add_instr_no_ir(f_rec, IGen::pop_gpr64(saved_reg), InstructionInfo::EPILOGUE); + m_gen.add_instr_no_ir(f_rec, IGen::pop_gpr64(saved_reg), InstructionInfo::Kind::EPILOGUE); } } @@ -234,26 +235,26 @@ void CodeGenerator::do_goal_function(FunctionEnv* env, int f_idx) { j--; int offset = j * XMM_SIZE; m_gen.add_instr_no_ir(f_rec, IGen::load128_xmm128_reg_offset(saved_reg, RSP, offset), - InstructionInfo::EPILOGUE); + InstructionInfo::Kind::EPILOGUE); } } assert(j == 0); m_gen.add_instr_no_ir(f_rec, IGen::add_gpr64_imm(RSP, xmm_backup_stack_offset), - InstructionInfo::EPILOGUE); + InstructionInfo::Kind::EPILOGUE); } } else { for (int i = int(allocs.used_saved_regs.size()); i-- > 0;) { auto& saved_reg = allocs.used_saved_regs.at(i); if (saved_reg.is_xmm()) { m_gen.add_instr_no_ir(f_rec, IGen::load128_xmm128_gpr64(saved_reg, RSP), - InstructionInfo::EPILOGUE); + InstructionInfo::Kind::EPILOGUE); m_gen.add_instr_no_ir(f_rec, IGen::add_gpr64_imm8s(RSP, XMM_SIZE), - InstructionInfo::EPILOGUE); + InstructionInfo::Kind::EPILOGUE); } } } - m_gen.add_instr_no_ir(f_rec, IGen::ret(), InstructionInfo::EPILOGUE); + m_gen.add_instr_no_ir(f_rec, IGen::ret(), InstructionInfo::Kind::EPILOGUE); } void CodeGenerator::do_asm_function(FunctionEnv* env, int f_idx, bool allow_saved_regs) { diff --git a/goalc/debugger/disassemble.cpp b/goalc/debugger/disassemble.cpp index 6e1b63c27f..777f53ee29 100644 --- a/goalc/debugger/disassemble.cpp +++ b/goalc/debugger/disassemble.cpp @@ -113,7 +113,7 @@ std::string disassemble_x86_function(u8* data, if (current_instruction_idx >= 0 && current_instruction_idx < int(x86_instructions.size())) { const auto& debug_instr = x86_instructions.at(current_instruction_idx); - if (debug_instr.kind == InstructionInfo::IR && debug_instr.ir_idx != current_ir_idx) { + if (debug_instr.kind == InstructionInfo::Kind::IR && debug_instr.ir_idx != current_ir_idx) { current_ir_idx = debug_instr.ir_idx; print_ir = true; } diff --git a/goalc/debugger/disassemble.h b/goalc/debugger/disassemble.h index 86da2dc301..d03c5a81b8 100644 --- a/goalc/debugger/disassemble.h +++ b/goalc/debugger/disassemble.h @@ -7,7 +7,7 @@ struct InstructionInfo { emitter::Instruction instruction; //! the actual x86 instruction - enum Kind { PROLOGUE, IR, EPILOGUE } kind; + enum class Kind { PROLOGUE, IR, EPILOGUE } kind; int ir_idx = -1; int offset = -1; diff --git a/log/.gitignore b/log/.gitignore new file mode 100644 index 0000000000..d6b7ef32c8 --- /dev/null +++ b/log/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore