summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gdscript_vm.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #818 from Spartan322/fixup/copyright-headersGeorge L. Albany2024-10-271-2/+2
|\ | | | | Fix copyright headers referring to Godot
| * Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| |
* | Merge commit godotengine/godot@61accf060515416da07d913580419fd8c8490f7bSpartan3222024-10-261-9/+13
|\ \ | |/ |/|
| * Add some comments to #endif's where it will easier lifeYevhen Babiichuk (DustDFG)2024-10-211-9/+13
| | | | | | | | | | | | | | Also added some new line to improve readability Signed-off-by: Yevhen Babiichuk (DustDFG) <dfgdust@gmail.com> Co-authored-by: Danil Alexeev <danil@alexeev.xyz>
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
|/ | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* Enable use of Labels as Values feature in Clang when not wrapped by GCCSlugFiller2024-10-021-1/+1
|
* Implement typed dictionariesThaddeus Crews2024-09-041-4/+190
|
* GDScript: Fix message when calling non-tool function in tool modeDanil Alexeev2024-08-271-42/+43
|
* Merge pull request #94238 from RandomShaper/ref_is_now_rcRémi Verschelde2024-07-171-2/+2
|\ | | | | | | Make errors on `RefCounted.free()` more accurate
| * Make errors on RefCounted.free() more accuratePedro J. Estébanez2024-07-151-2/+2
| |
* | GDScript: Fix implicit cast to typed array when passing parameterDanil Alexeev2024-07-071-3/+16
|/
* Use Core/Scene stringnames consistentlykobewi2024-05-131-1/+0
|
* Add shorthand for using singleton string nameskobewi2024-05-111-5/+5
|
* Add PackedVector4Array Variant typeK. S. Ernest (iFire) Lee2024-05-031-0/+8
| | | | | Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
* [GDScript] Correctly report invalid read-only accessA Thousand Ships2024-05-011-33/+49
|
* Merge pull request #91192 from vnen/gdscript-validated-native-static-callsRémi Verschelde2024-05-011-150/+224
|\ | | | | | | GDScript: Perform validated calls with static methods
| * GDScript: Perform validated calls with static methodsGeorge Marques2024-04-251-150/+224
| | | | | | | | | | | | When the types are validated at compile time, this type of call runs faster. It is already used for instance methods, this adds this optimization to native static methods as well.
* | GDScript: Fix object iterator opcodesDanil Alexeev2024-04-261-10/+18
|/
* GDScript: Fix uninitialized local variables not being resetDanil Alexeev2024-03-301-0/+11
|
* Promote CowData to 64 bitsJuan Linietsky2024-01-191-1/+1
| | | | Fixes a lot of bugs, please help me fill the list.
* Merge pull request #82639 from golfinq/gdscript-improve-indexing-errorRémi Verschelde2024-01-041-17/+28
|\ | | | | | | GDScript: Improve error messages for invalid indexing
| * GDScript: Improve error messages for invalid indexingRémi Verschelde2023-10-021-17/+28
| | | | | | | | | | | | | | | | | | These errors are very common when using an invalid property name or calling on an object of the wrong type, and the previous message was a bit cryptic for users. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com> Co-authored-by: golfinq <golfinqz@gmail.com>
* | Fix missing time for some script functions in profilermsreis2023-12-191-52/+58
| | | | | | | | | | | | | | | | | | Fixes the issue by adding a mechanism by which the functions that were previously disappearing can be profiled too. This is optional with an editor setting, since collecting more information naturally slows the engine further while profiling. Fixes #23715, #40251, #29049
* | Change container_element_type to vector containerThaddeus Crews2023-12-051-2/+2
| |
* | GDScript: Don't optimize division and modulo on debugGeorge Marques2023-10-181-0/+8
| | | | | | | | | | Since the validated operators don't have checks for division by zero, use the regular evaluator in debug which has those checks.
* | GDScript: Fix incorrect error message for utility functionsDanil Alexeev2023-10-161-8/+7
| |
* | GDScript: Replace ptrcalls on MethodBind to validated callsGeorge Marques2023-10-061-315/+157
| | | | | | | | | | | | | | | | | | This improves the performance of typed calls to engine methods when the argument types are exact. Using validated calls delegate more of the work the core instead of doing argument unpacking in the VM. It also does not need different instructions for each return type, simplifying the code.
* | Fix expected argument count for `Callable` call errorsDanil Alexeev2023-09-291-1/+0
|/
* Merge pull request #81200 from RandomShaper/gd_vm_msvcRémi Verschelde2023-09-251-0/+6
|\ | | | | | | Optimize GDScript VM codegen for MSVC
| * Optimize GDScript VM codegen for MSVCPedro J. Estébanez2023-09-251-0/+6
| |
* | GDScript: Fix some lambda bugsDanil Alexeev2023-09-141-4/+5
| |
* | GDScript: Fix `get_*_list()` methods return incorrect infoDanil Alexeev2023-09-041-4/+4
|/
* Merge pull request #79990 from vnen/gdscript-assume-op-typesYuri Sizov2023-08-011-15/+59
|\ | | | | | | GDScript: Optimize operators by assuming the types
| * GDScript: Optimize operators by assuming the typesGeorge Marques2023-07-281-15/+59
| | | | | | | | | | | | | | | | | | | | | | This assumes that operators are called usually with the same type of operands as the first time. So it stores the types of the first run and if matched it uses an optimized path by calling the validated operator function directly. Otherwise it uses the regular untyped evaluator. With this change, if operators do use the same type they run quite faster. OTOH, if the types mismatch it takes longer to run than they would with the previous code.
* | Support threads in the script debuggerJuan Linietsky2023-07-261-9/+11
|/ | | | | | | | | | * This implementation adds threads on the side of the client (script debugger). * Some functions of the debugger are optimized. * The profile is also now thread safe using atomics. * The editor can switch between multiple threads when debugging. This PR adds threaded support for the script language debugger. Every thread has its own thread local data and it will connect to the debugger using multiple thread IDs. This means that, now, the editor can receive multiple threads entering debug mode at the same time.
* GDScript: Fix `_get_script_name()` function collision for SCU buildDanil Alexeev2023-06-201-16/+5
|
* GDScript: Fix some bugs with static variables and functionsDanil Alexeev2023-06-161-5/+43
|
* Style: Harmonize header includes in modulesRémi Verschelde2023-06-151-2/+2
| | | | | | | | | | | | | | | | | | | | This applies our existing style guide, and adds a new rule to that style guide for modular components such as platform ports and modules: Includes from the platform port or module ("local" includes) should be listed first in their own block using relative paths, before Godot's "core" includes which use "absolute" (project folder relative) paths, and finally thirdparty includes. Includes in `#ifdef`s come after their relevant section, i.e. the overall structure is: - Local includes * Conditional local includes - Core includes * Conditional core includes - Thirdparty includes * Conditional thirdparty includes
* Merge pull request #75732 from vonagam/fix-duplicate-conditionRémi Verschelde2023-04-281-3/+3
|\ | | | | | | GDScript: Fix unnecessary duplication of pointed out lines
| * GDScript: Fix unnecessary duplication of pointed out linesDmitrii Maganov2023-04-061-3/+3
| |
* | Add support for static variables in GDScriptGeorge Marques2023-04-271-2/+2
| | | | | | | | | | | | | | | | | | | | Which allows editable data associated with a particular class instead of the instance. Scripts with static variables are kept in memory indefinitely unless the `@static_unload` annotation is used or the `static_unload()` method is called on the GDScript. If the custom function `_static_init()` exists it will be called when the class is loaded, after the static variables are set.
* | GDScript: Don't fail when freed object is returnGeorge Marques2023-04-261-4/+0
| | | | | | | | | | This is check is a bit too eager. The user should be able to handle the return value even if it's a freed object.
* | Fix wrong file on function call errorsodaJar2023-04-241-3/+4
|/
* Added check for null objects in gdscript typed assign.ocean (they/them)2023-02-211-18/+20
|
* Merge pull request #73489 from vonagam/type-check-nodeRémi Verschelde2023-02-201-64/+70
|\ | | | | | | GDScript: Rework type check
| * GDScript: Rework type checkDmitrii Maganov2023-02-171-64/+70
| |
* | Merge pull request #73501 from anvilfolk/oopsiedaisyYuri Sizov2023-02-181-19/+13
|\ \ | |/ |/| Fix inability to assign null regression
| * Fix inability to assign null regressionocean (they/them)2023-02-171-19/+13
| | | | | | | | Co-authored-by: Dmitry Maganov <vonagam@gmail.com>
* | Merge pull request #72867 from vnen/gdscript-limit-call-depthYuri Sizov2023-02-171-0/+32
|\ \ | |/ |/| GDScript: Add limit to call depth
| * GDScript: Add limit to call depthGeorge Marques2023-02-071-0/+32
| | | | | | | | | | | | | | | | | | | | | | The hard limit is set at 2048 depth which seems sensible between legitimate recursive calls while still avoiding a crash because of a stack overflow in most of the cases. Note that it is still possible to reach the stack limit and get an overflow before reaching a call depth. This is intended as a half-way measure to stop crashing in most cases, since there's no reliable nor portable way to check the amount of stack memory left.