Anatoly Trosinenko
Anatoly Trosinenko
When the computer is suspended during a fuzzing session, the time spent in suspended state is counted as a "run time" on a statistics screen. In case fuzzing was running...
At least for some types of ScalaFX properties operations such as `+=` does not work while manually rewriting the assignment works well. # How to reproduce Tested on Scala 2.12.3:...
Supposing reading JSON is a slow path only executed during an initialization of an FMU that can crash the entire process loading an FMU while decimal separator is not a...
This PR implements merely a heuristic for annotation detection that works in common cases, though it should be helpful enough. For now, it lacks actual annotations and their descriptions that...
Change return and revert instructions to either accept jump target or register operand, but not both at the same time. Change panic instruction to either accept jump target operand or...
Make NOP support the remaining combinations of operands. Reorganize the tests: add `nop.(s|txt)` test files similar to those for arithmetic instructions, put the test cases for `nop`, `incsp` and `decsp`...
The spec describes NOP encoding mostly similar to arithmetic instructions, except for no modifiers: ``` OpNoOp src dst ⇒ 1 + 4 × src + 1 × dst ``` that...
At now, most instructions are supported with _some_ mnemonic, but these mnemonics can differ in the public specification, pre-existing code (LLVM backend and standalone assembler) and possibly the updated spec....
Check `getCCCode`, `isPredicated`, etc. functions because instruction predication was reworked as part of implementing the asm parser.