-
Notifications
You must be signed in to change notification settings - Fork 71
Description
If we have a Copilot specification where we have multiple conditions for triggering the same function (but perhaps we are providing different arguments), then in generated C code we would have multiple declarations of trigger functions and multiple definitions of helper functions and the generated code could not be compiled without modifications.
Example
Suppose we would like to trigger the switchOffPower(..) function if the current of one of the components is too large. We would also like to pass the value of the signal and the index of the component to the switchOffPower(..).
{-# LANGUAGE RebindableSyntax #-}
module RepeatedDeclarationsExample where
import Language.Copilot
import Copilot.Compile.C99
current1 :: Stream Float
current1 = extern "current_signal1" Nothing
current2 :: Stream Float
current2 = extern "current_signal2" Nothing
spec = do
trigger "switchOffPower" (current1 > 0.8) [arg current1, arg (constant 0 :: Stream Word8)]
trigger "switchOffPower" (current2 > 0.8) [arg current2, arg (constant 1 :: Stream Word8)]
main :: IO ()
main = do
reify spec >>= compile "repeated_declarations_example"Then the repeated_declarations_example.h declares switchOffPower(..) twice:
extern float current_signal1;
extern float current_signal2;
void switchOffPower(float switchOffPower_arg0, uint8_t switchOffPower_arg1);
void switchOffPower(float switchOffPower_arg0, uint8_t switchOffPower_arg1);
void step(void);And repeated_declarations_example.c contains multiple definitions of bool switchOffPower_guard(void), float switchOffPower_arg0(void), uint8_t switchOffPower_arg1(void) .
#include <stdint.h>
#include <stdbool.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include "repeated_declarations_example.h"
static float current_signal1_cpy;
static float current_signal2_cpy;
bool switchOffPower_guard(void) {
return (current_signal1_cpy) > ((float)(0.800000011920929));
}
float switchOffPower_arg0(void) {
return current_signal1_cpy;
}
uint8_t switchOffPower_arg1(void) {
return (uint8_t)(0);
}
bool switchOffPower_guard(void) {
return (current_signal2_cpy) > ((float)(0.800000011920929));
}
float switchOffPower_arg0(void) {
return current_signal2_cpy;
}
uint8_t switchOffPower_arg1(void) {
return (uint8_t)(1);
}
void step(void) {
(current_signal1_cpy) = (current_signal1);
(current_signal2_cpy) = (current_signal2);
if ((switchOffPower_guard)()) {
{(switchOffPower)(((switchOffPower_arg0)()), ((switchOffPower_arg1)()));}
};
if ((switchOffPower_guard)()) {
{(switchOffPower)(((switchOffPower_arg0)()), ((switchOffPower_arg1)()));}
};
}