Theodor Arsenij

Results 10 comments of Theodor Arsenij

http://courses.cs.vt.edu/~cs3114/Fall17/barnette/notes/Tree-Iterators.pdf

Currently I don't think that it is possible to implement such an interface. SA: https://stackoverflow.com/questions/65645904/implementing-a-custom-allocator-with-fancy-pointers

Hi! While playing with https://github.com/quarkslab/tritondse/ and an `ARM32` target I also encountered this problem. Are there any updates on implementation of these instructions?

Thanks for an answer. Got it! I've come across a couple other instructions that seem to need to be implemented as well, so I might work on this and related...

https://stackoverflow.com/questions/7464068/base-class-fields-offset

Even better - move pointer to an object inside GcPtr base class. Make `UpdatePtr` and `GetVoid` non-virtual. In the GC loop simply cast to `GcPtr` and call `UpdatePtr` on it.

Hi! I've played around with this PR and seems to have found a bug. According to [RISCV ISA manual](https://drive.google.com/file/d/1uviu1nH-tScFfgrovvFCrj7Omv8tFtkp/view) the `SLL` instruction in `RV64I` should perform a logical shift left...

@Antwy Hm, I might be wrong on this one, but I couldn't see in the code whether you handle RV32/RV64 cases differently. Because the shift amount should depend on the...

@Antwy Stumbled upon another corner-case for the `REMW` instruction: ```python from unicorn.riscv_const import * from unicorn import * from triton import * CODE_START = 0x0 def emu_unicorn(): # remw s0,...

@Antwy Found a problem with `SLLIW` instruction: ```python from unicorn.riscv_const import * from unicorn import * from triton import * CODE_START = 0x0 def emu_unicorn(): # slliw t0, s4, 0xc...