2020-06-21 16:23:50 +03:00
|
|
|
# AST-based expression representation and operations (`kmath-ast`)
|
2020-06-15 11:02:13 +03:00
|
|
|
|
2020-06-21 16:23:50 +03:00
|
|
|
This subproject implements the following features:
|
|
|
|
|
|
|
|
- Expression Language and its parser.
|
|
|
|
- MST as expression language's syntax intermediate representation.
|
|
|
|
- Type-safe builder of MST.
|
|
|
|
- Evaluating expressions by traversing MST.
|
|
|
|
|
|
|
|
## Dynamic expression code generation with OW2 ASM
|
|
|
|
|
|
|
|
`kmath-ast` JVM module supports runtime code generation to eliminate overhead of tree traversal. Code generator builds
|
|
|
|
a special implementation of `Expression<T>` with implemented `invoke` function.
|
|
|
|
|
|
|
|
For example, the following builder:
|
|
|
|
|
|
|
|
```kotlin
|
|
|
|
RealField.mstInField { symbol("x") + 2 }.compile()
|
|
|
|
```
|
|
|
|
|
|
|
|
… leads to generation of bytecode, which can be decompiled to the following Java class:
|
|
|
|
|
|
|
|
```java
|
|
|
|
package scientifik.kmath.asm.generated;
|
|
|
|
|
|
|
|
import java.util.Map;
|
2020-06-26 12:05:13 +03:00
|
|
|
import scientifik.kmath.asm.internal.MapIntrinsics;
|
2020-06-25 06:07:36 +03:00
|
|
|
import scientifik.kmath.expressions.Expression;
|
2020-06-21 16:23:50 +03:00
|
|
|
import scientifik.kmath.operations.RealField;
|
|
|
|
|
2020-06-25 06:07:36 +03:00
|
|
|
public final class AsmCompiledExpression_1073786867_0 implements Expression<Double> {
|
|
|
|
private final RealField algebra;
|
|
|
|
private final Object[] constants;
|
|
|
|
|
|
|
|
public AsmCompiledExpression_1073786867_0(RealField algebra, Object[] constants) {
|
|
|
|
this.algebra = algebra;
|
|
|
|
this.constants = constants;
|
2020-06-21 16:23:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public final Double invoke(Map<String, ? extends Double> arguments) {
|
2020-06-26 12:05:13 +03:00
|
|
|
return (Double)this.algebra.add(((Double)MapIntrinsics.getOrFail(arguments, "x", (Object)null)).doubleValue(), 2.0D);
|
2020-06-21 16:23:50 +03:00
|
|
|
}
|
|
|
|
}
|
2020-06-26 12:05:13 +03:00
|
|
|
|
2020-06-21 16:23:50 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
### Example Usage
|
|
|
|
|
|
|
|
This API is an extension to MST and MSTExpression APIs. You may optimize both MST and MSTExpression:
|
|
|
|
|
|
|
|
```kotlin
|
|
|
|
RealField.mstInField { symbol("x") + 2 }.compile()
|
2020-06-25 15:29:31 +03:00
|
|
|
RealField.expression("x+2".parseMath())
|
2020-06-21 16:23:50 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
### Known issues
|
|
|
|
|
|
|
|
- The same classes may be generated and loaded twice, so it is recommended to cache compiled expressions to avoid
|
|
|
|
class loading overhead.
|
|
|
|
- This API is not supported by non-dynamic JVM implementations (like TeaVM and GraalVM) because of using class loaders.
|
|
|
|
|
|
|
|
Contributed by [Iaroslav Postovalov](https://github.com/CommanderTvis).
|