-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmeasuresuite.c
178 lines (152 loc) · 4.59 KB
/
measuresuite.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/**
* Copyright 2023 University of Adelaide
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "alloc_helper.h"
#include "error/description.h"
#include "evaluator.h"
#include "loader.h"
#include "randomizer.h"
#include "struct_helpers.h"
#include "struct_measuresuite.h"
#include "timer.h"
#include <measuresuite.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
// set static variables
int ms_initialize(measuresuite_t *dest_ms, int arg_width, int num_arg_in,
int num_arg_out) {
measuresuite_t ms = create_default_ms();
*dest_ms = ms;
if (ms == NULL // alloc ok?
|| set_argwidth(ms, arg_width) // set arg width
|| set_argin(ms, num_arg_in) // set arg in
|| set_argout(ms, num_arg_out) // set arg out
|| validate_num_args(ms) // validate arg counts
|| init_random(ms) // initialize randomness structures
|| init_json(ms) // initialize measure structs
|| init_timer(ms) // initialize timer structures
) {
return 1;
}
ms->errorno = E_SUCCESS;
return 0;
}
int ms_set_bounds(measuresuite_t ms, const uint64_t *bounds) {
return set_bounds(ms, bounds);
}
// NOTE: only useful when used with AL
int ms_set_chunk_size(measuresuite_t ms, size_t chunk_size) {
return set_chunk_size(ms, chunk_size);
}
void ms_set_checking(measuresuite_t ms, int control) {
ms->enable_check = control == 0 ? 0 : 1;
}
int ms_load_file(measuresuite_t ms, enum load_type type, const char *filename,
const char *symbol, int *id) {
return load_file(ms, type, filename, symbol, id);
}
int ms_load_data(measuresuite_t ms, enum load_type type, const uint8_t *data,
size_t data_len, const char *symbol, int *id) {
return load_data(ms, type, data, data_len, symbol, id);
}
int ms_unload_all(measuresuite_t ms) {
for (size_t i = ms->num_functions; i > 0; i--) {
if (ms_unload_last(ms)) {
return 1;
}
}
ms->errorno = E_SUCCESS;
return 0;
}
int ms_unload_last(measuresuite_t ms) {
if (ms->num_functions == 0) {
ms->errorno = E_INTERNAL_FUNCTIONS__NOTHING_TO_UNLOAD;
return 1;
}
if (unload(ms, ms->num_functions - 1)) {
return 1;
}
ms->errorno = E_SUCCESS;
return 0;
}
int ms_measure(measuresuite_t ms, int batch_size, int num_batches) {
if (set_num_batches(ms, num_batches) // set number of batches
|| set_batch_size(ms, batch_size) // set batch size
|| run_measurement(ms) // measure
) {
return 1;
}
ms->errorno = E_SUCCESS;
return 0;
}
void ms_get_json(measuresuite_t ms, const char **json, size_t *json_len) {
*json = ms->json;
*json_len = strlen(*json);
}
int ms_get_cycles(measuresuite_t ms, size_t **dest, size_t idx) {
if (idx >= ms->num_functions) {
ms->errorno = E_INVALID_INPUT__NUM_IDX_OOB;
return 1;
}
*dest = ms->functions[idx].cycle_results;
return 0;
}
enum TIMER ms_get_timer(measuresuite_t ms) {
if (ms->timer.fdperf == -1) {
return RDTSCP;
}
return PMC;
}
/**
* frees memory used for randomness and scratches
* frees memory and mmaps
* can be called with NULL, then no operation will be done.
*/
int ms_terminate(measuresuite_t ms) {
if (ms == NULL) {
return 0;
}
if (ms_unload_all(ms) // unload all the loaded functions
|| end_random(ms) // free random data spot
|| end_timer(ms) // free all timer related data
) {
return 1;
}
free(ms->json);
free(ms->functions);
free(ms->bounds);
free(ms);
return 0;
}
void ms_printf_error(measuresuite_t ms) {
printf("%s\n", ms_get_error_string(ms));
if (ms->additional_info) {
printf("%s\n", ms->additional_info);
}
}
void ms_fprintf_error(measuresuite_t ms, FILE *file) {
fprintf(file, "%s\n", ms_get_error_string(ms));
if (ms->additional_info) {
fprintf(file, "%s\n", ms->additional_info);
}
}
void ms_sprintf_error(measuresuite_t ms, char *dest, int len) {
snprintf(dest, len, "%s Reason: %s\n", get_error_string(ms->errorno),
ms->additional_info);
}
const char *ms_get_error_string(measuresuite_t ms) {
return get_error_string(ms->errorno);
}