Andrey Zinovyev
d8b7b7b2dc
[FIR] Add DECLARATION_CANT_BE_INLINED diagnostic
2021-08-04 17:33:09 +03:00
Andrey Zinovyev
4e06814bc5
[FIR] Add NULLABLE_INLINE_PARAMETER diagnostic
2021-08-04 17:33:08 +03:00
Andrey Zinovyev
015c2d1875
[FIR] Add NOTHING_TO_INLINE diagnostic
2021-08-04 17:33:08 +03:00
Andrey Zinovyev
28344c8530
[FIR] Add NOT_YET_SUPPORTED_IN_INLINE diagnostic
2021-08-04 17:33:07 +03:00
Denis.Zharkov
bc75a21852
Optimize Strings representation at FastJarHandler
2021-08-04 17:04:50 +03:00
Denis.Zharkov
4e66fd29e0
Minor. Rename properties in FastJarVirtualFile
2021-08-04 17:04:49 +03:00
Denis.Zharkov
6cd3d84e74
Optimize parseCentralDirectory
...
Avoid creating redundant IntRange
2021-08-04 17:04:47 +03:00
Denis.Zharkov
f81f28569f
Get rid of last map in FastJarHandler
2021-08-04 17:04:44 +03:00
Igor Laevsky
d46f7738c6
WASM: NFC. Add reference to the asmscript license
2021-08-04 16:23:39 +03:00
Igor Laevsky
d8569b6a03
WASM: NFC. Remove dead code
2021-08-04 16:23:38 +03:00
Igor Laevsky
af865544ff
WASM: Implement string hashcode
2021-08-04 16:23:38 +03:00
Igor Laevsky
c526145a48
WASM: Disable bunch of tests which expose the same issue after switch to the wasm native strings
2021-08-04 16:23:37 +03:00
Igor Laevsky
80140207b5
WASM: Properly handle nullable exported strings
2021-08-04 16:23:36 +03:00
Igor Laevsky
468fe4196d
WASM: Implement string.compareTo and string.subSequence
2021-08-04 16:23:35 +03:00
Igor Laevsky
0eba74a9d2
WASM: Impelment float to string conversion operations
2021-08-04 16:23:32 +03:00
Igor Laevsky
f34a079699
WASM: Implement integer to string conversion operations
2021-08-04 16:23:32 +03:00
Igor Laevsky
2538caa84f
WASM: NFC. Rename string import/export functions
2021-08-04 16:23:31 +03:00
Igor Laevsky
ebde1e5491
WASM: Crude println implementation with the wasm-native strings
2021-08-04 16:23:30 +03:00
Igor Laevsky
fc0ae851a2
WASM: Don't special case string equality, it now goes through normal .equals method
2021-08-04 16:23:29 +03:00
Igor Laevsky
d90e3618f9
WASM: NFC. Rename WasmReinterpret into WasmNoOpCast.
2021-08-04 16:23:28 +03:00
Igor Laevsky
0f84525bdc
WASM: Implement wasm-native strings part 1
...
There are several changes here but they all required for at least one test to pass.
- Implemented String class and several utility functions using built-in CharArray
- Added new constant memory segment to hold string literals and required funcs to work with them
- Added very crude mostly incorrect rudimentary ability to pass strings back to javascript
2021-08-04 16:23:28 +03:00
Igor Laevsky
9ccdffe8ad
WASM: NFC. Rename WasmPrimitive into WasmAutoboxed and add few comments.
2021-08-04 16:23:27 +03:00
Jinseong Jeon
59ad7e0e04
FIR IDE: create call target for super reference
2021-08-04 15:10:04 +02:00
Jinseong Jeon
c597ee0e34
FIR IDE: fix kotlin origin of annotation call
2021-08-04 15:10:03 +02:00
Jinseong Jeon
c559adc0fb
FIR IDE: render list of symbols with indentation
...
Also, render `psi` of annotation call
(to showcase they're always null for now)
2021-08-04 15:10:02 +02:00
Jinseong Jeon
5b40f291bd
FIR IDE: resolve KtTypeReference from super type entry to KtType
...
which will be mapped to delegated constructor call where we can still
find the referred type.
2021-08-04 15:09:58 +02:00
Jinseong Jeon
d4e1ecd9d3
FIR IDE: fix scope processing for enum entry with members
2021-08-04 15:09:57 +02:00
Stanislav Erokhin
748a2d2e7c
[MPP] Performance optimization in expect/actual checker
...
Previously, the checker executed for every declaration i.e. every
declaration was considered as expect declaration. Because of that in
some cases this checker could eat 6% of compilation time.
After this commit only declarations marked with expect or actual
are checked. To achieve that, logic, that do reporting about missing
actual modifier was moved to the Actual part.
Please note, that in cases where there is no expect/actual modifier at
all other errors (like redeclaration and missing body on "actual"
declaration) would be reported.
Useful nodes:
- In this checker reportOn is always the same as
descriptor.sourceElement.ktElement. This is because the only case when
it isn't true is PropertyAccessors and they are filtered
- Annotation constructor descriptor isActual == true all the time
- previously for weak incompatible members ACTUAL_MISSING
was not reported
- the logic here is super complicated and crazy, but I don't think that
there is sense to refactor it in the old FE
2021-08-04 15:19:34 +03:00
Stanislav Erokhin
e9a2997f7e
Minor refactoring -- use util function
2021-08-04 15:19:32 +03:00
Andrey Zinovyev
cea6081d36
[FIR] LT positioning strategy for UNREACHABLE_CODE
2021-08-04 14:42:24 +03:00
Andrey Zinovyev
ec4cbfef59
[FIR] UNREACHABLE_CODE diagnostic (wip)
...
Implementation for PSI only
2021-08-04 14:42:24 +03:00
Elena Lepilkina
dcd61c292d
[K/N][perf] Fix kotlin language version in kotlin-dsl plugin for performance subproject
2021-08-04 10:39:53 +00:00
Sergey Bogolepov
d5e2ac0efc
Fix KotlinLibraryResolverImpl.kt on Windows
...
`absoluteFile` is not enough to make path unique. For example, it doesn't
expand things like '..' and 'IDEAPR~1' on Windows. `canonicalFile` seems
to solve the problem.
2021-08-04 05:44:27 +00:00
Ivan Kochurkin
3c3e51c6de
[FIR] Temporary change TYPE_VARIANCE_CONFLICT to warning to unblock bootstrap tests
2021-08-04 01:04:22 +03:00
Ivan Kochurkin
5291648d39
[FIR] Temporary change UPPER_BOUND_VIOLATED to warning to unblock bootstrap tests
2021-08-03 23:15:40 +03:00
Dmitry Petrov
bd71fbe982
JVM_IR KT-34594 strip fake variable initialization during inlining
2021-08-03 20:41:31 +03:00
Dmitry Petrov
37050e0616
JVM_IR KT-34594 don't generate fake local variable for @InlineOnly
2021-08-03 20:41:31 +03:00
Simon Ogorodnik
32b380e187
[FP] Fix compiler arguments for intellij-community building
2021-08-03 19:52:23 +03:00
Simon Ogorodnik
872b6b7e81
[FE 1.0 FP] Fix compiler arguments to avoid errors
2021-08-03 19:52:23 +03:00
Simon Ogorodnik
a7961a4a45
[FIR MT] Add reading of packagePrefix from model of java roots
2021-08-03 19:52:22 +03:00
Simon Ogorodnik
97bfc49ed6
[FIR Test] Fix file counting for global passes
2021-08-03 19:52:21 +03:00
Simon Ogorodnik
1188d311b3
[FIR MT] Add sorting by timestamp from model, reading of modularJdkRoot
2021-08-03 19:52:20 +03:00
Mikhail Glukhikh
77f0bd3834
FirOuterClassArgumentsRequiredChecker: read containingClass safely
2021-08-03 19:52:18 +03:00
Nikolay Krasko
bb718f2e0b
Allow reading signing parameters from environment variables (KTI-552)
2021-08-03 17:54:09 +03:00
Denis.Zharkov
fa9f0d588d
Optimize FastJarHandler
...
- Do not use normalization as it seems unnecessary
2021-08-03 16:24:51 +03:00
Denis.Zharkov
2266a348c3
Get rid of another map built in FastJarHandler
2021-08-03 16:24:50 +03:00
Denis.Zharkov
42b2605c2a
Minor. Rename local vals
2021-08-03 16:24:50 +03:00
Denis.Zharkov
1a262c9c31
Adapt FastJarVirtualFile constructor to its usages
2021-08-03 16:24:49 +03:00
Denis.Zharkov
920d57563b
Add fast-path for filename String creation
...
In most cases, it's encoded with ASCI
2021-08-03 16:24:48 +03:00
Denis.Zharkov
cd51264940
Avoid using FactoryMap at FastJarHandler
...
It has quite a slow entrySet implementation
2021-08-03 16:24:48 +03:00