Lines Matching defs:label
123 void BytecodeEmitter::Bind(const Label &label)
125 *label.pc_ = pc_;
126 targets_.insert(label);
154 * next: # This label is inserted just after previous instruction.
163 auto label = it->second;
168 const auto REAL_IMM_SIZE = GetBitLengthSigned(EstimateMaxDistance(insn_pc, label.GetPc(), bias));
180 new_branches.insert(std::make_pair(new_target, label));
227 Label label = branch.second;
228 auto offset = static_cast<int32_t>(label.GetPc()) - static_cast<int32_t>(insn_pc);
241 Label label = *it;
243 *label.pc_ += bias;
244 updated_labels.push_back(label);
285 const Label &label = branch.second;
286 if (targets_.find(label) == targets_.end()) {