Home | History | Annotate | Download | only in opjitconv

Lines Matching refs:entry

25 /* parse a code load record and add the entry to the jitentry list */
29 struct jitentry * entry;
37 entry = xcalloc(1, sizeof(struct jitentry));
40 entry->next = NULL;
43 entry->symbol_name = (char *)ptr;
44 entry->sym_name_malloced = 0;
46 entry->code = rec->code_addr ? ptr : NULL;
47 entry->vma = rec->vma;
48 entry->code_size = rec->code_size;
49 entry->section = NULL;
50 entry->life_start = rec->timestamp;
54 entry->life_end = end_time;
57 entry->next = jitentry_list;
58 jitentry_list = entry;
63 rec_totalsize = sizeof(*rec) + strlen(entry->symbol_name) + 1 + entry->code_size;
67 "padding_count=%llu, life_start=%lli, life_end=%lli\n", entry->symbol_name,
68 entry->vma, entry->code_size, (unsigned long long)padding_count, entry->life_start,
69 entry->life_end);
73 if (end && (ptr + entry->code_size + padding_count != end)) {
89 struct jitentry * entry;
100 for (entry = jitentry_list; entry; entry = entry->next) {
101 if (entry->vma == rec->vma &&
102 entry->life_end == end_time) {
103 entry->life_end = rec->timestamp;