Merge remote-tracking branch 'upstream/main'

This commit is contained in:
static
2025-04-28 10:54:27 +00:00
372 changed files with 2529 additions and 1760 deletions

34
bench/LICENSE Normal file
View File

@@ -0,0 +1,34 @@
The following files are distributed under the following license with modifications.
* median.c
* multiply.c
* qsort.c
* rsort.c
* spmv.c
* towers.c
* vvadd.c
Copyright (c) 2012-2015, The Regents of the University of California (Regents).
All Rights Reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the Regents nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,
SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING
OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS
BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED
HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE
MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.

View File

@@ -12,6 +12,13 @@ namespace model {
#include <two_dimension_array.c> #include <two_dimension_array.c>
#include <matrix.c> #include <matrix.c>
#include <graph.c> #include <graph.c>
#include <median.c>
#include <multiply.c>
#include <qsort.c>
#include <rsort.c>
#include <spmv.c>
#include <towers.c>
#include <vvadd.c>
} }
extern "C" { extern "C" {
@@ -28,6 +35,14 @@ extern "C" {
int matrix_add(int, int); int matrix_add(int, int);
int graph_dijkstra(int, int); int graph_dijkstra(int, int);
int graph_floyd_warshall(int, int); int graph_floyd_warshall(int, int);
// From riscv-tests
int run_median(int, int);
int run_multiply(int, int);
int run_qsort(int, int);
int run_rsort(int, int);
int run_spmv(int, int);
int run_towers(int, int);
int run_vvadd(int, int);
} }
namespace { namespace {
@@ -80,6 +95,13 @@ int main() {
cycles.push_back(evaluate("matrix_add", 30, matrix_add, model::matrix_add)); cycles.push_back(evaluate("matrix_add", 30, matrix_add, model::matrix_add));
cycles.push_back(evaluate("graph_dijkstra", 1000, graph_dijkstra, model::graph_dijkstra)); cycles.push_back(evaluate("graph_dijkstra", 1000, graph_dijkstra, model::graph_dijkstra));
cycles.push_back(evaluate("graph_floyd_warshall", 200, graph_floyd_warshall, model::graph_floyd_warshall)); cycles.push_back(evaluate("graph_floyd_warshall", 200, graph_floyd_warshall, model::graph_floyd_warshall));
cycles.push_back(evaluate("median", -1, run_median, model::run_median));
cycles.push_back(evaluate("mutiply", -1, run_multiply, model::run_multiply));
cycles.push_back(evaluate("qsort", -1, run_qsort, model::run_qsort));
cycles.push_back(evaluate("rsort", -1, run_rsort, model::run_rsort));
cycles.push_back(evaluate("spmv", -1, run_spmv, model::run_spmv));
cycles.push_back(evaluate("towers", -1, run_towers, model::run_towers));
cycles.push_back(evaluate("vvadd", -1, run_vvadd, model::run_vvadd));
} }
// Calculates the geometric mean. // Calculates the geometric mean.

70
bench/median.c Normal file
View File

@@ -0,0 +1,70 @@
//**************************************************************************
// Median filter bencmark
//--------------------------------------------------------------------------
//
// This benchmark performs a 1D three element median filter.
int input_median[400];
int results_median[400];
void median_data_init(int nonce) {
int i;
int x = nonce;
for (i = 0; i < 400; i++) {
x = (x * 97 + 17) % 1000;
input_median[i] = x;
}
}
void median(int n, int input[400], int results[400]) {
int A, B, C, i;
// Zero the ends
results[0] = 0;
results[n - 1] = 0;
// Do the filter
for (i = 1; i < (n - 1); i++) {
A = input[i - 1];
B = input[i];
C = input[i + 1];
if (A < B) {
if (B < C)
results[i] = B;
else if (C < A)
results[i] = A;
else
results[i] = C;
}
else {
if (A < C)
results[i] = A;
else if (C < B)
results[i] = B;
else
results[i] = C;
}
}
}
int verify_median(int n, int* test) {
int i;
int result = 0;
for (i = 0; i < n; i++) {
int v = test[i];
result += v;
}
return result;
}
int run_median(int dummy_0, int nonce) {
median_data_init(nonce);
median(400, input_median, results_median);
return verify_median(400, results_median);
}

65
bench/multiply.c Normal file
View File

@@ -0,0 +1,65 @@
// *************************************************************************
// multiply filter bencmark
// -------------------------------------------------------------------------
//
// This benchmark tests the software multiply implemenation.
int input1_multiply[100];
int input2_multiply[100];
int results_multiply[100];
void multiply_data_init(int nonce) {
int i;
int x = nonce;
int y = nonce;
for (i = 0; i < 100; i++) {
x = (x * 97 + 17) % 10009;
y = (y * 17 + 23) % 10007;
input1_multiply[i] = x;
input2_multiply[i] = y;
}
}
int multiply(int x, int y) {
int i;
int result = 0;
for (i = 0; i < 32; i++) {
if ((x & 0x1) == 1)
result = result + y;
x = x >> 1;
y = y << 1;
}
return result;
}
int verify_multiply(int n, int* test) {
int i;
int result = 0;
for (i = 0; i < n; i++) {
int t0 = input1_multiply[i];
int t1 = input2_multiply[i];
int v = results_multiply[i];
if (t0 * t1 != v)
return 1;
result += v;
}
return result;
}
int run_multiply(int dummy_0, int nonce) {
int i;
multiply_data_init(nonce);
for (i = 0; i < 100; i++) {
results_multiply[i] = multiply(input1_multiply[i], input2_multiply[i]);
}
return verify_multiply(100, results_multiply);
}

129
bench/qsort.c Normal file
View File

@@ -0,0 +1,129 @@
//**************************************************************************
// Quicksort benchmark
//--------------------------------------------------------------------------
//
// This benchmark uses quicksort to sort an array of integers. The
// implementation is largely adapted from Numerical Recipes for C.
int input_qsort_data[16384];
void qsort_data_init(int nonce) {
int i;
int x = nonce;
for (i = 0; i < 16384; i++) {
x = (x * 97 + 17) % 100000009;
input_qsort_data[i] = x;
}
}
void swap(int* a, int* b) {
int temp = *a;
*a = *b;
*b = temp;
}
void swap_if_greater(int* a, int* b) {
if (*a > *b)
swap(a, b);
}
void insertion_sort(int n, int* arr) {
int i, j;
int value;
for (i = 1; i < n; i++) {
value = arr[i];
j = i;
while (value < arr[j - 1]) {
arr[j] = arr[j - 1];
if (--j == 0)
break;
}
arr[j] = value;
}
}
void qsort(int n, int arr[16384]) {
int ir = n;
int l = 1;
int stack[50];
int stackp = 0;
for (;;) {
// Insertion sort when subarray small enough.
if (ir - l < 10) {
insertion_sort(ir - l + 1, &arr[l - 1]);
if (stackp == 0)
break;
// Pop stack and begin a new round of partitioning.
ir = stack[stackp--];
l = stack[stackp--];
} else {
// Choose median of left, center, and right elements as
// partitioning element a. Also rearrange so that a[l-1] <= a[l] <= a[ir-].
swap(&arr[(l + ir) / 2 - 1], &arr[l]);
swap_if_greater(&arr[l - 1], &arr[ir - 1]);
swap_if_greater(&arr[l], &arr[ir - 1]);
swap_if_greater(&arr[l - 1], &arr[l]);
// Initialize pointers for partitioning.
int i = l + 1;
int j = ir;
// Partitioning element.
int a = arr[l];
for (;;) { // Beginning of innermost loop.
while (arr[i++] < a)
; // Scan up to find element > a.
while (arr[(j-- - 2)] > a)
; // Scan down to find element < a.
if (j < i)
break; // Pointers crossed. Partitioning complete.
swap(&arr[i - 1], &arr[j - 1]); // Exchange elements.
} // End of innermost loop.
// Insert partitioning element.
arr[l] = arr[j - 1];
arr[j - 1] = a;
stackp += 2;
// Push pointers to larger subarray on stack,
// process smaller subarray immediately.
if (ir - i + 1 >= j - l) {
stack[stackp] = ir;
stack[stackp - 1] = i;
ir = j - 1;
} else {
stack[stackp] = j - 1;
stack[stackp - 1] = l;
l = i;
}
}
}
}
int verify_qsort(int n, int* test) {
int i;
int result = 0;
for (i = 0; i < n - 1; i++) {
int t0 = test[i], t1 = test[i + 1];
if (t0 > t1)
return 1;
result += t0;
}
return result;
}
int run_qsort(int dummy_0, int nonce) {
qsort_data_init(nonce);
qsort(16384, input_qsort_data);
return verify_qsort(16384, input_qsort_data);
}

117
bench/rsort.c Normal file
View File

@@ -0,0 +1,117 @@
//**************************************************************************
// Radix Sort benchmark
//--------------------------------------------------------------------------
//
// This benchmark uses radix sort to sort an array of integers. The
// implementation is largely adapted from Numerical Recipes for C.
int input_rsort_data[2048];
void rsort_data_init(int nonce) {
int i;
int x = nonce;
for (i = 0; i < 2048; i++) {
x = (x * 97 + 17) % 10000007;
input_rsort_data[i] = x;
}
}
int fetch_add(int* ptr, int inc) {
return (*ptr += inc) - inc;
}
void memcpy_int(int* dest, int* src, int size) {
int i;
for (i = 0; i < size; i++) {
dest[i] = src[i];
}
}
int bucket[256];
void rsort(int n, int* arrIn, int* scratchIn) {
int log_exp = 0;
int *arr = arrIn, *scratch = scratchIn;
int p;
int b;
while (log_exp < 8 * sizeof(int)) {
for (b = 0; b < (1 << 8); b++)
bucket[b] = 0;
for (p = 0; p < n - 3; p += 4) {
int a0 = arr[p + 0];
int a1 = arr[p + 1];
int a2 = arr[p + 2];
int a3 = arr[p + 3];
fetch_add(&bucket[(a0 >> log_exp) % (1 << 8)], 1);
fetch_add(&bucket[(a1 >> log_exp) % (1 << 8)], 1);
fetch_add(&bucket[(a2 >> log_exp) % (1 << 8)], 1);
fetch_add(&bucket[(a3 >> log_exp) % (1 << 8)], 1);
}
for (; p < n; p++)
bucket[(arr[p] >> log_exp) % (1 << 8)]++;
int prev = bucket[0];
prev += fetch_add(&bucket[1], prev);
for (b = 2; b < (1 << 8); b += 2) {
prev += fetch_add(&bucket[b + 0], prev);
prev += fetch_add(&bucket[b + 1], prev);
}
for (p = n - 1; p >= 3; p -= 4) {
int a0 = arr[p - 0];
int a1 = arr[p - 1];
int a2 = arr[p - 2];
int a3 = arr[p - 3];
int* pb0 = &bucket[(a0 >> log_exp) % (1 << 8)];
int* pb1 = &bucket[(a1 >> log_exp) % (1 << 8)];
int* pb2 = &bucket[(a2 >> log_exp) % (1 << 8)];
int* pb3 = &bucket[(a3 >> log_exp) % (1 << 8)];
int s0 = fetch_add(pb0, -1);
int s1 = fetch_add(pb1, -1);
int s2 = fetch_add(pb2, -1);
int s3 = fetch_add(pb3, -1);
scratch[s0 - 1] = a0;
scratch[s1 - 1] = a1;
scratch[s2 - 1] = a2;
scratch[s3 - 1] = a3;
}
for (; p >= 0; p--)
scratch[--bucket[(arr[p] >> log_exp) % (1 << 8)]] = arr[p];
int* tmp = arr;
arr = scratch;
scratch = tmp;
log_exp += 8;
}
if (arr != arrIn)
memcpy_int(arr, scratch, n);
}
int verify_rsort(int n, int* test) {
int i;
int result = 0;
for (i = 0; i < n - 1; i++) {
int t0 = test[i], t1 = test[i + 1];
if (t0 > t1)
return 1;
result += t0;
}
return result;
}
int scratch[2048];
int run_rsort(int dummy_0, int nonce) {
rsort_data_init(nonce);
rsort(2048, input_rsort_data, scratch);
return verify_rsort(2048, input_rsort_data);
}

90
bench/spmv.c Normal file
View File

@@ -0,0 +1,90 @@
//**************************************************************************
// Double-precision sparse matrix-vector multiplication benchmark
//--------------------------------------------------------------------------
double val[2399];
int idx[2399];
double x[500];
int ptr[501] = {
0, 4, 8, 10, 15, 22, 29, 33, 34, 36, 39, 44, 44, 47, 55, 61, 66, 68, 75, 82, 86, 91, 98, 104, 109, 113, 126, 131, 134,
136, 143, 153, 159, 168, 170, 174, 176, 180, 187, 192, 198, 200, 204, 211, 213, 222, 225, 228, 233, 241, 247, 253, 256,
262, 264, 270, 274, 277, 283, 288, 294, 301, 307, 312, 315, 319, 325, 329, 332, 338, 340, 342, 348, 353, 359, 362, 366,
368, 374, 387, 393, 400, 403, 406, 412, 420, 425, 428, 433, 441, 442, 448, 456, 462, 468, 469, 477, 479, 485, 490, 495,
501, 508, 513, 518, 524, 532, 535, 538, 542, 546, 552, 561, 563, 567, 571, 574, 576, 581, 584, 588, 592, 593, 597, 599,
607, 612, 615, 619, 626, 633, 640, 646, 650, 653, 659, 665, 670, 673, 678, 685, 691, 697, 703, 708, 712, 717, 719, 722,
725, 732, 736, 738, 742, 747, 753, 757, 763, 767, 769, 769, 777, 780, 784, 790, 797, 807, 810, 813, 815, 817, 822, 829,
830, 835, 844, 848, 851, 854, 862, 864, 873, 876, 881, 884, 888, 895, 899, 901, 904, 908, 912, 919, 927, 931, 937, 941,
944, 948, 950, 955, 960, 963, 970, 975, 979, 983, 985, 992, 993, 998, 1001, 1008, 1012, 1014, 1018, 1023, 1030, 1036,
1040, 1045, 1052, 1058, 1061, 1066, 1069, 1071, 1077, 1080, 1084, 1087, 1090, 1092, 1095, 1100, 1102, 1110, 1117, 1122,
1130, 1133, 1138, 1142, 1144, 1146, 1153, 1158, 1160, 1167, 1172, 1176, 1179, 1183, 1188, 1191, 1193, 1196, 1204, 1210,
1216, 1219, 1221, 1225, 1229, 1234, 1236, 1239, 1244, 1248, 1253, 1256, 1264, 1268, 1271, 1272, 1275, 1278, 1284, 1287,
1291, 1296, 1300, 1304, 1306, 1313, 1317, 1322, 1326, 1332, 1336, 1344, 1349, 1356, 1363, 1368, 1369, 1378, 1381, 1385,
1388, 1395, 1399, 1407, 1414, 1422, 1425, 1433, 1435, 1438, 1439, 1445, 1448, 1450, 1453, 1456, 1470, 1472, 1475, 1481,
1487, 1491, 1494, 1497, 1498, 1503, 1507, 1513, 1517, 1524, 1529, 1534, 1542, 1547, 1550, 1550, 1552, 1553, 1556, 1559,
1563, 1571, 1577, 1580, 1585, 1590, 1594, 1598, 1600, 1602, 1610, 1615, 1620, 1628, 1634, 1637, 1649, 1652, 1656, 1662,
1664, 1670, 1674, 1678, 1687, 1697, 1704, 1709, 1715, 1720, 1725, 1728, 1736, 1740, 1747, 1750, 1754, 1760, 1763, 1765,
1773, 1781, 1783, 1788, 1795, 1802, 1810, 1815, 1820, 1824, 1829, 1836, 1839, 1843, 1847, 1849, 1854, 1859, 1863, 1873,
1880, 1882, 1891, 1895, 1899, 1904, 1909, 1914, 1919, 1923, 1927, 1932, 1938, 1943, 1949, 1954, 1960, 1965, 1968, 1974,
1980, 1983, 1990, 1992, 1995, 2002, 2011, 2017, 2024, 2028, 2035, 2037, 2048, 2055, 2063, 2067, 2069, 2078, 2081, 2085,
2086, 2090, 2097, 2101, 2107, 2110, 2112, 2116, 2119, 2122, 2129, 2136, 2143, 2146, 2156, 2162, 2171, 2175, 2179, 2186,
2189, 2194, 2198, 2206, 2211, 2215, 2222, 2228, 2237, 2241, 2245, 2256, 2259, 2269, 2272, 2275, 2278, 2279, 2281, 2287,
2292, 2297, 2304, 2311, 2316, 2319, 2322, 2327, 2333, 2340, 2343, 2345, 2350, 2358, 2365, 2365, 2368, 2373, 2379, 2388,
2394, 2399};
void spmv_init(int nonce) {
int i;
int t1 = nonce;
int t2 = nonce;
for (i = 0; i < 2399; i++) {
t1 = (t1 * 97 + 17) % 1000;
t2 = (t2 * 17 + 23) % 500;
val[i] = (double) t1;
idx[i] = t2;
}
for (i = 0; i < 500; i++) {
t1 = (t1 * 17 + 23) % 1000;
x[i] = (double) t1;
}
}
void spmv(int r, double* val, int* idx, double* x, int* ptr, double* y) {
int i;
for (i = 0; i < r; i++) {
int k;
double yi0 = 0, yi1 = 0, yi2 = 0, yi3 = 0;
for (k = ptr[i]; k < ptr[i + 1] - 3; k += 4) {
yi0 += val[k + 0] * x[idx[k + 0]];
yi1 += val[k + 1] * x[idx[k + 1]];
yi2 += val[k + 2] * x[idx[k + 2]];
yi3 += val[k + 3] * x[idx[k + 3]];
}
for (; k < ptr[i + 1]; k++) {
yi0 += val[k] * x[idx[k]];
}
y[i] = (yi0 + yi1) + (yi2 + yi3);
}
}
int verifyDouble(int n, double* test) {
int i;
int result = 0;
for (i = 0; i < n; i++) {
result += (int) (test[i]);
}
return result;
}
double y[500];
int run_spmv(int dummy_0, int nonce) {
spmv_init(nonce);
spmv(500, val, idx, x, ptr, y);
return verifyDouble(500, y);
}

193
bench/towers.c Normal file
View File

@@ -0,0 +1,193 @@
//**************************************************************************
// Towers of Hanoi benchmark
//--------------------------------------------------------------------------
//
// Towers of Hanoi is a classic puzzle problem. The game consists of
// three pegs and a set of discs. Each disc is a different size, and
// initially all of the discs are on the left most peg with the smallest
// disc on top and the largest disc on the bottom. The goal is to move all
// of the discs onto the right most peg. The catch is that you are only
// allowed to move one disc at a time and you can never place a larger
// disc on top of a smaller disc.
//
// This implementation starts with NUM_DISC discs and uses a recursive
// algorithm to solve the puzzle.
struct Node {
int val;
struct Node* next;
};
struct List {
int size;
struct Node* head;
};
struct List g_nodeFreeList;
struct Node g_nodePool[7];
int list_getSize(struct List* list) {
return list->size;
}
void list_init(struct List* list) {
list->size = 0;
list->head = 0;
}
void list_push(struct List* list, int val) {
struct Node* newNode;
// Pop the next free node off the free list
newNode = g_nodeFreeList.head;
g_nodeFreeList.head = g_nodeFreeList.head->next;
// Push the new node onto the given list
newNode->next = list->head;
list->head = newNode;
// Assign the value
list->head->val = val;
// Increment size
list->size++;
}
int list_pop(struct List* list) {
struct Node* freedNode;
int val;
// Get the value from the->head of given list
val = list->head->val;
// Pop the head node off the given list
freedNode = list->head;
list->head = list->head->next;
// Push the freed node onto the free list
freedNode->next = g_nodeFreeList.head;
g_nodeFreeList.head = freedNode;
// Decrement size
list->size--;
return val;
}
void list_clear(struct List* list) {
while (list_getSize(list) > 0)
list_pop(list);
}
//--------------------------------------------------------------------------
// Tower data structure and functions
struct Towers {
int numDiscs;
int numMoves;
struct List pegA;
struct List pegB;
struct List pegC;
};
void towers_init(struct Towers* towers, int n, int nonce) {
int i;
towers->numDiscs = n;
towers->numMoves = 0;
list_init(&(towers->pegA));
list_init(&(towers->pegB));
list_init(&(towers->pegC));
for (i = 0; i < n; i++)
list_push(&(towers->pegA), nonce * (n - i));
}
void towers_clear(struct Towers* towers, int nonce) {
list_clear(&(towers->pegA));
list_clear(&(towers->pegB));
list_clear(&(towers->pegC));
towers_init(towers, towers->numDiscs, nonce);
}
void towers_solve_h(struct Towers* towers, int n, struct List* startPeg, struct List* tempPeg, struct List* destPeg) {
int val;
if (n == 1) {
val = list_pop(startPeg);
list_push(destPeg, val);
towers->numMoves++;
} else {
towers_solve_h(towers, n - 1, startPeg, destPeg, tempPeg);
towers_solve_h(towers, 1, startPeg, tempPeg, destPeg);
towers_solve_h(towers, n - 1, tempPeg, startPeg, destPeg);
}
}
void towers_solve(struct Towers* towers) {
towers_solve_h(towers, towers->numDiscs, &(towers->pegA), &(towers->pegB), &(towers->pegC));
}
int towers_verify(struct Towers* towers, int nonce) {
struct Node* ptr;
int numDiscs = 0;
int result = 0;
if (list_getSize(&towers->pegA) != 0) {
return 2;
}
if (list_getSize(&towers->pegB) != 0) {
return 3;
}
if (list_getSize(&towers->pegC) != towers->numDiscs) {
return 4;
}
for (ptr = towers->pegC.head; ptr != 0; ptr = ptr->next) {
numDiscs++;
if (ptr->val != nonce * numDiscs) {
return 5;
}
result += ptr->val;
}
if (towers->numMoves != ((1 << towers->numDiscs) - 1)) {
return 6;
}
return 0;
}
//--------------------------------------------------------------------------
// Main
int run_towers(int dummy_0, int nonce) {
struct Towers towers;
int i;
// Initialize free list
list_init(&g_nodeFreeList);
g_nodeFreeList.head = &(g_nodePool[0]);
g_nodeFreeList.size = 7;
g_nodePool[7 - 1].next = 0;
g_nodePool[7 - 1].val = 99;
for (i = 0; i < (7 - 1); i++) {
g_nodePool[i].next = &(g_nodePool[i + 1]);
g_nodePool[i].val = nonce * i;
}
towers_init(&towers, 7, nonce);
// Solve it
towers_clear(&towers, nonce);
towers_solve(&towers);
// Check the results
return towers_verify(&towers, nonce);
}

48
bench/vvadd.c Normal file
View File

@@ -0,0 +1,48 @@
//**************************************************************************
// Vector-vector add benchmark
//--------------------------------------------------------------------------
//
// This benchmark uses adds to vectors and writes the results to a
// third vector.
int input1_vvadd[1000];
int input2_vvadd[1000];
int results_vvadd[1000];
void vvadd_init(int nonce) {
int i;
int x = nonce;
int y = nonce;
for (i = 0; i < 1000; i++) {
x = (x * 97 + 17) % 1009;
y = (x * 17 + 23) % 1007;
input1_vvadd[i] = x;
input2_vvadd[i] = y;
}
}
void vvadd(int n, int a[1000], int b[1000], int c[1000]) {
int i;
for (i = 0; i < n; i++)
c[i] = a[i] + b[i];
}
int verify_vvadd(int n, int* test) {
int i;
int result = 0;
for (i = 0; i < n; i++) {
int v = test[i];
result += v;
}
return result;
}
int run_vvadd(int dummy_0, int nonce) {
vvadd_init(nonce);
vvadd(1000, input1_vvadd, input2_vvadd, results_vvadd);
return verify_vvadd(1000, results_vvadd);
}

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:[5 x i32]:a %l0:[5 x i32]:a
%l1:i32:len %l1:i32:len
%l2:i32:i %l2:i32:i
@@ -52,7 +52,7 @@ block b6:
fun i32 @sum (i32, i32*) { fun i32 @sum (i32, i32*) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:len %l0:i32:len
%l1:i32*:p %l1:i32*:p
%l2:i32:result %l2:i32:result

View File

@@ -2,7 +2,7 @@
fun unit @init (i32, i32, [5 x i32]*) { fun unit @init (i32, i32, [5 x i32]*) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:row %l0:i32:row
%l1:i32:col %l1:i32:col
%l2:[5 x i32]*:a %l2:[5 x i32]*:a
@@ -80,7 +80,7 @@ block b10:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:[4 x [5 x i32]]:a %l0:[4 x [5 x i32]]:a
%l1:i32:row %l1:i32:row
%l2:i32:col %l2:i32:col

View File

@@ -2,7 +2,7 @@
fun i32* @foo (i32*) { fun i32* @foo (i32*) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32*:a %l0:i32*:a
block b0: block b0:
@@ -18,7 +18,7 @@ block b1:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:[10 x i32]:a %l0:[10 x i32]:a
%l1:i32:i %l1:i32:i

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:[10 x i32]:a %l0:[10 x i32]:a
%l1:i32*:p %l1:i32*:p
%l2:i32:i %l2:i32:i

View File

@@ -3,7 +3,7 @@ var [5 x i32] @g_a = {1, 2, 3}
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:init %l0:i32:init
%l1:[5 x i32]:a %l1:[5 x i32]:a
%l2:i32:sum %l2:i32:sum

View File

@@ -2,7 +2,7 @@
fun i32 @bar (i32, i32, i32) { fun i32 @bar (i32, i32, i32) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:x %l0:i32:x
%l1:i32:y %l1:i32:y
%l2:i32:z %l2:i32:z
@@ -58,7 +58,7 @@ block b5:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:u8:a %l0:u8:a
%l1:u8:b %l1:u8:b
%l2:u8:c %l2:u8:c

View File

@@ -2,7 +2,7 @@
fun i32 @char_greater_than (i8, u8) { fun i32 @char_greater_than (i8, u8) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i8:i %l0:i8:i
%l1:u8:j %l1:u8:j
@@ -37,7 +37,7 @@ block b5:
fun i32 @int_greater_than (i32, u32) { fun i32 @int_greater_than (i32, u32) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:i %l0:i32:i
%l1:u32:j %l1:u32:j
@@ -71,7 +71,7 @@ block b5:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:r1 %l0:i32:r1
%l1:i32:r2 %l1:i32:r2
%l2:u1:t0 %l2:u1:t0

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:y %l0:i32:y
%l1:i32:x %l1:i32:x

View File

@@ -3,7 +3,7 @@ var i32 @nonce = 1
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @func_0 () { fun i32 @func_0 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -279,7 +279,7 @@ block b40:
fun i32 @func_1 () { fun i32 @func_1 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -556,7 +556,7 @@ block b40:
fun i32 @func_10 () { fun i32 @func_10 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -833,7 +833,7 @@ block b40:
fun i32 @func_11 () { fun i32 @func_11 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -1110,7 +1110,7 @@ block b40:
fun i32 @func_12 () { fun i32 @func_12 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -1387,7 +1387,7 @@ block b40:
fun i32 @func_13 () { fun i32 @func_13 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -1664,7 +1664,7 @@ block b40:
fun i32 @func_14 () { fun i32 @func_14 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -1941,7 +1941,7 @@ block b40:
fun i32 @func_15 () { fun i32 @func_15 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -2218,7 +2218,7 @@ block b40:
fun i32 @func_16 () { fun i32 @func_16 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -2495,7 +2495,7 @@ block b40:
fun i32 @func_17 () { fun i32 @func_17 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -2772,7 +2772,7 @@ block b40:
fun i32 @func_18 () { fun i32 @func_18 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -3049,7 +3049,7 @@ block b40:
fun i32 @func_19 () { fun i32 @func_19 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -3326,7 +3326,7 @@ block b40:
fun i32 @func_2 () { fun i32 @func_2 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -3603,7 +3603,7 @@ block b40:
fun i32 @func_20 () { fun i32 @func_20 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -3880,7 +3880,7 @@ block b40:
fun i32 @func_21 () { fun i32 @func_21 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -4157,7 +4157,7 @@ block b40:
fun i32 @func_22 () { fun i32 @func_22 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -4434,7 +4434,7 @@ block b40:
fun i32 @func_23 () { fun i32 @func_23 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -4711,7 +4711,7 @@ block b40:
fun i32 @func_24 () { fun i32 @func_24 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -4988,7 +4988,7 @@ block b40:
fun i32 @func_25 () { fun i32 @func_25 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -5265,7 +5265,7 @@ block b40:
fun i32 @func_26 () { fun i32 @func_26 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -5542,7 +5542,7 @@ block b40:
fun i32 @func_27 () { fun i32 @func_27 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -5819,7 +5819,7 @@ block b40:
fun i32 @func_28 () { fun i32 @func_28 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -6096,7 +6096,7 @@ block b40:
fun i32 @func_29 () { fun i32 @func_29 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -6373,7 +6373,7 @@ block b40:
fun i32 @func_3 () { fun i32 @func_3 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -6650,7 +6650,7 @@ block b40:
fun i32 @func_30 () { fun i32 @func_30 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -6927,7 +6927,7 @@ block b40:
fun i32 @func_31 () { fun i32 @func_31 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -7204,7 +7204,7 @@ block b40:
fun i32 @func_32 () { fun i32 @func_32 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -7481,7 +7481,7 @@ block b40:
fun i32 @func_33 () { fun i32 @func_33 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -7758,7 +7758,7 @@ block b40:
fun i32 @func_34 () { fun i32 @func_34 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -8035,7 +8035,7 @@ block b40:
fun i32 @func_35 () { fun i32 @func_35 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -8312,7 +8312,7 @@ block b40:
fun i32 @func_36 () { fun i32 @func_36 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -8589,7 +8589,7 @@ block b40:
fun i32 @func_37 () { fun i32 @func_37 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -8866,7 +8866,7 @@ block b40:
fun i32 @func_38 () { fun i32 @func_38 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -9143,7 +9143,7 @@ block b40:
fun i32 @func_39 () { fun i32 @func_39 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -9420,7 +9420,7 @@ block b40:
fun i32 @func_4 () { fun i32 @func_4 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -9697,7 +9697,7 @@ block b40:
fun i32 @func_40 () { fun i32 @func_40 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -9974,7 +9974,7 @@ block b40:
fun i32 @func_41 () { fun i32 @func_41 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -10251,7 +10251,7 @@ block b40:
fun i32 @func_42 () { fun i32 @func_42 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -10528,7 +10528,7 @@ block b40:
fun i32 @func_43 () { fun i32 @func_43 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -10805,7 +10805,7 @@ block b40:
fun i32 @func_44 () { fun i32 @func_44 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -11082,7 +11082,7 @@ block b40:
fun i32 @func_45 () { fun i32 @func_45 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -11359,7 +11359,7 @@ block b40:
fun i32 @func_46 () { fun i32 @func_46 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -11636,7 +11636,7 @@ block b40:
fun i32 @func_47 () { fun i32 @func_47 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -11913,7 +11913,7 @@ block b40:
fun i32 @func_48 () { fun i32 @func_48 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -12190,7 +12190,7 @@ block b40:
fun i32 @func_49 () { fun i32 @func_49 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -12467,7 +12467,7 @@ block b40:
fun i32 @func_5 () { fun i32 @func_5 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -12744,7 +12744,7 @@ block b40:
fun i32 @func_50 () { fun i32 @func_50 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -13021,7 +13021,7 @@ block b40:
fun i32 @func_51 () { fun i32 @func_51 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -13298,7 +13298,7 @@ block b40:
fun i32 @func_52 () { fun i32 @func_52 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -13575,7 +13575,7 @@ block b40:
fun i32 @func_53 () { fun i32 @func_53 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -13852,7 +13852,7 @@ block b40:
fun i32 @func_54 () { fun i32 @func_54 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -14129,7 +14129,7 @@ block b40:
fun i32 @func_55 () { fun i32 @func_55 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -14406,7 +14406,7 @@ block b40:
fun i32 @func_56 () { fun i32 @func_56 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -14683,7 +14683,7 @@ block b40:
fun i32 @func_57 () { fun i32 @func_57 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -14960,7 +14960,7 @@ block b40:
fun i32 @func_58 () { fun i32 @func_58 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -15237,7 +15237,7 @@ block b40:
fun i32 @func_59 () { fun i32 @func_59 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -15514,7 +15514,7 @@ block b40:
fun i32 @func_6 () { fun i32 @func_6 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -15791,7 +15791,7 @@ block b40:
fun i32 @func_60 () { fun i32 @func_60 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -16068,7 +16068,7 @@ block b40:
fun i32 @func_61 () { fun i32 @func_61 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -16345,7 +16345,7 @@ block b40:
fun i32 @func_62 () { fun i32 @func_62 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -16622,7 +16622,7 @@ block b40:
fun i32 @func_63 () { fun i32 @func_63 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -16899,7 +16899,7 @@ block b40:
fun i32 @func_64 () { fun i32 @func_64 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -17176,7 +17176,7 @@ block b40:
fun i32 @func_65 () { fun i32 @func_65 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -17453,7 +17453,7 @@ block b40:
fun i32 @func_66 () { fun i32 @func_66 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -17730,7 +17730,7 @@ block b40:
fun i32 @func_67 () { fun i32 @func_67 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -18007,7 +18007,7 @@ block b40:
fun i32 @func_68 () { fun i32 @func_68 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -18284,7 +18284,7 @@ block b40:
fun i32 @func_69 () { fun i32 @func_69 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -18561,7 +18561,7 @@ block b40:
fun i32 @func_7 () { fun i32 @func_7 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -18838,7 +18838,7 @@ block b40:
fun i32 @func_70 () { fun i32 @func_70 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -19115,7 +19115,7 @@ block b40:
fun i32 @func_71 () { fun i32 @func_71 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -19392,7 +19392,7 @@ block b40:
fun i32 @func_72 () { fun i32 @func_72 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -19669,7 +19669,7 @@ block b40:
fun i32 @func_73 () { fun i32 @func_73 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -19946,7 +19946,7 @@ block b40:
fun i32 @func_74 () { fun i32 @func_74 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -20223,7 +20223,7 @@ block b40:
fun i32 @func_75 () { fun i32 @func_75 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -20500,7 +20500,7 @@ block b40:
fun i32 @func_76 () { fun i32 @func_76 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -20777,7 +20777,7 @@ block b40:
fun i32 @func_77 () { fun i32 @func_77 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -21054,7 +21054,7 @@ block b40:
fun i32 @func_78 () { fun i32 @func_78 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -21331,7 +21331,7 @@ block b40:
fun i32 @func_79 () { fun i32 @func_79 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -21608,7 +21608,7 @@ block b40:
fun i32 @func_8 () { fun i32 @func_8 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -21885,7 +21885,7 @@ block b40:
fun i32 @func_80 () { fun i32 @func_80 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -22162,7 +22162,7 @@ block b40:
fun i32 @func_81 () { fun i32 @func_81 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -22439,7 +22439,7 @@ block b40:
fun i32 @func_82 () { fun i32 @func_82 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -22716,7 +22716,7 @@ block b40:
fun i32 @func_83 () { fun i32 @func_83 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -22993,7 +22993,7 @@ block b40:
fun i32 @func_84 () { fun i32 @func_84 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -23270,7 +23270,7 @@ block b40:
fun i32 @func_85 () { fun i32 @func_85 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -23547,7 +23547,7 @@ block b40:
fun i32 @func_86 () { fun i32 @func_86 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -23824,7 +23824,7 @@ block b40:
fun i32 @func_87 () { fun i32 @func_87 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -24101,7 +24101,7 @@ block b40:
fun i32 @func_88 () { fun i32 @func_88 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -24378,7 +24378,7 @@ block b40:
fun i32 @func_89 () { fun i32 @func_89 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -24655,7 +24655,7 @@ block b40:
fun i32 @func_9 () { fun i32 @func_9 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -24932,7 +24932,7 @@ block b40:
fun i32 @func_90 () { fun i32 @func_90 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -25209,7 +25209,7 @@ block b40:
fun i32 @func_91 () { fun i32 @func_91 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -25486,7 +25486,7 @@ block b40:
fun i32 @func_92 () { fun i32 @func_92 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -25763,7 +25763,7 @@ block b40:
fun i32 @func_93 () { fun i32 @func_93 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -26040,7 +26040,7 @@ block b40:
fun i32 @func_94 () { fun i32 @func_94 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -26317,7 +26317,7 @@ block b40:
fun i32 @func_95 () { fun i32 @func_95 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -26594,7 +26594,7 @@ block b40:
fun i32 @func_96 () { fun i32 @func_96 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -26871,7 +26871,7 @@ block b40:
fun i32 @func_97 () { fun i32 @func_97 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -27148,7 +27148,7 @@ block b40:
fun i32 @func_98 () { fun i32 @func_98 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -27425,7 +27425,7 @@ block b40:
fun i32 @func_99 () { fun i32 @func_99 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -27702,7 +27702,7 @@ block b40:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:u1:t0 %l0:u1:t0
%l1:u1:t1 %l1:u1:t1
%l2:u1:t2 %l2:u1:t2

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:y %l0:i32:y
%l1:i32:x %l1:i32:x
%l2:i32:t0 %l2:i32:t0

View File

@@ -3,7 +3,7 @@ var i32 @nonce = 1
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:i %l0:i32:i
%l1:i32:p %l1:i32:p
%l2:i32:q %l2:i32:q

View File

@@ -2,7 +2,7 @@
fun i32 @fibonacci (i32) { fun i32 @fibonacci (i32) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:n %l0:i32:n
block b0: block b0:
@@ -39,7 +39,7 @@ block b5:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @fibonacci (i32) { fun i32 @fibonacci (i32) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:n %l0:i32:n
%l1:i32:i %l1:i32:i
%l2:i32:t1 %l2:i32:t1
@@ -71,7 +71,7 @@ block b10:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @fibonacci (i32) { fun i32 @fibonacci (i32) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:n %l0:i32:n
%l1:i32:i %l1:i32:i
%l2:i32:t1 %l2:i32:t1
@@ -65,7 +65,7 @@ block b8:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @fibonacci (i32) { fun i32 @fibonacci (i32) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:n %l0:i32:n
%l1:i32:i %l1:i32:i
%l2:i32:t1 %l2:i32:t1
@@ -65,7 +65,7 @@ block b8:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -3,7 +3,7 @@ var i32 @nonce = 1
fun i32 @fibonacci (i32) { fun i32 @fibonacci (i32) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:n %l0:i32:n
block b0: block b0:
@@ -40,7 +40,7 @@ block b5:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:number %l0:i32:number
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun f64 @average (i32, i32*) { fun f64 @average (i32, i32*) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:len %l0:i32:len
%l1:i32*:a %l1:i32*:a
%l2:i32:sum %l2:i32:sum
@@ -59,7 +59,7 @@ block b6:
fun f64 @custom_abs (f64) { fun f64 @custom_abs (f64) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:t0 %l1:f64:t0
@@ -93,7 +93,7 @@ block b4:
fun f64 @custom_max (f64, f64) { fun f64 @custom_max (f64, f64) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f64:t0 %l2:f64:t0
@@ -129,7 +129,7 @@ block b4:
fun i32 @is_close (f64, f64, f64, f64) { fun i32 @is_close (f64, f64, f64, f64) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f64:rel_tol %l2:f64:rel_tol
@@ -168,7 +168,7 @@ block b1:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:[10 x i32]:a %l0:[10 x i32]:a
%l1:i32:len %l1:i32:len
%l2:i32:i %l2:i32:i

View File

@@ -2,7 +2,7 @@
fun f64 @func_0 () { fun f64 @func_0 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -165,7 +165,7 @@ block b1:
fun f32 @func_1 () { fun f32 @func_1 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -329,7 +329,7 @@ block b1:
fun f32 @func_10 () { fun f32 @func_10 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -489,7 +489,7 @@ block b1:
fun f64 @func_11 () { fun f64 @func_11 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -645,7 +645,7 @@ block b1:
fun f64 @func_12 () { fun f64 @func_12 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -802,7 +802,7 @@ block b1:
fun f32 @func_13 () { fun f32 @func_13 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -954,7 +954,7 @@ block b1:
fun f32 @func_14 () { fun f32 @func_14 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -1118,7 +1118,7 @@ block b1:
fun f32 @func_15 () { fun f32 @func_15 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -1282,7 +1282,7 @@ block b1:
fun f64 @func_16 () { fun f64 @func_16 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -1447,7 +1447,7 @@ block b1:
fun f64 @func_17 () { fun f64 @func_17 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -1605,7 +1605,7 @@ block b1:
fun f32 @func_18 () { fun f32 @func_18 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -1766,7 +1766,7 @@ block b1:
fun f32 @func_19 () { fun f32 @func_19 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -1923,7 +1923,7 @@ block b1:
fun f64 @func_2 () { fun f64 @func_2 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -2089,7 +2089,7 @@ block b1:
fun f32 @func_20 () { fun f32 @func_20 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -2246,7 +2246,7 @@ block b1:
fun f32 @func_21 () { fun f32 @func_21 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -2400,7 +2400,7 @@ block b1:
fun f64 @func_22 () { fun f64 @func_22 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -2571,7 +2571,7 @@ block b1:
fun f32 @func_23 () { fun f32 @func_23 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -2729,7 +2729,7 @@ block b1:
fun f64 @func_24 () { fun f64 @func_24 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -2886,7 +2886,7 @@ block b1:
fun f32 @func_25 () { fun f32 @func_25 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -3050,7 +3050,7 @@ block b1:
fun f32 @func_26 () { fun f32 @func_26 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -3213,7 +3213,7 @@ block b1:
fun f64 @func_27 () { fun f64 @func_27 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -3372,7 +3372,7 @@ block b1:
fun f32 @func_28 () { fun f32 @func_28 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -3534,7 +3534,7 @@ block b1:
fun f32 @func_29 () { fun f32 @func_29 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -3695,7 +3695,7 @@ block b1:
fun f64 @func_3 () { fun f64 @func_3 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -3853,7 +3853,7 @@ block b1:
fun f64 @func_30 () { fun f64 @func_30 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -4009,7 +4009,7 @@ block b1:
fun f64 @func_31 () { fun f64 @func_31 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -4179,7 +4179,7 @@ block b1:
fun f64 @func_32 () { fun f64 @func_32 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -4337,7 +4337,7 @@ block b1:
fun f64 @func_33 () { fun f64 @func_33 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -4496,7 +4496,7 @@ block b1:
fun f64 @func_34 () { fun f64 @func_34 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -4652,7 +4652,7 @@ block b1:
fun f32 @func_35 () { fun f32 @func_35 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -4813,7 +4813,7 @@ block b1:
fun f32 @func_36 () { fun f32 @func_36 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -4978,7 +4978,7 @@ block b1:
fun f64 @func_37 () { fun f64 @func_37 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -5136,7 +5136,7 @@ block b1:
fun f32 @func_38 () { fun f32 @func_38 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -5293,7 +5293,7 @@ block b1:
fun f64 @func_39 () { fun f64 @func_39 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -5449,7 +5449,7 @@ block b1:
fun f64 @func_4 () { fun f64 @func_4 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -5605,7 +5605,7 @@ block b1:
fun f32 @func_40 () { fun f32 @func_40 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -5763,7 +5763,7 @@ block b1:
fun f64 @func_41 () { fun f64 @func_41 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -5919,7 +5919,7 @@ block b1:
fun f64 @func_42 () { fun f64 @func_42 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -6080,7 +6080,7 @@ block b1:
fun f32 @func_43 () { fun f32 @func_43 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -6244,7 +6244,7 @@ block b1:
fun f32 @func_44 () { fun f32 @func_44 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -6412,7 +6412,7 @@ block b1:
fun f32 @func_45 () { fun f32 @func_45 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -6576,7 +6576,7 @@ block b1:
fun f32 @func_46 () { fun f32 @func_46 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -6731,7 +6731,7 @@ block b1:
fun f64 @func_47 () { fun f64 @func_47 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -6890,7 +6890,7 @@ block b1:
fun f32 @func_48 () { fun f32 @func_48 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -7046,7 +7046,7 @@ block b1:
fun f64 @func_49 () { fun f64 @func_49 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -7201,7 +7201,7 @@ block b1:
fun f32 @func_5 () { fun f32 @func_5 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -7364,7 +7364,7 @@ block b1:
fun f32 @func_50 () { fun f32 @func_50 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -7523,7 +7523,7 @@ block b1:
fun f64 @func_51 () { fun f64 @func_51 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -7674,7 +7674,7 @@ block b1:
fun f64 @func_52 () { fun f64 @func_52 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -7833,7 +7833,7 @@ block b1:
fun f64 @func_53 () { fun f64 @func_53 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -8000,7 +8000,7 @@ block b1:
fun f32 @func_54 () { fun f32 @func_54 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -8164,7 +8164,7 @@ block b1:
fun f64 @func_55 () { fun f64 @func_55 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -8318,7 +8318,7 @@ block b1:
fun f64 @func_56 () { fun f64 @func_56 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -8476,7 +8476,7 @@ block b1:
fun f32 @func_57 () { fun f32 @func_57 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -8641,7 +8641,7 @@ block b1:
fun f64 @func_58 () { fun f64 @func_58 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -8802,7 +8802,7 @@ block b1:
fun f64 @func_59 () { fun f64 @func_59 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -8966,7 +8966,7 @@ block b1:
fun f64 @func_6 () { fun f64 @func_6 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -9124,7 +9124,7 @@ block b1:
fun f64 @func_60 () { fun f64 @func_60 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -9281,7 +9281,7 @@ block b1:
fun f64 @func_61 () { fun f64 @func_61 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -9446,7 +9446,7 @@ block b1:
fun f64 @func_62 () { fun f64 @func_62 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -9606,7 +9606,7 @@ block b1:
fun f32 @func_63 () { fun f32 @func_63 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -9765,7 +9765,7 @@ block b1:
fun f64 @func_64 () { fun f64 @func_64 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -9922,7 +9922,7 @@ block b1:
fun f32 @func_65 () { fun f32 @func_65 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -10078,7 +10078,7 @@ block b1:
fun f64 @func_66 () { fun f64 @func_66 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -10232,7 +10232,7 @@ block b1:
fun f32 @func_67 () { fun f32 @func_67 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -10393,7 +10393,7 @@ block b1:
fun f32 @func_68 () { fun f32 @func_68 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -10555,7 +10555,7 @@ block b1:
fun f64 @func_69 () { fun f64 @func_69 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -10719,7 +10719,7 @@ block b1:
fun f64 @func_7 () { fun f64 @func_7 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -10881,7 +10881,7 @@ block b1:
fun f32 @func_70 () { fun f32 @func_70 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -11041,7 +11041,7 @@ block b1:
fun f64 @func_71 () { fun f64 @func_71 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -11202,7 +11202,7 @@ block b1:
fun f64 @func_72 () { fun f64 @func_72 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -11363,7 +11363,7 @@ block b1:
fun f32 @func_73 () { fun f32 @func_73 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -11522,7 +11522,7 @@ block b1:
fun f64 @func_74 () { fun f64 @func_74 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -11678,7 +11678,7 @@ block b1:
fun f32 @func_75 () { fun f32 @func_75 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -11837,7 +11837,7 @@ block b1:
fun f64 @func_76 () { fun f64 @func_76 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -11986,7 +11986,7 @@ block b1:
fun f64 @func_77 () { fun f64 @func_77 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -12144,7 +12144,7 @@ block b1:
fun f32 @func_78 () { fun f32 @func_78 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -12299,7 +12299,7 @@ block b1:
fun f32 @func_79 () { fun f32 @func_79 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -12463,7 +12463,7 @@ block b1:
fun f64 @func_8 () { fun f64 @func_8 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -12622,7 +12622,7 @@ block b1:
fun f32 @func_80 () { fun f32 @func_80 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -12773,7 +12773,7 @@ block b1:
fun f64 @func_81 () { fun f64 @func_81 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -12934,7 +12934,7 @@ block b1:
fun f64 @func_82 () { fun f64 @func_82 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -13099,7 +13099,7 @@ block b1:
fun f64 @func_83 () { fun f64 @func_83 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -13261,7 +13261,7 @@ block b1:
fun f32 @func_84 () { fun f32 @func_84 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -13421,7 +13421,7 @@ block b1:
fun f64 @func_85 () { fun f64 @func_85 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -13582,7 +13582,7 @@ block b1:
fun f32 @func_86 () { fun f32 @func_86 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -13742,7 +13742,7 @@ block b1:
fun f64 @func_87 () { fun f64 @func_87 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -13901,7 +13901,7 @@ block b1:
fun f32 @func_88 () { fun f32 @func_88 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -14062,7 +14062,7 @@ block b1:
fun f32 @func_89 () { fun f32 @func_89 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -14220,7 +14220,7 @@ block b1:
fun f32 @func_9 () { fun f32 @func_9 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -14384,7 +14384,7 @@ block b1:
fun f64 @func_90 () { fun f64 @func_90 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -14558,7 +14558,7 @@ block b1:
fun f32 @func_91 () { fun f32 @func_91 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -14716,7 +14716,7 @@ block b1:
fun f32 @func_92 () { fun f32 @func_92 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -14872,7 +14872,7 @@ block b1:
fun f64 @func_93 () { fun f64 @func_93 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -15030,7 +15030,7 @@ block b1:
fun f64 @func_94 () { fun f64 @func_94 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -15189,7 +15189,7 @@ block b1:
fun f32 @func_95 () { fun f32 @func_95 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -15350,7 +15350,7 @@ block b1:
fun f32 @func_96 () { fun f32 @func_96 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -15516,7 +15516,7 @@ block b1:
fun f32 @func_97 () { fun f32 @func_97 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -15678,7 +15678,7 @@ block b1:
fun f64 @func_98 () { fun f64 @func_98 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -15840,7 +15840,7 @@ block b1:
fun f32 @func_99 () { fun f32 @func_99 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -15989,7 +15989,7 @@ block b1:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @foo (i32, i32, i32) { fun i32 @foo (i32, i32, i32) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:x %l0:i32:x
%l1:i32:y %l1:i32:y
%l2:i32:z %l2:i32:z
@@ -40,7 +40,7 @@ block b5:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:i %l0:i32:i
%l1:i32:i %l1:i32:i
%l2:i32:i %l2:i32:i

View File

@@ -4,7 +4,7 @@ var i32 @nonce = 1
fun i32 @foo (i32, i32) { fun i32 @foo (i32, i32) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:i %l0:i32:i
%l1:i32:j %l1:i32:j
@@ -27,7 +27,7 @@ block b1:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:i %l0:i32:i
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @foo (i32, i32, i32) { fun i32 @foo (i32, i32, i32) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:i %l0:i32:i
%l1:i32:j %l1:i32:j
%l2:i32:k %l2:i32:k
@@ -28,7 +28,7 @@ block b1:
fun [ret:i32 params:(i32, i32, i32)]* @foo2 () { fun [ret:i32 params:(i32, i32, i32)]* @foo2 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:
@@ -41,7 +41,7 @@ block b1:
fun [ret:[ret:i32 params:(i32, i32, i32)]* params:()]* @foo3 () { fun [ret:[ret:i32 params:(i32, i32, i32)]* params:()]* @foo3 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:
@@ -54,7 +54,7 @@ block b1:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @foo () { fun i32 @foo () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:sum %l0:i32:sum
%l1:i32:i %l1:i32:i
@@ -72,7 +72,7 @@ block b14:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @gcd (i32, i32) { fun i32 @gcd (i32, i32) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:t0 %l2:i32:t0
@@ -91,7 +91,7 @@ block b13:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i16:temp %l0:i16:temp
%l1:u32:temp2 %l1:u32:temp2

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:temp %l0:i32:temp
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:i %l0:i32:i
%l1:i32:result %l1:i32:result

View File

@@ -6,7 +6,7 @@ var f64 @d = -(1.5)
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @foo (i32, i32, i32) { fun i32 @foo (i32, i32, i32) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:x %l0:i32:x
%l1:i32:y %l1:i32:y
%l2:i32:z %l2:i32:z
@@ -41,7 +41,7 @@ block b5:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32* @foo (i32*) { fun i32* @foo (i32*) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32*:a %l0:i32*:a
block b0: block b0:
@@ -18,7 +18,7 @@ block b1:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32*:p %l1:i32*:p
%l2:i32**:p2 %l2:i32**:p2

View File

@@ -2,7 +2,7 @@
fun unit @foo () { fun unit @foo () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:
@@ -12,7 +12,7 @@ block b0:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i8:a %l0:i8:a
%l1:i8:b %l1:i8:b
%l2:u8:c %l2:u8:c

View File

@@ -3,7 +3,7 @@ var i32 @g = 0
fun i32* @foo () { fun i32* @foo () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:
@@ -19,7 +19,7 @@ block b1:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -3,7 +3,7 @@ var i32 @nonce = 1
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:x %l0:i32:x
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @f (i32) { fun i32 @f (i32) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:x %l0:i32:x
block b0: block b0:
@@ -19,7 +19,7 @@ block b1:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:x %l0:i32:x
%l1:i32:y %l1:i32:y
%l2:i32:t0 %l2:i32:t0

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:i %l0:i32:i
%l1:i32:sum %l1:i32:sum

View File

@@ -2,7 +2,7 @@
fun i32 @fibonacci (i32) { fun i32 @fibonacci (i32) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:n %l0:i32:n
block b0: block b0:
@@ -38,7 +38,7 @@ block b4:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i8:a %l0:i8:a
%l1:i8:b %l1:i8:b
%l2:[10 x i64]:c %l2:[10 x i64]:c

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:x %l0:i32:x
%l1:i32:y %l1:i32:y

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b

View File

@@ -4,7 +4,7 @@ struct %t1 : { a:i8, %anon:struct %t0, c:f64 }
fun unit @init (i32, i32, [5 x i32]*) { fun unit @init (i32, i32, [5 x i32]*) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:row %l0:i32:row
%l1:i32:col %l1:i32:col
%l2:[5 x i32]*:arr %l2:[5 x i32]*:arr
@@ -82,7 +82,7 @@ block b10:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:struct %t1:temp %l0:struct %t1:temp
%l1:i32:row %l1:i32:row
%l2:i32:col %l2:i32:col

View File

@@ -4,7 +4,7 @@ struct %t1 : { a:i8, %anon:struct %t0, c:i64 }
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:const struct %t1:temp %l0:const struct %t1:temp
%l1:struct %t1:temp2 %l1:struct %t1:temp2
%l2:i32:sum %l2:i32:sum

View File

@@ -4,7 +4,7 @@ struct Sub : { m1:i64, m2:i64, m3:i64, m4:i64 }
fun struct Big @foo (struct Big) { fun struct Big @foo (struct Big) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:struct Big:p1 %l0:struct Big:p1
%l1:struct Big:r %l1:struct Big:r
@@ -27,7 +27,7 @@ block b1:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:struct Big:a %l0:struct Big:a
%l1:struct Big:r %l1:struct Big:r

View File

@@ -4,7 +4,7 @@ var i32 @nonce = 1
fun struct Foo @f () { fun struct Foo @f () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:struct Foo:x %l0:struct Foo:x
block b0: block b0:
@@ -21,7 +21,7 @@ block b1:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:x %l0:i32:x
%l1:struct Foo:t0 %l1:struct Foo:t0

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:t %l2:i32:t

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:i %l0:i32:i
%l1:i32:c %l1:i32:c

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b

View File

@@ -2,7 +2,7 @@
fun i32 @fibonacci (i32) { fun i32 @fibonacci (i32) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:n %l0:i32:n
block b0: block b0:
@@ -31,7 +31,7 @@ block b4:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -3,7 +3,7 @@ struct color : { number:i32, name:i8 }
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:temp %l0:i32:temp
%l1:struct color:c %l1:struct color:c
%l2:struct color*:cp %l2:struct color*:cp

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i64:l %l0:i64:l
%l1:i64:l2 %l1:i64:l2
%l2:i64:l3 %l2:i64:l3

View File

@@ -3,7 +3,7 @@ var i8 @temp = 0x00l
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32*const:b %l1:i32*const:b

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:u8:temp %l0:u8:temp
block b0: block b0:

View File

@@ -3,7 +3,7 @@ var i32 @nonce = 1
fun i32 @foo () { fun i32 @foo () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:sum %l0:i32:sum
%l1:i32:i %l1:i32:i
%l2:i32:continue_num %l2:i32:continue_num
@@ -76,7 +76,7 @@ block b12:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:[5 x i32]:a %l0:[5 x i32]:a
%l1:i32:len %l1:i32:len
%l2:i32:i %l2:i32:i
@@ -43,7 +43,7 @@ block b5:
fun i32 @sum (i32, i32*) { fun i32 @sum (i32, i32*) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:len %l0:i32:len
%l1:i32*:p %l1:i32*:p
%l2:i32:result %l2:i32:result

View File

@@ -2,7 +2,7 @@
fun unit @init (i32, i32, [5 x i32]*) { fun unit @init (i32, i32, [5 x i32]*) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:row %l0:i32:row
%l1:i32:col %l1:i32:col
%l2:[5 x i32]*:a %l2:[5 x i32]*:a
@@ -68,7 +68,7 @@ block b10:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:[4 x [5 x i32]]:a %l0:[4 x [5 x i32]]:a
%l1:i32:row %l1:i32:row
%l2:i32:col %l2:i32:col

View File

@@ -2,7 +2,7 @@
fun i32* @foo (i32*) { fun i32* @foo (i32*) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32*:a %l0:i32*:a
block b0: block b0:
@@ -15,7 +15,7 @@ block b0:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:[10 x i32]:a %l0:[10 x i32]:a
%l1:i32:i %l1:i32:i

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:[10 x i32]:a %l0:[10 x i32]:a
%l1:i32*:p %l1:i32*:p
%l2:i32:i %l2:i32:i

View File

@@ -3,7 +3,7 @@ var [5 x i32] @g_a = {1, 2, 3}
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:init %l0:i32:init
%l1:[5 x i32]:a %l1:[5 x i32]:a
%l2:i32:sum %l2:i32:sum

View File

@@ -2,7 +2,7 @@
fun i32 @bar (i32, i32, i32) { fun i32 @bar (i32, i32, i32) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:x %l0:i32:x
%l1:i32:y %l1:i32:y
%l2:i32:z %l2:i32:z
@@ -49,7 +49,7 @@ block b2:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:u8:a %l0:u8:a
%l1:u8:b %l1:u8:b
%l2:u8:c %l2:u8:c

View File

@@ -2,7 +2,7 @@
fun i32 @char_greater_than (i8, u8) { fun i32 @char_greater_than (i8, u8) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i8:i %l0:i8:i
%l1:u8:j %l1:u8:j
@@ -28,7 +28,7 @@ block b2:
fun i32 @int_greater_than (i32, u32) { fun i32 @int_greater_than (i32, u32) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:i %l0:i32:i
%l1:u32:j %l1:u32:j
@@ -53,7 +53,7 @@ block b2:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:r1 %l0:i32:r1
%l1:i32:r2 %l1:i32:r2
%l2:u1:t0 %l2:u1:t0

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:y %l0:i32:y
%l1:i32:x %l1:i32:x

View File

@@ -3,7 +3,7 @@ var i32 @nonce = 1
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @func_0 () { fun i32 @func_0 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -276,7 +276,7 @@ block b39:
fun i32 @func_1 () { fun i32 @func_1 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -550,7 +550,7 @@ block b39:
fun i32 @func_10 () { fun i32 @func_10 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -824,7 +824,7 @@ block b39:
fun i32 @func_11 () { fun i32 @func_11 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -1098,7 +1098,7 @@ block b39:
fun i32 @func_12 () { fun i32 @func_12 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -1372,7 +1372,7 @@ block b39:
fun i32 @func_13 () { fun i32 @func_13 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -1646,7 +1646,7 @@ block b39:
fun i32 @func_14 () { fun i32 @func_14 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -1920,7 +1920,7 @@ block b39:
fun i32 @func_15 () { fun i32 @func_15 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -2194,7 +2194,7 @@ block b39:
fun i32 @func_16 () { fun i32 @func_16 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -2468,7 +2468,7 @@ block b39:
fun i32 @func_17 () { fun i32 @func_17 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -2742,7 +2742,7 @@ block b39:
fun i32 @func_18 () { fun i32 @func_18 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -3016,7 +3016,7 @@ block b39:
fun i32 @func_19 () { fun i32 @func_19 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -3290,7 +3290,7 @@ block b39:
fun i32 @func_2 () { fun i32 @func_2 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -3564,7 +3564,7 @@ block b39:
fun i32 @func_20 () { fun i32 @func_20 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -3838,7 +3838,7 @@ block b39:
fun i32 @func_21 () { fun i32 @func_21 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -4112,7 +4112,7 @@ block b39:
fun i32 @func_22 () { fun i32 @func_22 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -4386,7 +4386,7 @@ block b39:
fun i32 @func_23 () { fun i32 @func_23 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -4660,7 +4660,7 @@ block b39:
fun i32 @func_24 () { fun i32 @func_24 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -4934,7 +4934,7 @@ block b39:
fun i32 @func_25 () { fun i32 @func_25 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -5208,7 +5208,7 @@ block b39:
fun i32 @func_26 () { fun i32 @func_26 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -5482,7 +5482,7 @@ block b39:
fun i32 @func_27 () { fun i32 @func_27 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -5756,7 +5756,7 @@ block b39:
fun i32 @func_28 () { fun i32 @func_28 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -6030,7 +6030,7 @@ block b39:
fun i32 @func_29 () { fun i32 @func_29 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -6304,7 +6304,7 @@ block b39:
fun i32 @func_3 () { fun i32 @func_3 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -6578,7 +6578,7 @@ block b39:
fun i32 @func_30 () { fun i32 @func_30 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -6852,7 +6852,7 @@ block b39:
fun i32 @func_31 () { fun i32 @func_31 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -7126,7 +7126,7 @@ block b39:
fun i32 @func_32 () { fun i32 @func_32 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -7400,7 +7400,7 @@ block b39:
fun i32 @func_33 () { fun i32 @func_33 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -7674,7 +7674,7 @@ block b39:
fun i32 @func_34 () { fun i32 @func_34 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -7948,7 +7948,7 @@ block b39:
fun i32 @func_35 () { fun i32 @func_35 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -8222,7 +8222,7 @@ block b39:
fun i32 @func_36 () { fun i32 @func_36 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -8496,7 +8496,7 @@ block b39:
fun i32 @func_37 () { fun i32 @func_37 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -8770,7 +8770,7 @@ block b39:
fun i32 @func_38 () { fun i32 @func_38 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -9044,7 +9044,7 @@ block b39:
fun i32 @func_39 () { fun i32 @func_39 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -9318,7 +9318,7 @@ block b39:
fun i32 @func_4 () { fun i32 @func_4 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -9592,7 +9592,7 @@ block b39:
fun i32 @func_40 () { fun i32 @func_40 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -9866,7 +9866,7 @@ block b39:
fun i32 @func_41 () { fun i32 @func_41 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -10140,7 +10140,7 @@ block b39:
fun i32 @func_42 () { fun i32 @func_42 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -10414,7 +10414,7 @@ block b39:
fun i32 @func_43 () { fun i32 @func_43 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -10688,7 +10688,7 @@ block b39:
fun i32 @func_44 () { fun i32 @func_44 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -10962,7 +10962,7 @@ block b39:
fun i32 @func_45 () { fun i32 @func_45 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -11236,7 +11236,7 @@ block b39:
fun i32 @func_46 () { fun i32 @func_46 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -11510,7 +11510,7 @@ block b39:
fun i32 @func_47 () { fun i32 @func_47 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -11784,7 +11784,7 @@ block b39:
fun i32 @func_48 () { fun i32 @func_48 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -12058,7 +12058,7 @@ block b39:
fun i32 @func_49 () { fun i32 @func_49 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -12332,7 +12332,7 @@ block b39:
fun i32 @func_5 () { fun i32 @func_5 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -12606,7 +12606,7 @@ block b39:
fun i32 @func_50 () { fun i32 @func_50 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -12880,7 +12880,7 @@ block b39:
fun i32 @func_51 () { fun i32 @func_51 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -13154,7 +13154,7 @@ block b39:
fun i32 @func_52 () { fun i32 @func_52 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -13428,7 +13428,7 @@ block b39:
fun i32 @func_53 () { fun i32 @func_53 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -13702,7 +13702,7 @@ block b39:
fun i32 @func_54 () { fun i32 @func_54 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -13976,7 +13976,7 @@ block b39:
fun i32 @func_55 () { fun i32 @func_55 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -14250,7 +14250,7 @@ block b39:
fun i32 @func_56 () { fun i32 @func_56 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -14524,7 +14524,7 @@ block b39:
fun i32 @func_57 () { fun i32 @func_57 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -14798,7 +14798,7 @@ block b39:
fun i32 @func_58 () { fun i32 @func_58 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -15072,7 +15072,7 @@ block b39:
fun i32 @func_59 () { fun i32 @func_59 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -15346,7 +15346,7 @@ block b39:
fun i32 @func_6 () { fun i32 @func_6 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -15620,7 +15620,7 @@ block b39:
fun i32 @func_60 () { fun i32 @func_60 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -15894,7 +15894,7 @@ block b39:
fun i32 @func_61 () { fun i32 @func_61 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -16168,7 +16168,7 @@ block b39:
fun i32 @func_62 () { fun i32 @func_62 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -16442,7 +16442,7 @@ block b39:
fun i32 @func_63 () { fun i32 @func_63 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -16716,7 +16716,7 @@ block b39:
fun i32 @func_64 () { fun i32 @func_64 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -16990,7 +16990,7 @@ block b39:
fun i32 @func_65 () { fun i32 @func_65 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -17264,7 +17264,7 @@ block b39:
fun i32 @func_66 () { fun i32 @func_66 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -17538,7 +17538,7 @@ block b39:
fun i32 @func_67 () { fun i32 @func_67 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -17812,7 +17812,7 @@ block b39:
fun i32 @func_68 () { fun i32 @func_68 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -18086,7 +18086,7 @@ block b39:
fun i32 @func_69 () { fun i32 @func_69 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -18360,7 +18360,7 @@ block b39:
fun i32 @func_7 () { fun i32 @func_7 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -18634,7 +18634,7 @@ block b39:
fun i32 @func_70 () { fun i32 @func_70 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -18908,7 +18908,7 @@ block b39:
fun i32 @func_71 () { fun i32 @func_71 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -19182,7 +19182,7 @@ block b39:
fun i32 @func_72 () { fun i32 @func_72 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -19456,7 +19456,7 @@ block b39:
fun i32 @func_73 () { fun i32 @func_73 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -19730,7 +19730,7 @@ block b39:
fun i32 @func_74 () { fun i32 @func_74 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -20004,7 +20004,7 @@ block b39:
fun i32 @func_75 () { fun i32 @func_75 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -20278,7 +20278,7 @@ block b39:
fun i32 @func_76 () { fun i32 @func_76 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -20552,7 +20552,7 @@ block b39:
fun i32 @func_77 () { fun i32 @func_77 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -20826,7 +20826,7 @@ block b39:
fun i32 @func_78 () { fun i32 @func_78 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -21100,7 +21100,7 @@ block b39:
fun i32 @func_79 () { fun i32 @func_79 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -21374,7 +21374,7 @@ block b39:
fun i32 @func_8 () { fun i32 @func_8 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -21648,7 +21648,7 @@ block b39:
fun i32 @func_80 () { fun i32 @func_80 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -21922,7 +21922,7 @@ block b39:
fun i32 @func_81 () { fun i32 @func_81 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -22196,7 +22196,7 @@ block b39:
fun i32 @func_82 () { fun i32 @func_82 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -22470,7 +22470,7 @@ block b39:
fun i32 @func_83 () { fun i32 @func_83 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -22744,7 +22744,7 @@ block b39:
fun i32 @func_84 () { fun i32 @func_84 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -23018,7 +23018,7 @@ block b39:
fun i32 @func_85 () { fun i32 @func_85 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -23292,7 +23292,7 @@ block b39:
fun i32 @func_86 () { fun i32 @func_86 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -23566,7 +23566,7 @@ block b39:
fun i32 @func_87 () { fun i32 @func_87 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -23840,7 +23840,7 @@ block b39:
fun i32 @func_88 () { fun i32 @func_88 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -24114,7 +24114,7 @@ block b39:
fun i32 @func_89 () { fun i32 @func_89 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -24388,7 +24388,7 @@ block b39:
fun i32 @func_9 () { fun i32 @func_9 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -24662,7 +24662,7 @@ block b39:
fun i32 @func_90 () { fun i32 @func_90 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -24936,7 +24936,7 @@ block b39:
fun i32 @func_91 () { fun i32 @func_91 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -25210,7 +25210,7 @@ block b39:
fun i32 @func_92 () { fun i32 @func_92 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -25484,7 +25484,7 @@ block b39:
fun i32 @func_93 () { fun i32 @func_93 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -25758,7 +25758,7 @@ block b39:
fun i32 @func_94 () { fun i32 @func_94 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -26032,7 +26032,7 @@ block b39:
fun i32 @func_95 () { fun i32 @func_95 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -26306,7 +26306,7 @@ block b39:
fun i32 @func_96 () { fun i32 @func_96 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -26580,7 +26580,7 @@ block b39:
fun i32 @func_97 () { fun i32 @func_97 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -26854,7 +26854,7 @@ block b39:
fun i32 @func_98 () { fun i32 @func_98 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -27128,7 +27128,7 @@ block b39:
fun i32 @func_99 () { fun i32 @func_99 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c
@@ -27402,7 +27402,7 @@ block b39:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:u1:t0 %l0:u1:t0
%l1:u1:t1 %l1:u1:t1
%l2:u1:t2 %l2:u1:t2

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:y %l0:i32:y
%l1:i32:x %l1:i32:x
%l2:i32:t0 %l2:i32:t0

View File

@@ -3,7 +3,7 @@ var i32 @nonce = 1
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:i %l0:i32:i
%l1:i32:p %l1:i32:p
%l2:i32:q %l2:i32:q

View File

@@ -2,7 +2,7 @@
fun i32 @fibonacci (i32) { fun i32 @fibonacci (i32) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:n %l0:i32:n
block b0: block b0:
@@ -30,7 +30,7 @@ block b2:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @fibonacci (i32) { fun i32 @fibonacci (i32) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:n %l0:i32:n
%l1:i32:i %l1:i32:i
%l2:i32:t1 %l2:i32:t1
@@ -56,7 +56,7 @@ block b9:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @fibonacci (i32) { fun i32 @fibonacci (i32) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:n %l0:i32:n
%l1:i32:i %l1:i32:i
%l2:i32:t1 %l2:i32:t1
@@ -56,7 +56,7 @@ block b7:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @fibonacci (i32) { fun i32 @fibonacci (i32) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:n %l0:i32:n
%l1:i32:i %l1:i32:i
%l2:i32:t1 %l2:i32:t1
@@ -53,7 +53,7 @@ block b7:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -3,7 +3,7 @@ var i32 @nonce = 1
fun i32 @fibonacci (i32) { fun i32 @fibonacci (i32) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:n %l0:i32:n
block b0: block b0:
@@ -31,7 +31,7 @@ block b2:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:number %l0:i32:number
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun f64 @average (i32, i32*) { fun f64 @average (i32, i32*) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:len %l0:i32:len
%l1:i32*:a %l1:i32*:a
%l2:i32:sum %l2:i32:sum
@@ -50,7 +50,7 @@ block b5:
fun f64 @custom_abs (f64) { fun f64 @custom_abs (f64) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:t0 %l1:f64:t0
@@ -81,7 +81,7 @@ block b3:
fun f64 @custom_max (f64, f64) { fun f64 @custom_max (f64, f64) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f64:t0 %l2:f64:t0
@@ -114,7 +114,7 @@ block b3:
fun i32 @is_close (f64, f64, f64, f64) { fun i32 @is_close (f64, f64, f64, f64) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f64:rel_tol %l2:f64:rel_tol
@@ -150,7 +150,7 @@ block b0:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:[10 x i32]:a %l0:[10 x i32]:a
%l1:i32:len %l1:i32:len
%l2:i32:i %l2:i32:i

View File

@@ -2,7 +2,7 @@
fun f64 @func_0 () { fun f64 @func_0 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -162,7 +162,7 @@ block b0:
fun f32 @func_1 () { fun f32 @func_1 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -323,7 +323,7 @@ block b0:
fun f32 @func_10 () { fun f32 @func_10 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -480,7 +480,7 @@ block b0:
fun f64 @func_11 () { fun f64 @func_11 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -633,7 +633,7 @@ block b0:
fun f64 @func_12 () { fun f64 @func_12 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -787,7 +787,7 @@ block b0:
fun f32 @func_13 () { fun f32 @func_13 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -936,7 +936,7 @@ block b0:
fun f32 @func_14 () { fun f32 @func_14 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -1097,7 +1097,7 @@ block b0:
fun f32 @func_15 () { fun f32 @func_15 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -1258,7 +1258,7 @@ block b0:
fun f64 @func_16 () { fun f64 @func_16 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -1420,7 +1420,7 @@ block b0:
fun f64 @func_17 () { fun f64 @func_17 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -1575,7 +1575,7 @@ block b0:
fun f32 @func_18 () { fun f32 @func_18 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -1733,7 +1733,7 @@ block b0:
fun f32 @func_19 () { fun f32 @func_19 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -1887,7 +1887,7 @@ block b0:
fun f64 @func_2 () { fun f64 @func_2 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -2050,7 +2050,7 @@ block b0:
fun f32 @func_20 () { fun f32 @func_20 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -2204,7 +2204,7 @@ block b0:
fun f32 @func_21 () { fun f32 @func_21 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -2355,7 +2355,7 @@ block b0:
fun f64 @func_22 () { fun f64 @func_22 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -2523,7 +2523,7 @@ block b0:
fun f32 @func_23 () { fun f32 @func_23 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -2678,7 +2678,7 @@ block b0:
fun f64 @func_24 () { fun f64 @func_24 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -2832,7 +2832,7 @@ block b0:
fun f32 @func_25 () { fun f32 @func_25 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -2993,7 +2993,7 @@ block b0:
fun f32 @func_26 () { fun f32 @func_26 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -3153,7 +3153,7 @@ block b0:
fun f64 @func_27 () { fun f64 @func_27 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -3309,7 +3309,7 @@ block b0:
fun f32 @func_28 () { fun f32 @func_28 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -3468,7 +3468,7 @@ block b0:
fun f32 @func_29 () { fun f32 @func_29 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -3626,7 +3626,7 @@ block b0:
fun f64 @func_3 () { fun f64 @func_3 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -3781,7 +3781,7 @@ block b0:
fun f64 @func_30 () { fun f64 @func_30 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -3934,7 +3934,7 @@ block b0:
fun f64 @func_31 () { fun f64 @func_31 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -4101,7 +4101,7 @@ block b0:
fun f64 @func_32 () { fun f64 @func_32 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -4256,7 +4256,7 @@ block b0:
fun f64 @func_33 () { fun f64 @func_33 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -4412,7 +4412,7 @@ block b0:
fun f64 @func_34 () { fun f64 @func_34 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -4565,7 +4565,7 @@ block b0:
fun f32 @func_35 () { fun f32 @func_35 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -4723,7 +4723,7 @@ block b0:
fun f32 @func_36 () { fun f32 @func_36 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -4885,7 +4885,7 @@ block b0:
fun f64 @func_37 () { fun f64 @func_37 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -5040,7 +5040,7 @@ block b0:
fun f32 @func_38 () { fun f32 @func_38 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -5194,7 +5194,7 @@ block b0:
fun f64 @func_39 () { fun f64 @func_39 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -5347,7 +5347,7 @@ block b0:
fun f64 @func_4 () { fun f64 @func_4 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -5500,7 +5500,7 @@ block b0:
fun f32 @func_40 () { fun f32 @func_40 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -5655,7 +5655,7 @@ block b0:
fun f64 @func_41 () { fun f64 @func_41 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -5808,7 +5808,7 @@ block b0:
fun f64 @func_42 () { fun f64 @func_42 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -5966,7 +5966,7 @@ block b0:
fun f32 @func_43 () { fun f32 @func_43 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -6127,7 +6127,7 @@ block b0:
fun f32 @func_44 () { fun f32 @func_44 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -6292,7 +6292,7 @@ block b0:
fun f32 @func_45 () { fun f32 @func_45 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -6453,7 +6453,7 @@ block b0:
fun f32 @func_46 () { fun f32 @func_46 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -6605,7 +6605,7 @@ block b0:
fun f64 @func_47 () { fun f64 @func_47 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -6761,7 +6761,7 @@ block b0:
fun f32 @func_48 () { fun f32 @func_48 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -6914,7 +6914,7 @@ block b0:
fun f64 @func_49 () { fun f64 @func_49 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -7066,7 +7066,7 @@ block b0:
fun f32 @func_5 () { fun f32 @func_5 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -7226,7 +7226,7 @@ block b0:
fun f32 @func_50 () { fun f32 @func_50 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -7382,7 +7382,7 @@ block b0:
fun f64 @func_51 () { fun f64 @func_51 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -7530,7 +7530,7 @@ block b0:
fun f64 @func_52 () { fun f64 @func_52 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -7686,7 +7686,7 @@ block b0:
fun f64 @func_53 () { fun f64 @func_53 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -7850,7 +7850,7 @@ block b0:
fun f32 @func_54 () { fun f32 @func_54 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -8011,7 +8011,7 @@ block b0:
fun f64 @func_55 () { fun f64 @func_55 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -8162,7 +8162,7 @@ block b0:
fun f64 @func_56 () { fun f64 @func_56 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -8317,7 +8317,7 @@ block b0:
fun f32 @func_57 () { fun f32 @func_57 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -8479,7 +8479,7 @@ block b0:
fun f64 @func_58 () { fun f64 @func_58 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -8637,7 +8637,7 @@ block b0:
fun f64 @func_59 () { fun f64 @func_59 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -8798,7 +8798,7 @@ block b0:
fun f64 @func_6 () { fun f64 @func_6 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -8953,7 +8953,7 @@ block b0:
fun f64 @func_60 () { fun f64 @func_60 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -9107,7 +9107,7 @@ block b0:
fun f64 @func_61 () { fun f64 @func_61 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -9269,7 +9269,7 @@ block b0:
fun f64 @func_62 () { fun f64 @func_62 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -9426,7 +9426,7 @@ block b0:
fun f32 @func_63 () { fun f32 @func_63 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -9582,7 +9582,7 @@ block b0:
fun f64 @func_64 () { fun f64 @func_64 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -9736,7 +9736,7 @@ block b0:
fun f32 @func_65 () { fun f32 @func_65 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -9889,7 +9889,7 @@ block b0:
fun f64 @func_66 () { fun f64 @func_66 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -10040,7 +10040,7 @@ block b0:
fun f32 @func_67 () { fun f32 @func_67 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -10198,7 +10198,7 @@ block b0:
fun f32 @func_68 () { fun f32 @func_68 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -10357,7 +10357,7 @@ block b0:
fun f64 @func_69 () { fun f64 @func_69 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -10518,7 +10518,7 @@ block b0:
fun f64 @func_7 () { fun f64 @func_7 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -10677,7 +10677,7 @@ block b0:
fun f32 @func_70 () { fun f32 @func_70 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -10834,7 +10834,7 @@ block b0:
fun f64 @func_71 () { fun f64 @func_71 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -10992,7 +10992,7 @@ block b0:
fun f64 @func_72 () { fun f64 @func_72 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -11150,7 +11150,7 @@ block b0:
fun f32 @func_73 () { fun f32 @func_73 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -11306,7 +11306,7 @@ block b0:
fun f64 @func_74 () { fun f64 @func_74 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -11459,7 +11459,7 @@ block b0:
fun f32 @func_75 () { fun f32 @func_75 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -11615,7 +11615,7 @@ block b0:
fun f64 @func_76 () { fun f64 @func_76 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -11761,7 +11761,7 @@ block b0:
fun f64 @func_77 () { fun f64 @func_77 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -11916,7 +11916,7 @@ block b0:
fun f32 @func_78 () { fun f32 @func_78 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -12068,7 +12068,7 @@ block b0:
fun f32 @func_79 () { fun f32 @func_79 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -12229,7 +12229,7 @@ block b0:
fun f64 @func_8 () { fun f64 @func_8 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -12385,7 +12385,7 @@ block b0:
fun f32 @func_80 () { fun f32 @func_80 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -12533,7 +12533,7 @@ block b0:
fun f64 @func_81 () { fun f64 @func_81 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -12691,7 +12691,7 @@ block b0:
fun f64 @func_82 () { fun f64 @func_82 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -12853,7 +12853,7 @@ block b0:
fun f64 @func_83 () { fun f64 @func_83 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -13012,7 +13012,7 @@ block b0:
fun f32 @func_84 () { fun f32 @func_84 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -13169,7 +13169,7 @@ block b0:
fun f64 @func_85 () { fun f64 @func_85 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -13327,7 +13327,7 @@ block b0:
fun f32 @func_86 () { fun f32 @func_86 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -13484,7 +13484,7 @@ block b0:
fun f64 @func_87 () { fun f64 @func_87 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -13640,7 +13640,7 @@ block b0:
fun f32 @func_88 () { fun f32 @func_88 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -13798,7 +13798,7 @@ block b0:
fun f32 @func_89 () { fun f32 @func_89 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -13953,7 +13953,7 @@ block b0:
fun f32 @func_9 () { fun f32 @func_9 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -14114,7 +14114,7 @@ block b0:
fun f64 @func_90 () { fun f64 @func_90 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -14285,7 +14285,7 @@ block b0:
fun f32 @func_91 () { fun f32 @func_91 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -14440,7 +14440,7 @@ block b0:
fun f32 @func_92 () { fun f32 @func_92 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -14593,7 +14593,7 @@ block b0:
fun f64 @func_93 () { fun f64 @func_93 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -14748,7 +14748,7 @@ block b0:
fun f64 @func_94 () { fun f64 @func_94 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -14904,7 +14904,7 @@ block b0:
fun f32 @func_95 () { fun f32 @func_95 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -15062,7 +15062,7 @@ block b0:
fun f32 @func_96 () { fun f32 @func_96 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f32:c %l2:f32:c
@@ -15225,7 +15225,7 @@ block b0:
fun f32 @func_97 () { fun f32 @func_97 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f64:b %l1:f64:b
%l2:f64:c %l2:f64:c
@@ -15384,7 +15384,7 @@ block b0:
fun f64 @func_98 () { fun f64 @func_98 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f32:a %l0:f32:a
%l1:f64:b %l1:f64:b
%l2:f32:c %l2:f32:c
@@ -15543,7 +15543,7 @@ block b0:
fun f32 @func_99 () { fun f32 @func_99 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:f64:a %l0:f64:a
%l1:f32:b %l1:f32:b
%l2:f64:c %l2:f64:c
@@ -15689,7 +15689,7 @@ block b0:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @foo (i32, i32, i32) { fun i32 @foo (i32, i32, i32) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:x %l0:i32:x
%l1:i32:y %l1:i32:y
%l2:i32:z %l2:i32:z
@@ -31,7 +31,7 @@ block b2:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:i %l0:i32:i
%l1:i32:i %l1:i32:i
%l2:i32:i %l2:i32:i

View File

@@ -4,7 +4,7 @@ var i32 @nonce = 1
fun i32 @foo (i32, i32) { fun i32 @foo (i32, i32) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:i %l0:i32:i
%l1:i32:j %l1:i32:j
@@ -24,7 +24,7 @@ block b0:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:i %l0:i32:i
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @foo (i32, i32, i32) { fun i32 @foo (i32, i32, i32) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:i %l0:i32:i
%l1:i32:j %l1:i32:j
%l2:i32:k %l2:i32:k
@@ -25,7 +25,7 @@ block b0:
fun [ret:i32 params:(i32, i32, i32)]* @foo2 () { fun [ret:i32 params:(i32, i32, i32)]* @foo2 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:
@@ -35,7 +35,7 @@ block b0:
fun [ret:[ret:i32 params:(i32, i32, i32)]* params:()]* @foo3 () { fun [ret:[ret:i32 params:(i32, i32, i32)]* params:()]* @foo3 () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:
@@ -45,7 +45,7 @@ block b0:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @foo () { fun i32 @foo () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:sum %l0:i32:sum
%l1:i32:i %l1:i32:i
@@ -45,7 +45,7 @@ block b11:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @gcd (i32, i32) { fun i32 @gcd (i32, i32) {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:t0 %l2:i32:t0
@@ -85,7 +85,7 @@ block b11:
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i16:temp %l0:i16:temp
%l1:u32:temp2 %l1:u32:temp2

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:temp %l0:i32:temp
block b0: block b0:

View File

@@ -2,7 +2,7 @@
fun i32 @main () { fun i32 @main () {
init: init:
bid: b0 bid: b0
allocations: allocations:
%l0:i32:a %l0:i32:a
%l1:i32:b %l1:i32:b
%l2:i32:c %l2:i32:c

Some files were not shown because too many files have changed in this diff Show More