diff options
author | Jacek Antonelli | 2008-08-15 23:44:46 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:44:46 -0500 |
commit | 38d6d37f2d982fa959e9e8a4a3f7e1ccfad7b5d4 (patch) | |
tree | adca584755d22ca041a2dbfc35d4eca01f70b32c /linden/indra/lscript/lscript_compile/lscript_bytecode.h | |
parent | README.txt (diff) | |
download | meta-impy-38d6d37f2d982fa959e9e8a4a3f7e1ccfad7b5d4.zip meta-impy-38d6d37f2d982fa959e9e8a4a3f7e1ccfad7b5d4.tar.gz meta-impy-38d6d37f2d982fa959e9e8a4a3f7e1ccfad7b5d4.tar.bz2 meta-impy-38d6d37f2d982fa959e9e8a4a3f7e1ccfad7b5d4.tar.xz |
Second Life viewer sources 1.13.2.12
Diffstat (limited to 'linden/indra/lscript/lscript_compile/lscript_bytecode.h')
-rw-r--r-- | linden/indra/lscript/lscript_compile/lscript_bytecode.h | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/linden/indra/lscript/lscript_compile/lscript_bytecode.h b/linden/indra/lscript/lscript_compile/lscript_bytecode.h new file mode 100644 index 0000000..5628b2e --- /dev/null +++ b/linden/indra/lscript/lscript_compile/lscript_bytecode.h | |||
@@ -0,0 +1,90 @@ | |||
1 | /** | ||
2 | * @file lscript_bytecode.h | ||
3 | * @brief classes to build actual bytecode | ||
4 | * | ||
5 | * Copyright (c) 2002-2007, Linden Research, Inc. | ||
6 | * | ||
7 | * The source code in this file ("Source Code") is provided by Linden Lab | ||
8 | * to you under the terms of the GNU General Public License, version 2.0 | ||
9 | * ("GPL"), unless you have obtained a separate licensing agreement | ||
10 | * ("Other License"), formally executed by you and Linden Lab. Terms of | ||
11 | * the GPL can be found in doc/GPL-license.txt in this distribution, or | ||
12 | * online at http://secondlife.com/developers/opensource/gplv2 | ||
13 | * | ||
14 | * There are special exceptions to the terms and conditions of the GPL as | ||
15 | * it is applied to this Source Code. View the full text of the exception | ||
16 | * in the file doc/FLOSS-exception.txt in this software distribution, or | ||
17 | * online at http://secondlife.com/developers/opensource/flossexception | ||
18 | * | ||
19 | * By copying, modifying or distributing this software, you acknowledge | ||
20 | * that you have read and understood your obligations described above, | ||
21 | * and agree to abide by those obligations. | ||
22 | * | ||
23 | * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO | ||
24 | * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, | ||
25 | * COMPLETENESS OR PERFORMANCE. | ||
26 | */ | ||
27 | |||
28 | #ifndef LL_LSCRIPT_BYTECODE_H | ||
29 | #define LL_LSCRIPT_BYTECODE_H | ||
30 | |||
31 | #include "lscript_byteconvert.h" | ||
32 | #include "lscript_scope.h" | ||
33 | |||
34 | class LLScriptJumpTable | ||
35 | { | ||
36 | public: | ||
37 | LLScriptJumpTable(); | ||
38 | ~LLScriptJumpTable(); | ||
39 | |||
40 | void addLabel(char *name, S32 offset); | ||
41 | void addJump(char *name, S32 offset); | ||
42 | |||
43 | LLMap<char *, S32 *> mLabelMap; | ||
44 | LLMap<char *, S32 *> mJumpMap; | ||
45 | }; | ||
46 | |||
47 | class LLScriptByteCodeChunk | ||
48 | { | ||
49 | public: | ||
50 | LLScriptByteCodeChunk(BOOL b_need_jumps); | ||
51 | ~LLScriptByteCodeChunk(); | ||
52 | |||
53 | void addByte(U8 byte); | ||
54 | void addU16(U16 data); | ||
55 | void addBytes(U8 *bytes, S32 size); | ||
56 | void addBytes(char *bytes, S32 size); | ||
57 | void addBytes(S32 size); | ||
58 | void addBytesDontInc(S32 size); | ||
59 | void addInteger(S32 value); | ||
60 | void addFloat(F32 value); | ||
61 | void addLabel(char *name); | ||
62 | void addJump(char *name); | ||
63 | void connectJumps(); | ||
64 | |||
65 | U8 *mCodeChunk; | ||
66 | S32 mCurrentOffset; | ||
67 | LLScriptJumpTable *mJumpTable; | ||
68 | }; | ||
69 | |||
70 | class LLScriptScriptCodeChunk | ||
71 | { | ||
72 | public: | ||
73 | LLScriptScriptCodeChunk(S32 total_size); | ||
74 | ~LLScriptScriptCodeChunk(); | ||
75 | |||
76 | void build(FILE *efp, FILE *bcfp); | ||
77 | |||
78 | LLScriptByteCodeChunk *mRegisters; | ||
79 | LLScriptByteCodeChunk *mGlobalVariables; | ||
80 | LLScriptByteCodeChunk *mGlobalFunctions; | ||
81 | LLScriptByteCodeChunk *mStates; | ||
82 | LLScriptByteCodeChunk *mHeap; | ||
83 | S32 mTotalSize; | ||
84 | U8 *mCompleteCode; | ||
85 | }; | ||
86 | |||
87 | extern LLScriptScriptCodeChunk *gScriptCodeChunk; | ||
88 | |||
89 | #endif | ||
90 | |||