search for: jvstech

Displaying 2 results from an estimated 2 matches for "jvstech".

Did you mean: jttech
2020 Jul 31
2
What is the "correct" way to add a print pass in the NPM ?
Hi, I'm interested in the sort of pass where you write `-passes=print<pass-name>` and it calls the `print()` function of the pass. I have seen some other passes that can invoke `-passes=print<>` but the implementation seems to be in the wrapper pass for the old pass manager. Thanks, Stefanos Baziotis -------------- next part -------------- An HTML attachment was scrubbed... URL:
2019 Jan 20
2
Basic Blocks of a Function called inside Loop
Hello, I have written pass to know basic blocks inside loops.. But for eg a function is called inside loop then all its basic block are also considered part of the loop... I am unable to detect that... How to do so? BB0.....if BB0 is part of Func0 and Func0 is called inside loop (L1) with 10 iterations then BB0 will be executed 10 times... How to detect in LLVM pass that BB0 is inside loop L1?