gdscript_compiler.cpp 130 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366
  1. /**************************************************************************/
  2. /* gdscript_compiler.cpp */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #include "gdscript_compiler.h"
  31. #include "gdscript.h"
  32. #include "gdscript_byte_codegen.h"
  33. #include "gdscript_cache.h"
  34. #include "gdscript_utility_functions.h"
  35. #include "core/config/engine.h"
  36. #include "core/config/project_settings.h"
  37. #include "scene/scene_string_names.h"
  38. bool GDScriptCompiler::_is_class_member_property(CodeGen &codegen, const StringName &p_name) {
  39. if (codegen.function_node && codegen.function_node->is_static) {
  40. return false;
  41. }
  42. if (_is_local_or_parameter(codegen, p_name)) {
  43. return false; //shadowed
  44. }
  45. return _is_class_member_property(codegen.script, p_name);
  46. }
  47. bool GDScriptCompiler::_is_class_member_property(GDScript *owner, const StringName &p_name) {
  48. GDScript *scr = owner;
  49. GDScriptNativeClass *nc = nullptr;
  50. while (scr) {
  51. if (scr->native.is_valid()) {
  52. nc = scr->native.ptr();
  53. }
  54. scr = scr->_base;
  55. }
  56. ERR_FAIL_NULL_V(nc, false);
  57. return ClassDB::has_property(nc->get_name(), p_name);
  58. }
  59. bool GDScriptCompiler::_is_local_or_parameter(CodeGen &codegen, const StringName &p_name) {
  60. return codegen.parameters.has(p_name) || codegen.locals.has(p_name);
  61. }
  62. void GDScriptCompiler::_set_error(const String &p_error, const GDScriptParser::Node *p_node) {
  63. if (!error.is_empty()) {
  64. return;
  65. }
  66. error = p_error;
  67. if (p_node) {
  68. err_line = p_node->start_line;
  69. err_column = p_node->start_column;
  70. } else {
  71. err_line = 0;
  72. err_column = 0;
  73. }
  74. }
  75. GDScriptDataType GDScriptCompiler::_gdtype_from_datatype(const GDScriptParser::DataType &p_datatype, GDScript *p_owner, bool p_handle_metatype) {
  76. if (!p_datatype.is_set() || !p_datatype.is_hard_type() || p_datatype.is_coroutine) {
  77. return GDScriptDataType();
  78. }
  79. GDScriptDataType result;
  80. result.has_type = true;
  81. switch (p_datatype.kind) {
  82. case GDScriptParser::DataType::VARIANT: {
  83. result.has_type = false;
  84. } break;
  85. case GDScriptParser::DataType::BUILTIN: {
  86. result.kind = GDScriptDataType::BUILTIN;
  87. result.builtin_type = p_datatype.builtin_type;
  88. } break;
  89. case GDScriptParser::DataType::NATIVE: {
  90. if (p_handle_metatype && p_datatype.is_meta_type) {
  91. result.kind = GDScriptDataType::NATIVE;
  92. result.builtin_type = Variant::OBJECT;
  93. // Fixes GH-82255. `GDScriptNativeClass` is obtainable in GDScript,
  94. // but is not a registered and exposed class, so `GDScriptNativeClass`
  95. // is missing from `GDScriptLanguage::get_singleton()->get_global_map()`.
  96. //result.native_type = GDScriptNativeClass::get_class_static();
  97. result.native_type = Object::get_class_static();
  98. break;
  99. }
  100. result.kind = GDScriptDataType::NATIVE;
  101. result.builtin_type = p_datatype.builtin_type;
  102. result.native_type = p_datatype.native_type;
  103. #ifdef DEBUG_ENABLED
  104. if (unlikely(!GDScriptLanguage::get_singleton()->get_global_map().has(result.native_type))) {
  105. _set_error(vformat(R"(GDScript bug (please report): Native class "%s" not found.)", result.native_type), nullptr);
  106. return GDScriptDataType();
  107. }
  108. #endif
  109. } break;
  110. case GDScriptParser::DataType::SCRIPT: {
  111. if (p_handle_metatype && p_datatype.is_meta_type) {
  112. result.kind = GDScriptDataType::NATIVE;
  113. result.builtin_type = Variant::OBJECT;
  114. result.native_type = p_datatype.script_type.is_valid() ? p_datatype.script_type->get_class_name() : Script::get_class_static();
  115. break;
  116. }
  117. result.kind = GDScriptDataType::SCRIPT;
  118. result.builtin_type = p_datatype.builtin_type;
  119. result.script_type_ref = p_datatype.script_type;
  120. result.script_type = result.script_type_ref.ptr();
  121. result.native_type = p_datatype.native_type;
  122. } break;
  123. case GDScriptParser::DataType::CLASS: {
  124. if (p_handle_metatype && p_datatype.is_meta_type) {
  125. result.kind = GDScriptDataType::NATIVE;
  126. result.builtin_type = Variant::OBJECT;
  127. result.native_type = GDScript::get_class_static();
  128. break;
  129. }
  130. result.kind = GDScriptDataType::GDSCRIPT;
  131. result.builtin_type = p_datatype.builtin_type;
  132. result.native_type = p_datatype.native_type;
  133. bool is_local_class = parser->has_class(p_datatype.class_type);
  134. Ref<GDScript> script;
  135. if (is_local_class) {
  136. script = Ref<GDScript>(main_script);
  137. } else {
  138. Error err = OK;
  139. script = GDScriptCache::get_shallow_script(p_datatype.script_path, err, p_owner->path);
  140. if (err) {
  141. _set_error(vformat(R"(Could not find script "%s": %s)", p_datatype.script_path, error_names[err]), nullptr);
  142. return GDScriptDataType();
  143. }
  144. }
  145. if (script.is_valid()) {
  146. script = Ref<GDScript>(script->find_class(p_datatype.class_type->fqcn));
  147. }
  148. if (script.is_null()) {
  149. _set_error(vformat(R"(Could not find class "%s" in "%s".)", p_datatype.class_type->fqcn, p_datatype.script_path), nullptr);
  150. return GDScriptDataType();
  151. } else {
  152. // Only hold a strong reference if the owner of the element qualified with this type is not local, to avoid cyclic references (leaks).
  153. // TODO: Might lead to use after free if script_type is a subclass and is used after its parent is freed.
  154. if (!is_local_class) {
  155. result.script_type_ref = script;
  156. }
  157. result.script_type = script.ptr();
  158. result.native_type = p_datatype.native_type;
  159. }
  160. } break;
  161. case GDScriptParser::DataType::ENUM:
  162. if (p_handle_metatype && p_datatype.is_meta_type) {
  163. result.kind = GDScriptDataType::BUILTIN;
  164. result.builtin_type = Variant::DICTIONARY;
  165. break;
  166. }
  167. result.kind = GDScriptDataType::BUILTIN;
  168. result.builtin_type = p_datatype.builtin_type;
  169. break;
  170. case GDScriptParser::DataType::RESOLVING:
  171. case GDScriptParser::DataType::UNRESOLVED: {
  172. _set_error("Parser bug (please report): converting unresolved type.", nullptr);
  173. return GDScriptDataType();
  174. }
  175. }
  176. for (int i = 0; i < p_datatype.container_element_types.size(); i++) {
  177. result.set_container_element_type(i, _gdtype_from_datatype(p_datatype.get_container_element_type_or_variant(i), p_owner, false));
  178. }
  179. return result;
  180. }
  181. static bool _is_exact_type(const PropertyInfo &p_par_type, const GDScriptDataType &p_arg_type) {
  182. if (!p_arg_type.has_type) {
  183. return false;
  184. }
  185. if (p_par_type.type == Variant::NIL) {
  186. return false;
  187. }
  188. if (p_par_type.type == Variant::OBJECT) {
  189. if (p_arg_type.kind == GDScriptDataType::BUILTIN) {
  190. return false;
  191. }
  192. StringName class_name;
  193. if (p_arg_type.kind == GDScriptDataType::NATIVE) {
  194. class_name = p_arg_type.native_type;
  195. } else {
  196. class_name = p_arg_type.native_type == StringName() ? p_arg_type.script_type->get_instance_base_type() : p_arg_type.native_type;
  197. }
  198. return p_par_type.class_name == class_name || ClassDB::is_parent_class(class_name, p_par_type.class_name);
  199. } else {
  200. if (p_arg_type.kind != GDScriptDataType::BUILTIN) {
  201. return false;
  202. }
  203. return p_par_type.type == p_arg_type.builtin_type;
  204. }
  205. }
  206. static bool _can_use_validate_call(const MethodBind *p_method, const Vector<GDScriptCodeGenerator::Address> &p_arguments) {
  207. if (p_method->is_vararg()) {
  208. // Validated call won't work with vararg methods.
  209. return false;
  210. }
  211. if (p_method->get_argument_count() != p_arguments.size()) {
  212. // Validated call won't work with default arguments.
  213. return false;
  214. }
  215. MethodInfo info;
  216. ClassDB::get_method_info(p_method->get_instance_class(), p_method->get_name(), &info);
  217. for (int64_t i = 0; i < info.arguments.size(); ++i) {
  218. if (!_is_exact_type(info.arguments[i], p_arguments[i].type)) {
  219. return false;
  220. }
  221. }
  222. return true;
  223. }
  224. GDScriptCodeGenerator::Address GDScriptCompiler::_parse_expression(CodeGen &codegen, Error &r_error, const GDScriptParser::ExpressionNode *p_expression, bool p_root, bool p_initializer) {
  225. if (p_expression->is_constant && !(p_expression->get_datatype().is_meta_type && p_expression->get_datatype().kind == GDScriptParser::DataType::CLASS)) {
  226. return codegen.add_constant(p_expression->reduced_value);
  227. }
  228. GDScriptCodeGenerator *gen = codegen.generator;
  229. switch (p_expression->type) {
  230. case GDScriptParser::Node::IDENTIFIER: {
  231. // Look for identifiers in current scope.
  232. const GDScriptParser::IdentifierNode *in = static_cast<const GDScriptParser::IdentifierNode *>(p_expression);
  233. StringName identifier = in->name;
  234. switch (in->source) {
  235. // LOCALS.
  236. case GDScriptParser::IdentifierNode::FUNCTION_PARAMETER:
  237. case GDScriptParser::IdentifierNode::LOCAL_VARIABLE:
  238. case GDScriptParser::IdentifierNode::LOCAL_CONSTANT:
  239. case GDScriptParser::IdentifierNode::LOCAL_ITERATOR:
  240. case GDScriptParser::IdentifierNode::LOCAL_BIND: {
  241. // Try function parameters.
  242. if (codegen.parameters.has(identifier)) {
  243. return codegen.parameters[identifier];
  244. }
  245. // Try local variables and constants.
  246. if (!p_initializer && codegen.locals.has(identifier)) {
  247. return codegen.locals[identifier];
  248. }
  249. } break;
  250. // MEMBERS.
  251. case GDScriptParser::IdentifierNode::MEMBER_VARIABLE:
  252. case GDScriptParser::IdentifierNode::MEMBER_FUNCTION:
  253. case GDScriptParser::IdentifierNode::MEMBER_SIGNAL:
  254. case GDScriptParser::IdentifierNode::INHERITED_VARIABLE: {
  255. // Try class members.
  256. if (_is_class_member_property(codegen, identifier)) {
  257. // Get property.
  258. GDScriptCodeGenerator::Address temp = codegen.add_temporary(_gdtype_from_datatype(p_expression->get_datatype(), codegen.script));
  259. gen->write_get_member(temp, identifier);
  260. return temp;
  261. }
  262. // Try members.
  263. if (!codegen.function_node || !codegen.function_node->is_static) {
  264. // Try member variables.
  265. if (codegen.script->member_indices.has(identifier)) {
  266. if (codegen.script->member_indices[identifier].getter != StringName() && codegen.script->member_indices[identifier].getter != codegen.function_name) {
  267. // Perform getter.
  268. GDScriptCodeGenerator::Address temp = codegen.add_temporary(codegen.script->member_indices[identifier].data_type);
  269. Vector<GDScriptCodeGenerator::Address> args; // No argument needed.
  270. gen->write_call_self(temp, codegen.script->member_indices[identifier].getter, args);
  271. return temp;
  272. } else {
  273. // No getter or inside getter: direct member access.
  274. int idx = codegen.script->member_indices[identifier].index;
  275. return GDScriptCodeGenerator::Address(GDScriptCodeGenerator::Address::MEMBER, idx, codegen.script->get_member_type(identifier));
  276. }
  277. }
  278. }
  279. // Try methods and signals (can be Callable and Signal).
  280. {
  281. // Search upwards through parent classes:
  282. const GDScriptParser::ClassNode *base_class = codegen.class_node;
  283. while (base_class != nullptr) {
  284. if (base_class->has_member(identifier)) {
  285. const GDScriptParser::ClassNode::Member &member = base_class->get_member(identifier);
  286. if (member.type == GDScriptParser::ClassNode::Member::FUNCTION || member.type == GDScriptParser::ClassNode::Member::SIGNAL) {
  287. // Get like it was a property.
  288. GDScriptCodeGenerator::Address temp = codegen.add_temporary(); // TODO: Get type here.
  289. GDScriptCodeGenerator::Address base(GDScriptCodeGenerator::Address::SELF);
  290. if (member.type == GDScriptParser::ClassNode::Member::FUNCTION && member.function->is_static) {
  291. base = GDScriptCodeGenerator::Address(GDScriptCodeGenerator::Address::CLASS);
  292. }
  293. gen->write_get_named(temp, identifier, base);
  294. return temp;
  295. }
  296. }
  297. base_class = base_class->base_type.class_type;
  298. }
  299. // Try in native base.
  300. GDScript *scr = codegen.script;
  301. GDScriptNativeClass *nc = nullptr;
  302. while (scr) {
  303. if (scr->native.is_valid()) {
  304. nc = scr->native.ptr();
  305. }
  306. scr = scr->_base;
  307. }
  308. if (nc && (identifier == CoreStringName(free_) || ClassDB::has_signal(nc->get_name(), identifier) || ClassDB::has_method(nc->get_name(), identifier))) {
  309. // Get like it was a property.
  310. GDScriptCodeGenerator::Address temp = codegen.add_temporary(); // TODO: Get type here.
  311. GDScriptCodeGenerator::Address self(GDScriptCodeGenerator::Address::SELF);
  312. gen->write_get_named(temp, identifier, self);
  313. return temp;
  314. }
  315. }
  316. } break;
  317. case GDScriptParser::IdentifierNode::MEMBER_CONSTANT:
  318. case GDScriptParser::IdentifierNode::MEMBER_CLASS: {
  319. // Try class constants.
  320. GDScript *owner = codegen.script;
  321. while (owner) {
  322. GDScript *scr = owner;
  323. GDScriptNativeClass *nc = nullptr;
  324. while (scr) {
  325. if (scr->constants.has(identifier)) {
  326. return codegen.add_constant(scr->constants[identifier]); // TODO: Get type here.
  327. }
  328. if (scr->native.is_valid()) {
  329. nc = scr->native.ptr();
  330. }
  331. scr = scr->_base;
  332. }
  333. // Class C++ integer constant.
  334. if (nc) {
  335. bool success = false;
  336. int64_t constant = ClassDB::get_integer_constant(nc->get_name(), identifier, &success);
  337. if (success) {
  338. return codegen.add_constant(constant);
  339. }
  340. }
  341. owner = owner->_owner;
  342. }
  343. } break;
  344. case GDScriptParser::IdentifierNode::STATIC_VARIABLE: {
  345. // Try static variables.
  346. GDScript *scr = codegen.script;
  347. while (scr) {
  348. if (scr->static_variables_indices.has(identifier)) {
  349. if (scr->static_variables_indices[identifier].getter != StringName() && scr->static_variables_indices[identifier].getter != codegen.function_name) {
  350. // Perform getter.
  351. GDScriptCodeGenerator::Address temp = codegen.add_temporary(scr->static_variables_indices[identifier].data_type);
  352. GDScriptCodeGenerator::Address class_addr(GDScriptCodeGenerator::Address::CLASS);
  353. Vector<GDScriptCodeGenerator::Address> args; // No argument needed.
  354. gen->write_call(temp, class_addr, scr->static_variables_indices[identifier].getter, args);
  355. return temp;
  356. } else {
  357. // No getter or inside getter: direct variable access.
  358. GDScriptCodeGenerator::Address temp = codegen.add_temporary(scr->static_variables_indices[identifier].data_type);
  359. GDScriptCodeGenerator::Address _class = codegen.add_constant(scr);
  360. int index = scr->static_variables_indices[identifier].index;
  361. gen->write_get_static_variable(temp, _class, index);
  362. return temp;
  363. }
  364. }
  365. scr = scr->_base;
  366. }
  367. } break;
  368. // GLOBALS.
  369. case GDScriptParser::IdentifierNode::UNDEFINED_SOURCE: {
  370. // Try globals.
  371. if (GDScriptLanguage::get_singleton()->get_global_map().has(identifier)) {
  372. // If it's an autoload singleton, we postpone to load it at runtime.
  373. // This is so one autoload doesn't try to load another before it's compiled.
  374. HashMap<StringName, ProjectSettings::AutoloadInfo> autoloads = ProjectSettings::get_singleton()->get_autoload_list();
  375. if (autoloads.has(identifier) && autoloads[identifier].is_singleton) {
  376. GDScriptCodeGenerator::Address global = codegen.add_temporary(_gdtype_from_datatype(in->get_datatype(), codegen.script));
  377. int idx = GDScriptLanguage::get_singleton()->get_global_map()[identifier];
  378. gen->write_store_global(global, idx);
  379. return global;
  380. } else {
  381. int idx = GDScriptLanguage::get_singleton()->get_global_map()[identifier];
  382. Variant global = GDScriptLanguage::get_singleton()->get_global_array()[idx];
  383. return codegen.add_constant(global);
  384. }
  385. }
  386. // Try global classes.
  387. if (ScriptServer::is_global_class(identifier)) {
  388. const GDScriptParser::ClassNode *class_node = codegen.class_node;
  389. while (class_node->outer) {
  390. class_node = class_node->outer;
  391. }
  392. Ref<Resource> res;
  393. if (class_node->identifier && class_node->identifier->name == identifier) {
  394. res = Ref<GDScript>(main_script);
  395. } else {
  396. String global_class_path = ScriptServer::get_global_class_path(identifier);
  397. if (ResourceLoader::get_resource_type(global_class_path) == "GDScript") {
  398. Error err = OK;
  399. // Should not need to pass p_owner since analyzer will already have done it.
  400. res = GDScriptCache::get_shallow_script(global_class_path, err);
  401. if (err != OK) {
  402. _set_error("Can't load global class " + String(identifier), p_expression);
  403. r_error = ERR_COMPILATION_FAILED;
  404. return GDScriptCodeGenerator::Address();
  405. }
  406. } else {
  407. res = ResourceLoader::load(global_class_path);
  408. if (res.is_null()) {
  409. _set_error("Can't load global class " + String(identifier) + ", cyclic reference?", p_expression);
  410. r_error = ERR_COMPILATION_FAILED;
  411. return GDScriptCodeGenerator::Address();
  412. }
  413. }
  414. }
  415. return codegen.add_constant(res);
  416. }
  417. #ifdef TOOLS_ENABLED
  418. if (GDScriptLanguage::get_singleton()->get_named_globals_map().has(identifier)) {
  419. GDScriptCodeGenerator::Address global = codegen.add_temporary(); // TODO: Get type.
  420. gen->write_store_named_global(global, identifier);
  421. return global;
  422. }
  423. #endif
  424. } break;
  425. }
  426. // Not found, error.
  427. _set_error("Identifier not found: " + String(identifier), p_expression);
  428. r_error = ERR_COMPILATION_FAILED;
  429. return GDScriptCodeGenerator::Address();
  430. } break;
  431. case GDScriptParser::Node::LITERAL: {
  432. // Return constant.
  433. const GDScriptParser::LiteralNode *cn = static_cast<const GDScriptParser::LiteralNode *>(p_expression);
  434. return codegen.add_constant(cn->value);
  435. } break;
  436. case GDScriptParser::Node::SELF: {
  437. //return constant
  438. if (codegen.function_node && codegen.function_node->is_static) {
  439. _set_error("'self' not present in static function.", p_expression);
  440. r_error = ERR_COMPILATION_FAILED;
  441. return GDScriptCodeGenerator::Address();
  442. }
  443. return GDScriptCodeGenerator::Address(GDScriptCodeGenerator::Address::SELF);
  444. } break;
  445. case GDScriptParser::Node::ARRAY: {
  446. const GDScriptParser::ArrayNode *an = static_cast<const GDScriptParser::ArrayNode *>(p_expression);
  447. Vector<GDScriptCodeGenerator::Address> values;
  448. // Create the result temporary first since it's the last to be killed.
  449. GDScriptDataType array_type = _gdtype_from_datatype(an->get_datatype(), codegen.script);
  450. GDScriptCodeGenerator::Address result = codegen.add_temporary(array_type);
  451. for (int i = 0; i < an->elements.size(); i++) {
  452. GDScriptCodeGenerator::Address val = _parse_expression(codegen, r_error, an->elements[i]);
  453. if (r_error) {
  454. return GDScriptCodeGenerator::Address();
  455. }
  456. values.push_back(val);
  457. }
  458. if (array_type.has_container_element_type(0)) {
  459. gen->write_construct_typed_array(result, array_type.get_container_element_type(0), values);
  460. } else {
  461. gen->write_construct_array(result, values);
  462. }
  463. for (int i = 0; i < values.size(); i++) {
  464. if (values[i].mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  465. gen->pop_temporary();
  466. }
  467. }
  468. return result;
  469. } break;
  470. case GDScriptParser::Node::DICTIONARY: {
  471. const GDScriptParser::DictionaryNode *dn = static_cast<const GDScriptParser::DictionaryNode *>(p_expression);
  472. Vector<GDScriptCodeGenerator::Address> elements;
  473. // Create the result temporary first since it's the last to be killed.
  474. GDScriptDataType dict_type = _gdtype_from_datatype(dn->get_datatype(), codegen.script);
  475. GDScriptCodeGenerator::Address result = codegen.add_temporary(dict_type);
  476. for (int i = 0; i < dn->elements.size(); i++) {
  477. // Key.
  478. GDScriptCodeGenerator::Address element;
  479. switch (dn->style) {
  480. case GDScriptParser::DictionaryNode::PYTHON_DICT:
  481. // Python-style: key is any expression.
  482. element = _parse_expression(codegen, r_error, dn->elements[i].key);
  483. if (r_error) {
  484. return GDScriptCodeGenerator::Address();
  485. }
  486. break;
  487. case GDScriptParser::DictionaryNode::LUA_TABLE:
  488. // Lua-style: key is an identifier interpreted as StringName.
  489. StringName key = dn->elements[i].key->reduced_value.operator StringName();
  490. element = codegen.add_constant(key);
  491. break;
  492. }
  493. elements.push_back(element);
  494. element = _parse_expression(codegen, r_error, dn->elements[i].value);
  495. if (r_error) {
  496. return GDScriptCodeGenerator::Address();
  497. }
  498. elements.push_back(element);
  499. }
  500. if (dict_type.has_container_element_types()) {
  501. gen->write_construct_typed_dictionary(result, dict_type.get_container_element_type_or_variant(0), dict_type.get_container_element_type_or_variant(1), elements);
  502. } else {
  503. gen->write_construct_dictionary(result, elements);
  504. }
  505. for (int i = 0; i < elements.size(); i++) {
  506. if (elements[i].mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  507. gen->pop_temporary();
  508. }
  509. }
  510. return result;
  511. } break;
  512. case GDScriptParser::Node::CAST: {
  513. const GDScriptParser::CastNode *cn = static_cast<const GDScriptParser::CastNode *>(p_expression);
  514. GDScriptDataType cast_type = _gdtype_from_datatype(cn->get_datatype(), codegen.script, false);
  515. GDScriptCodeGenerator::Address result;
  516. if (cast_type.has_type) {
  517. // Create temporary for result first since it will be deleted last.
  518. result = codegen.add_temporary(cast_type);
  519. GDScriptCodeGenerator::Address src = _parse_expression(codegen, r_error, cn->operand);
  520. gen->write_cast(result, src, cast_type);
  521. if (src.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  522. gen->pop_temporary();
  523. }
  524. } else {
  525. result = _parse_expression(codegen, r_error, cn->operand);
  526. }
  527. return result;
  528. } break;
  529. case GDScriptParser::Node::CALL: {
  530. const GDScriptParser::CallNode *call = static_cast<const GDScriptParser::CallNode *>(p_expression);
  531. bool is_awaited = p_expression == awaited_node;
  532. GDScriptDataType type = _gdtype_from_datatype(call->get_datatype(), codegen.script);
  533. GDScriptCodeGenerator::Address result;
  534. if (p_root) {
  535. result = GDScriptCodeGenerator::Address(GDScriptCodeGenerator::Address::NIL);
  536. } else {
  537. result = codegen.add_temporary(type);
  538. }
  539. Vector<GDScriptCodeGenerator::Address> arguments;
  540. for (int i = 0; i < call->arguments.size(); i++) {
  541. GDScriptCodeGenerator::Address arg = _parse_expression(codegen, r_error, call->arguments[i]);
  542. if (r_error) {
  543. return GDScriptCodeGenerator::Address();
  544. }
  545. arguments.push_back(arg);
  546. }
  547. if (!call->is_super && call->callee->type == GDScriptParser::Node::IDENTIFIER && GDScriptParser::get_builtin_type(call->function_name) < Variant::VARIANT_MAX) {
  548. gen->write_construct(result, GDScriptParser::get_builtin_type(call->function_name), arguments);
  549. } else if (!call->is_super && call->callee->type == GDScriptParser::Node::IDENTIFIER && Variant::has_utility_function(call->function_name)) {
  550. // Variant utility function.
  551. gen->write_call_utility(result, call->function_name, arguments);
  552. } else if (!call->is_super && call->callee->type == GDScriptParser::Node::IDENTIFIER && GDScriptUtilityFunctions::function_exists(call->function_name)) {
  553. // GDScript utility function.
  554. gen->write_call_gdscript_utility(result, call->function_name, arguments);
  555. } else {
  556. // Regular function.
  557. const GDScriptParser::ExpressionNode *callee = call->callee;
  558. if (call->is_super) {
  559. // Super call.
  560. gen->write_super_call(result, call->function_name, arguments);
  561. } else {
  562. if (callee->type == GDScriptParser::Node::IDENTIFIER) {
  563. // Self function call.
  564. if (ClassDB::has_method(codegen.script->native->get_name(), call->function_name)) {
  565. // Native method, use faster path.
  566. GDScriptCodeGenerator::Address self;
  567. self.mode = GDScriptCodeGenerator::Address::SELF;
  568. MethodBind *method = ClassDB::get_method(codegen.script->native->get_name(), call->function_name);
  569. if (_can_use_validate_call(method, arguments)) {
  570. // Exact arguments, use validated call.
  571. gen->write_call_method_bind_validated(result, self, method, arguments);
  572. } else {
  573. // Not exact arguments, but still can use method bind call.
  574. gen->write_call_method_bind(result, self, method, arguments);
  575. }
  576. } else if (call->is_static || codegen.is_static || (codegen.function_node && codegen.function_node->is_static) || call->function_name == "new") {
  577. GDScriptCodeGenerator::Address self;
  578. self.mode = GDScriptCodeGenerator::Address::CLASS;
  579. if (is_awaited) {
  580. gen->write_call_async(result, self, call->function_name, arguments);
  581. } else {
  582. gen->write_call(result, self, call->function_name, arguments);
  583. }
  584. } else {
  585. if (is_awaited) {
  586. gen->write_call_self_async(result, call->function_name, arguments);
  587. } else {
  588. gen->write_call_self(result, call->function_name, arguments);
  589. }
  590. }
  591. } else if (callee->type == GDScriptParser::Node::SUBSCRIPT) {
  592. const GDScriptParser::SubscriptNode *subscript = static_cast<const GDScriptParser::SubscriptNode *>(call->callee);
  593. if (subscript->is_attribute) {
  594. // May be static built-in method call.
  595. if (!call->is_super && subscript->base->type == GDScriptParser::Node::IDENTIFIER && GDScriptParser::get_builtin_type(static_cast<GDScriptParser::IdentifierNode *>(subscript->base)->name) < Variant::VARIANT_MAX) {
  596. gen->write_call_builtin_type_static(result, GDScriptParser::get_builtin_type(static_cast<GDScriptParser::IdentifierNode *>(subscript->base)->name), subscript->attribute->name, arguments);
  597. } else if (!call->is_super && subscript->base->type == GDScriptParser::Node::IDENTIFIER && call->function_name != SNAME("new") &&
  598. ClassDB::class_exists(static_cast<GDScriptParser::IdentifierNode *>(subscript->base)->name) && !Engine::get_singleton()->has_singleton(static_cast<GDScriptParser::IdentifierNode *>(subscript->base)->name)) {
  599. // It's a static native method call.
  600. StringName class_name = static_cast<GDScriptParser::IdentifierNode *>(subscript->base)->name;
  601. MethodBind *method = ClassDB::get_method(class_name, subscript->attribute->name);
  602. if (_can_use_validate_call(method, arguments)) {
  603. // Exact arguments, use validated call.
  604. gen->write_call_native_static_validated(result, method, arguments);
  605. } else {
  606. // Not exact arguments, use regular static call
  607. gen->write_call_native_static(result, class_name, subscript->attribute->name, arguments);
  608. }
  609. } else {
  610. GDScriptCodeGenerator::Address base = _parse_expression(codegen, r_error, subscript->base);
  611. if (r_error) {
  612. return GDScriptCodeGenerator::Address();
  613. }
  614. if (is_awaited) {
  615. gen->write_call_async(result, base, call->function_name, arguments);
  616. } else if (base.type.has_type && base.type.kind != GDScriptDataType::BUILTIN) {
  617. // Native method, use faster path.
  618. StringName class_name;
  619. if (base.type.kind == GDScriptDataType::NATIVE) {
  620. class_name = base.type.native_type;
  621. } else {
  622. class_name = base.type.native_type == StringName() ? base.type.script_type->get_instance_base_type() : base.type.native_type;
  623. }
  624. if (ClassDB::class_exists(class_name) && ClassDB::has_method(class_name, call->function_name)) {
  625. MethodBind *method = ClassDB::get_method(class_name, call->function_name);
  626. if (_can_use_validate_call(method, arguments)) {
  627. // Exact arguments, use validated call.
  628. gen->write_call_method_bind_validated(result, base, method, arguments);
  629. } else {
  630. // Not exact arguments, but still can use method bind call.
  631. gen->write_call_method_bind(result, base, method, arguments);
  632. }
  633. } else {
  634. gen->write_call(result, base, call->function_name, arguments);
  635. }
  636. } else if (base.type.has_type && base.type.kind == GDScriptDataType::BUILTIN) {
  637. gen->write_call_builtin_type(result, base, base.type.builtin_type, call->function_name, arguments);
  638. } else {
  639. gen->write_call(result, base, call->function_name, arguments);
  640. }
  641. if (base.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  642. gen->pop_temporary();
  643. }
  644. }
  645. } else {
  646. _set_error("Cannot call something that isn't a function.", call->callee);
  647. r_error = ERR_COMPILATION_FAILED;
  648. return GDScriptCodeGenerator::Address();
  649. }
  650. } else {
  651. _set_error("Compiler bug (please report): incorrect callee type in call node.", call->callee);
  652. r_error = ERR_COMPILATION_FAILED;
  653. return GDScriptCodeGenerator::Address();
  654. }
  655. }
  656. }
  657. for (int i = 0; i < arguments.size(); i++) {
  658. if (arguments[i].mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  659. gen->pop_temporary();
  660. }
  661. }
  662. return result;
  663. } break;
  664. case GDScriptParser::Node::GET_NODE: {
  665. const GDScriptParser::GetNodeNode *get_node = static_cast<const GDScriptParser::GetNodeNode *>(p_expression);
  666. Vector<GDScriptCodeGenerator::Address> args;
  667. args.push_back(codegen.add_constant(NodePath(get_node->full_path)));
  668. GDScriptCodeGenerator::Address result = codegen.add_temporary(_gdtype_from_datatype(get_node->get_datatype(), codegen.script));
  669. MethodBind *get_node_method = ClassDB::get_method("Node", "get_node");
  670. gen->write_call_method_bind_validated(result, GDScriptCodeGenerator::Address(GDScriptCodeGenerator::Address::SELF), get_node_method, args);
  671. return result;
  672. } break;
  673. case GDScriptParser::Node::PRELOAD: {
  674. const GDScriptParser::PreloadNode *preload = static_cast<const GDScriptParser::PreloadNode *>(p_expression);
  675. // Add resource as constant.
  676. return codegen.add_constant(preload->resource);
  677. } break;
  678. case GDScriptParser::Node::AWAIT: {
  679. const GDScriptParser::AwaitNode *await = static_cast<const GDScriptParser::AwaitNode *>(p_expression);
  680. GDScriptCodeGenerator::Address result = codegen.add_temporary(_gdtype_from_datatype(p_expression->get_datatype(), codegen.script));
  681. GDScriptParser::ExpressionNode *previous_awaited_node = awaited_node;
  682. awaited_node = await->to_await;
  683. GDScriptCodeGenerator::Address argument = _parse_expression(codegen, r_error, await->to_await);
  684. awaited_node = previous_awaited_node;
  685. if (r_error) {
  686. return GDScriptCodeGenerator::Address();
  687. }
  688. gen->write_await(result, argument);
  689. if (argument.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  690. gen->pop_temporary();
  691. }
  692. return result;
  693. } break;
  694. // Indexing operator.
  695. case GDScriptParser::Node::SUBSCRIPT: {
  696. const GDScriptParser::SubscriptNode *subscript = static_cast<const GDScriptParser::SubscriptNode *>(p_expression);
  697. GDScriptCodeGenerator::Address result = codegen.add_temporary(_gdtype_from_datatype(subscript->get_datatype(), codegen.script));
  698. GDScriptCodeGenerator::Address base = _parse_expression(codegen, r_error, subscript->base);
  699. if (r_error) {
  700. return GDScriptCodeGenerator::Address();
  701. }
  702. bool named = subscript->is_attribute;
  703. StringName name;
  704. GDScriptCodeGenerator::Address index;
  705. if (subscript->is_attribute) {
  706. if (subscript->base->type == GDScriptParser::Node::SELF && codegen.script) {
  707. GDScriptParser::IdentifierNode *identifier = subscript->attribute;
  708. HashMap<StringName, GDScript::MemberInfo>::Iterator MI = codegen.script->member_indices.find(identifier->name);
  709. #ifdef DEBUG_ENABLED
  710. if (MI && MI->value.getter == codegen.function_name) {
  711. String n = identifier->name;
  712. _set_error("Must use '" + n + "' instead of 'self." + n + "' in getter.", identifier);
  713. r_error = ERR_COMPILATION_FAILED;
  714. return GDScriptCodeGenerator::Address();
  715. }
  716. #endif
  717. if (MI && MI->value.getter == "") {
  718. // Remove result temp as we don't need it.
  719. gen->pop_temporary();
  720. // Faster than indexing self (as if no self. had been used).
  721. return GDScriptCodeGenerator::Address(GDScriptCodeGenerator::Address::MEMBER, MI->value.index, _gdtype_from_datatype(subscript->get_datatype(), codegen.script));
  722. }
  723. }
  724. name = subscript->attribute->name;
  725. named = true;
  726. } else {
  727. if (subscript->index->is_constant && subscript->index->reduced_value.get_type() == Variant::STRING_NAME) {
  728. // Also, somehow, named (speed up anyway).
  729. name = subscript->index->reduced_value;
  730. named = true;
  731. } else {
  732. // Regular indexing.
  733. index = _parse_expression(codegen, r_error, subscript->index);
  734. if (r_error) {
  735. return GDScriptCodeGenerator::Address();
  736. }
  737. }
  738. }
  739. if (named) {
  740. gen->write_get_named(result, name, base);
  741. } else {
  742. gen->write_get(result, index, base);
  743. }
  744. if (index.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  745. gen->pop_temporary();
  746. }
  747. if (base.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  748. gen->pop_temporary();
  749. }
  750. return result;
  751. } break;
  752. case GDScriptParser::Node::UNARY_OPERATOR: {
  753. const GDScriptParser::UnaryOpNode *unary = static_cast<const GDScriptParser::UnaryOpNode *>(p_expression);
  754. GDScriptCodeGenerator::Address result = codegen.add_temporary(_gdtype_from_datatype(unary->get_datatype(), codegen.script));
  755. GDScriptCodeGenerator::Address operand = _parse_expression(codegen, r_error, unary->operand);
  756. if (r_error) {
  757. return GDScriptCodeGenerator::Address();
  758. }
  759. gen->write_unary_operator(result, unary->variant_op, operand);
  760. if (operand.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  761. gen->pop_temporary();
  762. }
  763. return result;
  764. }
  765. case GDScriptParser::Node::BINARY_OPERATOR: {
  766. const GDScriptParser::BinaryOpNode *binary = static_cast<const GDScriptParser::BinaryOpNode *>(p_expression);
  767. GDScriptCodeGenerator::Address result = codegen.add_temporary(_gdtype_from_datatype(binary->get_datatype(), codegen.script));
  768. switch (binary->operation) {
  769. case GDScriptParser::BinaryOpNode::OP_LOGIC_AND: {
  770. // AND operator with early out on failure.
  771. GDScriptCodeGenerator::Address left_operand = _parse_expression(codegen, r_error, binary->left_operand);
  772. gen->write_and_left_operand(left_operand);
  773. GDScriptCodeGenerator::Address right_operand = _parse_expression(codegen, r_error, binary->right_operand);
  774. gen->write_and_right_operand(right_operand);
  775. gen->write_end_and(result);
  776. if (right_operand.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  777. gen->pop_temporary();
  778. }
  779. if (left_operand.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  780. gen->pop_temporary();
  781. }
  782. } break;
  783. case GDScriptParser::BinaryOpNode::OP_LOGIC_OR: {
  784. // OR operator with early out on success.
  785. GDScriptCodeGenerator::Address left_operand = _parse_expression(codegen, r_error, binary->left_operand);
  786. gen->write_or_left_operand(left_operand);
  787. GDScriptCodeGenerator::Address right_operand = _parse_expression(codegen, r_error, binary->right_operand);
  788. gen->write_or_right_operand(right_operand);
  789. gen->write_end_or(result);
  790. if (right_operand.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  791. gen->pop_temporary();
  792. }
  793. if (left_operand.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  794. gen->pop_temporary();
  795. }
  796. } break;
  797. default: {
  798. GDScriptCodeGenerator::Address left_operand = _parse_expression(codegen, r_error, binary->left_operand);
  799. GDScriptCodeGenerator::Address right_operand = _parse_expression(codegen, r_error, binary->right_operand);
  800. gen->write_binary_operator(result, binary->variant_op, left_operand, right_operand);
  801. if (right_operand.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  802. gen->pop_temporary();
  803. }
  804. if (left_operand.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  805. gen->pop_temporary();
  806. }
  807. }
  808. }
  809. return result;
  810. } break;
  811. case GDScriptParser::Node::TERNARY_OPERATOR: {
  812. // x IF a ELSE y operator with early out on failure.
  813. const GDScriptParser::TernaryOpNode *ternary = static_cast<const GDScriptParser::TernaryOpNode *>(p_expression);
  814. GDScriptCodeGenerator::Address result = codegen.add_temporary(_gdtype_from_datatype(ternary->get_datatype(), codegen.script));
  815. gen->write_start_ternary(result);
  816. GDScriptCodeGenerator::Address condition = _parse_expression(codegen, r_error, ternary->condition);
  817. if (r_error) {
  818. return GDScriptCodeGenerator::Address();
  819. }
  820. gen->write_ternary_condition(condition);
  821. if (condition.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  822. gen->pop_temporary();
  823. }
  824. GDScriptCodeGenerator::Address true_expr = _parse_expression(codegen, r_error, ternary->true_expr);
  825. if (r_error) {
  826. return GDScriptCodeGenerator::Address();
  827. }
  828. gen->write_ternary_true_expr(true_expr);
  829. if (true_expr.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  830. gen->pop_temporary();
  831. }
  832. GDScriptCodeGenerator::Address false_expr = _parse_expression(codegen, r_error, ternary->false_expr);
  833. if (r_error) {
  834. return GDScriptCodeGenerator::Address();
  835. }
  836. gen->write_ternary_false_expr(false_expr);
  837. if (false_expr.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  838. gen->pop_temporary();
  839. }
  840. gen->write_end_ternary();
  841. return result;
  842. } break;
  843. case GDScriptParser::Node::TYPE_TEST: {
  844. const GDScriptParser::TypeTestNode *type_test = static_cast<const GDScriptParser::TypeTestNode *>(p_expression);
  845. GDScriptCodeGenerator::Address result = codegen.add_temporary(_gdtype_from_datatype(type_test->get_datatype(), codegen.script));
  846. GDScriptCodeGenerator::Address operand = _parse_expression(codegen, r_error, type_test->operand);
  847. GDScriptDataType test_type = _gdtype_from_datatype(type_test->test_datatype, codegen.script, false);
  848. if (r_error) {
  849. return GDScriptCodeGenerator::Address();
  850. }
  851. if (test_type.has_type) {
  852. gen->write_type_test(result, operand, test_type);
  853. } else {
  854. gen->write_assign_true(result);
  855. }
  856. if (operand.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  857. gen->pop_temporary();
  858. }
  859. return result;
  860. } break;
  861. case GDScriptParser::Node::ASSIGNMENT: {
  862. const GDScriptParser::AssignmentNode *assignment = static_cast<const GDScriptParser::AssignmentNode *>(p_expression);
  863. if (assignment->assignee->type == GDScriptParser::Node::SUBSCRIPT) {
  864. // SET (chained) MODE!
  865. const GDScriptParser::SubscriptNode *subscript = static_cast<GDScriptParser::SubscriptNode *>(assignment->assignee);
  866. #ifdef DEBUG_ENABLED
  867. if (subscript->is_attribute && subscript->base->type == GDScriptParser::Node::SELF && codegen.script) {
  868. HashMap<StringName, GDScript::MemberInfo>::Iterator MI = codegen.script->member_indices.find(subscript->attribute->name);
  869. if (MI && MI->value.setter == codegen.function_name) {
  870. String n = subscript->attribute->name;
  871. _set_error("Must use '" + n + "' instead of 'self." + n + "' in setter.", subscript);
  872. r_error = ERR_COMPILATION_FAILED;
  873. return GDScriptCodeGenerator::Address();
  874. }
  875. }
  876. #endif
  877. /* Find chain of sets */
  878. StringName assign_class_member_property;
  879. GDScriptCodeGenerator::Address target_member_property;
  880. bool is_member_property = false;
  881. bool member_property_has_setter = false;
  882. bool member_property_is_in_setter = false;
  883. bool is_static = false;
  884. GDScriptCodeGenerator::Address static_var_class;
  885. int static_var_index = 0;
  886. GDScriptDataType static_var_data_type;
  887. StringName var_name;
  888. StringName member_property_setter_function;
  889. List<const GDScriptParser::SubscriptNode *> chain;
  890. {
  891. // Create get/set chain.
  892. const GDScriptParser::SubscriptNode *n = subscript;
  893. while (true) {
  894. chain.push_back(n);
  895. if (n->base->type != GDScriptParser::Node::SUBSCRIPT) {
  896. // Check for a property.
  897. if (n->base->type == GDScriptParser::Node::IDENTIFIER) {
  898. GDScriptParser::IdentifierNode *identifier = static_cast<GDScriptParser::IdentifierNode *>(n->base);
  899. var_name = identifier->name;
  900. if (_is_class_member_property(codegen, var_name)) {
  901. assign_class_member_property = var_name;
  902. } else if (!_is_local_or_parameter(codegen, var_name)) {
  903. if (codegen.script->member_indices.has(var_name)) {
  904. is_member_property = true;
  905. is_static = false;
  906. const GDScript::MemberInfo &minfo = codegen.script->member_indices[var_name];
  907. member_property_setter_function = minfo.setter;
  908. member_property_has_setter = member_property_setter_function != StringName();
  909. member_property_is_in_setter = member_property_has_setter && member_property_setter_function == codegen.function_name;
  910. target_member_property.mode = GDScriptCodeGenerator::Address::MEMBER;
  911. target_member_property.address = minfo.index;
  912. target_member_property.type = minfo.data_type;
  913. } else {
  914. // Try static variables.
  915. GDScript *scr = codegen.script;
  916. while (scr) {
  917. if (scr->static_variables_indices.has(var_name)) {
  918. is_member_property = true;
  919. is_static = true;
  920. const GDScript::MemberInfo &minfo = scr->static_variables_indices[var_name];
  921. member_property_setter_function = minfo.setter;
  922. member_property_has_setter = member_property_setter_function != StringName();
  923. member_property_is_in_setter = member_property_has_setter && member_property_setter_function == codegen.function_name;
  924. static_var_class = codegen.add_constant(scr);
  925. static_var_index = minfo.index;
  926. static_var_data_type = minfo.data_type;
  927. break;
  928. }
  929. scr = scr->_base;
  930. }
  931. }
  932. }
  933. }
  934. break;
  935. }
  936. n = static_cast<const GDScriptParser::SubscriptNode *>(n->base);
  937. }
  938. }
  939. /* Chain of gets */
  940. // Get at (potential) root stack pos, so it can be returned.
  941. GDScriptCodeGenerator::Address base = _parse_expression(codegen, r_error, chain.back()->get()->base);
  942. const bool base_known_type = base.type.has_type;
  943. const bool base_is_shared = Variant::is_type_shared(base.type.builtin_type);
  944. if (r_error) {
  945. return GDScriptCodeGenerator::Address();
  946. }
  947. GDScriptCodeGenerator::Address prev_base = base;
  948. // In case the base has a setter, don't use the address directly, as we want to call that setter.
  949. // So use a temp value instead and call the setter at the end.
  950. GDScriptCodeGenerator::Address base_temp;
  951. if ((!base_known_type || !base_is_shared) && base.mode == GDScriptCodeGenerator::Address::MEMBER && member_property_has_setter && !member_property_is_in_setter) {
  952. base_temp = codegen.add_temporary(base.type);
  953. gen->write_assign(base_temp, base);
  954. prev_base = base_temp;
  955. }
  956. struct ChainInfo {
  957. bool is_named = false;
  958. GDScriptCodeGenerator::Address base;
  959. GDScriptCodeGenerator::Address key;
  960. StringName name;
  961. };
  962. List<ChainInfo> set_chain;
  963. for (List<const GDScriptParser::SubscriptNode *>::Element *E = chain.back(); E; E = E->prev()) {
  964. if (E == chain.front()) {
  965. // Skip the main subscript, since we'll assign to that.
  966. break;
  967. }
  968. const GDScriptParser::SubscriptNode *subscript_elem = E->get();
  969. GDScriptCodeGenerator::Address value = codegen.add_temporary(_gdtype_from_datatype(subscript_elem->get_datatype(), codegen.script));
  970. GDScriptCodeGenerator::Address key;
  971. StringName name;
  972. if (subscript_elem->is_attribute) {
  973. name = subscript_elem->attribute->name;
  974. gen->write_get_named(value, name, prev_base);
  975. } else {
  976. key = _parse_expression(codegen, r_error, subscript_elem->index);
  977. if (r_error) {
  978. return GDScriptCodeGenerator::Address();
  979. }
  980. gen->write_get(value, key, prev_base);
  981. }
  982. // Store base and key for setting it back later.
  983. set_chain.push_front({ subscript_elem->is_attribute, prev_base, key, name }); // Push to front to invert the list.
  984. prev_base = value;
  985. }
  986. // Get value to assign.
  987. GDScriptCodeGenerator::Address assigned = _parse_expression(codegen, r_error, assignment->assigned_value);
  988. if (r_error) {
  989. return GDScriptCodeGenerator::Address();
  990. }
  991. // Get the key if needed.
  992. GDScriptCodeGenerator::Address key;
  993. StringName name;
  994. if (subscript->is_attribute) {
  995. name = subscript->attribute->name;
  996. } else {
  997. key = _parse_expression(codegen, r_error, subscript->index);
  998. if (r_error) {
  999. return GDScriptCodeGenerator::Address();
  1000. }
  1001. }
  1002. // Perform operator if any.
  1003. if (assignment->operation != GDScriptParser::AssignmentNode::OP_NONE) {
  1004. GDScriptCodeGenerator::Address op_result = codegen.add_temporary(_gdtype_from_datatype(assignment->get_datatype(), codegen.script));
  1005. GDScriptCodeGenerator::Address value = codegen.add_temporary(_gdtype_from_datatype(subscript->get_datatype(), codegen.script));
  1006. if (subscript->is_attribute) {
  1007. gen->write_get_named(value, name, prev_base);
  1008. } else {
  1009. gen->write_get(value, key, prev_base);
  1010. }
  1011. gen->write_binary_operator(op_result, assignment->variant_op, value, assigned);
  1012. gen->pop_temporary();
  1013. if (assigned.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  1014. gen->pop_temporary();
  1015. }
  1016. assigned = op_result;
  1017. }
  1018. // Perform assignment.
  1019. if (subscript->is_attribute) {
  1020. gen->write_set_named(prev_base, name, assigned);
  1021. } else {
  1022. gen->write_set(prev_base, key, assigned);
  1023. }
  1024. if (key.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  1025. gen->pop_temporary();
  1026. }
  1027. if (assigned.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  1028. gen->pop_temporary();
  1029. }
  1030. assigned = prev_base;
  1031. // Set back the values into their bases.
  1032. for (const ChainInfo &info : set_chain) {
  1033. bool known_type = assigned.type.has_type;
  1034. bool is_shared = Variant::is_type_shared(assigned.type.builtin_type);
  1035. if (!known_type || !is_shared) {
  1036. if (!known_type) {
  1037. // Jump shared values since they are already updated in-place.
  1038. gen->write_jump_if_shared(assigned);
  1039. }
  1040. if (!info.is_named) {
  1041. gen->write_set(info.base, info.key, assigned);
  1042. } else {
  1043. gen->write_set_named(info.base, info.name, assigned);
  1044. }
  1045. if (!known_type) {
  1046. gen->write_end_jump_if_shared();
  1047. }
  1048. }
  1049. if (!info.is_named && info.key.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  1050. gen->pop_temporary();
  1051. }
  1052. if (assigned.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  1053. gen->pop_temporary();
  1054. }
  1055. assigned = info.base;
  1056. }
  1057. bool known_type = assigned.type.has_type;
  1058. bool is_shared = Variant::is_type_shared(assigned.type.builtin_type);
  1059. if (!known_type || !is_shared) {
  1060. // If this is a class member property, also assign to it.
  1061. // This allow things like: position.x += 2.0
  1062. if (assign_class_member_property != StringName()) {
  1063. if (!known_type) {
  1064. gen->write_jump_if_shared(assigned);
  1065. }
  1066. gen->write_set_member(assigned, assign_class_member_property);
  1067. if (!known_type) {
  1068. gen->write_end_jump_if_shared();
  1069. }
  1070. } else if (is_member_property) {
  1071. // Same as above but for script members.
  1072. if (!known_type) {
  1073. gen->write_jump_if_shared(assigned);
  1074. }
  1075. if (member_property_has_setter && !member_property_is_in_setter) {
  1076. Vector<GDScriptCodeGenerator::Address> args;
  1077. args.push_back(assigned);
  1078. GDScriptCodeGenerator::Address call_base = is_static ? GDScriptCodeGenerator::Address(GDScriptCodeGenerator::Address::CLASS) : GDScriptCodeGenerator::Address(GDScriptCodeGenerator::Address::SELF);
  1079. gen->write_call(GDScriptCodeGenerator::Address(), call_base, member_property_setter_function, args);
  1080. } else if (is_static) {
  1081. GDScriptCodeGenerator::Address temp = codegen.add_temporary(static_var_data_type);
  1082. gen->write_assign(temp, assigned);
  1083. gen->write_set_static_variable(temp, static_var_class, static_var_index);
  1084. gen->pop_temporary();
  1085. } else {
  1086. gen->write_assign(target_member_property, assigned);
  1087. }
  1088. if (!known_type) {
  1089. gen->write_end_jump_if_shared();
  1090. }
  1091. }
  1092. } else if (base_temp.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  1093. if (!base_known_type) {
  1094. gen->write_jump_if_shared(base);
  1095. }
  1096. // Save the temp value back to the base by calling its setter.
  1097. gen->write_call(GDScriptCodeGenerator::Address(), base, member_property_setter_function, { assigned });
  1098. if (!base_known_type) {
  1099. gen->write_end_jump_if_shared();
  1100. }
  1101. }
  1102. if (assigned.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  1103. gen->pop_temporary();
  1104. }
  1105. } else if (assignment->assignee->type == GDScriptParser::Node::IDENTIFIER && _is_class_member_property(codegen, static_cast<GDScriptParser::IdentifierNode *>(assignment->assignee)->name)) {
  1106. // Assignment to member property.
  1107. GDScriptCodeGenerator::Address assigned_value = _parse_expression(codegen, r_error, assignment->assigned_value);
  1108. if (r_error) {
  1109. return GDScriptCodeGenerator::Address();
  1110. }
  1111. GDScriptCodeGenerator::Address to_assign = assigned_value;
  1112. bool has_operation = assignment->operation != GDScriptParser::AssignmentNode::OP_NONE;
  1113. StringName name = static_cast<GDScriptParser::IdentifierNode *>(assignment->assignee)->name;
  1114. if (has_operation) {
  1115. GDScriptCodeGenerator::Address op_result = codegen.add_temporary(_gdtype_from_datatype(assignment->get_datatype(), codegen.script));
  1116. GDScriptCodeGenerator::Address member = codegen.add_temporary(_gdtype_from_datatype(assignment->assignee->get_datatype(), codegen.script));
  1117. gen->write_get_member(member, name);
  1118. gen->write_binary_operator(op_result, assignment->variant_op, member, assigned_value);
  1119. gen->pop_temporary(); // Pop member temp.
  1120. to_assign = op_result;
  1121. }
  1122. gen->write_set_member(to_assign, name);
  1123. if (to_assign.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  1124. gen->pop_temporary(); // Pop the assigned expression or the temp result if it has operation.
  1125. }
  1126. if (has_operation && assigned_value.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  1127. gen->pop_temporary(); // Pop the assigned expression if not done before.
  1128. }
  1129. } else {
  1130. // Regular assignment.
  1131. if (assignment->assignee->type != GDScriptParser::Node::IDENTIFIER) {
  1132. _set_error("Compiler bug (please report): Expected the assignee to be an identifier here.", assignment->assignee);
  1133. r_error = ERR_COMPILATION_FAILED;
  1134. return GDScriptCodeGenerator::Address();
  1135. }
  1136. GDScriptCodeGenerator::Address member;
  1137. bool is_member = false;
  1138. bool has_setter = false;
  1139. bool is_in_setter = false;
  1140. bool is_static = false;
  1141. GDScriptCodeGenerator::Address static_var_class;
  1142. int static_var_index = 0;
  1143. GDScriptDataType static_var_data_type;
  1144. StringName var_name;
  1145. StringName setter_function;
  1146. var_name = static_cast<const GDScriptParser::IdentifierNode *>(assignment->assignee)->name;
  1147. if (!_is_local_or_parameter(codegen, var_name)) {
  1148. if (codegen.script->member_indices.has(var_name)) {
  1149. is_member = true;
  1150. is_static = false;
  1151. GDScript::MemberInfo &minfo = codegen.script->member_indices[var_name];
  1152. setter_function = minfo.setter;
  1153. has_setter = setter_function != StringName();
  1154. is_in_setter = has_setter && setter_function == codegen.function_name;
  1155. member.mode = GDScriptCodeGenerator::Address::MEMBER;
  1156. member.address = minfo.index;
  1157. member.type = minfo.data_type;
  1158. } else {
  1159. // Try static variables.
  1160. GDScript *scr = codegen.script;
  1161. while (scr) {
  1162. if (scr->static_variables_indices.has(var_name)) {
  1163. is_member = true;
  1164. is_static = true;
  1165. GDScript::MemberInfo &minfo = scr->static_variables_indices[var_name];
  1166. setter_function = minfo.setter;
  1167. has_setter = setter_function != StringName();
  1168. is_in_setter = has_setter && setter_function == codegen.function_name;
  1169. static_var_class = codegen.add_constant(scr);
  1170. static_var_index = minfo.index;
  1171. static_var_data_type = minfo.data_type;
  1172. break;
  1173. }
  1174. scr = scr->_base;
  1175. }
  1176. }
  1177. }
  1178. GDScriptCodeGenerator::Address target;
  1179. if (is_member) {
  1180. target = member; // _parse_expression could call its getter, but we want to know the actual address
  1181. } else {
  1182. target = _parse_expression(codegen, r_error, assignment->assignee);
  1183. if (r_error) {
  1184. return GDScriptCodeGenerator::Address();
  1185. }
  1186. }
  1187. GDScriptCodeGenerator::Address assigned_value = _parse_expression(codegen, r_error, assignment->assigned_value);
  1188. if (r_error) {
  1189. return GDScriptCodeGenerator::Address();
  1190. }
  1191. GDScriptCodeGenerator::Address to_assign;
  1192. bool has_operation = assignment->operation != GDScriptParser::AssignmentNode::OP_NONE;
  1193. if (has_operation) {
  1194. // Perform operation.
  1195. GDScriptCodeGenerator::Address op_result = codegen.add_temporary(_gdtype_from_datatype(assignment->get_datatype(), codegen.script));
  1196. GDScriptCodeGenerator::Address og_value = _parse_expression(codegen, r_error, assignment->assignee);
  1197. gen->write_binary_operator(op_result, assignment->variant_op, og_value, assigned_value);
  1198. to_assign = op_result;
  1199. if (og_value.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  1200. gen->pop_temporary();
  1201. }
  1202. } else {
  1203. to_assign = assigned_value;
  1204. }
  1205. if (has_setter && !is_in_setter) {
  1206. // Call setter.
  1207. Vector<GDScriptCodeGenerator::Address> args;
  1208. args.push_back(to_assign);
  1209. GDScriptCodeGenerator::Address call_base = is_static ? GDScriptCodeGenerator::Address(GDScriptCodeGenerator::Address::CLASS) : GDScriptCodeGenerator::Address(GDScriptCodeGenerator::Address::SELF);
  1210. gen->write_call(GDScriptCodeGenerator::Address(), call_base, setter_function, args);
  1211. } else if (is_static) {
  1212. GDScriptCodeGenerator::Address temp = codegen.add_temporary(static_var_data_type);
  1213. if (assignment->use_conversion_assign) {
  1214. gen->write_assign_with_conversion(temp, to_assign);
  1215. } else {
  1216. gen->write_assign(temp, to_assign);
  1217. }
  1218. gen->write_set_static_variable(temp, static_var_class, static_var_index);
  1219. gen->pop_temporary();
  1220. } else {
  1221. // Just assign.
  1222. if (assignment->use_conversion_assign) {
  1223. gen->write_assign_with_conversion(target, to_assign);
  1224. } else {
  1225. gen->write_assign(target, to_assign);
  1226. }
  1227. }
  1228. if (to_assign.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  1229. gen->pop_temporary(); // Pop assigned value or temp operation result.
  1230. }
  1231. if (has_operation && assigned_value.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  1232. gen->pop_temporary(); // Pop assigned value if not done before.
  1233. }
  1234. if (target.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  1235. gen->pop_temporary(); // Pop the target to assignment.
  1236. }
  1237. }
  1238. return GDScriptCodeGenerator::Address(); // Assignment does not return a value.
  1239. } break;
  1240. case GDScriptParser::Node::LAMBDA: {
  1241. const GDScriptParser::LambdaNode *lambda = static_cast<const GDScriptParser::LambdaNode *>(p_expression);
  1242. GDScriptCodeGenerator::Address result = codegen.add_temporary(_gdtype_from_datatype(lambda->get_datatype(), codegen.script));
  1243. Vector<GDScriptCodeGenerator::Address> captures;
  1244. captures.resize(lambda->captures.size());
  1245. for (int i = 0; i < lambda->captures.size(); i++) {
  1246. captures.write[i] = _parse_expression(codegen, r_error, lambda->captures[i]);
  1247. if (r_error) {
  1248. return GDScriptCodeGenerator::Address();
  1249. }
  1250. }
  1251. GDScriptFunction *function = _parse_function(r_error, codegen.script, codegen.class_node, lambda->function, false, true);
  1252. if (r_error) {
  1253. return GDScriptCodeGenerator::Address();
  1254. }
  1255. codegen.script->lambda_info.insert(function, { (int)lambda->captures.size(), lambda->use_self });
  1256. gen->write_lambda(result, function, captures, lambda->use_self);
  1257. for (int i = 0; i < captures.size(); i++) {
  1258. if (captures[i].mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  1259. gen->pop_temporary();
  1260. }
  1261. }
  1262. return result;
  1263. } break;
  1264. default: {
  1265. _set_error("Compiler bug (please report): Unexpected node in parse tree while parsing expression.", p_expression); // Unreachable code.
  1266. r_error = ERR_COMPILATION_FAILED;
  1267. return GDScriptCodeGenerator::Address();
  1268. } break;
  1269. }
  1270. }
  1271. GDScriptCodeGenerator::Address GDScriptCompiler::_parse_match_pattern(CodeGen &codegen, Error &r_error, const GDScriptParser::PatternNode *p_pattern, const GDScriptCodeGenerator::Address &p_value_addr, const GDScriptCodeGenerator::Address &p_type_addr, const GDScriptCodeGenerator::Address &p_previous_test, bool p_is_first, bool p_is_nested) {
  1272. switch (p_pattern->pattern_type) {
  1273. case GDScriptParser::PatternNode::PT_LITERAL: {
  1274. if (p_is_nested) {
  1275. codegen.generator->write_and_left_operand(p_previous_test);
  1276. } else if (!p_is_first) {
  1277. codegen.generator->write_or_left_operand(p_previous_test);
  1278. }
  1279. // Get literal type into constant map.
  1280. Variant::Type literal_type = p_pattern->literal->value.get_type();
  1281. GDScriptCodeGenerator::Address literal_type_addr = codegen.add_constant(literal_type);
  1282. // Equality is always a boolean.
  1283. GDScriptDataType equality_type;
  1284. equality_type.has_type = true;
  1285. equality_type.kind = GDScriptDataType::BUILTIN;
  1286. equality_type.builtin_type = Variant::BOOL;
  1287. // Check type equality.
  1288. GDScriptCodeGenerator::Address type_equality_addr = codegen.add_temporary(equality_type);
  1289. codegen.generator->write_binary_operator(type_equality_addr, Variant::OP_EQUAL, p_type_addr, literal_type_addr);
  1290. if (literal_type == Variant::STRING) {
  1291. GDScriptCodeGenerator::Address type_stringname_addr = codegen.add_constant(Variant::STRING_NAME);
  1292. // Check StringName <-> String type equality.
  1293. GDScriptCodeGenerator::Address tmp_comp_addr = codegen.add_temporary(equality_type);
  1294. codegen.generator->write_binary_operator(tmp_comp_addr, Variant::OP_EQUAL, p_type_addr, type_stringname_addr);
  1295. codegen.generator->write_binary_operator(type_equality_addr, Variant::OP_OR, type_equality_addr, tmp_comp_addr);
  1296. codegen.generator->pop_temporary(); // Remove tmp_comp_addr from stack.
  1297. } else if (literal_type == Variant::STRING_NAME) {
  1298. GDScriptCodeGenerator::Address type_string_addr = codegen.add_constant(Variant::STRING);
  1299. // Check String <-> StringName type equality.
  1300. GDScriptCodeGenerator::Address tmp_comp_addr = codegen.add_temporary(equality_type);
  1301. codegen.generator->write_binary_operator(tmp_comp_addr, Variant::OP_EQUAL, p_type_addr, type_string_addr);
  1302. codegen.generator->write_binary_operator(type_equality_addr, Variant::OP_OR, type_equality_addr, tmp_comp_addr);
  1303. codegen.generator->pop_temporary(); // Remove tmp_comp_addr from stack.
  1304. }
  1305. codegen.generator->write_and_left_operand(type_equality_addr);
  1306. // Get literal.
  1307. GDScriptCodeGenerator::Address literal_addr = _parse_expression(codegen, r_error, p_pattern->literal);
  1308. if (r_error) {
  1309. return GDScriptCodeGenerator::Address();
  1310. }
  1311. // Check value equality.
  1312. GDScriptCodeGenerator::Address equality_addr = codegen.add_temporary(equality_type);
  1313. codegen.generator->write_binary_operator(equality_addr, Variant::OP_EQUAL, p_value_addr, literal_addr);
  1314. codegen.generator->write_and_right_operand(equality_addr);
  1315. // AND both together (reuse temporary location).
  1316. codegen.generator->write_end_and(type_equality_addr);
  1317. codegen.generator->pop_temporary(); // Remove equality_addr from stack.
  1318. if (literal_addr.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  1319. codegen.generator->pop_temporary();
  1320. }
  1321. // If this isn't the first, we need to OR with the previous pattern. If it's nested, we use AND instead.
  1322. if (p_is_nested) {
  1323. // Use the previous value as target, since we only need one temporary variable.
  1324. codegen.generator->write_and_right_operand(type_equality_addr);
  1325. codegen.generator->write_end_and(p_previous_test);
  1326. } else if (!p_is_first) {
  1327. // Use the previous value as target, since we only need one temporary variable.
  1328. codegen.generator->write_or_right_operand(type_equality_addr);
  1329. codegen.generator->write_end_or(p_previous_test);
  1330. } else {
  1331. // Just assign this value to the accumulator temporary.
  1332. codegen.generator->write_assign(p_previous_test, type_equality_addr);
  1333. }
  1334. codegen.generator->pop_temporary(); // Remove type_equality_addr.
  1335. return p_previous_test;
  1336. } break;
  1337. case GDScriptParser::PatternNode::PT_EXPRESSION: {
  1338. if (p_is_nested) {
  1339. codegen.generator->write_and_left_operand(p_previous_test);
  1340. } else if (!p_is_first) {
  1341. codegen.generator->write_or_left_operand(p_previous_test);
  1342. }
  1343. GDScriptCodeGenerator::Address type_string_addr = codegen.add_constant(Variant::STRING);
  1344. GDScriptCodeGenerator::Address type_stringname_addr = codegen.add_constant(Variant::STRING_NAME);
  1345. // Equality is always a boolean.
  1346. GDScriptDataType equality_type;
  1347. equality_type.has_type = true;
  1348. equality_type.kind = GDScriptDataType::BUILTIN;
  1349. equality_type.builtin_type = Variant::BOOL;
  1350. // Create the result temps first since it's the last to go away.
  1351. GDScriptCodeGenerator::Address result_addr = codegen.add_temporary(equality_type);
  1352. GDScriptCodeGenerator::Address equality_test_addr = codegen.add_temporary(equality_type);
  1353. GDScriptCodeGenerator::Address stringy_comp_addr = codegen.add_temporary(equality_type);
  1354. GDScriptCodeGenerator::Address stringy_comp_addr_2 = codegen.add_temporary(equality_type);
  1355. GDScriptCodeGenerator::Address expr_type_addr = codegen.add_temporary();
  1356. // Evaluate expression.
  1357. GDScriptCodeGenerator::Address expr_addr;
  1358. expr_addr = _parse_expression(codegen, r_error, p_pattern->expression);
  1359. if (r_error) {
  1360. return GDScriptCodeGenerator::Address();
  1361. }
  1362. // Evaluate expression type.
  1363. Vector<GDScriptCodeGenerator::Address> typeof_args;
  1364. typeof_args.push_back(expr_addr);
  1365. codegen.generator->write_call_utility(expr_type_addr, "typeof", typeof_args);
  1366. // Check type equality.
  1367. codegen.generator->write_binary_operator(result_addr, Variant::OP_EQUAL, p_type_addr, expr_type_addr);
  1368. // Check for String <-> StringName comparison.
  1369. codegen.generator->write_binary_operator(stringy_comp_addr, Variant::OP_EQUAL, p_type_addr, type_string_addr);
  1370. codegen.generator->write_binary_operator(stringy_comp_addr_2, Variant::OP_EQUAL, expr_type_addr, type_stringname_addr);
  1371. codegen.generator->write_binary_operator(stringy_comp_addr, Variant::OP_AND, stringy_comp_addr, stringy_comp_addr_2);
  1372. codegen.generator->write_binary_operator(result_addr, Variant::OP_OR, result_addr, stringy_comp_addr);
  1373. // Check for StringName <-> String comparison.
  1374. codegen.generator->write_binary_operator(stringy_comp_addr, Variant::OP_EQUAL, p_type_addr, type_stringname_addr);
  1375. codegen.generator->write_binary_operator(stringy_comp_addr_2, Variant::OP_EQUAL, expr_type_addr, type_string_addr);
  1376. codegen.generator->write_binary_operator(stringy_comp_addr, Variant::OP_AND, stringy_comp_addr, stringy_comp_addr_2);
  1377. codegen.generator->write_binary_operator(result_addr, Variant::OP_OR, result_addr, stringy_comp_addr);
  1378. codegen.generator->pop_temporary(); // Remove expr_type_addr from stack.
  1379. codegen.generator->pop_temporary(); // Remove stringy_comp_addr_2 from stack.
  1380. codegen.generator->pop_temporary(); // Remove stringy_comp_addr from stack.
  1381. codegen.generator->write_and_left_operand(result_addr);
  1382. // Check value equality.
  1383. codegen.generator->write_binary_operator(equality_test_addr, Variant::OP_EQUAL, p_value_addr, expr_addr);
  1384. codegen.generator->write_and_right_operand(equality_test_addr);
  1385. // AND both type and value equality.
  1386. codegen.generator->write_end_and(result_addr);
  1387. // We don't need the expression temporary anymore.
  1388. if (expr_addr.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  1389. codegen.generator->pop_temporary();
  1390. }
  1391. codegen.generator->pop_temporary(); // Remove equality_test_addr from stack.
  1392. // If this isn't the first, we need to OR with the previous pattern. If it's nested, we use AND instead.
  1393. if (p_is_nested) {
  1394. // Use the previous value as target, since we only need one temporary variable.
  1395. codegen.generator->write_and_right_operand(result_addr);
  1396. codegen.generator->write_end_and(p_previous_test);
  1397. } else if (!p_is_first) {
  1398. // Use the previous value as target, since we only need one temporary variable.
  1399. codegen.generator->write_or_right_operand(result_addr);
  1400. codegen.generator->write_end_or(p_previous_test);
  1401. } else {
  1402. // Just assign this value to the accumulator temporary.
  1403. codegen.generator->write_assign(p_previous_test, result_addr);
  1404. }
  1405. codegen.generator->pop_temporary(); // Remove temp result addr.
  1406. return p_previous_test;
  1407. } break;
  1408. case GDScriptParser::PatternNode::PT_ARRAY: {
  1409. if (p_is_nested) {
  1410. codegen.generator->write_and_left_operand(p_previous_test);
  1411. } else if (!p_is_first) {
  1412. codegen.generator->write_or_left_operand(p_previous_test);
  1413. }
  1414. // Get array type into constant map.
  1415. GDScriptCodeGenerator::Address array_type_addr = codegen.add_constant((int)Variant::ARRAY);
  1416. // Equality is always a boolean.
  1417. GDScriptDataType temp_type;
  1418. temp_type.has_type = true;
  1419. temp_type.kind = GDScriptDataType::BUILTIN;
  1420. temp_type.builtin_type = Variant::BOOL;
  1421. // Check type equality.
  1422. GDScriptCodeGenerator::Address result_addr = codegen.add_temporary(temp_type);
  1423. codegen.generator->write_binary_operator(result_addr, Variant::OP_EQUAL, p_type_addr, array_type_addr);
  1424. codegen.generator->write_and_left_operand(result_addr);
  1425. // Store pattern length in constant map.
  1426. GDScriptCodeGenerator::Address array_length_addr = codegen.add_constant(p_pattern->rest_used ? p_pattern->array.size() - 1 : p_pattern->array.size());
  1427. // Get value length.
  1428. temp_type.builtin_type = Variant::INT;
  1429. GDScriptCodeGenerator::Address value_length_addr = codegen.add_temporary(temp_type);
  1430. Vector<GDScriptCodeGenerator::Address> len_args;
  1431. len_args.push_back(p_value_addr);
  1432. codegen.generator->write_call_gdscript_utility(value_length_addr, "len", len_args);
  1433. // Test length compatibility.
  1434. temp_type.builtin_type = Variant::BOOL;
  1435. GDScriptCodeGenerator::Address length_compat_addr = codegen.add_temporary(temp_type);
  1436. codegen.generator->write_binary_operator(length_compat_addr, p_pattern->rest_used ? Variant::OP_GREATER_EQUAL : Variant::OP_EQUAL, value_length_addr, array_length_addr);
  1437. codegen.generator->write_and_right_operand(length_compat_addr);
  1438. // AND type and length check.
  1439. codegen.generator->write_end_and(result_addr);
  1440. // Remove length temporaries.
  1441. codegen.generator->pop_temporary();
  1442. codegen.generator->pop_temporary();
  1443. // Create temporaries outside the loop so they can be reused.
  1444. GDScriptCodeGenerator::Address element_addr = codegen.add_temporary();
  1445. GDScriptCodeGenerator::Address element_type_addr = codegen.add_temporary();
  1446. // Evaluate element by element.
  1447. for (int i = 0; i < p_pattern->array.size(); i++) {
  1448. if (p_pattern->array[i]->pattern_type == GDScriptParser::PatternNode::PT_REST) {
  1449. // Don't want to access an extra element of the user array.
  1450. break;
  1451. }
  1452. // Use AND here too, as we don't want to be checking elements if previous test failed (which means this might be an invalid get).
  1453. codegen.generator->write_and_left_operand(result_addr);
  1454. // Add index to constant map.
  1455. GDScriptCodeGenerator::Address index_addr = codegen.add_constant(i);
  1456. // Get the actual element from the user-sent array.
  1457. codegen.generator->write_get(element_addr, index_addr, p_value_addr);
  1458. // Also get type of element.
  1459. Vector<GDScriptCodeGenerator::Address> typeof_args;
  1460. typeof_args.push_back(element_addr);
  1461. codegen.generator->write_call_utility(element_type_addr, "typeof", typeof_args);
  1462. // Try the pattern inside the element.
  1463. result_addr = _parse_match_pattern(codegen, r_error, p_pattern->array[i], element_addr, element_type_addr, result_addr, false, true);
  1464. if (r_error != OK) {
  1465. return GDScriptCodeGenerator::Address();
  1466. }
  1467. codegen.generator->write_and_right_operand(result_addr);
  1468. codegen.generator->write_end_and(result_addr);
  1469. }
  1470. // Remove element temporaries.
  1471. codegen.generator->pop_temporary();
  1472. codegen.generator->pop_temporary();
  1473. // If this isn't the first, we need to OR with the previous pattern. If it's nested, we use AND instead.
  1474. if (p_is_nested) {
  1475. // Use the previous value as target, since we only need one temporary variable.
  1476. codegen.generator->write_and_right_operand(result_addr);
  1477. codegen.generator->write_end_and(p_previous_test);
  1478. } else if (!p_is_first) {
  1479. // Use the previous value as target, since we only need one temporary variable.
  1480. codegen.generator->write_or_right_operand(result_addr);
  1481. codegen.generator->write_end_or(p_previous_test);
  1482. } else {
  1483. // Just assign this value to the accumulator temporary.
  1484. codegen.generator->write_assign(p_previous_test, result_addr);
  1485. }
  1486. codegen.generator->pop_temporary(); // Remove temp result addr.
  1487. return p_previous_test;
  1488. } break;
  1489. case GDScriptParser::PatternNode::PT_DICTIONARY: {
  1490. if (p_is_nested) {
  1491. codegen.generator->write_and_left_operand(p_previous_test);
  1492. } else if (!p_is_first) {
  1493. codegen.generator->write_or_left_operand(p_previous_test);
  1494. }
  1495. // Get dictionary type into constant map.
  1496. GDScriptCodeGenerator::Address dict_type_addr = codegen.add_constant((int)Variant::DICTIONARY);
  1497. // Equality is always a boolean.
  1498. GDScriptDataType temp_type;
  1499. temp_type.has_type = true;
  1500. temp_type.kind = GDScriptDataType::BUILTIN;
  1501. temp_type.builtin_type = Variant::BOOL;
  1502. // Check type equality.
  1503. GDScriptCodeGenerator::Address result_addr = codegen.add_temporary(temp_type);
  1504. codegen.generator->write_binary_operator(result_addr, Variant::OP_EQUAL, p_type_addr, dict_type_addr);
  1505. codegen.generator->write_and_left_operand(result_addr);
  1506. // Store pattern length in constant map.
  1507. GDScriptCodeGenerator::Address dict_length_addr = codegen.add_constant(p_pattern->rest_used ? p_pattern->dictionary.size() - 1 : p_pattern->dictionary.size());
  1508. // Get user's dictionary length.
  1509. temp_type.builtin_type = Variant::INT;
  1510. GDScriptCodeGenerator::Address value_length_addr = codegen.add_temporary(temp_type);
  1511. Vector<GDScriptCodeGenerator::Address> func_args;
  1512. func_args.push_back(p_value_addr);
  1513. codegen.generator->write_call_gdscript_utility(value_length_addr, "len", func_args);
  1514. // Test length compatibility.
  1515. temp_type.builtin_type = Variant::BOOL;
  1516. GDScriptCodeGenerator::Address length_compat_addr = codegen.add_temporary(temp_type);
  1517. codegen.generator->write_binary_operator(length_compat_addr, p_pattern->rest_used ? Variant::OP_GREATER_EQUAL : Variant::OP_EQUAL, value_length_addr, dict_length_addr);
  1518. codegen.generator->write_and_right_operand(length_compat_addr);
  1519. // AND type and length check.
  1520. codegen.generator->write_end_and(result_addr);
  1521. // Remove length temporaries.
  1522. codegen.generator->pop_temporary();
  1523. codegen.generator->pop_temporary();
  1524. // Create temporaries outside the loop so they can be reused.
  1525. GDScriptCodeGenerator::Address element_addr = codegen.add_temporary();
  1526. GDScriptCodeGenerator::Address element_type_addr = codegen.add_temporary();
  1527. // Evaluate element by element.
  1528. for (int i = 0; i < p_pattern->dictionary.size(); i++) {
  1529. const GDScriptParser::PatternNode::Pair &element = p_pattern->dictionary[i];
  1530. if (element.value_pattern && element.value_pattern->pattern_type == GDScriptParser::PatternNode::PT_REST) {
  1531. // Ignore rest pattern.
  1532. break;
  1533. }
  1534. // Use AND here too, as we don't want to be checking elements if previous test failed (which means this might be an invalid get).
  1535. codegen.generator->write_and_left_operand(result_addr);
  1536. // Get the pattern key.
  1537. GDScriptCodeGenerator::Address pattern_key_addr = _parse_expression(codegen, r_error, element.key);
  1538. if (r_error) {
  1539. return GDScriptCodeGenerator::Address();
  1540. }
  1541. // Check if pattern key exists in user's dictionary. This will be AND-ed with next result.
  1542. func_args.clear();
  1543. func_args.push_back(pattern_key_addr);
  1544. codegen.generator->write_call(result_addr, p_value_addr, "has", func_args);
  1545. if (element.value_pattern != nullptr) {
  1546. // Use AND here too, as we don't want to be checking elements if previous test failed (which means this might be an invalid get).
  1547. codegen.generator->write_and_left_operand(result_addr);
  1548. // Get actual value from user dictionary.
  1549. codegen.generator->write_get(element_addr, pattern_key_addr, p_value_addr);
  1550. // Also get type of value.
  1551. func_args.clear();
  1552. func_args.push_back(element_addr);
  1553. codegen.generator->write_call_utility(element_type_addr, "typeof", func_args);
  1554. // Try the pattern inside the value.
  1555. result_addr = _parse_match_pattern(codegen, r_error, element.value_pattern, element_addr, element_type_addr, result_addr, false, true);
  1556. if (r_error != OK) {
  1557. return GDScriptCodeGenerator::Address();
  1558. }
  1559. codegen.generator->write_and_right_operand(result_addr);
  1560. codegen.generator->write_end_and(result_addr);
  1561. }
  1562. codegen.generator->write_and_right_operand(result_addr);
  1563. codegen.generator->write_end_and(result_addr);
  1564. // Remove pattern key temporary.
  1565. if (pattern_key_addr.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  1566. codegen.generator->pop_temporary();
  1567. }
  1568. }
  1569. // Remove element temporaries.
  1570. codegen.generator->pop_temporary();
  1571. codegen.generator->pop_temporary();
  1572. // If this isn't the first, we need to OR with the previous pattern. If it's nested, we use AND instead.
  1573. if (p_is_nested) {
  1574. // Use the previous value as target, since we only need one temporary variable.
  1575. codegen.generator->write_and_right_operand(result_addr);
  1576. codegen.generator->write_end_and(p_previous_test);
  1577. } else if (!p_is_first) {
  1578. // Use the previous value as target, since we only need one temporary variable.
  1579. codegen.generator->write_or_right_operand(result_addr);
  1580. codegen.generator->write_end_or(p_previous_test);
  1581. } else {
  1582. // Just assign this value to the accumulator temporary.
  1583. codegen.generator->write_assign(p_previous_test, result_addr);
  1584. }
  1585. codegen.generator->pop_temporary(); // Remove temp result addr.
  1586. return p_previous_test;
  1587. } break;
  1588. case GDScriptParser::PatternNode::PT_REST:
  1589. // Do nothing.
  1590. return p_previous_test;
  1591. break;
  1592. case GDScriptParser::PatternNode::PT_BIND: {
  1593. if (p_is_nested) {
  1594. codegen.generator->write_and_left_operand(p_previous_test);
  1595. } else if (!p_is_first) {
  1596. codegen.generator->write_or_left_operand(p_previous_test);
  1597. }
  1598. // Get the bind address.
  1599. GDScriptCodeGenerator::Address bind = codegen.locals[p_pattern->bind->name];
  1600. // Assign value to bound variable.
  1601. codegen.generator->write_assign(bind, p_value_addr);
  1602. }
  1603. [[fallthrough]]; // Act like matching anything too.
  1604. case GDScriptParser::PatternNode::PT_WILDCARD:
  1605. // If this is a fall through we don't want to do this again.
  1606. if (p_pattern->pattern_type != GDScriptParser::PatternNode::PT_BIND) {
  1607. if (p_is_nested) {
  1608. codegen.generator->write_and_left_operand(p_previous_test);
  1609. } else if (!p_is_first) {
  1610. codegen.generator->write_or_left_operand(p_previous_test);
  1611. }
  1612. }
  1613. // This matches anything so just do the same as `if(true)`.
  1614. // If this isn't the first, we need to OR with the previous pattern. If it's nested, we use AND instead.
  1615. if (p_is_nested) {
  1616. // Use the operator with the `true` constant so it works as always matching.
  1617. GDScriptCodeGenerator::Address constant = codegen.add_constant(true);
  1618. codegen.generator->write_and_right_operand(constant);
  1619. codegen.generator->write_end_and(p_previous_test);
  1620. } else if (!p_is_first) {
  1621. // Use the operator with the `true` constant so it works as always matching.
  1622. GDScriptCodeGenerator::Address constant = codegen.add_constant(true);
  1623. codegen.generator->write_or_right_operand(constant);
  1624. codegen.generator->write_end_or(p_previous_test);
  1625. } else {
  1626. // Just assign this value to the accumulator temporary.
  1627. codegen.generator->write_assign_true(p_previous_test);
  1628. }
  1629. return p_previous_test;
  1630. }
  1631. _set_error("Compiler bug (please report): Reaching the end of pattern compilation without matching a pattern.", p_pattern);
  1632. r_error = ERR_COMPILATION_FAILED;
  1633. return p_previous_test;
  1634. }
  1635. List<GDScriptCodeGenerator::Address> GDScriptCompiler::_add_block_locals(CodeGen &codegen, const GDScriptParser::SuiteNode *p_block) {
  1636. List<GDScriptCodeGenerator::Address> addresses;
  1637. for (int i = 0; i < p_block->locals.size(); i++) {
  1638. if (p_block->locals[i].type == GDScriptParser::SuiteNode::Local::PARAMETER || p_block->locals[i].type == GDScriptParser::SuiteNode::Local::FOR_VARIABLE) {
  1639. // Parameters are added directly from function and loop variables are declared explicitly.
  1640. continue;
  1641. }
  1642. addresses.push_back(codegen.add_local(p_block->locals[i].name, _gdtype_from_datatype(p_block->locals[i].get_datatype(), codegen.script)));
  1643. }
  1644. return addresses;
  1645. }
  1646. // Avoid keeping in the stack long-lived references to objects, which may prevent `RefCounted` objects from being freed.
  1647. void GDScriptCompiler::_clear_block_locals(CodeGen &codegen, const List<GDScriptCodeGenerator::Address> &p_locals) {
  1648. for (const GDScriptCodeGenerator::Address &local : p_locals) {
  1649. if (local.type.can_contain_object()) {
  1650. codegen.generator->clear_address(local);
  1651. }
  1652. }
  1653. }
  1654. Error GDScriptCompiler::_parse_block(CodeGen &codegen, const GDScriptParser::SuiteNode *p_block, bool p_add_locals, bool p_clear_locals) {
  1655. Error err = OK;
  1656. GDScriptCodeGenerator *gen = codegen.generator;
  1657. List<GDScriptCodeGenerator::Address> block_locals;
  1658. gen->clear_temporaries();
  1659. codegen.start_block();
  1660. if (p_add_locals) {
  1661. block_locals = _add_block_locals(codegen, p_block);
  1662. }
  1663. for (int i = 0; i < p_block->statements.size(); i++) {
  1664. const GDScriptParser::Node *s = p_block->statements[i];
  1665. gen->write_newline(s->start_line);
  1666. switch (s->type) {
  1667. case GDScriptParser::Node::MATCH: {
  1668. const GDScriptParser::MatchNode *match = static_cast<const GDScriptParser::MatchNode *>(s);
  1669. codegen.start_block(); // Add an extra block, since @special locals belong to the match scope.
  1670. // Evaluate the match expression.
  1671. GDScriptCodeGenerator::Address value = codegen.add_local("@match_value", _gdtype_from_datatype(match->test->get_datatype(), codegen.script));
  1672. GDScriptCodeGenerator::Address value_expr = _parse_expression(codegen, err, match->test);
  1673. if (err) {
  1674. return err;
  1675. }
  1676. // Assign to local.
  1677. // TODO: This can be improved by passing the target to parse_expression().
  1678. gen->write_assign(value, value_expr);
  1679. if (value_expr.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  1680. codegen.generator->pop_temporary();
  1681. }
  1682. // Then, let's save the type of the value in the stack too, so we can reuse for later comparisons.
  1683. GDScriptDataType typeof_type;
  1684. typeof_type.has_type = true;
  1685. typeof_type.kind = GDScriptDataType::BUILTIN;
  1686. typeof_type.builtin_type = Variant::INT;
  1687. GDScriptCodeGenerator::Address type = codegen.add_local("@match_type", typeof_type);
  1688. Vector<GDScriptCodeGenerator::Address> typeof_args;
  1689. typeof_args.push_back(value);
  1690. gen->write_call_utility(type, "typeof", typeof_args);
  1691. // Now we can actually start testing.
  1692. // For each branch.
  1693. for (int j = 0; j < match->branches.size(); j++) {
  1694. if (j > 0) {
  1695. // Use `else` to not check the next branch after matching.
  1696. gen->write_else();
  1697. }
  1698. const GDScriptParser::MatchBranchNode *branch = match->branches[j];
  1699. codegen.start_block(); // Add an extra block, since binds belong to the match branch scope.
  1700. // Add locals in block before patterns, so temporaries don't use the stack address for binds.
  1701. List<GDScriptCodeGenerator::Address> branch_locals = _add_block_locals(codegen, branch->block);
  1702. gen->write_newline(branch->start_line);
  1703. // For each pattern in branch.
  1704. GDScriptCodeGenerator::Address pattern_result = codegen.add_temporary();
  1705. for (int k = 0; k < branch->patterns.size(); k++) {
  1706. pattern_result = _parse_match_pattern(codegen, err, branch->patterns[k], value, type, pattern_result, k == 0, false);
  1707. if (err != OK) {
  1708. return err;
  1709. }
  1710. }
  1711. // If there's a guard, check its condition too.
  1712. if (branch->guard_body != nullptr) {
  1713. // Do this first so the guard does not run unless the pattern matched.
  1714. gen->write_and_left_operand(pattern_result);
  1715. // Don't actually use the block for the guard.
  1716. // The binds are already in the locals and we don't want to clear the result of the guard condition before we check the actual match.
  1717. GDScriptCodeGenerator::Address guard_result = _parse_expression(codegen, err, static_cast<GDScriptParser::ExpressionNode *>(branch->guard_body->statements[0]));
  1718. if (err) {
  1719. return err;
  1720. }
  1721. gen->write_and_right_operand(guard_result);
  1722. gen->write_end_and(pattern_result);
  1723. if (guard_result.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  1724. codegen.generator->pop_temporary();
  1725. }
  1726. }
  1727. // Check if pattern did match.
  1728. gen->write_if(pattern_result);
  1729. // Remove the result from stack.
  1730. gen->pop_temporary();
  1731. // Parse the branch block.
  1732. err = _parse_block(codegen, branch->block, false); // Don't add locals again.
  1733. if (err) {
  1734. return err;
  1735. }
  1736. _clear_block_locals(codegen, branch_locals);
  1737. codegen.end_block(); // Get out of extra block for binds.
  1738. }
  1739. // End all nested `if`s.
  1740. for (int j = 0; j < match->branches.size(); j++) {
  1741. gen->write_endif();
  1742. }
  1743. codegen.end_block(); // Get out of extra block for match's @special locals.
  1744. } break;
  1745. case GDScriptParser::Node::IF: {
  1746. const GDScriptParser::IfNode *if_n = static_cast<const GDScriptParser::IfNode *>(s);
  1747. GDScriptCodeGenerator::Address condition = _parse_expression(codegen, err, if_n->condition);
  1748. if (err) {
  1749. return err;
  1750. }
  1751. gen->write_if(condition);
  1752. if (condition.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  1753. codegen.generator->pop_temporary();
  1754. }
  1755. err = _parse_block(codegen, if_n->true_block);
  1756. if (err) {
  1757. return err;
  1758. }
  1759. if (if_n->false_block) {
  1760. gen->write_else();
  1761. err = _parse_block(codegen, if_n->false_block);
  1762. if (err) {
  1763. return err;
  1764. }
  1765. }
  1766. gen->write_endif();
  1767. } break;
  1768. case GDScriptParser::Node::FOR: {
  1769. const GDScriptParser::ForNode *for_n = static_cast<const GDScriptParser::ForNode *>(s);
  1770. // Add an extra block, since the iterator and @special locals belong to the loop scope.
  1771. // Also we use custom logic to clear block locals.
  1772. codegen.start_block();
  1773. GDScriptCodeGenerator::Address iterator = codegen.add_local(for_n->variable->name, _gdtype_from_datatype(for_n->variable->get_datatype(), codegen.script));
  1774. // Optimize `range()` call to not allocate an array.
  1775. GDScriptParser::CallNode *range_call = nullptr;
  1776. if (for_n->list && for_n->list->type == GDScriptParser::Node::CALL) {
  1777. GDScriptParser::CallNode *call = static_cast<GDScriptParser::CallNode *>(for_n->list);
  1778. if (call->get_callee_type() == GDScriptParser::Node::IDENTIFIER) {
  1779. if (static_cast<GDScriptParser::IdentifierNode *>(call->callee)->name == "range") {
  1780. range_call = call;
  1781. }
  1782. }
  1783. }
  1784. gen->start_for(iterator.type, _gdtype_from_datatype(for_n->list->get_datatype(), codegen.script), range_call != nullptr);
  1785. if (range_call != nullptr) {
  1786. Vector<GDScriptCodeGenerator::Address> args;
  1787. args.resize(range_call->arguments.size());
  1788. for (int j = 0; j < args.size(); j++) {
  1789. args.write[j] = _parse_expression(codegen, err, range_call->arguments[j]);
  1790. if (err) {
  1791. return err;
  1792. }
  1793. }
  1794. switch (args.size()) {
  1795. case 1:
  1796. gen->write_for_range_assignment(codegen.add_constant(0), args[0], codegen.add_constant(1));
  1797. break;
  1798. case 2:
  1799. gen->write_for_range_assignment(args[0], args[1], codegen.add_constant(1));
  1800. break;
  1801. case 3:
  1802. gen->write_for_range_assignment(args[0], args[1], args[2]);
  1803. break;
  1804. default:
  1805. _set_error(R"*(Analyzer bug: Wrong "range()" argument count.)*", range_call);
  1806. return ERR_BUG;
  1807. }
  1808. for (int j = 0; j < args.size(); j++) {
  1809. if (args[j].mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  1810. codegen.generator->pop_temporary();
  1811. }
  1812. }
  1813. } else {
  1814. GDScriptCodeGenerator::Address list = _parse_expression(codegen, err, for_n->list);
  1815. if (err) {
  1816. return err;
  1817. }
  1818. gen->write_for_list_assignment(list);
  1819. if (list.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  1820. codegen.generator->pop_temporary();
  1821. }
  1822. }
  1823. gen->write_for(iterator, for_n->use_conversion_assign, range_call != nullptr);
  1824. // Loop variables must be cleared even when `break`/`continue` is used.
  1825. List<GDScriptCodeGenerator::Address> loop_locals = _add_block_locals(codegen, for_n->loop);
  1826. //_clear_block_locals(codegen, loop_locals); // Inside loop, before block - for `continue`. // TODO
  1827. err = _parse_block(codegen, for_n->loop, false); // Don't add locals again.
  1828. if (err) {
  1829. return err;
  1830. }
  1831. gen->write_endfor(range_call != nullptr);
  1832. _clear_block_locals(codegen, loop_locals); // Outside loop, after block - for `break` and normal exit.
  1833. codegen.end_block(); // Get out of extra block for loop iterator, @special locals, and custom locals clearing.
  1834. } break;
  1835. case GDScriptParser::Node::WHILE: {
  1836. const GDScriptParser::WhileNode *while_n = static_cast<const GDScriptParser::WhileNode *>(s);
  1837. codegen.start_block(); // Add an extra block, since we use custom logic to clear block locals.
  1838. gen->start_while_condition();
  1839. GDScriptCodeGenerator::Address condition = _parse_expression(codegen, err, while_n->condition);
  1840. if (err) {
  1841. return err;
  1842. }
  1843. gen->write_while(condition);
  1844. if (condition.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  1845. codegen.generator->pop_temporary();
  1846. }
  1847. // Loop variables must be cleared even when `break`/`continue` is used.
  1848. List<GDScriptCodeGenerator::Address> loop_locals = _add_block_locals(codegen, while_n->loop);
  1849. //_clear_block_locals(codegen, loop_locals); // Inside loop, before block - for `continue`. // TODO
  1850. err = _parse_block(codegen, while_n->loop, false); // Don't add locals again.
  1851. if (err) {
  1852. return err;
  1853. }
  1854. gen->write_endwhile();
  1855. _clear_block_locals(codegen, loop_locals); // Outside loop, after block - for `break` and normal exit.
  1856. codegen.end_block(); // Get out of extra block for custom locals clearing.
  1857. } break;
  1858. case GDScriptParser::Node::BREAK: {
  1859. gen->write_break();
  1860. } break;
  1861. case GDScriptParser::Node::CONTINUE: {
  1862. gen->write_continue();
  1863. } break;
  1864. case GDScriptParser::Node::RETURN: {
  1865. const GDScriptParser::ReturnNode *return_n = static_cast<const GDScriptParser::ReturnNode *>(s);
  1866. GDScriptCodeGenerator::Address return_value;
  1867. if (return_n->return_value != nullptr) {
  1868. return_value = _parse_expression(codegen, err, return_n->return_value);
  1869. if (err) {
  1870. return err;
  1871. }
  1872. }
  1873. if (return_n->void_return) {
  1874. // Always return "null", even if the expression is a call to a void function.
  1875. gen->write_return(codegen.add_constant(Variant()));
  1876. } else {
  1877. gen->write_return(return_value);
  1878. }
  1879. if (return_value.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  1880. codegen.generator->pop_temporary();
  1881. }
  1882. } break;
  1883. case GDScriptParser::Node::ASSERT: {
  1884. #ifdef DEBUG_ENABLED
  1885. const GDScriptParser::AssertNode *as = static_cast<const GDScriptParser::AssertNode *>(s);
  1886. GDScriptCodeGenerator::Address condition = _parse_expression(codegen, err, as->condition);
  1887. if (err) {
  1888. return err;
  1889. }
  1890. GDScriptCodeGenerator::Address message;
  1891. if (as->message) {
  1892. message = _parse_expression(codegen, err, as->message);
  1893. if (err) {
  1894. return err;
  1895. }
  1896. }
  1897. gen->write_assert(condition, message);
  1898. if (condition.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  1899. codegen.generator->pop_temporary();
  1900. }
  1901. if (message.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  1902. codegen.generator->pop_temporary();
  1903. }
  1904. #endif
  1905. } break;
  1906. case GDScriptParser::Node::BREAKPOINT: {
  1907. #ifdef DEBUG_ENABLED
  1908. gen->write_breakpoint();
  1909. #endif
  1910. } break;
  1911. case GDScriptParser::Node::VARIABLE: {
  1912. const GDScriptParser::VariableNode *lv = static_cast<const GDScriptParser::VariableNode *>(s);
  1913. // Should be already in stack when the block began.
  1914. GDScriptCodeGenerator::Address local = codegen.locals[lv->identifier->name];
  1915. GDScriptDataType local_type = _gdtype_from_datatype(lv->get_datatype(), codegen.script);
  1916. bool initialized = false;
  1917. if (lv->initializer != nullptr) {
  1918. GDScriptCodeGenerator::Address src_address = _parse_expression(codegen, err, lv->initializer);
  1919. if (err) {
  1920. return err;
  1921. }
  1922. if (lv->use_conversion_assign) {
  1923. gen->write_assign_with_conversion(local, src_address);
  1924. } else {
  1925. gen->write_assign(local, src_address);
  1926. }
  1927. if (src_address.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  1928. codegen.generator->pop_temporary();
  1929. }
  1930. initialized = true;
  1931. } else if ((local_type.has_type && local_type.kind == GDScriptDataType::BUILTIN) || codegen.generator->is_local_dirty(local)) {
  1932. // Initialize with default for the type. Built-in types must always be cleared (they cannot be `null`).
  1933. // Objects and untyped variables are assigned to `null` only if the stack address has been reused and not cleared.
  1934. codegen.generator->clear_address(local);
  1935. initialized = true;
  1936. }
  1937. // Don't check `is_local_dirty()` since the variable must be assigned to `null` **on each iteration**.
  1938. if (!initialized && p_block->is_in_loop) {
  1939. codegen.generator->clear_address(local);
  1940. }
  1941. } break;
  1942. case GDScriptParser::Node::CONSTANT: {
  1943. // Local constants.
  1944. const GDScriptParser::ConstantNode *lc = static_cast<const GDScriptParser::ConstantNode *>(s);
  1945. if (!lc->initializer->is_constant) {
  1946. _set_error("Local constant must have a constant value as initializer.", lc->initializer);
  1947. return ERR_PARSE_ERROR;
  1948. }
  1949. codegen.add_local_constant(lc->identifier->name, lc->initializer->reduced_value);
  1950. } break;
  1951. case GDScriptParser::Node::PASS:
  1952. // Nothing to do.
  1953. break;
  1954. default: {
  1955. // Expression.
  1956. if (s->is_expression()) {
  1957. GDScriptCodeGenerator::Address expr = _parse_expression(codegen, err, static_cast<const GDScriptParser::ExpressionNode *>(s), true);
  1958. if (err) {
  1959. return err;
  1960. }
  1961. if (expr.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  1962. codegen.generator->pop_temporary();
  1963. }
  1964. } else {
  1965. _set_error("Compiler bug (please report): unexpected node in parse tree while parsing statement.", s); // Unreachable code.
  1966. return ERR_INVALID_DATA;
  1967. }
  1968. } break;
  1969. }
  1970. gen->clear_temporaries();
  1971. }
  1972. if (p_add_locals && p_clear_locals) {
  1973. _clear_block_locals(codegen, block_locals);
  1974. }
  1975. codegen.end_block();
  1976. return OK;
  1977. }
  1978. GDScriptFunction *GDScriptCompiler::_parse_function(Error &r_error, GDScript *p_script, const GDScriptParser::ClassNode *p_class, const GDScriptParser::FunctionNode *p_func, bool p_for_ready, bool p_for_lambda) {
  1979. r_error = OK;
  1980. CodeGen codegen;
  1981. codegen.generator = memnew(GDScriptByteCodeGenerator);
  1982. codegen.class_node = p_class;
  1983. codegen.script = p_script;
  1984. codegen.function_node = p_func;
  1985. StringName func_name;
  1986. bool is_abstract = false;
  1987. bool is_static = false;
  1988. Variant rpc_config;
  1989. GDScriptDataType return_type;
  1990. return_type.has_type = true;
  1991. return_type.kind = GDScriptDataType::BUILTIN;
  1992. return_type.builtin_type = Variant::NIL;
  1993. if (p_func) {
  1994. if (p_func->identifier) {
  1995. func_name = p_func->identifier->name;
  1996. } else {
  1997. func_name = "<anonymous lambda>";
  1998. }
  1999. is_abstract = p_func->is_abstract;
  2000. is_static = p_func->is_static;
  2001. rpc_config = p_func->rpc_config;
  2002. return_type = _gdtype_from_datatype(p_func->get_datatype(), p_script);
  2003. } else {
  2004. if (p_for_ready) {
  2005. func_name = "@implicit_ready";
  2006. } else {
  2007. func_name = "@implicit_new";
  2008. }
  2009. }
  2010. MethodInfo method_info;
  2011. codegen.function_name = func_name;
  2012. method_info.name = func_name;
  2013. codegen.is_static = is_static;
  2014. if (is_abstract) {
  2015. method_info.flags |= METHOD_FLAG_VIRTUAL_REQUIRED;
  2016. }
  2017. if (is_static) {
  2018. method_info.flags |= METHOD_FLAG_STATIC;
  2019. }
  2020. codegen.generator->write_start(p_script, func_name, is_static, rpc_config, return_type);
  2021. int optional_parameters = 0;
  2022. GDScriptCodeGenerator::Address vararg_addr;
  2023. if (p_func) {
  2024. for (int i = 0; i < p_func->parameters.size(); i++) {
  2025. const GDScriptParser::ParameterNode *parameter = p_func->parameters[i];
  2026. GDScriptDataType par_type = _gdtype_from_datatype(parameter->get_datatype(), p_script);
  2027. uint32_t par_addr = codegen.generator->add_parameter(parameter->identifier->name, parameter->initializer != nullptr, par_type);
  2028. codegen.parameters[parameter->identifier->name] = GDScriptCodeGenerator::Address(GDScriptCodeGenerator::Address::FUNCTION_PARAMETER, par_addr, par_type);
  2029. method_info.arguments.push_back(parameter->get_datatype().to_property_info(parameter->identifier->name));
  2030. if (parameter->initializer != nullptr) {
  2031. optional_parameters++;
  2032. }
  2033. }
  2034. if (p_func->is_vararg()) {
  2035. vararg_addr = codegen.add_local(p_func->rest_parameter->identifier->name, _gdtype_from_datatype(p_func->rest_parameter->get_datatype(), codegen.script));
  2036. method_info.flags |= METHOD_FLAG_VARARG;
  2037. }
  2038. method_info.default_arguments.append_array(p_func->default_arg_values);
  2039. }
  2040. // Parse initializer if applies.
  2041. bool is_implicit_initializer = !p_for_ready && !p_func && !p_for_lambda;
  2042. bool is_initializer = p_func && !p_for_lambda && p_func->identifier->name == GDScriptLanguage::get_singleton()->strings._init;
  2043. bool is_implicit_ready = !p_func && p_for_ready;
  2044. if (!p_for_lambda && is_implicit_initializer) {
  2045. // Initialize the default values for typed variables before anything.
  2046. // This avoids crashes if they are accessed with validated calls before being properly initialized.
  2047. // It may happen with out-of-order access or with `@onready` variables.
  2048. for (const GDScriptParser::ClassNode::Member &member : p_class->members) {
  2049. if (member.type != GDScriptParser::ClassNode::Member::VARIABLE) {
  2050. continue;
  2051. }
  2052. const GDScriptParser::VariableNode *field = member.variable;
  2053. if (field->is_static) {
  2054. continue;
  2055. }
  2056. GDScriptDataType field_type = _gdtype_from_datatype(field->get_datatype(), codegen.script);
  2057. if (field_type.has_type) {
  2058. codegen.generator->write_newline(field->start_line);
  2059. GDScriptCodeGenerator::Address dst_address(GDScriptCodeGenerator::Address::MEMBER, codegen.script->member_indices[field->identifier->name].index, field_type);
  2060. if (field_type.builtin_type == Variant::ARRAY && field_type.has_container_element_type(0)) {
  2061. codegen.generator->write_construct_typed_array(dst_address, field_type.get_container_element_type(0), Vector<GDScriptCodeGenerator::Address>());
  2062. } else if (field_type.builtin_type == Variant::DICTIONARY && field_type.has_container_element_types()) {
  2063. codegen.generator->write_construct_typed_dictionary(dst_address, field_type.get_container_element_type_or_variant(0),
  2064. field_type.get_container_element_type_or_variant(1), Vector<GDScriptCodeGenerator::Address>());
  2065. } else if (field_type.kind == GDScriptDataType::BUILTIN) {
  2066. codegen.generator->write_construct(dst_address, field_type.builtin_type, Vector<GDScriptCodeGenerator::Address>());
  2067. }
  2068. // The `else` branch is for objects, in such case we leave it as `null`.
  2069. }
  2070. }
  2071. }
  2072. if (!p_for_lambda && (is_implicit_initializer || is_implicit_ready)) {
  2073. // Initialize class fields.
  2074. for (int i = 0; i < p_class->members.size(); i++) {
  2075. if (p_class->members[i].type != GDScriptParser::ClassNode::Member::VARIABLE) {
  2076. continue;
  2077. }
  2078. const GDScriptParser::VariableNode *field = p_class->members[i].variable;
  2079. if (field->is_static) {
  2080. continue;
  2081. }
  2082. if (field->onready != is_implicit_ready) {
  2083. // Only initialize in `@implicit_ready()`.
  2084. continue;
  2085. }
  2086. if (field->initializer) {
  2087. codegen.generator->write_newline(field->initializer->start_line);
  2088. GDScriptCodeGenerator::Address src_address = _parse_expression(codegen, r_error, field->initializer, false, true);
  2089. if (r_error) {
  2090. memdelete(codegen.generator);
  2091. return nullptr;
  2092. }
  2093. GDScriptDataType field_type = _gdtype_from_datatype(field->get_datatype(), codegen.script);
  2094. GDScriptCodeGenerator::Address dst_address(GDScriptCodeGenerator::Address::MEMBER, codegen.script->member_indices[field->identifier->name].index, field_type);
  2095. if (field->use_conversion_assign) {
  2096. codegen.generator->write_assign_with_conversion(dst_address, src_address);
  2097. } else {
  2098. codegen.generator->write_assign(dst_address, src_address);
  2099. }
  2100. if (src_address.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  2101. codegen.generator->pop_temporary();
  2102. }
  2103. }
  2104. }
  2105. }
  2106. // Parse default argument code if applies.
  2107. if (p_func) {
  2108. if (optional_parameters > 0) {
  2109. codegen.generator->start_parameters();
  2110. for (int i = p_func->parameters.size() - optional_parameters; i < p_func->parameters.size(); i++) {
  2111. const GDScriptParser::ParameterNode *parameter = p_func->parameters[i];
  2112. GDScriptCodeGenerator::Address src_addr = _parse_expression(codegen, r_error, parameter->initializer);
  2113. if (r_error) {
  2114. memdelete(codegen.generator);
  2115. return nullptr;
  2116. }
  2117. GDScriptCodeGenerator::Address dst_addr = codegen.parameters[parameter->identifier->name];
  2118. codegen.generator->write_assign_default_parameter(dst_addr, src_addr, parameter->use_conversion_assign);
  2119. if (src_addr.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  2120. codegen.generator->pop_temporary();
  2121. }
  2122. }
  2123. codegen.generator->end_parameters();
  2124. }
  2125. // No need to reset locals at the end of the function, the stack will be cleared anyway.
  2126. r_error = _parse_block(codegen, p_func->body, true, false);
  2127. if (r_error) {
  2128. memdelete(codegen.generator);
  2129. return nullptr;
  2130. }
  2131. }
  2132. #ifdef DEBUG_ENABLED
  2133. if (EngineDebugger::is_active()) {
  2134. String signature;
  2135. // Path.
  2136. if (!p_script->get_script_path().is_empty()) {
  2137. signature += p_script->get_script_path();
  2138. }
  2139. // Location.
  2140. if (p_func) {
  2141. signature += "::" + itos(p_func->body->start_line);
  2142. } else {
  2143. signature += "::0";
  2144. }
  2145. // Function and class.
  2146. if (p_class->identifier) {
  2147. signature += "::" + String(p_class->identifier->name) + "." + String(func_name);
  2148. } else {
  2149. signature += "::" + String(func_name);
  2150. }
  2151. if (p_for_lambda) {
  2152. signature += "(lambda)";
  2153. }
  2154. codegen.generator->set_signature(signature);
  2155. }
  2156. #endif
  2157. if (p_func) {
  2158. codegen.generator->set_initial_line(p_func->start_line);
  2159. } else {
  2160. codegen.generator->set_initial_line(0);
  2161. }
  2162. GDScriptFunction *gd_function = codegen.generator->write_end();
  2163. if (is_initializer) {
  2164. p_script->initializer = gd_function;
  2165. } else if (is_implicit_initializer) {
  2166. p_script->implicit_initializer = gd_function;
  2167. } else if (is_implicit_ready) {
  2168. p_script->implicit_ready = gd_function;
  2169. }
  2170. if (p_func) {
  2171. // If no `return` statement, then return type is `void`, not `Variant`.
  2172. if (p_func->body->has_return) {
  2173. gd_function->return_type = _gdtype_from_datatype(p_func->get_datatype(), p_script);
  2174. method_info.return_val = p_func->get_datatype().to_property_info(String());
  2175. } else {
  2176. gd_function->return_type = GDScriptDataType();
  2177. gd_function->return_type.has_type = true;
  2178. gd_function->return_type.kind = GDScriptDataType::BUILTIN;
  2179. gd_function->return_type.builtin_type = Variant::NIL;
  2180. }
  2181. if (p_func->is_vararg()) {
  2182. gd_function->_vararg_index = vararg_addr.address;
  2183. }
  2184. }
  2185. gd_function->method_info = method_info;
  2186. if (!is_implicit_initializer && !is_implicit_ready && !p_for_lambda) {
  2187. p_script->member_functions[func_name] = gd_function;
  2188. }
  2189. memdelete(codegen.generator);
  2190. return gd_function;
  2191. }
  2192. GDScriptFunction *GDScriptCompiler::_make_static_initializer(Error &r_error, GDScript *p_script, const GDScriptParser::ClassNode *p_class) {
  2193. r_error = OK;
  2194. CodeGen codegen;
  2195. codegen.generator = memnew(GDScriptByteCodeGenerator);
  2196. codegen.class_node = p_class;
  2197. codegen.script = p_script;
  2198. StringName func_name = SNAME("@static_initializer");
  2199. bool is_static = true;
  2200. Variant rpc_config;
  2201. GDScriptDataType return_type;
  2202. return_type.has_type = true;
  2203. return_type.kind = GDScriptDataType::BUILTIN;
  2204. return_type.builtin_type = Variant::NIL;
  2205. codegen.function_name = func_name;
  2206. codegen.is_static = is_static;
  2207. codegen.generator->write_start(p_script, func_name, is_static, rpc_config, return_type);
  2208. // The static initializer is always called on the same class where the static variables are defined,
  2209. // so the CLASS address (current class) can be used instead of `codegen.add_constant(p_script)`.
  2210. GDScriptCodeGenerator::Address class_addr(GDScriptCodeGenerator::Address::CLASS);
  2211. // Initialize the default values for typed variables before anything.
  2212. // This avoids crashes if they are accessed with validated calls before being properly initialized.
  2213. // It may happen with out-of-order access or with `@onready` variables.
  2214. for (const GDScriptParser::ClassNode::Member &member : p_class->members) {
  2215. if (member.type != GDScriptParser::ClassNode::Member::VARIABLE) {
  2216. continue;
  2217. }
  2218. const GDScriptParser::VariableNode *field = member.variable;
  2219. if (!field->is_static) {
  2220. continue;
  2221. }
  2222. GDScriptDataType field_type = _gdtype_from_datatype(field->get_datatype(), codegen.script);
  2223. if (field_type.has_type) {
  2224. codegen.generator->write_newline(field->start_line);
  2225. if (field_type.builtin_type == Variant::ARRAY && field_type.has_container_element_type(0)) {
  2226. GDScriptCodeGenerator::Address temp = codegen.add_temporary(field_type);
  2227. codegen.generator->write_construct_typed_array(temp, field_type.get_container_element_type(0), Vector<GDScriptCodeGenerator::Address>());
  2228. codegen.generator->write_set_static_variable(temp, class_addr, p_script->static_variables_indices[field->identifier->name].index);
  2229. codegen.generator->pop_temporary();
  2230. } else if (field_type.builtin_type == Variant::DICTIONARY && field_type.has_container_element_types()) {
  2231. GDScriptCodeGenerator::Address temp = codegen.add_temporary(field_type);
  2232. codegen.generator->write_construct_typed_dictionary(temp, field_type.get_container_element_type_or_variant(0),
  2233. field_type.get_container_element_type_or_variant(1), Vector<GDScriptCodeGenerator::Address>());
  2234. codegen.generator->write_set_static_variable(temp, class_addr, p_script->static_variables_indices[field->identifier->name].index);
  2235. codegen.generator->pop_temporary();
  2236. } else if (field_type.kind == GDScriptDataType::BUILTIN) {
  2237. GDScriptCodeGenerator::Address temp = codegen.add_temporary(field_type);
  2238. codegen.generator->write_construct(temp, field_type.builtin_type, Vector<GDScriptCodeGenerator::Address>());
  2239. codegen.generator->write_set_static_variable(temp, class_addr, p_script->static_variables_indices[field->identifier->name].index);
  2240. codegen.generator->pop_temporary();
  2241. }
  2242. // The `else` branch is for objects, in such case we leave it as `null`.
  2243. }
  2244. }
  2245. for (int i = 0; i < p_class->members.size(); i++) {
  2246. // Initialize static fields.
  2247. if (p_class->members[i].type != GDScriptParser::ClassNode::Member::VARIABLE) {
  2248. continue;
  2249. }
  2250. const GDScriptParser::VariableNode *field = p_class->members[i].variable;
  2251. if (!field->is_static) {
  2252. continue;
  2253. }
  2254. if (field->initializer) {
  2255. codegen.generator->write_newline(field->initializer->start_line);
  2256. GDScriptCodeGenerator::Address src_address = _parse_expression(codegen, r_error, field->initializer, false, true);
  2257. if (r_error) {
  2258. memdelete(codegen.generator);
  2259. return nullptr;
  2260. }
  2261. GDScriptDataType field_type = _gdtype_from_datatype(field->get_datatype(), codegen.script);
  2262. GDScriptCodeGenerator::Address temp = codegen.add_temporary(field_type);
  2263. if (field->use_conversion_assign) {
  2264. codegen.generator->write_assign_with_conversion(temp, src_address);
  2265. } else {
  2266. codegen.generator->write_assign(temp, src_address);
  2267. }
  2268. if (src_address.mode == GDScriptCodeGenerator::Address::TEMPORARY) {
  2269. codegen.generator->pop_temporary();
  2270. }
  2271. codegen.generator->write_set_static_variable(temp, class_addr, p_script->static_variables_indices[field->identifier->name].index);
  2272. codegen.generator->pop_temporary();
  2273. }
  2274. }
  2275. if (p_script->has_method(GDScriptLanguage::get_singleton()->strings._static_init)) {
  2276. codegen.generator->write_newline(p_class->start_line);
  2277. codegen.generator->write_call(GDScriptCodeGenerator::Address(), class_addr, GDScriptLanguage::get_singleton()->strings._static_init, Vector<GDScriptCodeGenerator::Address>());
  2278. }
  2279. #ifdef DEBUG_ENABLED
  2280. if (EngineDebugger::is_active()) {
  2281. String signature;
  2282. // Path.
  2283. if (!p_script->get_script_path().is_empty()) {
  2284. signature += p_script->get_script_path();
  2285. }
  2286. // Location.
  2287. signature += "::0";
  2288. // Function and class.
  2289. if (p_class->identifier) {
  2290. signature += "::" + String(p_class->identifier->name) + "." + String(func_name);
  2291. } else {
  2292. signature += "::" + String(func_name);
  2293. }
  2294. codegen.generator->set_signature(signature);
  2295. }
  2296. #endif
  2297. codegen.generator->set_initial_line(p_class->start_line);
  2298. GDScriptFunction *gd_function = codegen.generator->write_end();
  2299. memdelete(codegen.generator);
  2300. return gd_function;
  2301. }
  2302. Error GDScriptCompiler::_parse_setter_getter(GDScript *p_script, const GDScriptParser::ClassNode *p_class, const GDScriptParser::VariableNode *p_variable, bool p_is_setter) {
  2303. Error err = OK;
  2304. GDScriptParser::FunctionNode *function;
  2305. if (p_is_setter) {
  2306. function = p_variable->setter;
  2307. } else {
  2308. function = p_variable->getter;
  2309. }
  2310. _parse_function(err, p_script, p_class, function);
  2311. return err;
  2312. }
  2313. // Prepares given script, and inner class scripts, for compilation. It populates class members and
  2314. // initializes method RPC info for its base classes first, then for itself, then for inner classes.
  2315. // WARNING: This function cannot initiate compilation of other classes, or it will result in
  2316. // cyclic dependency issues.
  2317. Error GDScriptCompiler::_prepare_compilation(GDScript *p_script, const GDScriptParser::ClassNode *p_class, bool p_keep_state) {
  2318. if (parsed_classes.has(p_script)) {
  2319. return OK;
  2320. }
  2321. if (parsing_classes.has(p_script)) {
  2322. String class_name = p_class->identifier ? String(p_class->identifier->name) : p_class->fqcn;
  2323. _set_error(vformat(R"(Cyclic class reference for "%s".)", class_name), p_class);
  2324. return ERR_PARSE_ERROR;
  2325. }
  2326. parsing_classes.insert(p_script);
  2327. p_script->clearing = true;
  2328. p_script->cancel_pending_functions(true);
  2329. p_script->native = Ref<GDScriptNativeClass>();
  2330. p_script->base = Ref<GDScript>();
  2331. p_script->_base = nullptr;
  2332. p_script->members.clear();
  2333. // This makes possible to clear script constants and member_functions without heap-use-after-free errors.
  2334. HashMap<StringName, Variant> constants;
  2335. for (const KeyValue<StringName, Variant> &E : p_script->constants) {
  2336. constants.insert(E.key, E.value);
  2337. }
  2338. p_script->constants.clear();
  2339. constants.clear();
  2340. HashMap<StringName, GDScriptFunction *> member_functions;
  2341. for (const KeyValue<StringName, GDScriptFunction *> &E : p_script->member_functions) {
  2342. member_functions.insert(E.key, E.value);
  2343. }
  2344. p_script->member_functions.clear();
  2345. for (const KeyValue<StringName, GDScriptFunction *> &E : member_functions) {
  2346. memdelete(E.value);
  2347. }
  2348. member_functions.clear();
  2349. p_script->static_variables.clear();
  2350. if (p_script->implicit_initializer) {
  2351. memdelete(p_script->implicit_initializer);
  2352. }
  2353. if (p_script->implicit_ready) {
  2354. memdelete(p_script->implicit_ready);
  2355. }
  2356. if (p_script->static_initializer) {
  2357. memdelete(p_script->static_initializer);
  2358. }
  2359. p_script->member_functions.clear();
  2360. p_script->member_indices.clear();
  2361. p_script->static_variables_indices.clear();
  2362. p_script->static_variables.clear();
  2363. p_script->_signals.clear();
  2364. p_script->initializer = nullptr;
  2365. p_script->implicit_initializer = nullptr;
  2366. p_script->implicit_ready = nullptr;
  2367. p_script->static_initializer = nullptr;
  2368. p_script->rpc_config.clear();
  2369. p_script->lambda_info.clear();
  2370. p_script->clearing = false;
  2371. p_script->tool = parser->is_tool();
  2372. p_script->_is_abstract = p_class->is_abstract;
  2373. if (p_script->local_name != StringName()) {
  2374. if (ClassDB::class_exists(p_script->local_name) && ClassDB::is_class_exposed(p_script->local_name)) {
  2375. _set_error(vformat(R"(The class "%s" shadows a native class)", p_script->local_name), p_class);
  2376. return ERR_ALREADY_EXISTS;
  2377. }
  2378. }
  2379. GDScriptDataType base_type = _gdtype_from_datatype(p_class->base_type, p_script, false);
  2380. if (base_type.native_type == StringName()) {
  2381. _set_error(vformat(R"(Parser bug (please report): Empty native type in base class "%s")", p_script->path), p_class);
  2382. return ERR_BUG;
  2383. }
  2384. int native_idx = GDScriptLanguage::get_singleton()->get_global_map()[base_type.native_type];
  2385. p_script->native = GDScriptLanguage::get_singleton()->get_global_array()[native_idx];
  2386. if (p_script->native.is_null()) {
  2387. _set_error("Compiler bug (please report): script native type is null.", nullptr);
  2388. return ERR_BUG;
  2389. }
  2390. // Inheritance
  2391. switch (base_type.kind) {
  2392. case GDScriptDataType::NATIVE:
  2393. // Nothing more to do.
  2394. break;
  2395. case GDScriptDataType::GDSCRIPT: {
  2396. Ref<GDScript> base = Ref<GDScript>(base_type.script_type);
  2397. if (base.is_null()) {
  2398. _set_error("Compiler bug (please report): base script type is null.", nullptr);
  2399. return ERR_BUG;
  2400. }
  2401. if (main_script->has_class(base.ptr())) {
  2402. Error err = _prepare_compilation(base.ptr(), p_class->base_type.class_type, p_keep_state);
  2403. if (err) {
  2404. return err;
  2405. }
  2406. } else if (!base->is_valid()) {
  2407. Error err = OK;
  2408. Ref<GDScript> base_root = GDScriptCache::get_shallow_script(base->path, err, p_script->path);
  2409. if (err) {
  2410. _set_error(vformat(R"(Could not parse base class "%s" from "%s": %s)", base->fully_qualified_name, base->path, error_names[err]), nullptr);
  2411. return err;
  2412. }
  2413. if (base_root.is_valid()) {
  2414. base = Ref<GDScript>(base_root->find_class(base->fully_qualified_name));
  2415. }
  2416. if (base.is_null()) {
  2417. _set_error(vformat(R"(Could not find class "%s" in "%s".)", base->fully_qualified_name, base->path), nullptr);
  2418. return ERR_COMPILATION_FAILED;
  2419. }
  2420. err = _prepare_compilation(base.ptr(), p_class->base_type.class_type, p_keep_state);
  2421. if (err) {
  2422. _set_error(vformat(R"(Could not populate class members of base class "%s" in "%s".)", base->fully_qualified_name, base->path), nullptr);
  2423. return err;
  2424. }
  2425. }
  2426. p_script->base = base;
  2427. p_script->_base = base.ptr();
  2428. p_script->member_indices = base->member_indices;
  2429. } break;
  2430. default: {
  2431. _set_error("Parser bug (please report): invalid inheritance.", nullptr);
  2432. return ERR_BUG;
  2433. } break;
  2434. }
  2435. // Duplicate RPC information from base GDScript
  2436. // Base script isn't valid because it should not have been compiled yet, but the reference contains relevant info.
  2437. if (base_type.kind == GDScriptDataType::GDSCRIPT && p_script->base.is_valid()) {
  2438. p_script->rpc_config = p_script->base->rpc_config.duplicate();
  2439. }
  2440. for (int i = 0; i < p_class->members.size(); i++) {
  2441. const GDScriptParser::ClassNode::Member &member = p_class->members[i];
  2442. switch (member.type) {
  2443. case GDScriptParser::ClassNode::Member::VARIABLE: {
  2444. const GDScriptParser::VariableNode *variable = member.variable;
  2445. StringName name = variable->identifier->name;
  2446. GDScript::MemberInfo minfo;
  2447. switch (variable->property) {
  2448. case GDScriptParser::VariableNode::PROP_NONE:
  2449. break; // Nothing to do.
  2450. case GDScriptParser::VariableNode::PROP_SETGET:
  2451. if (variable->setter_pointer != nullptr) {
  2452. minfo.setter = variable->setter_pointer->name;
  2453. }
  2454. if (variable->getter_pointer != nullptr) {
  2455. minfo.getter = variable->getter_pointer->name;
  2456. }
  2457. break;
  2458. case GDScriptParser::VariableNode::PROP_INLINE:
  2459. if (variable->setter != nullptr) {
  2460. minfo.setter = "@" + variable->identifier->name + "_setter";
  2461. }
  2462. if (variable->getter != nullptr) {
  2463. minfo.getter = "@" + variable->identifier->name + "_getter";
  2464. }
  2465. break;
  2466. }
  2467. minfo.data_type = _gdtype_from_datatype(variable->get_datatype(), p_script);
  2468. PropertyInfo prop_info = variable->get_datatype().to_property_info(name);
  2469. PropertyInfo export_info = variable->export_info;
  2470. if (variable->exported) {
  2471. if (!minfo.data_type.has_type) {
  2472. prop_info.type = export_info.type;
  2473. prop_info.class_name = export_info.class_name;
  2474. }
  2475. prop_info.hint = export_info.hint;
  2476. prop_info.hint_string = export_info.hint_string;
  2477. prop_info.usage = export_info.usage;
  2478. }
  2479. prop_info.usage |= PROPERTY_USAGE_SCRIPT_VARIABLE;
  2480. minfo.property_info = prop_info;
  2481. if (variable->is_static) {
  2482. minfo.index = p_script->static_variables_indices.size();
  2483. p_script->static_variables_indices[name] = minfo;
  2484. } else {
  2485. minfo.index = p_script->member_indices.size();
  2486. p_script->member_indices[name] = minfo;
  2487. p_script->members.insert(name);
  2488. }
  2489. #ifdef TOOLS_ENABLED
  2490. if (variable->initializer != nullptr && variable->initializer->is_constant) {
  2491. p_script->member_default_values[name] = variable->initializer->reduced_value;
  2492. GDScriptCompiler::convert_to_initializer_type(p_script->member_default_values[name], variable);
  2493. } else {
  2494. p_script->member_default_values.erase(name);
  2495. }
  2496. #endif
  2497. } break;
  2498. case GDScriptParser::ClassNode::Member::CONSTANT: {
  2499. const GDScriptParser::ConstantNode *constant = member.constant;
  2500. StringName name = constant->identifier->name;
  2501. p_script->constants.insert(name, constant->initializer->reduced_value);
  2502. } break;
  2503. case GDScriptParser::ClassNode::Member::ENUM_VALUE: {
  2504. const GDScriptParser::EnumNode::Value &enum_value = member.enum_value;
  2505. StringName name = enum_value.identifier->name;
  2506. p_script->constants.insert(name, enum_value.value);
  2507. } break;
  2508. case GDScriptParser::ClassNode::Member::SIGNAL: {
  2509. const GDScriptParser::SignalNode *signal = member.signal;
  2510. StringName name = signal->identifier->name;
  2511. p_script->_signals[name] = signal->method_info;
  2512. } break;
  2513. case GDScriptParser::ClassNode::Member::ENUM: {
  2514. const GDScriptParser::EnumNode *enum_n = member.m_enum;
  2515. StringName name = enum_n->identifier->name;
  2516. p_script->constants.insert(name, enum_n->dictionary);
  2517. } break;
  2518. case GDScriptParser::ClassNode::Member::GROUP: {
  2519. const GDScriptParser::AnnotationNode *annotation = member.annotation;
  2520. // Avoid name conflict. See GH-78252.
  2521. StringName name = vformat("@group_%d_%s", p_script->members.size(), annotation->export_info.name);
  2522. // This is not a normal member, but we need this to keep indices in order.
  2523. GDScript::MemberInfo minfo;
  2524. minfo.index = p_script->member_indices.size();
  2525. PropertyInfo prop_info;
  2526. prop_info.name = annotation->export_info.name;
  2527. prop_info.usage = annotation->export_info.usage;
  2528. prop_info.hint_string = annotation->export_info.hint_string;
  2529. minfo.property_info = prop_info;
  2530. p_script->member_indices[name] = minfo;
  2531. p_script->members.insert(name);
  2532. } break;
  2533. case GDScriptParser::ClassNode::Member::FUNCTION: {
  2534. const GDScriptParser::FunctionNode *function_n = member.function;
  2535. Variant config = function_n->rpc_config;
  2536. if (config.get_type() != Variant::NIL) {
  2537. p_script->rpc_config[function_n->identifier->name] = config;
  2538. }
  2539. } break;
  2540. default:
  2541. break; // Nothing to do here.
  2542. }
  2543. }
  2544. p_script->static_variables.resize(p_script->static_variables_indices.size());
  2545. parsed_classes.insert(p_script);
  2546. parsing_classes.erase(p_script);
  2547. // Populate inner classes.
  2548. for (int i = 0; i < p_class->members.size(); i++) {
  2549. const GDScriptParser::ClassNode::Member &member = p_class->members[i];
  2550. if (member.type != member.CLASS) {
  2551. continue;
  2552. }
  2553. const GDScriptParser::ClassNode *inner_class = member.m_class;
  2554. StringName name = inner_class->identifier->name;
  2555. Ref<GDScript> &subclass = p_script->subclasses[name];
  2556. GDScript *subclass_ptr = subclass.ptr();
  2557. // Subclass might still be parsing, just skip it
  2558. if (!parsing_classes.has(subclass_ptr)) {
  2559. Error err = _prepare_compilation(subclass_ptr, inner_class, p_keep_state);
  2560. if (err) {
  2561. return err;
  2562. }
  2563. }
  2564. p_script->constants.insert(name, subclass); //once parsed, goes to the list of constants
  2565. }
  2566. return OK;
  2567. }
  2568. Error GDScriptCompiler::_compile_class(GDScript *p_script, const GDScriptParser::ClassNode *p_class, bool p_keep_state) {
  2569. // Compile member functions, getters, and setters.
  2570. for (int i = 0; i < p_class->members.size(); i++) {
  2571. const GDScriptParser::ClassNode::Member &member = p_class->members[i];
  2572. if (member.type == member.FUNCTION) {
  2573. const GDScriptParser::FunctionNode *function = member.function;
  2574. Error err = OK;
  2575. _parse_function(err, p_script, p_class, function);
  2576. if (err) {
  2577. return err;
  2578. }
  2579. } else if (member.type == member.VARIABLE) {
  2580. const GDScriptParser::VariableNode *variable = member.variable;
  2581. if (variable->property == GDScriptParser::VariableNode::PROP_INLINE) {
  2582. if (variable->setter != nullptr) {
  2583. Error err = _parse_setter_getter(p_script, p_class, variable, true);
  2584. if (err) {
  2585. return err;
  2586. }
  2587. }
  2588. if (variable->getter != nullptr) {
  2589. Error err = _parse_setter_getter(p_script, p_class, variable, false);
  2590. if (err) {
  2591. return err;
  2592. }
  2593. }
  2594. }
  2595. }
  2596. }
  2597. {
  2598. // Create `@implicit_new()` special function in any case.
  2599. Error err = OK;
  2600. _parse_function(err, p_script, p_class, nullptr);
  2601. if (err) {
  2602. return err;
  2603. }
  2604. }
  2605. if (p_class->onready_used) {
  2606. // Create `@implicit_ready()` special function.
  2607. Error err = OK;
  2608. _parse_function(err, p_script, p_class, nullptr, true);
  2609. if (err) {
  2610. return err;
  2611. }
  2612. }
  2613. if (p_class->has_static_data) {
  2614. Error err = OK;
  2615. GDScriptFunction *func = _make_static_initializer(err, p_script, p_class);
  2616. p_script->static_initializer = func;
  2617. if (err) {
  2618. return err;
  2619. }
  2620. }
  2621. #ifdef DEBUG_ENABLED
  2622. //validate instances if keeping state
  2623. if (p_keep_state) {
  2624. for (RBSet<Object *>::Element *E = p_script->instances.front(); E;) {
  2625. RBSet<Object *>::Element *N = E->next();
  2626. ScriptInstance *si = E->get()->get_script_instance();
  2627. if (si->is_placeholder()) {
  2628. #ifdef TOOLS_ENABLED
  2629. PlaceHolderScriptInstance *psi = static_cast<PlaceHolderScriptInstance *>(si);
  2630. if (p_script->is_tool()) {
  2631. //re-create as an instance
  2632. p_script->placeholders.erase(psi); //remove placeholder
  2633. GDScriptInstance *instance = memnew(GDScriptInstance);
  2634. instance->base_ref_counted = Object::cast_to<RefCounted>(E->get());
  2635. instance->members.resize(p_script->member_indices.size());
  2636. instance->script = Ref<GDScript>(p_script);
  2637. instance->owner = E->get();
  2638. //needed for hot reloading
  2639. for (const KeyValue<StringName, GDScript::MemberInfo> &F : p_script->member_indices) {
  2640. instance->member_indices_cache[F.key] = F.value.index;
  2641. }
  2642. instance->owner->set_script_instance(instance);
  2643. /* STEP 2, INITIALIZE AND CONSTRUCT */
  2644. Callable::CallError ce;
  2645. p_script->initializer->call(instance, nullptr, 0, ce);
  2646. if (ce.error != Callable::CallError::CALL_OK) {
  2647. //well, tough luck, not gonna do anything here
  2648. }
  2649. }
  2650. #endif // TOOLS_ENABLED
  2651. } else {
  2652. GDScriptInstance *gi = static_cast<GDScriptInstance *>(si);
  2653. gi->reload_members();
  2654. }
  2655. E = N;
  2656. }
  2657. }
  2658. #endif //DEBUG_ENABLED
  2659. has_static_data = p_class->has_static_data;
  2660. for (int i = 0; i < p_class->members.size(); i++) {
  2661. if (p_class->members[i].type != GDScriptParser::ClassNode::Member::CLASS) {
  2662. continue;
  2663. }
  2664. const GDScriptParser::ClassNode *inner_class = p_class->members[i].m_class;
  2665. StringName name = inner_class->identifier->name;
  2666. GDScript *subclass = p_script->subclasses[name].ptr();
  2667. Error err = _compile_class(subclass, inner_class, p_keep_state);
  2668. if (err) {
  2669. return err;
  2670. }
  2671. has_static_data = has_static_data || inner_class->has_static_data;
  2672. }
  2673. p_script->_static_default_init();
  2674. p_script->valid = true;
  2675. return OK;
  2676. }
  2677. void GDScriptCompiler::convert_to_initializer_type(Variant &p_variant, const GDScriptParser::VariableNode *p_node) {
  2678. // Set p_variant to the value of p_node's initializer, with the type of p_node's variable.
  2679. GDScriptParser::DataType member_t = p_node->datatype;
  2680. GDScriptParser::DataType init_t = p_node->initializer->datatype;
  2681. if (member_t.is_hard_type() && init_t.is_hard_type() &&
  2682. member_t.kind == GDScriptParser::DataType::BUILTIN && init_t.kind == GDScriptParser::DataType::BUILTIN) {
  2683. if (Variant::can_convert_strict(init_t.builtin_type, member_t.builtin_type)) {
  2684. const Variant *v = &p_node->initializer->reduced_value;
  2685. Callable::CallError ce;
  2686. Variant::construct(member_t.builtin_type, p_variant, &v, 1, ce);
  2687. }
  2688. }
  2689. }
  2690. void GDScriptCompiler::make_scripts(GDScript *p_script, const GDScriptParser::ClassNode *p_class, bool p_keep_state) {
  2691. p_script->fully_qualified_name = p_class->fqcn;
  2692. p_script->local_name = p_class->identifier ? p_class->identifier->name : StringName();
  2693. p_script->global_name = p_class->get_global_name();
  2694. p_script->simplified_icon_path = p_class->simplified_icon_path;
  2695. HashMap<StringName, Ref<GDScript>> old_subclasses;
  2696. if (p_keep_state) {
  2697. old_subclasses = p_script->subclasses;
  2698. }
  2699. p_script->subclasses.clear();
  2700. for (int i = 0; i < p_class->members.size(); i++) {
  2701. if (p_class->members[i].type != GDScriptParser::ClassNode::Member::CLASS) {
  2702. continue;
  2703. }
  2704. const GDScriptParser::ClassNode *inner_class = p_class->members[i].m_class;
  2705. StringName name = inner_class->identifier->name;
  2706. Ref<GDScript> subclass;
  2707. if (old_subclasses.has(name)) {
  2708. subclass = old_subclasses[name];
  2709. } else {
  2710. subclass = GDScriptLanguage::get_singleton()->get_orphan_subclass(inner_class->fqcn);
  2711. }
  2712. if (subclass.is_null()) {
  2713. subclass.instantiate();
  2714. }
  2715. subclass->_owner = p_script;
  2716. subclass->path = p_script->path;
  2717. p_script->subclasses.insert(name, subclass);
  2718. make_scripts(subclass.ptr(), inner_class, p_keep_state);
  2719. }
  2720. }
  2721. GDScriptCompiler::FunctionLambdaInfo GDScriptCompiler::_get_function_replacement_info(GDScriptFunction *p_func, int p_index, int p_depth, GDScriptFunction *p_parent_func) {
  2722. FunctionLambdaInfo info;
  2723. info.function = p_func;
  2724. info.parent = p_parent_func;
  2725. info.script = p_func->get_script();
  2726. info.name = p_func->get_name();
  2727. info.line = p_func->_initial_line;
  2728. info.index = p_index;
  2729. info.depth = p_depth;
  2730. info.capture_count = 0;
  2731. info.use_self = false;
  2732. info.arg_count = p_func->_argument_count;
  2733. info.default_arg_count = p_func->_default_arg_count;
  2734. info.sublambdas = _get_function_lambda_replacement_info(p_func, p_depth, p_parent_func);
  2735. ERR_FAIL_NULL_V(info.script, info);
  2736. GDScript::LambdaInfo *extra_info = info.script->lambda_info.getptr(p_func);
  2737. if (extra_info != nullptr) {
  2738. info.capture_count = extra_info->capture_count;
  2739. info.use_self = extra_info->use_self;
  2740. } else {
  2741. info.capture_count = 0;
  2742. info.use_self = false;
  2743. }
  2744. return info;
  2745. }
  2746. Vector<GDScriptCompiler::FunctionLambdaInfo> GDScriptCompiler::_get_function_lambda_replacement_info(GDScriptFunction *p_func, int p_depth, GDScriptFunction *p_parent_func) {
  2747. Vector<FunctionLambdaInfo> result;
  2748. // Only scrape the lambdas inside p_func.
  2749. for (int i = 0; i < p_func->lambdas.size(); ++i) {
  2750. result.push_back(_get_function_replacement_info(p_func->lambdas[i], i, p_depth + 1, p_func));
  2751. }
  2752. return result;
  2753. }
  2754. GDScriptCompiler::ScriptLambdaInfo GDScriptCompiler::_get_script_lambda_replacement_info(GDScript *p_script) {
  2755. ScriptLambdaInfo info;
  2756. if (p_script->implicit_initializer) {
  2757. info.implicit_initializer_info = _get_function_lambda_replacement_info(p_script->implicit_initializer);
  2758. }
  2759. if (p_script->implicit_ready) {
  2760. info.implicit_ready_info = _get_function_lambda_replacement_info(p_script->implicit_ready);
  2761. }
  2762. if (p_script->static_initializer) {
  2763. info.static_initializer_info = _get_function_lambda_replacement_info(p_script->static_initializer);
  2764. }
  2765. for (const KeyValue<StringName, GDScriptFunction *> &E : p_script->member_functions) {
  2766. info.member_function_infos.insert(E.key, _get_function_lambda_replacement_info(E.value));
  2767. }
  2768. for (const KeyValue<StringName, Ref<GDScript>> &KV : p_script->get_subclasses()) {
  2769. info.subclass_info.insert(KV.key, _get_script_lambda_replacement_info(KV.value.ptr()));
  2770. }
  2771. return info;
  2772. }
  2773. bool GDScriptCompiler::_do_function_infos_match(const FunctionLambdaInfo &p_old_info, const FunctionLambdaInfo *p_new_info) {
  2774. if (p_new_info == nullptr) {
  2775. return false;
  2776. }
  2777. if (p_new_info->capture_count != p_old_info.capture_count || p_new_info->use_self != p_old_info.use_self) {
  2778. return false;
  2779. }
  2780. int old_required_arg_count = p_old_info.arg_count - p_old_info.default_arg_count;
  2781. int new_required_arg_count = p_new_info->arg_count - p_new_info->default_arg_count;
  2782. if (new_required_arg_count > old_required_arg_count || p_new_info->arg_count < old_required_arg_count) {
  2783. return false;
  2784. }
  2785. return true;
  2786. }
  2787. void GDScriptCompiler::_get_function_ptr_replacements(HashMap<GDScriptFunction *, GDScriptFunction *> &r_replacements, const FunctionLambdaInfo &p_old_info, const FunctionLambdaInfo *p_new_info) {
  2788. ERR_FAIL_COND(r_replacements.has(p_old_info.function));
  2789. if (!_do_function_infos_match(p_old_info, p_new_info)) {
  2790. p_new_info = nullptr;
  2791. }
  2792. r_replacements.insert(p_old_info.function, p_new_info != nullptr ? p_new_info->function : nullptr);
  2793. _get_function_ptr_replacements(r_replacements, p_old_info.sublambdas, p_new_info != nullptr ? &p_new_info->sublambdas : nullptr);
  2794. }
  2795. void GDScriptCompiler::_get_function_ptr_replacements(HashMap<GDScriptFunction *, GDScriptFunction *> &r_replacements, const Vector<FunctionLambdaInfo> &p_old_infos, const Vector<FunctionLambdaInfo> *p_new_infos) {
  2796. for (int i = 0; i < p_old_infos.size(); ++i) {
  2797. const FunctionLambdaInfo &old_info = p_old_infos[i];
  2798. const FunctionLambdaInfo *new_info = nullptr;
  2799. if (p_new_infos != nullptr && p_new_infos->size() == p_old_infos.size()) {
  2800. // For now only attempt if the size is the same.
  2801. new_info = &p_new_infos->get(i);
  2802. }
  2803. _get_function_ptr_replacements(r_replacements, old_info, new_info);
  2804. }
  2805. }
  2806. void GDScriptCompiler::_get_function_ptr_replacements(HashMap<GDScriptFunction *, GDScriptFunction *> &r_replacements, const ScriptLambdaInfo &p_old_info, const ScriptLambdaInfo *p_new_info) {
  2807. _get_function_ptr_replacements(r_replacements, p_old_info.implicit_initializer_info, p_new_info != nullptr ? &p_new_info->implicit_initializer_info : nullptr);
  2808. _get_function_ptr_replacements(r_replacements, p_old_info.implicit_ready_info, p_new_info != nullptr ? &p_new_info->implicit_ready_info : nullptr);
  2809. _get_function_ptr_replacements(r_replacements, p_old_info.static_initializer_info, p_new_info != nullptr ? &p_new_info->static_initializer_info : nullptr);
  2810. for (const KeyValue<StringName, Vector<FunctionLambdaInfo>> &old_kv : p_old_info.member_function_infos) {
  2811. _get_function_ptr_replacements(r_replacements, old_kv.value, p_new_info != nullptr ? p_new_info->member_function_infos.getptr(old_kv.key) : nullptr);
  2812. }
  2813. for (int i = 0; i < p_old_info.other_function_infos.size(); ++i) {
  2814. const FunctionLambdaInfo &old_other_info = p_old_info.other_function_infos[i];
  2815. const FunctionLambdaInfo *new_other_info = nullptr;
  2816. if (p_new_info != nullptr && p_new_info->other_function_infos.size() == p_old_info.other_function_infos.size()) {
  2817. // For now only attempt if the size is the same.
  2818. new_other_info = &p_new_info->other_function_infos[i];
  2819. }
  2820. // Needs to be called on all old lambdas, even if there's no replacement.
  2821. _get_function_ptr_replacements(r_replacements, old_other_info, new_other_info);
  2822. }
  2823. for (const KeyValue<StringName, ScriptLambdaInfo> &old_kv : p_old_info.subclass_info) {
  2824. const ScriptLambdaInfo &old_subinfo = old_kv.value;
  2825. const ScriptLambdaInfo *new_subinfo = p_new_info != nullptr ? p_new_info->subclass_info.getptr(old_kv.key) : nullptr;
  2826. _get_function_ptr_replacements(r_replacements, old_subinfo, new_subinfo);
  2827. }
  2828. }
  2829. Error GDScriptCompiler::compile(const GDScriptParser *p_parser, GDScript *p_script, bool p_keep_state) {
  2830. err_line = -1;
  2831. err_column = -1;
  2832. error = "";
  2833. parser = p_parser;
  2834. main_script = p_script;
  2835. const GDScriptParser::ClassNode *root = parser->get_tree();
  2836. source = p_script->get_path();
  2837. ScriptLambdaInfo old_lambda_info = _get_script_lambda_replacement_info(p_script);
  2838. // Create scripts for subclasses beforehand so they can be referenced
  2839. make_scripts(p_script, root, p_keep_state);
  2840. main_script->_owner = nullptr;
  2841. Error err = _prepare_compilation(main_script, parser->get_tree(), p_keep_state);
  2842. if (err) {
  2843. return err;
  2844. }
  2845. err = _compile_class(main_script, root, p_keep_state);
  2846. if (err) {
  2847. return err;
  2848. }
  2849. ScriptLambdaInfo new_lambda_info = _get_script_lambda_replacement_info(p_script);
  2850. HashMap<GDScriptFunction *, GDScriptFunction *> func_ptr_replacements;
  2851. _get_function_ptr_replacements(func_ptr_replacements, old_lambda_info, &new_lambda_info);
  2852. main_script->_recurse_replace_function_ptrs(func_ptr_replacements);
  2853. if (has_static_data && !root->annotated_static_unload) {
  2854. GDScriptCache::add_static_script(p_script);
  2855. }
  2856. err = GDScriptCache::finish_compiling(main_script->path);
  2857. if (err) {
  2858. _set_error(R"(Failed to compile depended scripts.)", nullptr);
  2859. }
  2860. return err;
  2861. }
  2862. String GDScriptCompiler::get_error() const {
  2863. return error;
  2864. }
  2865. int GDScriptCompiler::get_error_line() const {
  2866. return err_line;
  2867. }
  2868. int GDScriptCompiler::get_error_column() const {
  2869. return err_column;
  2870. }
  2871. GDScriptCompiler::GDScriptCompiler() {
  2872. }