Elena Lepilkina
416719c216
[KLIB] Removed support of pattern '<library_name>@<version>' (KT-42500 Fixed)
2021-10-06 09:34:55 +00:00
Vyacheslav Gerasimov
ab146bd6d4
Build: Fix deprecated Gradle configurations usages
...
for migration to Gradle 7+ #KTI-559
2021-09-26 18:28:44 +03:00
Roman Artemev
7d8c86caf1
[KLIB] Add API to access file's part of data as ByteArray
...
It requires for computing fingerprint of IrFile in IC infra
2021-08-24 01:09:12 +03:00
Alexander Udalov
376b420d1a
Fix warnings in JS/WASM modules
2021-08-06 22:36:22 +02:00
Roman Artemev
3403c464fe
[KLIB] Promote library ABI version
2021-07-01 17:40:39 +03:00
Roman Artemev
b8e5185b61
[KLIB] Add extra debug information for Local signatures
2021-07-01 17:40:37 +03:00
Nikolay Krasko
9d1a6ebb18
Minor: narrow extracting functions scope
2021-05-27 20:13:07 +03:00
sebastian.sellmair
22ea5c7de4
Demote fatal error to warning on unresolved libraries mentioned in Klib's manifest 'depends' for metadata compilation
...
^KT-46107
2021-04-21 20:05:55 +00:00
sebastian.sellmair
bbcfde7231
[Commonizer] Add 'commonizer_target' and 'commonizer_native_targets' to commonized klib's manifest
...
^KT-46077 Fixed
2021-04-16 14:56:31 +00:00
Alexander Udalov
168d8b07a8
Minor, fix warnings on new stdlib API
...
In modules where allWarningsAsErrors is not yet enabled.
2021-04-15 18:39:06 +02:00
Anton Bannykh
ba5582de99
IntArray and LongArray serialization
2021-04-09 19:54:14 +03:00
Dmitriy Dolovov
caee17fddb
[IR] Bump ABI version due to string serialization format change
2021-04-08 12:22:48 +03:00
Dmitriy Dolovov
1fa0ba987b
Revert "[IR] Bump ABI version due to string serialization format change"
...
This reverts commit 4df5dcdf
2021-04-08 09:46:12 +03:00
Dmitriy Dolovov
4df5dcdf75
[IR] Bump ABI version due to string serialization format change
...
^KT-33175
2021-04-08 09:40:22 +03:00
Dmitriy Dolovov
50326f019b
[IR] Use the proper encoding for string serialization
...
^KT-33175
2021-04-08 09:40:02 +03:00
Roman Artemev
d6bb1f2d4e
[KLIB] Make KotlinLibraryImpl printable
2021-02-02 12:05:34 +03:00
Roman Artemev
8bc7866f01
[KLIB] Fix klib IO when accessing parent file
2021-01-27 09:48:57 +03:00
Roman Artemev
75016bf54d
[Gradle, JS] Fix bridge between Gradle and Js IR CLI
2021-01-26 19:23:25 +03:00
Roman Artemev
37c7f60ae7
[KLIB] Fix issues between directory and .klib modes
...
- use .klib extension explicitly
- fix issue with `module.klib.klib` names
2021-01-26 19:23:23 +03:00
Roman Artemev
697d4675a2
[KLIB] Improve klib debugging implementing KotlinLibrary.toString()
2021-01-26 19:23:23 +03:00
Igor Chevdar
03693e3d5a
[klib] Optimized away some Files.exists()
2020-12-17 13:57:16 +05:00
Alexander Gorshenev
eea5a9102c
Bump klib abi version to 1.4.2 to reflect absence of serialized fake overrides
2020-11-09 16:02:14 +03:00
Alexander Gorshenev
5f2a963006
Better wording and comments for klib compatibility code
2020-11-06 16:19:43 +03:00
Alexander Gorshenev
891a4c4621
Dropped outdated klib version compatibility mechanisms
2020-11-06 16:19:43 +03:00
Alexander Gorshenev
8b2b36d61f
Enabled klib abi version compatibility
2020-11-06 16:19:42 +03:00
LepilkinaElena
ee8db2f760
Escape resolving same library several times in K/N ( #3880 )
2020-11-03 15:57:48 +03:00
Roman Artemev
a4945878aa
[KLIB] Pass containsErrorCode flag from library/IC cache into deserializer
...
- Make deserializer track whether error node are allowed.
2020-10-15 13:55:05 +03:00
Roman Artemev
28c6d17ab4
[KLIB] Mark klib that contains error with special flag
2020-10-15 13:55:05 +03:00
Alexander Udalov
a810dbb41b
IR: fix compiler warnings
2020-08-18 10:33:25 +02:00
Roman Artemev
add0ad6733
[KLIB] Change KLIB IO API
...
- Use ReadBuffer instead of native java buffer
- Use Weak buffers for File IO
- fix klib memory leak for KT-40345
2020-08-03 19:22:06 +03:00
Alexander Gorshenev
2b2fce5949
Fix for KT-37761. Don't use mmap. It causes more troubles than it produce benefits
2020-06-22 14:53:25 +03:00
Ilya Matveev
03bb9138ad
[klib] Create ZipFileSystem from a Path instead of an URI
...
Calling FileSystems.newFileSystem(URI, ...) throws a
FileSystemAlreadyExistsException if a ZipFileSystem for this
URI is already created. We still can use a single instance
of ZipFileSystem by calling FileSystems.getFileSystem. In
this case we use reference counting to determine when this
instance can be safely closed.
But we cannot count references if the same ZipFileSystem is used
from different class loaders. This patch fixes this issue by
creating a file system from Path instead of an URI. Contract of
FileSystemProvider.newFileSystem(Path, ...) doesn't imply throwing
FileSystemAlreadyExistsException.
Issue #KT-37443 fixed
2020-06-18 14:17:59 +00:00
Roman Artemev
44dfae53f0
[IR BE] Add runtime compilation benchmarks for IR JS compiler
2020-05-26 14:41:49 +03:00
Roman Artemev
e6c855111e
[KLIB] Add flag to select between per-file and monolithic layout
2020-05-26 14:41:49 +03:00
Kevin Most
4f26ac9a04
Fix "Koltin" typos throughout codebase ( #3383 )
...
* Fix "Koltin" typos throughout codebase
* Update K2MetadataKlibSerializer.kt
2020-05-20 15:12:32 +03:00
Nikolay Krasko
4230a17427
Revert "Force bootstrap stdlib in modules that used in composite build"
...
This reverts commit ad76562c
2020-04-27 15:58:38 +03:00
Nikolay Krasko
ad76562cbc
Force bootstrap stdlib in modules that used in composite build
2020-04-27 15:36:49 +03:00
Ilya Matveev
5f53986f47
[klibs] Allow resolving klibs which names are not valid file names
2020-04-19 19:08:43 +07:00
Roman Artemev
74132fbc03
[KLIB] Fix IO API
...
- Implement abstract IR raw data readers
- Add file and memory based specializations of IR data readers
2020-04-14 11:12:07 +03:00
Dmitriy Dolovov
d7226f4952
KLIB. Promote KLIB ABI version
2020-04-10 19:38:05 +07:00
Dmitriy Dolovov
101442ad14
KLIB: Store native targets in manifest
2020-04-10 19:33:27 +07:00
Dmitriy Dolovov
1b06256650
KLIB: Add 'native_targets' manifest property
2020-04-10 19:33:19 +07:00
Ilya Matveev
ba6ca67e4f
[Commonizer] Support short library names
2020-04-09 13:07:43 +07:00
Ilya Matveev
343e8c6f84
[KLIB] Add short_name to klib manifest
...
Fixes for KT-36720 and KT-36721 change a scheme that is used to generate
unique names for klibs: now we use "fully qualified" names that
include a group and a name of a library (e.g. org.jetbrains.kotlin.
native.posix).
But in some cases we still need short library names for Kotlin/Native.
For example to display platform libs in the IDE or to export some
symbols of a library to an ObjC framework.
This patch introduces a corresponding property to klib manifest.
2020-04-09 13:07:42 +07:00
Ilya Matveev
f7f7d237e0
[KLIB] Support unpacked klibs with dots in names in ToolingResolve
2020-04-07 12:47:54 +07:00
Dmitriy Dolovov
4c6bddf6be
KLIB: Fix reading property lists in Properties.propertyList()
...
1. If property is absent, or contains empty string or a string consisting only of whitespace characters, Properties.propertyList() should always return empty List<String>.
2. If property starts or ends with whitespace characters, Properties.propertyList() should not include empty-string values for whitespace prefix or suffix.
2020-04-06 21:36:26 +07:00
Dmitry Savvinov
6ccb8cd0a3
Properly check platform of klib by reading manifest
2020-03-23 15:38:11 +07:00
Sergey Bogolepov
e919e7b79a
[Gradle][Native][Cache] Don't skip metadata-based interop libraries
...
`resolveSingleFileKlib` by default doesn't support klibs with
non-default ir providers. In case of cache generation for native interop
libraries we need to override this behavior because they have
ir_provider=kotlin.native.cinterop.
2020-03-12 18:11:47 +07:00
Alexander Gorshenev
b06a3ea5ac
Print out abi version as a full triple
2020-03-10 12:06:59 +03:00
Alexander Gorshenev
a635748848
Provide library producer compiler version in klib abi mismatch disagnostics
2020-03-10 12:06:59 +03:00