Home | History | Annotate | Download | only in mips

Lines Matching refs:candidate

5935   Register candidate = scratch5;  // Scratch register contains candidate.
5939 __ Addu(candidate, hash, Operand(SymbolTable::GetProbeOffset(i)));
5941 __ mov(candidate, hash);
5944 __ And(candidate, candidate, Operand(mask));
5948 __ sll(scratch, candidate, kPointerSizeLog2);
5950 __ lw(candidate, MemOperand(scratch));
5954 __ GetObjectType(candidate, scratch, scratch);
5957 __ Branch(not_found, eq, undefined, Operand(candidate));
5962 scratch, Operand(candidate));
5968 // Check that the candidate is a non-external ASCII string. The instance
5973 // If length is not 2 the string is not a candidate.
5974 __ lw(scratch, FieldMemOperand(candidate, String::kLengthOffset));
5979 __ lhu(scratch, FieldMemOperand(candidate, SeqAsciiString::kHeaderSize));
5988 Register result = candidate;