River Riddle

Results 34 comments of River Riddle

Debugging is not yet fully released as part of the SDK, but is coming very soon! @walter-erquinigo

woof, thanks for filing! We'll take a look at the stripping flags in binary generation

Yep, this should be fixed now! Please re-open if you still see if you see this again!

Yeah, we may have some symbols that could still be stripped further, we'll need to investigate which symbols those are exactly. I marked this as fixed for the original underlying...

Thanks everyone for filing the issues! We'll be digging into this soon, seems to be some very overly aggressive in-memory caching.

Thanks for filing this! These are definitely on the roadmap to add, we'll use this issue to track when those get covered.

@bondhugula What benefit does computing on an Operation with zero results have? @dfki-mako Without looking at how you intend to implement it(and/or use it) I don't have too many comments...

Ohh sorry, I missed the comment. At least for register allocation, you want the ranges of the program that a value is live and don't necessarily work at a per-op...

The location difference is to be expected because the ast.toy in the test directory has two additional lines to account for the lit test RUN line. The example in Ch-1.md...

This is c++ visibility rules, it has nothing to do with interfaces. What you are encountering is essentially: unsigned computeSomeProperty(Operation *opaque_op) { auto op = cast(opaque_op); return computeSomeProperty(op); } You...