lscript_heapruntime.cpp
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:13k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file lscript_heapruntime.cpp
  3.  * @brief classes to manage script heap at runtime
  4.  *
  5.  * $LicenseInfo:firstyear=2002&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2002-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #if 0
  33. #include "linden_common.h"
  34. #include "lscript_heapruntime.h"
  35. #include "lscript_execute.h"
  36. /*
  37. String Heap Format
  38. Byte Description
  39. 0x0 - 0xnn Single byte string including null terminator
  40. List Heap Format
  41. Byte Description
  42. 0x0 Next Entry Type
  43. 0: End of list
  44. 1: Integer
  45. 2: Floating point
  46. 3: String
  47. 4: Vector
  48. 5: Quaternion
  49. 6: List
  50. 0x1 - 0x4 Integer, Floating Point, String Address, List Address
  51. or
  52. 0x1 - 0xd Vector
  53. or
  54. 0x1 - 0x11 Quaternion
  55. . . .
  56. Heap Block Format
  57. Byte Description
  58. 0x0 - 0x3 Offset to Next Block
  59. 0x4 - 0x7 Object Reference Count
  60. 0x8  Block Type
  61. 0: Empty
  62. 3: String
  63. 6: List
  64. 0x9 - 0xM Object Data
  65. Heap Management
  66. Adding Data
  67. 1) Set last empty spot to zero.
  68. 2) Go to start of the heap (HR).
  69. 3) Get next 4 bytes of offset.
  70. 4) If zero, we've reached the end of used memory.  If empty spot is zero go to step 9.  Otherwise set base offset to 0 and go to step 9.
  71. 5) Skip 4 bytes.
  72. 6) Get next 1 byte of entry type.
  73. 7) If zero, this spot is empty.  If empty spot is zero, set empty spot to this address and go to step 9.  Otherwise, coalesce with last empty spot and then go to step 9.
  74. 8) Skip forward by offset and go to step 3.
  75. 9) If the spot is empty, check to see if the size needed == offset - 9.
  76. 10)  If it does, let's drop our data into this spot.  Set reference count to 1.  Set entry type appropriately and copy the data in.  
  77. 11)  If size needed < offset - 9 then we can stick in data and add in an empty block.
  78. 12)  Otherwise, we need to keep looking.  Go to step 3.
  79. Increasing reference counts
  80. Decreasing reference counts
  81. 1) Set entry type to 0.
  82. 2) If offset is non-zero and the next entry is empty, coalesce.  Go to step 2.
  83. What increases reference count:
  84. Initial creation sets reference count to 1.
  85. Storing the reference increases reference count by 1.
  86. Pushing the reference increases reference count by 1.
  87. Duplicating the reference increases reference count by 1.
  88. What decreases the reference count:
  89. Popping the reference decreases reference count by 1.
  90.  */
  91. LLScriptHeapRunTime::LLScriptHeapRunTime()
  92. : mLastEmpty(0), mBuffer(NULL), mCurrentPosition(0), mStackPointer(0), mHeapRegister(0), mbPrint(FALSE)
  93. {
  94. }
  95. LLScriptHeapRunTime::~LLScriptHeapRunTime()
  96. {
  97. }
  98. S32 LLScriptHeapRunTime::addData(char *string)
  99. {
  100. if (!mBuffer)
  101. return 0;
  102. S32 size = strlen(string) + 1;
  103. S32 block_offset = findOpenBlock(size + HEAP_BLOCK_HEADER_SIZE);
  104. if (mCurrentPosition)
  105. {
  106. S32 offset = mCurrentPosition;
  107. if (offset + block_offset + HEAP_BLOCK_HEADER_SIZE + LSCRIPTDataSize[LST_INTEGER] >= mStackPointer)
  108. {
  109. set_fault(mBuffer, LSRF_STACK_HEAP_COLLISION);
  110. return 0;
  111. }
  112. // cool, we've found a spot!
  113. // set offset
  114. integer2bytestream(mBuffer, offset, block_offset);
  115. // set reference count
  116. integer2bytestream(mBuffer, offset, 1);
  117. // set type
  118. *(mBuffer + offset++) = LSCRIPTTypeByte[LST_STRING];
  119. // plug in data
  120. char2bytestream(mBuffer, offset, string);
  121. if (mbPrint)
  122. printf("0x%X created ref count %dn", mCurrentPosition - mHeapRegister, 1);
  123. // now, zero out next offset to prevent "trouble"
  124. // offset = mCurrentPosition + size + HEAP_BLOCK_HEADER_SIZE;
  125. // integer2bytestream(mBuffer, offset, 0);
  126. }
  127. return mCurrentPosition;
  128. }
  129. S32 LLScriptHeapRunTime::addData(U8 *list)
  130. {
  131. if (!mBuffer)
  132. return 0;
  133. return 0;
  134. }
  135. S32 LLScriptHeapRunTime::catStrings(S32 address1, S32 address2)
  136. {
  137. if (!mBuffer)
  138. return 0;
  139. S32 dataaddress1 = address1 + 2*LSCRIPTDataSize[LST_INTEGER] + 1;
  140. S32 dataaddress2 = address2 + 2*LSCRIPTDataSize[LST_INTEGER] + 1;
  141. S32 toffset1 = dataaddress1;
  142. safe_heap_bytestream_count_char(mBuffer, toffset1);
  143. S32 toffset2 = dataaddress2;
  144. safe_heap_bytestream_count_char(mBuffer, toffset2);
  145. // calculate new string size
  146. S32 size1 = toffset1 - dataaddress1;
  147. S32 size2 = toffset2 - dataaddress2;
  148. S32 newbuffer = size1 + size2 - 1;
  149. char *temp = new char[newbuffer];
  150. // get the strings
  151. bytestream2char(temp, mBuffer, dataaddress1);
  152. bytestream2char(temp + size1 - 1, mBuffer, dataaddress2);
  153. decreaseRefCount(address1);
  154. decreaseRefCount(address2);
  155. S32 retaddress = addData(temp);
  156. return retaddress;
  157. }
  158. S32 LLScriptHeapRunTime::cmpStrings(S32 address1, S32 address2)
  159. {
  160. if (!mBuffer)
  161. return 0;
  162. S32 dataaddress1 = address1 + 2*LSCRIPTDataSize[LST_INTEGER] + 1;
  163. S32 dataaddress2 = address2 + 2*LSCRIPTDataSize[LST_INTEGER] + 1;
  164. S32 toffset1 = dataaddress1;
  165. safe_heap_bytestream_count_char(mBuffer, toffset1);
  166. S32 toffset2 = dataaddress2;
  167. safe_heap_bytestream_count_char(mBuffer, toffset2);
  168. // calculate new string size
  169. S32 size1 = toffset1 - dataaddress1;
  170. S32 size2 = toffset2 - dataaddress2;
  171. if (size1 != size2)
  172. {
  173. return llmin(size1, size2);
  174. }
  175. else
  176. {
  177. return strncmp((char *)(mBuffer + dataaddress1), (char *)(mBuffer + dataaddress2), size1);
  178. }
  179. }
  180. void LLScriptHeapRunTime::removeData(S32 address)
  181. {
  182. if (!mBuffer)
  183. return;
  184. S32 toffset = address;
  185. // read past offset (relying on function side effect
  186. bytestream2integer(mBuffer, toffset);
  187. // make sure that reference count is 0
  188. integer2bytestream(mBuffer, toffset, 0);
  189. // show the block as empty
  190. *(mBuffer + toffset) = 0;
  191. // now, clean up the heap
  192. S32 clean = mHeapRegister;
  193. S32 tclean;
  194. S32 clean_offset;
  195. S32 nclean;
  196. S32 tnclean;
  197. S32 next_offset;
  198. U8  type;
  199. U8  ntype;
  200. for(;;)
  201. {
  202. tclean = clean;
  203. clean_offset = bytestream2integer(mBuffer, tclean);
  204. // is this block, empty?
  205. tclean += LSCRIPTDataSize[LST_INTEGER];
  206. type = *(mBuffer + tclean);
  207. if (!clean_offset)
  208. {
  209. if (!type)
  210. {
  211. // we're done! if our block is empty, we can pull in the HP and zero out our offset
  212. set_register(mBuffer, LREG_HP, clean);
  213. }
  214. return;
  215. }
  216. if (!type)
  217. {
  218. // if we're empty, try to coalesce with the next one
  219. nclean = clean + clean_offset;
  220. tnclean = nclean;
  221. next_offset = bytestream2integer(mBuffer, tnclean);
  222. tnclean += LSCRIPTDataSize[LST_INTEGER];
  223. ntype = *(mBuffer + tnclean);
  224. if (!next_offset)
  225. {
  226. // we're done! if our block is empty, we can pull in the HP and zero out our offset
  227. tclean = clean;
  228. integer2bytestream(mBuffer, tclean, 0);
  229. set_register(mBuffer, LREG_HP, clean);
  230. return;
  231. }
  232. if (!ntype)
  233. {
  234. // hooray!  we can coalesce
  235. tclean = clean;
  236. integer2bytestream(mBuffer, tclean, clean_offset + next_offset);
  237. // don't skip forward so that we can keep coalescing on next pass through the loop
  238. }
  239. else
  240. {
  241. clean += clean_offset;
  242. }
  243. }
  244. else
  245. {
  246. // if not, move on to the next block
  247. clean += clean_offset;
  248. }
  249. }
  250. }
  251. void LLScriptHeapRunTime::coalesce(S32 address1, S32 address2)
  252. {
  253. // we need to bump the base offset by the second block's
  254. S32 toffset = address1;
  255. S32 offset1 = bytestream2integer(mBuffer, toffset);
  256. offset1 += bytestream2integer(mBuffer, address2);
  257. integer2bytestream(mBuffer, address1, offset1);
  258. }
  259. void LLScriptHeapRunTime::split(S32 address1, S32 size)
  260. {
  261. S32 toffset = address1;
  262. S32 oldoffset = bytestream2integer(mBuffer, toffset);
  263. // add new offset and zero out reference count and block used
  264. S32 newoffset = oldoffset - size;
  265. S32 newblockpos = address1 + size;
  266. // set new offset
  267. integer2bytestream(mBuffer, newblockpos, newoffset);
  268. // zero out reference count
  269. integer2bytestream(mBuffer, newblockpos, 0);
  270. // mark as empty
  271. *(mBuffer + newblockpos) = 0;
  272. // now, change the offset of the original block
  273. integer2bytestream(mBuffer, address1, size + HEAP_BLOCK_HEADER_SIZE);
  274. }
  275. /* 
  276. For reference count changes, strings are easy.  For lists, we'll need to go through the lists reducing
  277. the reference counts for any included strings and lists
  278.  */
  279. void LLScriptHeapRunTime::increaseRefCount(S32 address)
  280. {
  281. if (!mBuffer)
  282. return;
  283. if (!address)
  284. {
  285. // unused temp string entry
  286. return;
  287. }
  288. // get current reference count
  289. S32 toffset = address + 4;
  290. S32 count = bytestream2integer(mBuffer, toffset);
  291. count++;
  292. if (mbPrint)
  293. printf("0x%X inc ref count %dn", address - mHeapRegister, count);
  294. // see which type it is
  295. U8 type = *(mBuffer + toffset);
  296. if (type == LSCRIPTTypeByte[LST_STRING])
  297. {
  298. toffset = address + 4;
  299. integer2bytestream(mBuffer, toffset, count);
  300. }
  301. // TO DO: put list stuff here!
  302. else
  303. {
  304. set_fault(mBuffer, LSRF_HEAP_ERROR);
  305. }
  306. }
  307. void LLScriptHeapRunTime::decreaseRefCount(S32 address)
  308. {
  309. if (!mBuffer)
  310. return;
  311. if (!address)
  312. {
  313. // unused temp string entry
  314. return;
  315. }
  316. // get offset
  317. S32 toffset = address;
  318. // read past offset (rely on function side effect)
  319. bytestream2integer(mBuffer, toffset);
  320. // get current reference count
  321. S32 count = bytestream2integer(mBuffer, toffset);
  322. // see which type it is
  323. U8 type = *(mBuffer + toffset);
  324. if (type == LSCRIPTTypeByte[LST_STRING])
  325. {
  326. count--;
  327. if (mbPrint)
  328. printf("0x%X dec ref count %dn", address - mHeapRegister, count);
  329. toffset = address + 4;
  330. integer2bytestream(mBuffer, toffset, count);
  331. if (!count)
  332. {
  333. // we can blow this one away
  334. removeData(address);
  335. }
  336. }
  337. // TO DO: put list stuff here!
  338. else
  339. {
  340. set_fault(mBuffer, LSRF_HEAP_ERROR);
  341. }
  342. }
  343. // if we're going to assign a variable, we need to decrement the reference count of what we were pointing at (if anything)
  344. void LLScriptHeapRunTime::releaseLocal(S32 address)
  345. {
  346. S32 hr = get_register(mBuffer, LREG_HR);
  347. address = lscript_local_get(mBuffer, address);
  348. if (  (address >= hr)
  349. &&(address < hr + get_register(mBuffer, LREG_HP)))
  350. {
  351. decreaseRefCount(address);
  352. }
  353. }
  354. void LLScriptHeapRunTime::releaseGlobal(S32 address)
  355. {
  356. // NOTA BENE: Global strings are referenced relative to the HR while local strings aren't
  357. S32 hr = get_register(mBuffer, LREG_HR);
  358. address = lscript_global_get(mBuffer, address) + hr;
  359. if (  (address >= hr)
  360. &&(address <  hr + get_register(mBuffer, LREG_HP)))
  361. {
  362. decreaseRefCount(address);
  363. }
  364. }
  365. // we know the following function has "unreachable code"
  366. // don't remind us every friggin' time we compile. . . 
  367. #if defined(_MSC_VER)
  368. # pragma warning(disable: 4702) // unreachable code
  369. #endif
  370. S32 LLScriptHeapRunTime::findOpenBlock(S32 size)
  371. {
  372. S32 offset;
  373. S32 toffset;
  374. U8 blocktype;
  375. while(1)
  376. {
  377. if (mCurrentPosition + size >= mStackPointer)
  378. {
  379. set_fault(mBuffer, LSRF_STACK_HEAP_COLLISION);
  380. mCurrentPosition = 0;
  381. }
  382. toffset = mCurrentPosition;
  383. offset = bytestream2integer(mBuffer, toffset);
  384. if (!offset)
  385. {
  386. // we've reached the end of Heap, return this location if we'll fit
  387. // do we need to coalesce with last empty space?
  388. if (mLastEmpty)
  389. {
  390. // ok, that everything from mLastEmpty to us is empty, so we don't need a block
  391. // zero out the last empty's offset and return it
  392. mCurrentPosition = mLastEmpty;
  393. integer2bytestream(mBuffer, mLastEmpty, 0);
  394. mLastEmpty = 0;
  395. }
  396. // now, zero out next offset to prevent "trouble"
  397. offset = mCurrentPosition + size;
  398. integer2bytestream(mBuffer, offset, 0);
  399. // set HP to appropriate value
  400. set_register(mBuffer, LREG_HP, mCurrentPosition + size);
  401. return size;
  402. }
  403. // ok, is this slot empty?
  404. toffset += LSCRIPTDataSize[LST_INTEGER];
  405. blocktype = *(mBuffer + toffset++);
  406. if (!blocktype)
  407. {
  408. // Empty block, do we need to coalesce?
  409. if (mLastEmpty)
  410. {
  411. coalesce(mLastEmpty, mCurrentPosition);
  412. mCurrentPosition = mLastEmpty;
  413. toffset = mCurrentPosition;
  414. offset = bytestream2integer(mBuffer, toffset);
  415. }
  416. // do we fit in this block?
  417. if (offset >= size)
  418. {
  419. // do we need to split the block? (only split if splitting will leave > HEAP_BLOCK_SPLIT_THRESHOLD bytes of free space)
  420. if (offset - HEAP_BLOCK_SPLIT_THRESHOLD >= size)
  421. {
  422. split(mCurrentPosition, size);
  423. return size;
  424. }
  425. else
  426. return offset;
  427. }
  428. }
  429. // nothing found, keep looking
  430. mCurrentPosition += offset;
  431. }
  432. // fake return to prevent warnings
  433. mCurrentPosition = 0;
  434. return 0;
  435. }
  436. LLScriptHeapRunTime gRunTime;
  437. #endif