Skip to content

Commit b9c33f7

Browse files
committedJun 30, 2023
providing and using destroy method
1 parent 5f91bfd commit b9c33f7

11 files changed

+52
-4
lines changed
 

‎Changelog

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
version 2.1.2-beta
22
- fix build errors
3+
- fix segfault caused by incorrect syscall in timer.c
4+
- adding `destroy` method to cleanly free/unmap data
35

46
version 2.1.1 (2023-06-29)
57
- fix package-lock.json file

‎lib/src/measuresuite.c

+1
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ int ms_get_cycles(measuresuite_t ms, size_t **dest, size_t idx) {
131131
int ms_terminate(measuresuite_t ms) {
132132
if (ms_unload_all(ms) // unload all the loaded functions
133133
|| end_random(ms) // free random data spot
134+
|| end_timer(ms) // free all timer related data
134135
) {
135136
return 1;
136137
}

‎lib/src/timer.c

+20
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,9 @@ static uint64_t measuresuite_time_rdtscp() {
178178
*/
179179
int init_timer(struct measuresuite *ms) {
180180

181+
// init timer struct
182+
memset(&ms->timer, 0, sizeof(ms->timer));
183+
181184
// try to initialize
182185
init_fdperf(ms);
183186

@@ -192,6 +195,23 @@ int init_timer(struct measuresuite *ms) {
192195
return 0;
193196
}
194197

198+
/**
199+
* This function checks if we used PMC and will then free the mmapped region
200+
*/
201+
int end_timer(struct measuresuite *ms) {
202+
203+
if (ms->timer.fdperf == -1) {
204+
// we've used RDTSCP, nothing to be done
205+
return 0;
206+
}
207+
// otherwise we used pmc
208+
if (munmap(ms->timer.buf, sysconf(_SC_PAGESIZE)) == 0) {
209+
return 0;
210+
}
211+
perror("munmap of timer buffer (pmc) failed.");
212+
return 1;
213+
}
214+
195215
void start_timer(struct measuresuite *ms, uint64_t *start) {
196216
// we need to reset the PMC if we are using them.
197217
if (ms->timer.timer_function == measuresuite_time_pmc) {

‎lib/src/timer.h

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
#include <stdint.h>
2222

2323
int init_timer(struct measuresuite *ms);
24+
int end_timer(struct measuresuite *ms);
2425
void start_timer(struct measuresuite *ms, uint64_t *start);
2526
uint64_t stop_timer(struct measuresuite *ms, uint64_t start);
2627

‎ts/src/binding/binding.c

+3
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@ napi_value Init(napi_env env, napi_value exports) {
6666
// measure(batchSize: number, numBatches: number): string;
6767
register_function(env, exports, measure, "measure");
6868

69+
// destroy(): number;
70+
register_function(env, exports, destroy, "destroy");
71+
6972
return exports;
7073
}
7174

‎ts/src/binding/helper.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717
#include "helper.h"
1818
// NOLINTNEXTLINE (must declare hint as a valid callback for NODE_API)
19-
void finalise(napi_env env, void *finalize_data, void *finalize_hint) {
20-
if (ms_terminate((measuresuite_t)finalize_data)) {
19+
void finalise(napi_env env, void *finalise_data, void *finalize_hint) {
20+
if (ms_terminate((measuresuite_t)finalise_data)) {
2121
if (napi_throw_error(env, NULL, "measure_end didnt work.") != napi_ok) {
2222
fprintf(stderr, "Unable to throw error.\n");
2323
}

‎ts/src/binding/helper.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#include <stdio.h>
2323
#include <string.h>
2424

25-
void finalise(napi_env env, void *finalize_data, void *finalize_hint);
25+
void finalise(napi_env env, void *finalise_data, void *finalize_hint);
2626

2727
void throw_error_return_void(napi_env env, const char *msg);
2828

‎ts/src/binding/other_functions.c

+15-1
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,26 @@ void init(napi_env env, napi_callback_info info) {
5858
}
5959

6060
// save the measuresuite_t handle in as the instance data. and set the
61-
// finalise callback to call measure end
61+
// finalise callback to call ms_teminate
6262
if (napi_set_instance_data(env, ms, &finalise, NULL) != napi_ok) {
6363
return throw_error_return_void(
6464
env, "Unable to set instance data / finalize_cb.");
6565
}
6666
}
67+
napi_value destroy(napi_env env, napi_callback_info info) {
68+
void *instance_data = NULL;
69+
if (napi_get_instance_data(env, &instance_data) != napi_ok) {
70+
return throw_and_return_napi_val(env, "Unable to get instance data.");
71+
}
72+
73+
measuresuite_t ms = (measuresuite_t)instance_data;
74+
if (ms_terminate(ms)) {
75+
throw_and_return_napi_val(env, "Unable to destroy measuresuite instance.");
76+
}
77+
napi_value napi_result = NULL;
78+
napi_create_int32(env, 0, &napi_result);
79+
return napi_result;
80+
}
6781

6882
napi_value binding_set_bounds(napi_env env, napi_callback_info info) {
6983
// getting back the instance

‎ts/src/binding/other_functions.h

+1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,6 @@
2020
void init(napi_env env, napi_callback_info info);
2121
napi_value binding_set_bounds(napi_env env, napi_callback_info info);
2222
napi_value measure(napi_env env, napi_callback_info info);
23+
napi_value destroy(napi_env env, napi_callback_info info);
2324

2425
#endif /* OTHER_FUNCTIONS_H */

‎ts/src/measuresuite-native-module.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,5 @@ declare module "measuresuite-native-module" {
3232
function set_bounds(bounds: BigUint64Array): void;
3333

3434
function measure(batchSize: number, numBatches: number): string;
35+
function destroy(): number;
3536
}

‎ts/src/measuresuite.ts

+5
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ export const native_ms = {
4343
set_bounds: ms.set_bounds,
4444

4545
measure: ms.measure,
46+
destroy: ms.destroy,
4647
};
4748

4849
export class Measuresuite {
@@ -96,6 +97,10 @@ export class Measuresuite {
9697
this.ft2load.set("SHARED_OBJECT", ms.load_shared_object_file);
9798
}
9899

100+
public destroy(): number {
101+
return ms.destroy();
102+
}
103+
99104
// mapping tables
100105
private ft2load = new Map<FunctionType, (filename: string, symbol: string) => void>();
101106

0 commit comments

Comments
 (0)
Please sign in to comment.