Searched defs:result_pos (Results 1 - 4 of 4) sorted by relevance

/external/v8/src/arm/
H A Dfull-codegen-arm.cc3509 Register result_pos = no_reg; // Will be r2 local
3626 // result_pos to the position of the result where to write the first
3629 result_pos = array_length; // End of live range for array_length.
3631 __ add(result_pos,
3644 // result_pos: the position to which we are currently copying characters.
3653 __ CopyBytes(string, result_pos, string_length, scratch1);
3669 // result_pos: the position to which we are currently copying characters.
3675 __ strb(separator, MemOperand(result_pos, 1, PostIndex));
3683 __ CopyBytes(string, result_pos, string_length, scratch1);
3693 // result_pos
[all...]
/external/v8/src/ia32/
H A Dfull-codegen-ia32.cc3461 Register result_pos = no_reg; // Will be edi. local
3535 result_pos = array_length;
3566 __ AllocateAsciiString(result_pos, string_length, scratch,
3568 __ mov(result_operand, result_pos);
3569 __ lea(result_pos, FieldOperand(result_pos, SeqAsciiString::kHeaderSize));
3587 // result_pos: the position to which we are currently copying characters.
3599 __ CopyBytes(string, result_pos, string_length, scratch);
3623 // result_pos: the position to which we are currently copying characters.
3627 __ mov_b(Operand(result_pos,
[all...]
/external/v8/src/mips/
H A Dfull-codegen-mips.cc3543 Register result_pos = no_reg; // Will be a2. local
3662 // result_pos to the position of the result where to write the first
3666 result_pos = array_length; // End of live range for array_length.
3668 __ Addu(result_pos,
3681 // result_pos: the position to which we are currently copying characters.
3691 __ CopyBytes(string, result_pos, string_length, scratch1);
3707 // result_pos: the position to which we are currently copying characters.
3713 __ sb(separator, MemOperand(result_pos));
3714 __ Addu(result_pos, result_pos,
[all...]
/external/v8/src/x64/
H A Dfull-codegen-x64.cc3353 Register result_pos = no_reg; // Will be rdi. local
3436 result_pos = array_length;
3472 __ AllocateAsciiString(result_pos, string_length, scratch,
3474 __ movq(result_operand, result_pos);
3475 __ lea(result_pos, FieldOperand(result_pos, SeqAsciiString::kHeaderSize));
3493 // result_pos: the position to which we are currently copying characters.
3505 __ CopyBytes(result_pos, string, string_length);
3533 // result_pos: the position to which we are currently copying characters.
3537 __ movb(Operand(result_pos,
[all...]

Completed in 778 milliseconds