reflect IR change in the LangRef after addition on a new parameter to llvm.ptr.annotation.* and llvm.var.annotation in d3205bbca3e0002d76282878986993e7e7994779.
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
The text needs an update too. It talks about each argument but not the new one. Also, " and the last argument is the line number." is now clearly wrong.
llvm/docs/LangRef.rst | ||
---|---|---|
19804–19805 | This 'and' becomes redundant with the additional text. | |
19805 | Can you add some information about what the additional arguments are? What exactly does this point to? |
Can you add some information about what the additional arguments are? What exactly does this point to?
This is not clear from the description.
I'm not trying to be difficult, but I genuinely still don't understand the additional arguments pointer. Is it intended to allow proprietary extensions? Is there an example somewhere?
If these intrinsics are meant as a general mechanism to enable arbitrary communication between custom front ends and custom optimization passes, that's fine. I'd just like to see something explicitly explaining that.
the pointer is to a global struct containing the the provided arguments. I use it to communicate from source code to custom passes. but the front-end doesn't need to be custom. since the code to generate theses extra arguments is in clang trunk.
here is a basic example: https://godbolt.org/z/Tavcv9.
how the passes use this information is not defined it can be used for many things.
the major benefit I see is that it can pass arbitrary information and works well with template and constexpr programing. but the front-end does not do any semantic checking on the meaning of the information.
I was reminded today that this never landed and the LangRef is still wrong. Can you incorporate the explanation above about how this is used into the LangRef documentation?
This review may be stuck/dead, consider abandoning if no longer relevant.
Removing myself as reviewer in attempt to clean dashboard.