Lines Matching defs:Label
79 void EvalEmitter::emitLabel(LabelTy Label) {
80 CurrentLabel = Label;
107 bool EvalEmitter::jumpTrue(const LabelTy &Label) {
110 ActiveLabel = Label;
115 bool EvalEmitter::jumpFalse(const LabelTy &Label) {
118 ActiveLabel = Label;
123 bool EvalEmitter::jump(const LabelTy &Label) {
125 CurrentLabel = ActiveLabel = Label;
129 bool EvalEmitter::fallthrough(const LabelTy &Label) {
131 ActiveLabel = Label;
132 CurrentLabel = Label;