Search
Tags
3d engine AA android apple Blog boehm gc build c++ cgi cpp debug developer fastcgi flash font garbage collection gm2d Haxe haxe3d hxcpp immix iphone javascript linux mac markdown ndk neash neko nme performance physaxe preloader profile render sdl shared hosting source swf v8 web windows wordpress wwxPages
Posts
- September 2012
- April 2012
- June 2011
- April 2011
- March 2011
- September 2010
- August 2010
- June 2010
- May 2010
- April 2010
- February 2010
- December 2009
- October 2009
- August 2009
- July 2009
- May 2009
- April 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- September 2007
- July 2007
- June 2007
- March 2007
- February 2007
- January 2007
Categories
Meta
Tag Archives: c++
Switched to IMMIX for Internal Garbage Collection
I did a little bit of profiling on the iPhone and found a bit too much time was spent doing garbage collection. The hxcpp runtime has 2 modes – “Boehm GC with explicit statics” and “internal”. The former is from … Continue reading
Haxe, iPhone & C++ At Last
Announcing first official release of c++ on haxe, including Widsows, Mac, Linux and iPhone support. Continue reading
Haxe on the iPhone – For Real!
To progress this project a bit further, I needed a real device – so I convinced the little woman that an iPod touch would be a good thing to have around. She seems to have taken to it, so now … Continue reading
A Second Look (iPhone + Haxe)
Once the basics are in place, the rest comes pretty naturally. Just a slight tweak to the MovieClip transformation gets Physaxe doing it’s thing. Performace seems ok-ish in the simulator, not sure how it woud go on the real device.
Hxcpp 0.4, NME 0.9, Neash 0.9 Released!
What the flash? What is Hxcpp? Hxcpp is the c++ backend for haxe. This means you can compile haxe code to c++ code, and then compile this to a native executable, for Windows, Linux or Mac. What is NME? NME … Continue reading
HXCPP 0.3 Released
I have put together a new version of hxcpp, the c++ backend for haxe. New features include improved coverage of language features. All the unit tests except remoting pass now. I have also cleaned up the ocaml code a bit … Continue reading
HXCPP 0.2 – Huge performance increase.
I have switched hxcpp over from using ref-counting to using Boehm garbage collection. I have also added some additional perfromance improvements, such as integer-index field names to make interaction with neko more efficient. The overall result is that for the … Continue reading
Boehm GC, virtual inheritance and finalizers.
I’m trying to get a speedup for the cpp backend for haxe by using garbage collection. Initial results are very promising – potentially about twice as fast. Howerver I spent a good few hours getting the the bottom of a … Continue reading
C++ backend for haXe
I have just completed an alpha release of a c++ backend for haxe. This means that you can complile haxe code into a 100% compiled executable. You can download the demo file in hxcpp-01.zip. Sorry, windows only at this stage. … Continue reading