Home | History | Annotate | Download | only in mips

Lines Matching refs:miss

46   Label miss;
61 __ Branch(&miss, ne, name, Operand(at));
66 __ Branch(&miss, ne, at, Operand(scratch2));
78 __ Branch(&miss, ne, flags_reg, Operand(flags));
82 __ jmp(&miss);
84 __ jmp(&miss);
92 // Miss: fall through.
93 __ bind(&miss);
159 Label miss;
190 __ JumpIfSmi(receiver, &miss);
215 // Primary miss: Compute hash for secondary probe.
234 // Cache miss: Fall-through and let caller handle the miss by
236 __ bind(&miss);
265 Label* miss) {
278 __ Branch(miss, ne, at, Operand(scratch));
337 Label* miss) {
343 __ Branch(miss, ne, scratch, Operand(at));
352 Label* miss) {
355 masm, Handle<JSGlobalObject>::cast(holder), name, scratch1(), miss);
358 masm, miss, holder_reg, name, scratch1(), scratch2());
817 Label* miss,
859 GenerateDictionaryNegativeLookup(masm(), miss, reg, name,
869 __ CheckMap(reg, map_reg, current_map, miss, DONT_DO_SMI_CHECK);
878 __ CheckAccessGlobalProxy(reg, scratch2, miss);
882 scratch2, miss);
907 __ CheckMap(reg, scratch1, current_map, miss, DONT_DO_SMI_CHECK);
914 __ CheckAccessGlobalProxy(reg, scratch1, miss);
922 void LoadStubCompiler::HandlerFrontendFooter(Handle<Name> name, Label* miss) {
923 if (!miss->is_unused()) {
926 __ bind(miss);
933 void StoreStubCompiler::HandlerFrontendFooter(Handle<Name> name, Label* miss) {
934 if (!miss->is_unused()) {
937 GenerateRestoreName(masm(), miss, name);
950 Label miss;
952 Register reg = HandlerFrontendHeader(type, object_reg, holder, name, &miss);
966 &miss,
981 __ Branch(&miss, ne, scratch2(), Operand(callback));
984 HandlerFrontendFooter(name, &miss);
1095 // the FIELD case might cause a miss during the prototype check.
1339 Label miss;
1341 HandlerFrontendHeader(type, receiver(), global, name, &miss);
1350 __ Branch(&miss, eq, t0, Operand(at));
1358 HandlerFrontendFooter(name, &miss);
1371 Label miss;
1375 __ Branch(&miss, ne, this->name(), Operand(name));
1380 Label* smi_target = IncludesNumberType(types) ? &number_case : &miss;
1406 __ bind(&miss);
1431 Label miss;
1432 __ JumpIfSmi(receiver(), &miss);
1449 __ bind(&miss);
1469 Label slow, miss;
1474 __ JumpIfNotSmi(key, &miss);
1493 // Miss case, call the runtime.
1494 __ bind(&miss);