Home | History | Annotate | Download | only in codeflinger

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];
257 void label(const char* string);
260 uint32_t* pcForLabel(const char* label);
362 void B(const char* label);
363 void BEQ(int Rs, int Rt, const char* label);
364 void BNE(int Rs, int Rt, const char* label);
365 void BGEZ(int Rs, const char* label);
366 void BGTZ(int Rs, const char* label);
367 void BLEZ(int Rs, const char* label);
368 void BLTZ(int Rs, const char* label);
378 void BEQZ(int Rs, const char* label);
379 void BNEZ(int Rs, const char* label);
380 void BGE(int Rs, int Rt, const char* label);
381 void BGEU(int Rs, int Rt, const char* label);
382 void BGT(int Rs, int Rt, const char* label);
383 void BGTU(int Rs, int Rt, const char* label);
384 void BLE(int Rs, int Rt, const char* label);
385 void BLEU(int Rs, int Rt, const char* label);
386 void BLT(int Rs, int Rt, const char* label);
387 void BLTU(int Rs, int Rt, const char* label);
417 inline branch_target_t() : label(0), pc(0) { }
419 : label(l), pc(p) { }
420 const char* label;