Lines Matching refs:Label
204 void ByteCodeEmitter::emitLabel(LabelTy Label) { in emitLabel() argument
206 LabelOffsets.insert({Label, Target}); in emitLabel()
208 if (auto It = LabelRelocs.find(Label); in emitLabel()
223 int32_t ByteCodeEmitter::getOffset(LabelTy Label) { in getOffset() argument
230 if (auto It = LabelOffsets.find(Label); in getOffset()
235 LabelRelocs[Label].push_back(Position); in getOffset()
323 bool ByteCodeEmitter::jumpTrue(const LabelTy &Label) { in jumpTrue() argument
324 return emitJt(getOffset(Label), SourceInfo{}); in jumpTrue()
327 bool ByteCodeEmitter::jumpFalse(const LabelTy &Label) { in jumpFalse() argument
328 return emitJf(getOffset(Label), SourceInfo{}); in jumpFalse()
331 bool ByteCodeEmitter::jump(const LabelTy &Label) { in jump() argument
332 return emitJmp(getOffset(Label), SourceInfo{}); in jump()
335 bool ByteCodeEmitter::fallthrough(const LabelTy &Label) { in fallthrough() argument
336 emitLabel(Label); in fallthrough()