Lines Matching defs:label
1522 // generated code. pos() is the position the label refers to.
1526 // Displacement of the last instruction using the label.
1530 PrintF("unused label\n");
1532 PrintF("bound label to %d\n", L->pos());
1536 PrintF("unbound label");
1545 PrintF("label in inconsistent state (pos = %d)\n", L->pos_);
1606 DCHECK(!L->is_bound()); // label can only be bound once
3392 void Assembler::emit_label(Label* label) {
3393 if (label->is_bound()) {
3395 emit(reinterpret_cast<uint32_t>(buffer_start_ + label->pos()));
3397 emit_disp(label, Displacement::CODE_ABSOLUTE);
3432 void Assembler::dd(Label* label) {
3435 emit_label(label);