search for: pw_aff

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

Did you mean: pw_affs
2020 Jul 02
2
[RFC] Compiled regression tests.
On 7/2/20 12:44 AM, Michael Kruse wrote: > Am Mi., 1. Juli 2020 um 14:36 Uhr schrieb Hal Finkel <hfinkel at anl.gov>: >> When I teach my compilers class, I tell my students to liberally add the >> ability to serialize to interpretable text all of their internal data >> structures. It will seem like extra work at first, but when they're >> trying to debug things
2015 Sep 23
4
Find loops in LLVM bytecode
Hi, I want to find simple loops in LLVM bytecode, and extract the basic information of the loop. For example: for (i=0; i<1000; i++) sum += i; I want to extract the bound [0, 1000), the loop variable "i" and the loop body (sum += i). What should I do? I read the LLVM API document, and find some useful classes like "Loop", "LoopInfo". But I do