Lines Matching defs:label
610 Label* label = ReadUnalignedValue<Label*>(
612 if (label->is_bound()) {
614 label->pos() - pc_offset() - sizeof(int32_t) + adr.data().addend;
617 } else if (label->is_linked()) {
618 emitl(label->pos());
619 label->link_to(pc_offset() - sizeof(int32_t));
621 DCHECK(label->is_unused());
624 label->link_to(current);
1713 Label label;
1714 emit_mov(dst, Operand(&label, 0), size);
1715 bind(&label);
1747 // Loads the ip-relative location of the src label into the target location
4458 void Assembler::dq(Label* label) {
4460 if (label->is_bound()) {
4462 emit(Immediate64(reinterpret_cast<Address>(buffer_start_) + label->pos(),
4467 if (label->is_linked()) {
4468 emitl(label->pos());
4469 label->link_to(pc_offset() - sizeof(int32_t));
4471 DCHECK(label->is_unused());
4474 label->link_to(current);