Home | History | Annotate | Download | only in src

Lines Matching refs:label

38   Label* on_match;
76 // stack by an earlier PushBacktrack(Label*).
78 virtual void Bind(Label* label) = 0;
79 virtual void CheckAtStart(Label* on_at_start) = 0;
82 virtual void CheckCharacter(unsigned c, Label* on_equal) = 0;
87 Label* on_equal) = 0;
88 virtual void CheckCharacterGT(uc16 limit, Label* on_greater) = 0;
89 virtual void CheckCharacterLT(uc16 limit, Label* on_less) = 0;
90 virtual void CheckGreedyLoop(Label* on_tos_equals_current_position) = 0;
91 virtual void CheckNotAtStart(Label* on_not_at_start) = 0;
92 virtual void CheckNotBackReference(int start_reg, Label* on_no_match) = 0;
94 Label* on_no_match) = 0;
96 // fail to match then goto the on_failure label. End of input always
97 // matches. If the label is NULL then we should pop a backtrack address off
99 virtual void CheckNotCharacter(unsigned c, Label* on_not_equal) = 0;
102 Label* on_not_equal) = 0;
108 Label* on_not_equal) = 0;
111 Label* on_in_range) = 0;
114 Label* on_not_in_range) = 0;
117 // array, and if the found byte is non-zero, we jump to the on_bit_set label.
118 virtual void CheckBitInTable(Handle<ByteArray> table, Label* on_bit_set) = 0;
122 virtual void CheckPosition(int cp_offset, Label* on_outside_input) {
130 Label* on_no_match) {
135 virtual void GoTo(Label* label) = 0;
136 // Check whether a register is >= a given constant and go to a label if it
137 // is. Backtracks instead if the label is NULL.
138 virtual void IfRegisterGE(int reg, int comparand, Label* if_ge) = 0;
139 // Check whether a register is < a given constant and go to a label if it is.
140 // Backtracks instead if the label is NULL.
141 virtual void IfRegisterLT(int reg, int comparand, Label* if_lt) = 0;
143 // label if it is.
144 virtual void IfRegisterEqPos(int reg, Label* if_eq) = 0;
147 Label* on_end_of_input,
152 // Pushes the label on the backtrack stack, so that a following Backtrack
153 // will go to this label. Always checks the backtrack stack limit.
154 virtual void PushBacktrack(Label* label) = 0;