search for: 126504

Displaying 3 results from an estimated 3 matches for "126504".

Did you mean: 12504
2020 Jul 14
3
[RFC] Introducing classes for the codegen driven by new pass manager
...ject to pass > ordering. Currently, a pass either define this or (1), but not both. > > (doInitialization/doFinalization is currently not supported by the NPM > optimizer pipeline because there is no real need for it. > http://lists.llvm.org/pipermail/llvm-dev/2018- > September/126504.html) > > > Are doInitialization/doFinalization really necessary? As mentioned in the > previous discussion, it seems like usually the things in > doInitialization/doFinalization are not logically in the right place. > For example, maybe PrintMIRPass should just be a module pass...
2020 Jul 11
2
[RFC] Introducing classes for the codegen driven by new pass manager
...bal scope. It is like (1) but subject to pass ordering. Currently, a pass either define this or (1), but not both. (doInitialization/doFinalization is currently not supported by the NPM optimizer pipeline because there is no real need for it. http://lists.llvm.org/pipermail/llvm-dev/2018-September/126504.html) * Goal-2 * https://reviews.llvm.org/D67687 Unlike IR where `has-a` relationship exists among module/function/loop/cgscc etc., the MIR does not have `has-a` relationship with any kind of IR. It does have a one-on-one relationship with IR function. So, transforming MIR does not change any IR...
2020 Jul 14
4
[RFC] Introducing classes for the codegen driven by new pass manager
...s or (1), but not both. >> > >> > (doInitialization/doFinalization is currently not supported by >> the NPM >> > optimizer pipeline because there is no real need for it. >> > http://lists.llvm.org/pipermail/llvm-dev/2018- >> > September/126504.html) >> > >> > >> > Are doInitialization/doFinalization really necessary? As mentioned in >> the >> > previous discussion, it seems like usually the things in >> > doInitialization/doFinalization are not logically in the right place. >> >...