Searched refs:the_int_ (Results 1 - 4 of 4) sorted by relevance

/external/v8/src/mips/
H A Dcode-stubs-mips.h407 : the_int_(the_int),
411 ASSERT(IntRegisterBits::is_valid(the_int_.code()));
421 Register the_int_; member in class:v8::internal::WriteInt32ToHeapNumberStub
435 return IntRegisterBits::encode(the_int_.code())
H A Dcode-stubs-mips.cc1031 if (the_int_.is(a1) &&
1037 if (the_int_.is(a2) &&
1061 // the_int_ has the answer which is a signed int32 but not a Smi.
1065 __ And(sign_, the_int_, Operand(0x80000000u));
1066 __ Branch(&max_negative_int, eq, the_int_, Operand(0x80000000u));
1076 __ subu(at, zero_reg, the_int_);
1077 __ Movn(the_int_, at, sign_);
1084 __ srl(at, the_int_, shift_distance);
1088 __ sll(scratch_, the_int_, 32 - shift_distance);
/external/v8/src/arm/
H A Dcode-stubs-arm.h405 : the_int_(the_int),
413 Register the_int_; member in class:v8::internal::WriteInt32ToHeapNumberStub
425 return IntRegisterBits::encode(the_int_.code())
H A Dcode-stubs-arm.cc1008 if (the_int_.is(r1) && the_heap_number_.is(r0) && scratch_.is(r2)) {
1011 if (the_int_.is(r2) && the_heap_number_.is(r0) && scratch_.is(r3)) {
1032 // the_int_ has the answer which is a signed int32 but not a Smi.
1036 __ cmp(the_int_, Operand(0x80000000u));
1046 __ rsb(the_int_, the_int_, Operand(0, RelocInfo::NONE), LeaveCC, cs);
1053 __ orr(scratch_, scratch_, Operand(the_int_, LSR, shift_distance));
1056 __ mov(scratch_, Operand(the_int_, LSL, 32 - shift_distance));

Completed in 212 milliseconds