Searched refs:lbl (Results 1 - 9 of 9) sorted by relevance

/gem5/src/arch/alpha/
H A Dsystem.hh111 addPalFuncEvent(const char *lbl) argument
113 return addFuncEvent<T>(palSymtab, lbl);
119 addConsoleFuncEvent(const char *lbl) argument
121 return addFuncEvent<T>(consoleSymtab, lbl);
/gem5/src/arch/mips/
H A Dsystem.hh84 addConsoleFuncEvent(const char *lbl) argument
86 return addFuncEvent<T>(consoleSymtab, lbl);
/gem5/src/arch/sparc/
H A Dsystem.hh105 addResetFuncEvent(const char *lbl) argument
107 return addFuncEvent<T>(resetSymtab, lbl);
113 addHypervisorFuncEvent(const char *lbl) argument
115 return addFuncEvent<T>(hypervisorSymtab, lbl);
121 addOpenbootFuncEvent(const char *lbl) argument
123 return addFuncEvent<T>(openbootSymtab, lbl);
/gem5/src/arch/riscv/
H A Dsystem.hh97 addConsoleFuncEvent(const char *lbl) argument
99 return addFuncEvent<T>(consoleSymtab, lbl);
/gem5/src/sim/
H A Dsystem.hh482 * @param lbl Function to hook the event to.
487 T *addFuncEvent(const SymbolTable *symtab, const char *lbl,
493 if (symtab->findAddress(lbl, addr)) {
504 T *addFuncEvent(const SymbolTable *symtab, const char *lbl)
506 return addFuncEvent<T>(symtab, lbl, lbl);
510 T *addFuncEventOrPanic(const SymbolTable *symtab, const char *lbl,
513 T *e(addFuncEvent<T>(symtab, lbl, std::forward<Args>(args)...));
515 panic("Failed to find symbol '%s'", lbl);
532 * @param lbl Functio
[all...]
/gem5/src/gpu-compute/
H A Dhsail_code.cc122 const BrigDirectiveLabel *lbl = local
127 obj->getString(lbl->name));
129 labelMap.addLabel(lbl, inst_addr, obj);
231 Label &lbl = map[lbl_name]; local
233 if (lbl.defined()) {
237 lbl.define(lbl_name, inst_index);
246 Label &lbl = map[name]; local
247 lbl.checkName(name);
249 return &lbl;
H A Dhsail_code.hh212 void addLabel(const Brig::BrigDirectiveLabel *lbl, int inst_index,
215 Label *refLabel(const Brig::BrigDirectiveLabel *lbl,
439 refLabel(const Brig::BrigDirectiveLabel *lbl, const BrigObject *obj) argument
441 return labelMap.refLabel(lbl, obj);
/gem5/src/mem/
H A Dpacket.hh452 void pushLabel(const std::string &lbl,
1345 pushLabel(const std::string &lbl) argument
1348 safe_cast<PrintReqState*>(senderState)->pushLabel(lbl);
H A Dpacket.cc446 Packet::PrintReqState::pushLabel(const std::string &lbl, argument
449 labelStack.push_back(LabelStackEntry(lbl, curPrefixPtr));

Completed in 25 milliseconds