Lines Matching defs:from
25 * - r27: Current position in input, as negative offset from end of string.
51 * - fp[-4] direct_call (if 1, direct call from JavaScript code,
124 __ bind(&start_label_); // And then continue from here.
192 // Pop Code offset from backtrack stack, add Code and jump to location.
497 void RegExpMacroAssemblerPPC::CheckCharacterInRange(base::uc16 from,
500 __ mov(r0, Operand(from));
502 __ CmpU64(r3, Operand(to - from), r0);
506 void RegExpMacroAssemblerPPC::CheckCharacterNotInRange(base::uc16 from,
509 __ mov(r0, Operand(from));
511 __ CmpU64(r3, Operand(to - from), r0);
760 // from generated code.
775 // Initialize backtrack stack pointer. It must not be clobbered from here
781 // memory when returning from this irregexp code object.
856 if (num_saved_registers_ > 0) { // Always is, if generated from a regexp.
955 // Offset from the end is zero if we already reached the end.
1013 // String might have moved: Reload end of string from frame.