t3.hfile | source file |
Classes Summary | Functions Summary Details | Macros Summary Details | Enums Summary Details | Templates Summary Details |
This header defines the t3vm intrinsic function set. These functions provide access to basic features of the Virtual Machine.
t3AllocProp
t3DebugTrace
t3GetGlobalSymbols
t3GetNamedArg
t3GetNamedArgList
t3GetStackTrace
t3GetVMBanner
t3GetVMID
t3GetVMPreinitMode
t3GetVMVsn
t3RunGC
t3SetSay
T3DebugBreak
T3DebugCheck
T3DebugLog
T3GetStackDesc
T3GetStackLocals
T3GlobalSymbols
T3MacroHasArgs
T3MacroHasVarargs
T3PreprocMacros
T3SetSayNoFunc
T3SetSayNoMethod
t3AllocProp ( ) | t3.h[146] |
t3DebugTrace (mode, ...) | t3.h[99] |
T3DebugCheck - checks to see if an interactive debugger is present. No additional arguments; returns true if a debugger is present, nil if not.
T3DebugBreak - breaks into the interactive debugger, pausing execution at the current code location so that the user can inspect the current machine state and determine how to proceed. No additional arguments; after the user proceeds with execution, the function returns true to indicate that a debugger is present. If no debugger is present, the function simply returns nil, and has no other effect.
T3DebugLog - writes a message to the debug log. The second argument is a string with the text of the message to write. When running under an interactive debugger, the log is usually displayed as a window in the UI, or something similar. When running in a regular interpreter, the log is stored as a text file called tadslog.txt, in a directory location that varies by system. When a log file is used, the system automatically adds a timestamp to each message.
t3GetGlobalSymbols (which?) | t3.h[137] |
'which' specifies which table to retrieve:
T3GlobalSymbols - return the global symbol table
T3PreprocMacros - return the preprocessor macro table
If 'which' is omitted, the global symbol table is returned by default.
If the requested symbol table is available, this returns a LookupTable object; otherwise, it returns nil.
The symbol tables are available under two conditions. First, while pre-initialization is running during the program build (compiling) process, regardless of the debug/release mode being used for compilation. Second, during normal "t3run" execution, but only when the program has been compiled for debugging. When you compile in release mode, the compiler omits the debugging symbols from the .t3 image file to save space, so the symbol tables won't be available when running a release build under the interpreter.
If you want to access the symbol tables under normal execution (i.e., after preinit) in a release build, you can do it, but it requires an extra manual step. The trick is to call this function during preinit, when the symbol tables are definitely available regardless of the debug/release mode, and then save a reference to each desired table in an object property. This will ensure that the final image file saved after preinit completes includes the tables, because the object property reference ensures that the garbage collector won't delete them. Now, you *still* can't access the tables again at run-time by calling t3GetGlobalSymbols(), but you can instead get the same information from your saved object property.
t3GetNamedArg (name, defval?) | t3.h[181] |
'name' is a string giving the name of the argument to search for. This must exactly match the name of an argument passed by a caller with the "name: value" syntax. The match is case-sensitive.
'defval' is an optional default value to return if the argument doesn't exist. If 'deval' is specified, and the argument doesn't exist, the function returns 'defval'. If 'defval' is omitted, and the argument doesn't exist, the function throws an error.
t3GetNamedArgList ( ) | t3.h[188] |
t3GetStackTrace (level?, flags?) | t3.h[166] |
If 'level' is an integer, we'll return a single T3StackInfo object giving the context at the given stack level - 1 is the active level, 2 is its caller, and so on, so 'level' would simply be the index in the returned list when this argument is omitted. If 'level' is omitted or nil, we return a list of T3StackInfo objects giving the entire stack trace.
If 'flags' is specified, it's a combination of T3GetStackXxx flags specifying additional options. If this isn't included, the default is 0 (i.e., all flags turned off).
t3GetVMBanner ( ) | t3.h[64] |
t3GetVMID ( ) | t3.h[57] |
t3GetVMPreinitMode ( ) | t3.h[71] |
t3GetVMVsn ( ) | t3.h[51] |
t3RunGC ( ) | t3.h[28] |
t3SetSay (val) | t3.h[42] |
The special values T3SetSayNoFunc and T3SetSayNoMethod can be passed to the function to remove any existing function or method, respectively, and are returned when appropriate to indicate that there was no previous setting.
T3DebugBreak | t3.h[200] |
2
T3DebugCheck | t3.h[197] |
1
T3DebugLog | t3.h[203] |
3
T3GetStackDesc | t3.h[226] |
0x0002
T3GetStackLocals | t3.h[225] |
0x0001
T3GlobalSymbols | t3.h[218] |
1
T3MacroHasArgs | t3.h[231] |
0x0001
T3MacroHasVarargs | t3.h[232] |
0x0002
T3PreprocMacros | t3.h[219] |
2
T3SetSayNoFunc | t3.h[210] |
1
T3SetSayNoMethod | t3.h[211] |
2
(none)