Home | History | Annotate | Download | only in arm

Lines Matching refs:miss

72                                                   Label* miss) {
82 __ JumpIfSmi(receiver, miss);
86 __ b(lt, miss);
91 GenerateGlobalInstanceTypeCheck(masm, t1, miss);
97 __ b(ne, miss);
103 __ b(ne, miss);
109 // elements: Property dictionary. It is not clobbered if a jump to the miss
111 // name: Property name. It is not clobbered if a jump to the miss label is
113 // result: Register for the result. It is only updated if a jump to the miss
115 // one of these in the case of not jumping to the miss label.
121 Label* miss,
135 miss,
150 __ b(ne, miss);
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
170 Label* miss,
184 miss,
202 __ b(ne, miss);
223 Label miss;
225 StubCompiler::GenerateLoadArrayLength(masm, r0, r3, &miss);
226 __ bind(&miss);
238 Label miss;
240 StubCompiler::GenerateLoadStringLength(masm, r0, r1, r3, &miss,
242 // Cache miss: Jump to runtime.
243 __ bind(&miss);
255 Label miss;
257 StubCompiler::GenerateLoadFunctionPrototype(masm, r0, r1, r3, &miss);
258 __ bind(&miss);
384 // The generated code falls through if both probes miss.
393 Label number, non_number, non_string, boolean, probe, miss;
433 __ b(ne, &miss);
443 __ bind(&miss);
449 Label* miss,
454 __ JumpIfSmi(r1, miss);
458 __ b(ne, miss);
472 Label miss;
477 GenerateStringDictionaryReceiverCheck(masm, r1, r0, r3, r4, &miss);
481 GenerateDictionaryLoad(masm, &miss, r0, r2, r1, r3, r4);
483 GenerateFunctionTailCall(masm, argc, &miss, r4);
485 __ bind(&miss);
658 // Fall through on miss.
684 Label miss;
685 __ JumpIfSmi(r2, &miss);
686 __ IsObjectJSStringType(r2, r0, &miss);
689 __ bind(&miss);
711 // Cache miss: Jump to runtime.
723 Label miss;
725 GenerateStringDictionaryReceiverCheck(masm, r0, r1, r3, r4, &miss);
728 GenerateDictionaryLoad(masm, &miss, r1, r2, r0, r3, r4);
731 // Cache miss: Jump to runtime.
732 __ bind(&miss);
1139 Label miss;
1150 &miss, // When not a string.
1151 &miss, // When not a number.
1152 &miss, // When index out of range.
1160 __ bind(&miss);
1236 // an IC miss that would otherwise cause a transition to the generic stub.
1521 // Cache miss: Jump to runtime.
1556 Label miss;
1563 __ JumpIfSmi(receiver, &miss);
1567 __ b(ne, &miss);
1574 __ b(ne, &miss);
1581 __ b(eq, &miss);
1584 __ JumpIfNotSmi(value, &miss);
1593 __ bind(&miss);
1606 Label miss;
1608 GenerateStringDictionaryReceiverCheck(masm, r1, r3, r4, r5, &miss);
1610 GenerateDictionaryStore(masm, &miss, r3, r2, r0, r4, r5);
1616 __ bind(&miss);