Timothy Flynn
1504469c50
js: Implement the exit builtin without calling the native exit function
...
If we invoke the exit native function from within the exit builtin, the
native call will then invoke global destructors. This ultimately ends up
deleting the JS::NativeFunction that defines the exit builtin, thus we
try to delete the AK::Function held inside the NativeFunction while that
AK::Function is executing. This is explicitly forbidden by AK::Function.
Instead, simply set a flag to exit the REPL after the builtin executes.
2023-10-30 18:12:17 +01:00
Andrew Kaster
f9386737a6
LibTLS: Add certificate verification for ECDSA with SECP256r1 curves
2023-10-30 10:17:39 -06:00
Michiel Visser
c548dca174
LibTLS: Add ECDSA support with the secp256r1 curve
2023-10-30 10:17:39 -06:00
Michiel Visser
caf533bddf
LibCrypto: Add ECDSA signature checking with secp256r1
2023-10-30 10:17:39 -06:00
Simon Wanner
0daebef727
LibJS/JIT: Clear exception before executing finalizer
...
language/statements/try/S12.14_A13_T2.js ❌ -> ✅
language/statements/try/S12.14_A15.js ❌ -> ✅
language/statements/try/S12.14_A7_T1.js ❌ -> ✅
language/statements/try/S12.14_A7_T2.js ❌ -> ✅
language/statements/try/S12.14_A7_T3.js ❌ -> ✅
language/statements/try/completion-values-fn-finally-abrupt.js ❌ -> ✅
language/statements/try/completion-values-fn-finally-return.js ❌ -> ✅
2023-10-30 15:05:26 +01:00
Simon Wanner
bd62c4763c
LibJS/JIT: Flip saved_return_value condition in ContinuePendingUnwind
...
This did not match the `if (saved_return_value) return else resume`
in Interpreter.
test/built-ins/Promise/all/resolve-poisoned-then.js ❌ -> ✅
test/built-ins/Promise/all/resolve-thenable.js ❌ -> ✅
test/built-ins/Promise/allSettled/resolve-poisoned-then.js ❌ -> ✅
test/built-ins/Promise/allSettled/resolve-thenable.js ❌ -> ✅
test/built-ins/Promise/race/resolve-self.js ❌ -> ✅
test/language/statements/try/S12.14_A7_T1.js ✅ -> ❌
test/language/statements/try/S12.14_A7_T2.js ✅ -> ❌
test/language/statements/try/S12.14_A7_T3.js ✅ -> ❌
2023-10-30 15:05:26 +01:00
Simon Wanner
82c057391e
LibJS/JIT: Handle uninitialized bindings in GetLocal
...
test262: +78 ✅ -72 ❌ -4 💥 ️
2023-10-30 15:05:26 +01:00
Simon Wanner
5b2c0dfec0
LibJS/JIT: Return result of SuperCallWithArgumentArray
...
test/language/expressions/optional-chaining/call-expression.js 💥 ️ -> ✅
test/language/expressions/super/call-expr-value.js 💥 ️ -> ✅
2023-10-30 15:05:26 +01:00
Evgeniy Baskov
da45bd3fde
LibJS/JIT: Implement static exception handling
2023-10-30 13:10:08 +01:00
Hendiadyoin1
1341f4438d
LibJS: Save scheduled jumps when entering unwind contexts
...
These are then restored upon `ContinuePendingUnwind`.
This stops us from forgetting where we needed to jump when we do extra
try-catches in finally blocks.
Co-Authored-By: Jesús "gsus" Lapastora <cyber.gsuscode@gmail.com>
2023-10-30 13:10:08 +01:00
Hendiadyoin1
4da5b8ec67
LibJS: Reset scheduled-jump flag when throwing an exception
...
Otherwise we might attempt to follow the scheduled jump later
2023-10-30 13:10:08 +01:00
Hendiadyoin1
f5645e3c9c
LibJS: Use static unwind mappings for unwind related functions
2023-10-30 13:10:08 +01:00
Hendiadyoin1
73f347b75c
LibJS: Create static unwind mappings for BasicBlock
s
...
This is currently only used in the bytecode dump to annotate to where
unwinds lead per block, but will be hooked up to the virtual machine in
the next commit.
2023-10-30 13:10:08 +01:00
Tobias Christiansen
647f0ccd3f
LibWeb: Add rendering support for 'object-position'
...
Images now get rendered correctly according to the 'object-position'
property.
2023-10-30 10:40:30 +00:00
Tobias Christiansen
d00c7e55a5
LibWeb: Add plumbing for the new 'object-position' property
...
Now, the 'object-position' property gets properly parsed and is
provided to the rest of the ecosystem.
In the parser we use the same parsing as for the background-position,
which is not entirely correct but almost a <position>.
2023-10-30 10:40:30 +00:00
Tobias Christiansen
7e11de272f
LibWeb: Add 'object-position' property and 'position' enum
...
This patch adds the 'object-position' CSS property description to the
json for code generation.
Also the 'position' enum is added. The values of this enum are the
valid inputs to the object-position property from CSS Values-4.
2023-10-30 10:40:30 +00:00
Tobias Christiansen
6602b1ddb1
LibWeb: Rename "position" enum to "positioning"
...
The postitioning enum values are used by the position CSS property.
Unfortunately, the prior naming clashes with the CSS Values-4 type
named position, which will be implemented in a later commit.
2023-10-30 10:40:30 +00:00
Gurkirat Singh
60640fe38d
Utilities: Implement slugify
using AK/Slugify
2023-10-30 10:39:59 +00:00
Gurkirat Singh
ab2d8c092e
LibCore: Implement handler for Vector<String>
positional arguments
2023-10-30 10:39:59 +00:00
Gurkirat Singh
da8a3f9ff2
LibMarkdown: Render slugified anchor tag in heading
...
Because slugify function accepts AK::String, which can hold unicode
code_points as well, heading text is normalised to ensure with NFD
form to ensure same binary respresentation of a particular string.
2023-10-30 10:39:59 +00:00
Andreas Kling
0c6d094a7e
LibJS/JIT: Stop logging JIT success by default (but still log failure)
2023-10-30 07:11:43 +01:00
Zaggy1024
dfaf645302
LibJS: Add an inline JIT fast path when ToNumeric
has nothing to do
...
In most cases, this op will do nothing, as it is running on an the
accumulator while it already contains a number. Let's avoid doing that
native call.
2023-10-30 07:10:54 +01:00
Simon Wanner
a2b0154661
LibJS/JIT: Compile the AsyncIteratorClose instruction
2023-10-30 07:10:24 +01:00
Simon Wanner
ac59e982a9
LibJS/JIT: Compile the CopyObjectExcludingProperties instruction
2023-10-30 07:10:24 +01:00
Simon Wanner
9494fbe670
LibJS/JIT: Compile the PutByValueWithThis instruction
2023-10-30 07:10:24 +01:00
Simon Wanner
847889343f
LibJS/JIT: Compile the New##ErrorName instructions
2023-10-30 07:10:24 +01:00
Simon Wanner
fd059d4e4a
LibJS/JIT: Compile the JumpUndefined instruction
2023-10-30 07:10:24 +01:00
Simon Wanner
a16082c6a5
LibJS/JIT: Compile the HasPrivateId instruction
2023-10-30 07:10:24 +01:00
Simon Wanner
712c89dacf
LibJS/JIT: Compile the GetNewTarget instruction
2023-10-30 07:10:24 +01:00
Simon Wanner
19045d6431
LibJS/JIT: Compile the GetMethod instruction
2023-10-30 07:10:24 +01:00
Simon Wanner
06ea4cfc4f
LibJS/JIT: Compile the DeleteVariable instruction
2023-10-30 07:10:24 +01:00
Simon Wanner
cd18bc9d55
LibJS/JIT: Compile the GetImportMeta instruction
2023-10-30 07:10:24 +01:00
Simon Wanner
c0c40110c1
LibJS/JIT: Compile the ImportCall instruction
2023-10-30 07:10:24 +01:00
Simon Wanner
ac43d3f6db
LibJS/JIT: Compile the PutPrivateById instruction
2023-10-29 22:57:19 +01:00
Simon Wanner
81697549b7
LibJS/JIT: Compile the PutByIdWithThis instruction
2023-10-29 22:57:19 +01:00
Simon Wanner
38d5d7979b
LibJS/JIT: Compile the DeleteByIdWithThis instruction
2023-10-29 22:57:19 +01:00
Simon Wanner
b53277110e
LibJS/JIT: Compile the GetByValueWithThis instruction
2023-10-29 22:57:19 +01:00
Simon Wanner
569ca57e22
LibJS/JIT: Compile the GetByIdWithThis instruction
2023-10-29 22:57:19 +01:00
Simon Wanner
ad81f49b02
LibJS/JIT: Compile the ResolveSuperBase instruction
2023-10-29 22:57:19 +01:00
Simon Wanner
4e9edb8c53
LibJS/JIT: Compile the GetPrivateById instruction
2023-10-29 22:57:19 +01:00
Simon Wanner
4ce2878394
LibJS/JIT: Compile the GetObjectPropertyIterator instruction
2023-10-29 22:57:19 +01:00
Simon Wanner
ad81bf47bb
LibJS: Move GetObjectPropertyIterator impl to CommonImplementations
2023-10-29 22:57:19 +01:00
Tim Schumacher
25642dfe87
LibCompress: Implement correct validation of last filters
2023-10-29 22:00:59 +01:00
Tim Schumacher
786e654dfd
LibCompress: Implement the XZ delta filter
2023-10-29 22:00:59 +01:00
Tim Schumacher
f0b08e9dea
LibCompress: Process XZ filters in reverse order
...
XZ writes filters in the order that they are used during compression, so
we need to process them in the reverse order while decompression.
This wasn't noticed earlier because we only supported the LZMA2 filter.
2023-10-29 22:00:59 +01:00
Jakub Berkop
6a7b9b85a4
LibJS/JIT: Compile the DeleteByValueWithThis instruction
2023-10-29 21:51:46 +01:00
Jakub Berkop
0776404e03
LibJS/JIT: Compile the DeleteByValue instruction
2023-10-29 21:51:46 +01:00
Jakub Berkop
f5fcd4596c
LibJS/JIT: Compile the DeleteById instruction
2023-10-29 21:51:46 +01:00
Bastiaan van der Plaat
0104225d9b
LibWeb: Add TextEncoder encodeInto
2023-10-29 21:44:53 +01:00
Bastiaan van der Plaat
f1ead552ce
LibWeb: Add constructor options to TextDecoder
2023-10-29 21:44:53 +01:00