Lines Matching defs:orc
13 #include <objtool/orc.h>
18 struct orc_entry orc;
23 static int orc_list_add(struct list_head *orc_list, struct orc_entry *orc,
33 entry->orc = *orc;
60 struct orc_entry orc, prev_orc = {0};
72 if (init_orc_entry(&orc, insn->cfi, insn))
74 if (!memcmp(&prev_orc, &orc, sizeof(orc)))
76 if (orc_list_add(&orc_list, &orc, sec,
80 prev_orc = orc;
97 if (init_orc_entry(&orc, cfi, insn))
99 if (!memcmp(&prev_orc, &orc, sizeof(orc)))
101 if (orc_list_add(&orc_list, &orc, insn->sec,
105 prev_orc = orc;
145 &entry->orc))