Lines Matching defs:position
401 // generated code. pos() is the position the label refers to.
404 // to be generated; pos() is the position of the last
407 // The link chain is terminated by a negative code position (must be aligned)
486 // Load the position of the label relative to the generated code object
497 // dst = base + position + immediate
558 DCHECK(0 <= pos && pos <= pc_offset()); // must have a valid binding position
677 int position;
679 position = L->pos();
682 position = L->pos(); // L's link
688 position = pc_offset();
693 return position;
1452 int position = link(label);
1454 // Load the position of the label relative to the generated code object.
1455 mov(dst, Operand(position + Code::kHeaderSize - kHeapObjectTag));
1460 int link = position - pc_offset();
1467 // destination register with the position of the label from the
1479 int position = link(label);
1481 // dst = base + position + delta
1482 position += delta;
1483 bitwise_add32(dst, base, position);
1488 int link = position - pc_offset();
1508 int position = link(label);
1511 bitwise_mov(dst, position);
1516 int link = position - pc_offset();
1537 int position = link(label);
1540 dp(position);
1545 int link = position - pc_offset();
2150 Address pc = reinterpret_cast<Address>(buffer_start_) + it->position();