I've decided to take a second look at this problem since I upgraded to 2.27.1 and there seems to be another issue with compiling. This will mostly be a re-post of what I submitted on the JIT's git repo:
The jit seems to not compile any scripts in version 2.27.1 for me at this point that contain classes. This is the very first script that is compiled in my engine:
shared class Base_Object
{
//========== Constructor / Destructor ===========
Base_Object( Object @obj)
{
@this.object = obj;
x = object.x;
y = object.y;
sprite_index = -1;
mask_index = sprite_index;
image_index = object.image_index;
depth = object.depth;
}
//=========== Events =============
void Create(){}
void Destroy(){}
void Alarm1(){}
void Alarm2(){}
void Alarm3(){}
void Alarm4(){}
void Alarm5(){}
void Alarm6(){}
void Alarm7(){}
void Alarm8(){}
void Alarm9(){}
void Alarm10(){}
void Alarm11(){}
void BeginStep(){}
void Step(){}
void EndStep(){}
void Collision( int objType, int objId, Object @other){}
void Key( int key){}
void KeyPressed( int key){}
void KeyReleased( int key){}
void MouseButton( int button){}
void MouseButtonPressed( int button){}
void MouseButtonReleased( int button){}
void JoystickButton( int id, int button){}
void JoystickButtonPressed( int id, int button){}
void JoystickButtonReleased( int id, int button){}
void OutsideRoom(){}
void OutsideView(){}
void IntersectBoundary(){}
void GameStart(){}
void GameEnd(){}
void RoomStart(){}
void RoomEnd(){}
void NoMoreLives(){}
void NoMoreHealth(){}
void AnimationEnd(){}
void EndOfPath(){}
void Draw(){}
//======= Collision =========
bool place_meeting( float mX, float mY, int type)
{
return object.PlaceMeeting( mX, mY, type);
}
bool place_meeting_depth( float mX, float mY, int depth, int type)
{
return object.PlaceMeetingDepth( mX, mY, type, depth);
}
Base_Object @object_place( float mX, float mY, int type)
{
Base_Object @base = null;
Object @obj = object.ObjectPlace( mX, mY, type);
if (@obj != null)
@base = cast<Base_Object>(@obj.GetScriptObject());
return base;
}
bool collision_rectangle( float x1, float y1, float x2, float y2, int type)
{
return object.CollisionRectangle( x1, y1, x2, y2, type);
}
//========== Misc ===========
uint GetId()
{
return object.GetId();
}
void SetRect( int l, int t, int w, int h)
{
object.general_rect.left = l;
object.general_rect.top = t;
object.general_rect.right = l+w;
object.general_rect.bottom = t+h;
}
/*Base_Object@ opAssign(Base_Object_IMP @in)
{
return @cast<Base_Object>( @in.GetScriptObject());
}*/
//======= Variables =========
Object @object;
float x;
float y;
int sprite_index;
int mask_index;
int image_index;
int depth;
}
I'm thinking there's problem with classes because it doesn't fail when compiling just a simple function. The assert in the following code section fails because there is a null pointer to scriptData:
void asCScriptFunction::JITCompile()
{
asIJITCompiler *jit = engine->GetJITCompiler();
if( !jit )
return;
asASSERT( scriptData );
........
Even something as simple as this doesn't compile:
class test
{
void t(){}
}
Note that this will compile:
void t(){};
Now with further investigation I found that the function data for "t()" in the virtual function table of asIObjectType is valid (but where ever the module gets it from, it is not). Shouldn't angelscript be calling JITCompile() on the function in the virtual table? I'm still quite unfamiliar of how AS handles class methods, but whatever has changed since version 2.26.3 has broken the JIT.