[V2,19/24] pipeline: introduce pipeline compilation

Message ID 20210910133713.93103-19-cristian.dumitrescu@intel.com (mailing list archive)
State Superseded, archived
Delegated to: Thomas Monjalon
Headers
Series [V2,01/24] pipeline: move data structures to internal header file |

Checks

Context Check Description
ci/checkpatch success coding style OK

Commit Message

Cristian Dumitrescu Sept. 10, 2021, 1:37 p.m. UTC
  Lay the foundation to generate C code for the pipeline: C functions
for actions and custom instructions are generated, built as shared
object library and loaded into the pipeline.

Signed-off-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
---
 lib/pipeline/rte_swx_pipeline.c | 44 +++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)
  

Patch

diff --git a/lib/pipeline/rte_swx_pipeline.c b/lib/pipeline/rte_swx_pipeline.c
index 598009c024..4c0e3043ec 100644
--- a/lib/pipeline/rte_swx_pipeline.c
+++ b/lib/pipeline/rte_swx_pipeline.c
@@ -8953,6 +8953,9 @@  rte_swx_pipeline_instructions_config(struct rte_swx_pipeline *p,
 	return 0;
 }
 
+static int
+pipeline_compile(struct rte_swx_pipeline *p);
+
 int
 rte_swx_pipeline_build(struct rte_swx_pipeline *p)
 {
@@ -9018,6 +9021,9 @@  rte_swx_pipeline_build(struct rte_swx_pipeline *p)
 		goto error;
 
 	p->build_done = 1;
+
+	pipeline_compile(p);
+
 	return 0;
 
 error:
@@ -9760,3 +9766,41 @@  rte_swx_ctl_meter_stats_read(struct rte_swx_pipeline *p,
 
 	return 0;
 }
+
+/*
+ * Pipeline compilation.
+ */
+static int
+pipeline_codegen(struct rte_swx_pipeline *p)
+{
+	FILE *f = NULL;
+
+	if (!p)
+		return -EINVAL;
+
+	/* Create the .c file. */
+	f = fopen("/tmp/pipeline.c", "w");
+	if (!f)
+		return -EIO;
+
+	/* Include the .h file. */
+	fprintf(f, "#include \"rte_swx_pipeline_internal.h\"\n");
+
+	/* Close the .c file. */
+	fclose(f);
+
+	return 0;
+}
+
+static int
+pipeline_compile(struct rte_swx_pipeline *p)
+{
+	int status = 0;
+
+	/* Code generation. */
+	status = pipeline_codegen(p);
+	if (status)
+		return status;
+
+	return status;
+}