Lines Matching defs:label
217 BranchInfo(ptrdiff_t offset, Label* label, ImmBranchType branch_type)
218 : pc_offset_(offset), label_(label), branch_type_(branch_type) {
263 // The label branched to.
273 Label* label,
275 void DeleteUnresolvedBranchInfoForLabel(Label* label);
1129 void Adr(const Register& rd, Label* label) {
1133 adr(rd, label);
1135 void Adrp(const Register& rd, Label* label) {
1139 adrp(rd, label);
1171 void B(Label* label, BranchType type, Register reg = NoReg, int bit = -1);
1173 void B(Label* label);
1174 void B(Label* label, Condition cond);
1175 void B(Condition cond, Label* label) { B(label, cond); }
1212 void Bind(Label* label, BranchTargetIdentifier id = EmitBTI_none);
1213 // Bind a label to a specified offset from the start of the buffer.
1214 void BindToOffset(Label* label, ptrdiff_t offset);
1215 void Bl(Label* label) {
1218 bl(label);
1292 void Cbnz(const Register& rt, Label* label);
1293 void Cbz(const Register& rt, Label* label);
2691 void Tbnz(const Register& rt, unsigned bit_pos, Label* label);
2692 void Tbz(const Register& rt, unsigned bit_pos, Label* label);
8313 bool LabelIsOutOfRange(Label* label, ImmBranchType branch_type) {
8315 label->GetLocation() -