Dear Stone,
The functions you refered are:
exec_CRT_STORE_TC
exec_CRT_LOAD_TC
exec_CRT_TC
exec_CRT
The _TC postfix is the abbreviation of "Threaded Code". This is an
optimization method used by ARMware.
Anyway, I use C++ template to implement these functions because I
think templates will be faster than function calls (templated codes
will be expanded inline). I am used to put any templated codes
into .tcc files, so that you can find them there.
You can find the definitions of the above functions in:
exec_CRT_STORE_TC -> Global_DT.tcc
exec_CRT_LOAD_TC -> Global_DT.tcc
exce_CRT_TC -> Global_TC.tcc
exec_CRT -> Core.tcc
You can check if these .tcc files are compiled and linked.
I'm afraid your makefiles is corrupted or unsuitable for your build
environment.
Please download the source codes again or help me find the bug.
Thx.
Wei.