|
Class: Decompiler
Object
|
+--Scanner
|
+--Parser
|
+--ByteCodeCompiler
|
+--Decompiler
- Package:
- stx:libcomp
- Category:
- System-Compiler
- Version:
- rev:
1.54
date: 2021/01/20 12:19:54
- user: cg
- file: Decompiler.st directory: libcomp
- module: stx stc-classLibrary: libcomp
only for stx-debugging. Not for public eyes.
Decompiler decompile:(someClass compiledMethodAt:#someSelector)
copyrightCOPYRIGHT (c) 1991 by Claus Gittinger
All Rights Reserved
This software is furnished under a license and may be used
only in accordance with the terms of that license and with the
inclusion of the above copyright notice. This software may not
be provided or otherwise made available to, or used by, any
other person. No title to or ownership of the software is
hereby transferred.
decompiling
-
decompile: aMethod
-
Decompiler decompile:(FileBrowser compiledMethodAt:#initialize)
Decompiler decompile:(Decompiler compiledMethodAt:#decompile:to:)
-
decompile: aMethod to: aStream
-
Decompiler decompile:(FileBrowser compiledMethodAt:#initialize)
decompiling
-
decompile: aMethod to: aStream
-
extra notNil ifTrue:[Transcript show:(extra printString)].
-
showAbsOffset: byte
-
-
showAbsOffsetLevel: byte
-
-
showExtraOp: op
-
listStream show:(op printString); show:' '.
-
showIndex: byte
-
-
showIndexLevel: byte
-
-
showInstvarIndex: byte
-
-
showLevelIndex: byte
-
-
showLineNo: byte
-
-
showLit1: ignored
-
-
showLit2: ignored
-
-
showLit3: ignored
-
-
showLit4: ignored
-
-
showLit5: ignored
-
-
showLit6: ignored
-
-
showLit7: ignored
-
-
showLit8: ignored
-
-
showLit9: ignored
-
-
showLit: litIndex
-
-
showLiteral16: byte
-
-
showLiteral32: byte
-
-
showLiteral: byte
-
-
showLiteralAt: index
-
-
showLongOffset: byte
-
-
showLongOffsetLevel: byte
-
-
showLsendArgs: byte
-
-
showLsuperSendArgs: byte
-
-
showNumber16: byte
-
-
showNumber: byte
-
-
showNvarNargsAt: index
-
-
showOffset: byte
-
-
showOffsetLevel: byte
-
-
showPC
-
-
showSendArgs: byte
-
-
showSpecialGlobal: byte
-
listStream show:specialIndex printString.
-
showSpecialSend: byte
-
listStream show:specialIndex printString.
-
showSuperSendArgs: byte
-
-
showVeryLongOffset: byte
-
-
showVeryLongOffsetLevel: byte
-
-
symbolicCodeFor: aByte
-
0
|