Home | History | Annotate | Download | only in arm

Lines Matching defs:miss

143     MacroAssembler* masm, int index, Register prototype, Label* miss) {
157 __ b(ne, miss);
180 Register scratch, Label* miss) {
187 __ b(ne, miss);
296 // an IC miss that would otherwise cause a transition to the generic stub.
309 // an IC miss that would otherwise cause a transition to the generic stub.
511 Register scratch2, Handle<Name> name, Label* miss,
553 GenerateDictionaryNegativeLookup(masm(), miss, reg, name, scratch1,
563 __ CheckMap(reg, map_reg, current_map, miss, DONT_DO_SMI_CHECK);
575 __ CheckAccessGlobalProxy(reg, scratch2, miss);
578 name, scratch2, miss);
606 __ CheckMap(reg, scratch1, current_map, miss, DONT_DO_SMI_CHECK);
613 __ CheckAccessGlobalProxy(reg, scratch1, miss);
621 void NamedLoadHandlerCompiler::FrontendFooter(Handle<Name> name, Label* miss) {
622 if (!miss->is_unused()) {
625 __ bind(miss);
632 void NamedStoreHandlerCompiler::FrontendFooter(Handle<Name> name, Label* miss) {
633 if (!miss->is_unused()) {
636 GenerateRestoreName(miss, name);
708 // case might cause a miss during the prototype check.
810 Label miss;
811 FrontendHeader(receiver(), name, &miss);
822 __ b(eq, &miss);
829 FrontendFooter(name, &miss);