Script.c 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611
  1. #include <stdarg.h>
  2. #include <stdbool.h>
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <string.h>
  6. #include "vm/Operation.h"
  7. #include "vm/Script.h"
  8. static void sError(Script* sc, const char* format, ...) {
  9. va_list args;
  10. va_start(args, format);
  11. vsnprintf(sc->error, SCRIPT_ERROR_SIZE, format, args);
  12. va_end(args);
  13. }
  14. static void sIntPrinter(int i) {
  15. printf("%d\n", i);
  16. }
  17. static void sLongPrinter(long l) {
  18. printf("%ld\n", l);
  19. }
  20. static void sFloatPrinter(float f) {
  21. printf("%.2f\n", f);
  22. }
  23. static void sBoolPrinter(bool b) {
  24. puts(b ? "true" : "false");
  25. }
  26. static void sPointerPrinter(Pointer* b) {
  27. printf("(%d, %d)\n", b->array, b->offset);
  28. }
  29. static IntPrinter intPrinter = sIntPrinter;
  30. static LongPrinter longPrinter = sLongPrinter;
  31. static FloatPrinter floatPrinter = sFloatPrinter;
  32. static BoolPrinter boolPrinter = sBoolPrinter;
  33. static PointerPrinter pointerPrinter = sPointerPrinter;
  34. static bool sRead(Script* sc, void* buffer, int length) {
  35. if(sc->readIndex + length > sc->code->length) {
  36. sError(sc, "cannot read expected %d bytes of data from bytecode");
  37. return false;
  38. }
  39. memcpy(buffer, sc->code->code + sc->readIndex, length);
  40. sc->readIndex += length;
  41. return true;
  42. }
  43. static Operation sReadOperation(Script* sc) {
  44. unsigned char c;
  45. if(sRead(sc, &c, 1)) {
  46. return c;
  47. }
  48. return OP_NOTHING;
  49. }
  50. static void* sReserve(Script* sc, int length) {
  51. if(sc->stackIndex + length > SCRIPT_STACK_SIZE) {
  52. sError(sc, "stack overflow");
  53. return NULL;
  54. }
  55. void* p = sc->stack + sc->stackIndex;
  56. sc->stackIndex += length;
  57. return p;
  58. }
  59. static bool sPush(Script* sc, const void* data, int length) {
  60. void* p = sReserve(sc, length);
  61. if(p != NULL) {
  62. memcpy(p, data, length);
  63. return true;
  64. }
  65. return false;
  66. }
  67. static const void* sFree(Script* sc, int length) {
  68. if(sc->stackIndex < length) {
  69. sError(sc, "stack underflow");
  70. return NULL;
  71. }
  72. sc->stackIndex -= length;
  73. return sc->stack + sc->stackIndex;
  74. }
  75. static bool sPop(Script* sc, void* data, int length) {
  76. const void* p = sFree(sc, length);
  77. if(p != NULL) {
  78. memcpy(data, p, length);
  79. return true;
  80. }
  81. return false;
  82. }
  83. static bool sPeek(Script* sc, void* data, int length) {
  84. if(sc->stackIndex < length) {
  85. sError(sc, "stack underflow");
  86. return false;
  87. }
  88. memcpy(data, sc->stack + (sc->stackIndex - length), length);
  89. return true;
  90. }
  91. #define POP_PUSH(type, Type) \
  92. static bool sPop##Type(Script* sc, type* value) { \
  93. return sPop(sc, value, sizeof(type)); \
  94. } \
  95. static bool sPush##Type(Script* sc, type value) { \
  96. return sPush(sc, &value, sizeof(type)); \
  97. }
  98. #define READ_POP_PUSH(type, Type) \
  99. static bool sRead##Type(Script* sc, type* i) { \
  100. return sRead(sc, i, sizeof(type)); \
  101. } \
  102. POP_PUSH(type, Type)
  103. #define PUSH_CONSTANT(type, Type) \
  104. { \
  105. type value; \
  106. if(sRead##Type(sc, &value)) { \
  107. sPush##Type(sc, value); \
  108. } \
  109. }
  110. #define ZERO_CHECK(name) \
  111. if(values[0] == 0) { \
  112. sError(sc, name " by 0"); \
  113. return; \
  114. }
  115. #define OP_BASE(type, Type, RType, op, check) \
  116. { \
  117. type values[2]; \
  118. if(sPop##Type(sc, values) && sPop##Type(sc, values + 1)) { \
  119. check; \
  120. sPush##RType(sc, values[1] op values[0]); \
  121. } \
  122. }
  123. #define CHECKED_NUMBER_OP(type, Type, op, check) \
  124. OP_BASE(type, Type, Type, op, check)
  125. #define NUMBER_OP(type, Type, op) CHECKED_NUMBER_OP(type, Type, op, )
  126. #define BOOL_OP(type, Type, op) OP_BASE(type, Type, Bool, op, )
  127. #define DIVISION(type, Type) \
  128. CHECKED_NUMBER_OP(type, Type, /, ZERO_CHECK("division"));
  129. #define MODULE(type, Type) \
  130. CHECKED_NUMBER_OP(type, Type, %, ZERO_CHECK("module"));
  131. READ_POP_PUSH(int, Int)
  132. READ_POP_PUSH(long, Long)
  133. READ_POP_PUSH(float, Float)
  134. POP_PUSH(bool, Bool)
  135. static bool sPopPointer(Script* sc, Pointer* value) {
  136. return sPop(sc, value, sizeof(Pointer));
  137. }
  138. static bool sPushPointer(Script* sc, Pointer* value) {
  139. return sPush(sc, value, sizeof(Pointer));
  140. }
  141. static void sPrintPointer(Script* sc) {
  142. Pointer p;
  143. if(sPopPointer(sc, &p)) {
  144. pointerPrinter(&p);
  145. }
  146. }
  147. #define PRINT(type, Type, printer) \
  148. { \
  149. type value; \
  150. if(sPop##Type(sc, &value)) { \
  151. printer(value); \
  152. } \
  153. }
  154. #define INVERT_SIGN(type, Type) \
  155. { \
  156. type value = 0; \
  157. if(sPop##Type(sc, &value)) { \
  158. sPush##Type(sc, -value); \
  159. } \
  160. }
  161. static void sReserveBytes(Script* sc) {
  162. int bytes = 0;
  163. int offset = 0;
  164. if(sReadInt(sc, &bytes) && sReadInt(sc, &offset)) {
  165. int oldIndex = sc->stackVarIndex;
  166. sc->stackVarIndex = sc->stackIndex - offset;
  167. sReserve(sc, bytes - offset);
  168. sPushInt(sc, oldIndex);
  169. }
  170. }
  171. static void* sCheckAddress(Script* sc, Pointer* p, int length) {
  172. if(p->array >= 0) {
  173. Array* a = asGet(&sc->arrays, p->array);
  174. if(a == NULL) {
  175. sError(sc, "invalid heap pointer");
  176. return NULL;
  177. } else if(p->offset < 0 || p->offset >= a->size) {
  178. sError(sc, "address %d is out of array bounds", p->offset);
  179. return NULL;
  180. }
  181. return ((char*)a->data) + p->offset;
  182. }
  183. if(p->offset < 0 || p->offset + length > sc->stackIndex) {
  184. sError(sc, "address %d is out of stack bounds", p->offset);
  185. return NULL;
  186. }
  187. return sc->stack + p->offset;
  188. }
  189. static void sNot(Script* sc) {
  190. bool value = false;
  191. if(sPopBool(sc, &value)) {
  192. sPushBool(sc, !value);
  193. }
  194. }
  195. static void sBitNotInt(Script* sc) {
  196. int value = 0;
  197. if(sPopInt(sc, &value)) {
  198. sPushInt(sc, ~value);
  199. }
  200. }
  201. static void sBitNotLong(Script* sc) {
  202. long value = 0;
  203. if(sPopLong(sc, &value)) {
  204. sPushLong(sc, ~value);
  205. }
  206. }
  207. static void sLine(Script* sc) {
  208. sRead(sc, &sc->line, 2);
  209. }
  210. static void sGoTo(Script* sc) {
  211. int gotoIndex;
  212. if(sReadInt(sc, &gotoIndex)) {
  213. sc->readIndex = gotoIndex;
  214. }
  215. }
  216. static void sGoSub(Script* sc) {
  217. int gotoIndex;
  218. int offset;
  219. if(sReadInt(sc, &gotoIndex) && sReadInt(sc, &offset)) {
  220. Pointer p = {.array = -1,
  221. .offset = sc->stackIndex - offset - sizeof(int)};
  222. void* dest = sCheckAddress(sc, &p, sizeof(int));
  223. if(dest != NULL) {
  224. memcpy(dest, &sc->readIndex, sizeof(int));
  225. sc->readIndex = gotoIndex;
  226. }
  227. }
  228. }
  229. static void sReturn(Script* sc) {
  230. int bytes = 0;
  231. int varIndex = 0;
  232. if(sReadInt(sc, &bytes) && sPopInt(sc, &varIndex)) {
  233. sc->stackVarIndex = varIndex;
  234. sFree(sc, bytes);
  235. if(!sPopInt(sc, &sc->readIndex) || sc->readIndex < 0) {
  236. sError(sc, "read index is corrupt");
  237. }
  238. }
  239. }
  240. static void sReturnPointer(Script* sc) {
  241. Pointer p;
  242. if(sPopPointer(sc, &p)) {
  243. sReturn(sc);
  244. sPushPointer(sc, &p);
  245. }
  246. }
  247. #define RETURN(type, Type) \
  248. { \
  249. type value; \
  250. if(sPop##Type(sc, &value)) { \
  251. sReturn(sc); \
  252. sPush##Type(sc, value); \
  253. } \
  254. }
  255. static void sIfGoTo(Script* sc) {
  256. int gotoIndex = 0;
  257. bool value = false;
  258. if(sReadInt(sc, &gotoIndex) && sPopBool(sc, &value) && !value) {
  259. sc->readIndex = gotoIndex;
  260. }
  261. }
  262. static void sPeekFalseGoTo(Script* sc) {
  263. int gotoIndex = 0;
  264. bool value = false;
  265. if(sReadInt(sc, &gotoIndex) && sPeek(sc, &value, sizeof(bool)) && !value) {
  266. sc->readIndex = gotoIndex;
  267. }
  268. }
  269. static void sPeekTrueGoTo(Script* sc) {
  270. int gotoIndex = 0;
  271. bool value = false;
  272. if(sReadInt(sc, &gotoIndex) && sPeek(sc, &value, sizeof(bool)) && value) {
  273. sc->readIndex = gotoIndex;
  274. }
  275. }
  276. static void sNewArray(Script* sc) {
  277. int length = 0;
  278. int size = 0;
  279. if(sReadInt(sc, &size) && sPopInt(sc, &length)) {
  280. Pointer p = {.array = asAllocate(&sc->arrays, size, length),
  281. .offset = 0};
  282. if(p.array == -1) {
  283. sError(sc, "out of memory");
  284. } else if(p.array == -2) {
  285. sError(sc, "bad allocation");
  286. } else {
  287. sPushPointer(sc, &p);
  288. }
  289. }
  290. }
  291. static void sDeleteArray(Script* sc) {
  292. Pointer p;
  293. if(sPopPointer(sc, &p)) {
  294. if(p.offset != 0) {
  295. sError(sc, "delete of array with offset: %d", p.offset);
  296. return;
  297. }
  298. Array* a = asGet(&sc->arrays, p.array);
  299. if(a == NULL) {
  300. sError(sc, "delete of invalid array");
  301. return;
  302. }
  303. asDeleteArray(&sc->arrays, a, p.array);
  304. }
  305. }
  306. static void sLength(Script* sc) {
  307. Pointer p;
  308. if(sPopPointer(sc, &p)) {
  309. if(p.array == -1) {
  310. sPushInt(sc, 1);
  311. return;
  312. }
  313. Array* a = asGet(&sc->arrays, p.array);
  314. if(a == NULL) {
  315. sError(sc, "invalid heap pointer");
  316. return;
  317. }
  318. sPushInt(sc, a->length);
  319. }
  320. }
  321. static void sDereference(Script* sc) {
  322. int address = 0;
  323. if(sReadInt(sc, &address)) {
  324. Pointer p = {.array = -1, .offset = address + sc->stackVarIndex};
  325. sPushPointer(sc, &p);
  326. }
  327. }
  328. static void sLoad(Script* sc, int length) {
  329. Pointer p;
  330. if(sPopPointer(sc, &p)) {
  331. void* src = sCheckAddress(sc, &p, length);
  332. if(src != NULL) {
  333. sPush(sc, src, length);
  334. }
  335. }
  336. }
  337. static void sDuplicateReference(Script* sc) {
  338. Pointer p;
  339. if(sPeek(sc, &p, sizeof(Pointer))) {
  340. sPushPointer(sc, &p);
  341. }
  342. }
  343. static void sAddReference(Script* sc) {
  344. int size = 0;
  345. int add = 0;
  346. Pointer p;
  347. if(sReadInt(sc, &size) && sPopInt(sc, &add) && sPopPointer(sc, &p)) {
  348. p.offset += add * size;
  349. sPushPointer(sc, &p);
  350. }
  351. }
  352. static void sLoadSize(Script* sc) {
  353. int size = 0;
  354. Pointer p;
  355. if(sReadInt(sc, &size) && sPopPointer(sc, &p)) {
  356. void* src = sCheckAddress(sc, &p, size);
  357. if(src != NULL) {
  358. sPush(sc, src, size);
  359. }
  360. }
  361. }
  362. static void sStore(Script* sc, int length) {
  363. int index = sc->stackIndex - sizeof(Pointer) - length;
  364. if(index < 0) {
  365. sError(sc, "stack underflow");
  366. return;
  367. }
  368. Pointer p;
  369. memcpy(&p, sc->stack + index, sizeof(Pointer));
  370. void* dest = sCheckAddress(sc, &p, length);
  371. if(dest != NULL) {
  372. sPop(sc, dest, length);
  373. sc->stackIndex -= sizeof(Pointer);
  374. }
  375. }
  376. static void sEqualPointer(Script* sc) {
  377. Pointer a;
  378. Pointer b;
  379. if(sPopPointer(sc, &a) && sPopPointer(sc, &b)) {
  380. sPushBool(sc, a.array == b.array && a.offset == b.offset);
  381. }
  382. }
  383. #define CHANGE_OP(type, op) \
  384. { \
  385. char c = 0; \
  386. Pointer p; \
  387. if(sRead(sc, &c, sizeof(char)) && sPopPointer(sc, &p)) { \
  388. void* data = sCheckAddress(sc, &p, sizeof(type)); \
  389. if(data != NULL) { \
  390. type current; \
  391. memcpy(&current, data, sizeof(type)); \
  392. op \
  393. } \
  394. } \
  395. }
  396. #define PUSH_PRE_CHANGE(Type, type) \
  397. CHANGE_OP(type, current += c; sPush##Type(sc, current); \
  398. memcpy(data, &current, sizeof(type));)
  399. #define PUSH_POST_CHANGE(Type, type) \
  400. CHANGE_OP(type, sPush##Type(sc, current); current += c; \
  401. memcpy(data, &current, sizeof(type));)
  402. #define CHANGE(type) \
  403. CHANGE_OP(type, current += c; memcpy(data, &current, sizeof(type));)
  404. #define CAST(From, from, To) \
  405. { \
  406. from value; \
  407. if(sPop##From(sc, &value)) { \
  408. sPush##To(sc, value); \
  409. } \
  410. }
  411. #define CASE_CHANGE(TYPE, Type, type) \
  412. case OP_PUSH_PRE_CHANGE_##TYPE: PUSH_PRE_CHANGE(Type, type); break; \
  413. case OP_PUSH_POST_CHANGE_##TYPE: PUSH_POST_CHANGE(Type, type); break; \
  414. case OP_CHANGE_##TYPE: \
  415. CHANGE(type); \
  416. break;
  417. #define CASE_NUMBER_OP(name, op) \
  418. case OP_##name##_INT: NUMBER_OP(int, Int, op); break; \
  419. case OP_##name##_LONG: NUMBER_OP(long, Long, op); break; \
  420. case OP_##name##_FLOAT: \
  421. NUMBER_OP(float, Float, op); \
  422. break;
  423. #define CASE_BOOL_OP(name, op) \
  424. case OP_##name##_INT: BOOL_OP(int, Int, op); break; \
  425. case OP_##name##_LONG: BOOL_OP(long, Long, op); break; \
  426. case OP_##name##_FLOAT: \
  427. BOOL_OP(float, Float, op); \
  428. break;
  429. #define CASE_TYPE(TYPE, Type, type) \
  430. case OP_STORE_##TYPE: sStore(sc, sizeof(type)); break; \
  431. case OP_RETURN_##TYPE: RETURN(type, Type); break; \
  432. case OP_PRINT_##TYPE: PRINT(type, Type, type##Printer); break; \
  433. case OP_EQUAL_##TYPE: BOOL_OP(type, Type, ==); break; \
  434. case OP_LOAD_##TYPE: sLoad(sc, sizeof(type)); break;
  435. static void sConsumeInstruction(Script* sc) {
  436. switch(sReadOperation(sc)) {
  437. CASE_NUMBER_OP(ADD, +);
  438. CASE_NUMBER_OP(SUB, -);
  439. CASE_NUMBER_OP(MUL, *);
  440. CASE_BOOL_OP(LESS, <);
  441. CASE_BOOL_OP(GREATER, >);
  442. CASE_TYPE(INT, Int, int);
  443. CASE_TYPE(LONG, Long, long);
  444. CASE_TYPE(BOOL, Bool, bool);
  445. CASE_TYPE(FLOAT, Float, float);
  446. CASE_CHANGE(INT, Int, int);
  447. CASE_CHANGE(LONG, Long, long);
  448. case OP_NOTHING: break;
  449. case OP_PUSH_INT: PUSH_CONSTANT(int, Int); break;
  450. case OP_PUSH_LONG: PUSH_CONSTANT(long, Long); break;
  451. case OP_PUSH_FLOAT: PUSH_CONSTANT(float, Float); break;
  452. case OP_PUSH_TRUE: sPushBool(sc, true); break;
  453. case OP_PUSH_FALSE: sPushBool(sc, false); break;
  454. case OP_DIV_INT: DIVISION(int, Int); break;
  455. case OP_DIV_LONG: DIVISION(long, Long); break;
  456. case OP_DIV_FLOAT: DIVISION(float, Float); break;
  457. case OP_MOD_INT: MODULE(int, Int); break;
  458. case OP_MOD_LONG: MODULE(long, Long); break;
  459. case OP_INVERT_SIGN_INT: INVERT_SIGN(int, Int); break;
  460. case OP_INVERT_SIGN_LONG: INVERT_SIGN(long, Long); break;
  461. case OP_INVERT_SIGN_FLOAT: INVERT_SIGN(float, Float); break;
  462. case OP_NOT: sNot(sc); break;
  463. case OP_AND: BOOL_OP(bool, Bool, &&); break;
  464. case OP_OR: BOOL_OP(bool, Bool, ||); break;
  465. case OP_BIT_NOT_INT: sBitNotInt(sc); break;
  466. case OP_BIT_AND_INT: NUMBER_OP(int, Int, &); break;
  467. case OP_BIT_OR_INT: NUMBER_OP(int, Int, |); break;
  468. case OP_BIT_XOR_INT: NUMBER_OP(int, Int, ^); break;
  469. case OP_LEFT_SHIFT_INT: NUMBER_OP(int, Int, <<); break;
  470. case OP_RIGHT_SHIFT_INT: NUMBER_OP(int, Int, >>); break;
  471. case OP_BIT_NOT_LONG: sBitNotLong(sc); break;
  472. case OP_BIT_AND_LONG: NUMBER_OP(long, Long, &); break;
  473. case OP_BIT_OR_LONG: NUMBER_OP(long, Long, |); break;
  474. case OP_BIT_XOR_LONG: NUMBER_OP(long, Long, ^); break;
  475. case OP_LEFT_SHIFT_LONG: NUMBER_OP(long, Long, <<); break;
  476. case OP_RIGHT_SHIFT_LONG: NUMBER_OP(long, Long, >>); break;
  477. case OP_LINE: sLine(sc); break;
  478. case OP_GOTO: sGoTo(sc); break;
  479. case OP_IF_GOTO: sIfGoTo(sc); break;
  480. case OP_PEEK_FALSE_GOTO: sPeekFalseGoTo(sc); break;
  481. case OP_PEEK_TRUE_GOTO: sPeekTrueGoTo(sc); break;
  482. case OP_GOSUB: sGoSub(sc); break;
  483. case OP_RETURN: sReturn(sc); break;
  484. case OP_RETURN_POINTER: sReturnPointer(sc); break;
  485. case OP_RESERVE: sReserveBytes(sc); break;
  486. case OP_DEREFERENCE_VAR: sDereference(sc); break;
  487. case OP_REFERENCE: sLoad(sc, sizeof(Pointer)); break;
  488. case OP_DUPLICATE_REFERENCE: sDuplicateReference(sc); break;
  489. case OP_ADD_REFERENCE: sAddReference(sc); break;
  490. case OP_LOAD: sLoadSize(sc); break;
  491. case OP_NEW: sNewArray(sc); break;
  492. case OP_DELETE: sDeleteArray(sc); break;
  493. case OP_LENGTH: sLength(sc); break;
  494. case OP_STORE_POINTER: sStore(sc, sizeof(Pointer)); break;
  495. case OP_PRINT_POINTER: sPrintPointer(sc); break;
  496. case OP_EQUAL_POINTER: sEqualPointer(sc); break;
  497. case OP_INT_TO_FLOAT: CAST(Int, int, Float); break;
  498. case OP_FLOAT_TO_INT: CAST(Float, float, Int); break;
  499. case OP_INT_TO_LONG: CAST(Int, int, Long); break;
  500. case OP_LONG_TO_INT: CAST(Long, long, Int); break;
  501. case OP_FLOAT_TO_LONG: CAST(Float, float, Long); break;
  502. case OP_LONG_TO_FLOAT: CAST(Long, long, Float); break;
  503. }
  504. }
  505. static bool sHasData(Script* sc) {
  506. return sc->readIndex < sc->code->length;
  507. }
  508. Script* sInit(ByteCode* code) {
  509. Script* sc = malloc(sizeof(Script));
  510. sc->error[0] = '\0';
  511. sc->code = code;
  512. sc->readIndex = 0;
  513. sc->stackIndex = 0;
  514. sc->stackVarIndex = 0;
  515. sc->line = 0;
  516. asInit(&sc->arrays);
  517. return sc;
  518. }
  519. void sDelete(Script* sc) {
  520. bcDelete(sc->code);
  521. asDelete(&sc->arrays);
  522. free(sc);
  523. }
  524. void sRun(Script* sc) {
  525. while(sHasData(sc)) {
  526. sConsumeInstruction(sc);
  527. if(sc->error[0] != '\0') {
  528. puts("error:");
  529. printf(" - info: %s\n", sc->error);
  530. printf(" - line: %d\n", sc->line);
  531. return;
  532. }
  533. }
  534. }
  535. void sSetIntPrinter(IntPrinter p) {
  536. intPrinter = p;
  537. }
  538. void sSetLongPrinter(LongPrinter p) {
  539. longPrinter = p;
  540. }
  541. void sSetFloatPrinter(FloatPrinter p) {
  542. floatPrinter = p;
  543. }
  544. void sSetBoolPrinter(BoolPrinter p) {
  545. boolPrinter = p;
  546. }
  547. void sSetPointerPrinter(PointerPrinter p) {
  548. pointerPrinter = p;
  549. }