On Fri, May 16, 2014 at 10:05:36PM +0100, Nicholas Clark wrote: > Both the 32 and 64 bit code paths tested on x86_64 (with some editing of > configs). Builds on real x86. The Raspberry Pi has passed all of NQPs > tests, which means that it should work (without this it would SEGV on the > first thing the NQP Makefile tried to run)
With this: Stage start : 0.000 Stage parse : 6995.769 Stage syntaxcheck: 0.034 Stage ast : 0.028 Stage optimize : 7349.666 Stage mast : 25152.209 Stage mbc : 456.322 and All tests successful. Files=22, Tests=271, 243 wallclock secs ( 1.74 usr 0.65 sys + 193.70 cusr 19.76 csys = 215.85 CPU) Result: PASS real 687m28.400s user 56m24.360s sys 21m59.680s [that's the total time for make test] Without this, but instead hacking MVMObject to pad it by another 4 bytes: Stage start : 0.000 Stage parse : 16286.556 Stage syntaxcheck: 0.088 Stage ast : 0.068 Stage optimize : 10168.153 Stage mast : 42312.730 Stage mbc : 536.894 All tests successful. Files=22, Tests=271, 275 wallclock secs ( 1.83 usr 0.77 sys + 203.03 cusr 26.63 csys = 232.26 CPU) Result: PASS real 1177m23.695s user 58m57.030s sys 37m14.650s Smaller is better. (Less is MOAR) Nicholas Clark