Lines Matching refs:label
109 virtual void label(const char* theLabel);
110 virtual void B(int cc, const char* label);
111 virtual void BL(int cc, const char* label);
113 virtual uint32_t* pcForLabel(const char* label);
226 char label[100][10]; member
258 virtual void label(const char* string);
261 virtual uint32_t* pcForLabel(const char* label);
363 void B(const char* label);
364 void BEQ(int Rs, int Rt, const char* label);
365 void BNE(int Rs, int Rt, const char* label);
366 void BGEZ(int Rs, const char* label);
367 void BGTZ(int Rs, const char* label);
368 void BLEZ(int Rs, const char* label);
369 void BLTZ(int Rs, const char* label);
379 void BEQZ(int Rs, const char* label);
380 void BNEZ(int Rs, const char* label);
381 void BGE(int Rs, int Rt, const char* label);
382 void BGEU(int Rs, int Rt, const char* label);
383 void BGT(int Rs, int Rt, const char* label);
384 void BGTU(int Rs, int Rt, const char* label);
385 void BLE(int Rs, int Rt, const char* label);
386 void BLEU(int Rs, int Rt, const char* label);
387 void BLT(int Rs, int Rt, const char* label);
388 void BLTU(int Rs, int Rt, const char* label);
418 inline branch_target_t() : label(0), pc(0) { } in branch_target_t()
420 : label(l), pc(p) { } in branch_target_t()
421 const char* label; member