Lines Matching defs:entry
1452 // First entry of the link chain points to itself.
5289 ConstantPoolEntry entry(position, value, sharing_ok, rmode);
5297 if (entry.value() == current_entry.value() &&
5298 entry.rmode() == current_entry.rmode()) {
5299 entry.set_merged_index(i);
5306 pending_32_bit_constants_.emplace_back(entry);
5356 // the first constant pool entry will exceed its limit the next time the
5375 ConstantPoolEntry& entry = pending_32_bit_constants_[i];
5376 if (entry.is_merged()) size_after_marker -= kPointerSize;
5408 // The first entry in the constant pool should also be the first
5425 ConstantPoolEntry& entry = pending_32_bit_constants_[i];
5426 Instr instr = instr_at(entry.position());
5434 int delta = pc_offset() - entry.position() - Instruction::kPcLoadDelta;
5441 if (entry.is_merged()) {
5442 DCHECK(entry.sharing_ok());
5444 pending_32_bit_constants_[entry.merged_index()];
5445 DCHECK(entry.value() == merged.value());
5446 DCHECK_LT(merged.position(), entry.position());
5450 delta += merged.position() - entry.position();
5452 instr_at_put(entry.position(),
5454 if (!entry.is_merged()) {
5455 emit(entry.value());
5471 // the next constant pool entry is added.