asm: remove references to old mie api
This commit is contained in:
@@ -119,7 +119,7 @@ struct ivy_bin_constpool {
|
|||||||
};
|
};
|
||||||
|
|
||||||
struct ivy_bin_block {
|
struct ivy_bin_block {
|
||||||
fx_i32 fx_index;
|
fx_i32 b_index;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct ivy_bin_import_table_entry {
|
struct ivy_bin_import_table_entry {
|
||||||
|
|||||||
@@ -1,14 +1,6 @@
|
|||||||
#include "mie/select/opcode.h"
|
|
||||||
|
|
||||||
#include <ivy/asm/mie.h>
|
#include <ivy/asm/mie.h>
|
||||||
#include <ivy/opcode.h>
|
#include <ivy/opcode.h>
|
||||||
#include <mie/ctx.h>
|
#include <mie/ctx.h>
|
||||||
#include <mie/ir/const.h>
|
|
||||||
#include <mie/ir/msg.h>
|
|
||||||
#include <mie/select/builder.h>
|
|
||||||
#include <mie/select/graph.h>
|
|
||||||
#include <mie/select/node.h>
|
|
||||||
#include <mie/target/select.h>
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
@@ -61,6 +53,7 @@ static size_t node_name(
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if 0
|
||||||
static enum mie_status get_sp_register(
|
static enum mie_status get_sp_register(
|
||||||
const struct mie_target *target, struct mie_select_builder *builder,
|
const struct mie_target *target, struct mie_select_builder *builder,
|
||||||
struct mie_select_value *out)
|
struct mie_select_value *out)
|
||||||
@@ -415,3 +408,4 @@ const struct mie_target_select_ops __ivy_select_ops = {
|
|||||||
.s_node_name = node_name,
|
.s_node_name = node_name,
|
||||||
.s_lower_msg = lower_msg,
|
.s_lower_msg = lower_msg,
|
||||||
};
|
};
|
||||||
|
#endif
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
#include <mie/target/target.h>
|
#if 0
|
||||||
|
|
||||||
extern const struct mie_target_select_ops __ivy_select_ops;
|
extern const struct mie_target_select_ops __ivy_select_ops;
|
||||||
|
|
||||||
static const struct mie_target ivy_target = {
|
static const struct mie_target ivy_target = {
|
||||||
@@ -11,3 +10,4 @@ const struct mie_target *ivy_asm_mie_target(void)
|
|||||||
{
|
{
|
||||||
return &ivy_target;
|
return &ivy_target;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user