Home | History | Annotate | Download | only in mips

Lines Matching defs:miss

141     MacroAssembler* masm, int index, Register prototype, Label* miss) {
154 __ Branch(miss, ne, at, Operand(scratch));
177 Register scratch, Label* miss) {
183 __ Branch(miss, ne, scratch, Operand(at));
291 // an IC miss that would otherwise cause a transition to the generic stub.
304 // an IC miss that would otherwise cause a transition to the generic stub.
509 Register scratch2, Handle<Name> name, Label* miss,
551 GenerateDictionaryNegativeLookup(masm(), miss, reg, name, scratch1,
561 __ CheckMap(reg, map_reg, current_map, miss, DONT_DO_SMI_CHECK);
573 __ CheckAccessGlobalProxy(reg, scratch2, miss);
576 name, scratch2, miss);
604 __ CheckMap(reg, scratch1, current_map, miss, DONT_DO_SMI_CHECK);
611 __ CheckAccessGlobalProxy(reg, scratch1, miss);
619 void NamedLoadHandlerCompiler::FrontendFooter(Handle<Name> name, Label* miss) {
620 if (!miss->is_unused()) {
623 __ bind(miss);
630 void NamedStoreHandlerCompiler::FrontendFooter(Handle<Name> name, Label* miss) {
631 if (!miss->is_unused()) {
634 GenerateRestoreName(miss, name);
709 // case might cause a miss during the prototype check.
809 Label miss;
811 FrontendHeader(receiver(), name, &miss);
821 __ Branch(&miss, eq, result, Operand(at));
829 FrontendFooter(name, &miss);