Home | History | Annotate | Download | only in mips

Lines Matching refs:miss

69                                                 Label* miss) {
79 __ JumpIfSmi(receiver, miss);
83 __ Branch(miss, lt, scratch1, Operand(FIRST_SPEC_OBJECT_TYPE));
88 GenerateGlobalInstanceTypeCheck(masm, scratch1, miss);
94 __ Branch(miss, ne, scratch1, Operand(zero_reg));
99 __ Branch(miss, ne, scratch1, Operand(scratch0));
105 // elements: Property dictionary. It is not clobbered if a jump to the miss
107 // name: Property name. It is not clobbered if a jump to the miss label is
109 // result: Register for the result. It is only updated if a jump to the miss
111 // one of these in the case of not jumping to the miss label.
119 Label* miss,
133 miss,
150 __ Branch(miss, ne, at, Operand(zero_reg));
160 // elements: Property dictionary. It is not clobbered if a jump to the miss
162 // name: Property name. It is not clobbered if a jump to the miss label is
172 Label* miss,
186 miss,
204 __ Branch(miss, ne, at, Operand(zero_reg));
345 // The generated code falls through if both probes miss.
354 Label number, non_number, non_string, boolean, probe, miss;
391 __ Branch(&miss, ne, a1, Operand(t1));
401 __ bind(&miss);
407 Label* miss,
412 __ JumpIfSmi(a1, miss);
416 __ Branch(miss, ne, scratch, Operand(JS_FUNCTION_TYPE));
430 Label miss;
435 GenerateNameDictionaryReceiverCheck(masm, a1, a0, a3, t0, &miss);
439 GenerateDictionaryLoad(masm, &miss, a0, a2, a1, a3, t0);
441 GenerateFunctionTailCall(masm, argc, &miss, t0);
443 // Cache miss: Jump to runtime.
444 __ bind(&miss);
614 // Fall through on miss.
640 Label miss;
641 __ JumpIfSmi(a2, &miss);
642 __ IsObjectNameType(a2, a0, &miss);
645 __ bind(&miss);
664 // Cache miss: Jump to runtime.
675 Label miss;
677 GenerateNameDictionaryReceiverCheck(masm, a0, a1, a3, t0, &miss);
680 GenerateDictionaryLoad(masm, &miss, a1, a2, v0, a3, t0);
683 // Cache miss: Jump to runtime.
684 __ bind(&miss);
830 GenerateMiss(masm, MISS);
865 GenerateMiss(masm, MISS);
1113 Label miss;
1124 &miss, // When not a string.
1125 &miss, // When not a number.
1126 &miss, // When index out of range.
1134 __ bind(&miss);
1135 GenerateMiss(masm, MISS);
1426 GenerateMiss(masm, MISS);
1461 // an IC miss that would otherwise cause a transition to the generic stub.
1481 // an IC miss that would otherwise cause a transition to the generic stub.
1505 // Cache miss: Jump to runtime.
1533 Label miss;
1535 GenerateNameDictionaryReceiverCheck(masm, a1, a3, t0, t1, &miss);
1537 GenerateDictionaryStore(masm, &miss, a3, a2, a0, t0, t1);
1542 __ bind(&miss);