Markus Böck

Results 9 issues of Markus Böck

The format used to import citations from remote libraries into the IDE is currently hardcoded for `bibtext`. E.g. for zotero: https://github.com/Hannah-Sten/TeXiFy-IDEA/blob/5f25bc87ed7cc114ed011df4aa1ba9e2f5ce389f/src/nl/hannahsten/texifyidea/remotelibraries/zotero/ZoteroLibrary.kt#L24 It'd be nice if this was configurable to use...

enhancement

Hope I didn't miss anything in the docs, code nor other issues. I very recently started using CPM and it worked great without any troubles installing. The only slight hiccup...

### Discussed in https://github.com/zero9178/Pylir/discussions/25 Originally posted by **darleybarreto** January 19, 2023 Hi there, Is it possible to provide a pre-built wheels for Linux? They could be built and hosted here...

Following minimal test case should work after this is implemented: ```java import java.lang.invoke.*; class Test { public static native void print(String s); public static void main(String[] args) throws Throwable {...

Conformance

Having LLVM IR output be deterministic has a plethora of advantages: * it makes the LLVM IR testable * it makes the LLVM IR reproduceable * it makes the LLVM...

LLVM
JIT

Current JIT produced stack frames only display `` as function name and one has to essentially read the assembly code to figure out what it is currently doing and what...

LLVM

One way this could work is by having some kind of development tool (similar to e.g. `jllvm-jvmc`) that can be run by `lit` on an LLVM IR file that is...

GC

Our current layout for Java objects is not optimal as it lays them out in order of appearance in the class file. For a class such as: ```java public class...

optimization

See https://github.com/openjdk/jdk/blob/3f4abff59cfe3c5055f086cba969371a9812170f/src/hotspot/share/runtime/threads.cpp#L409 for C++ code and https://github.com/openjdk/jdk/blob/de7fd1c3061cfbfdbd5d7cc2b1ba0ee8d432ee0a/src/java.base/share/classes/java/lang/System.java#L2145 for the Java implementations Most importantly, it is not required to get all these things fully working nor should we directly copy the...

OpenJDK