HomeSort by relevance Sort by last modified time
    Searched refs:slow_case (Results 1 - 13 of 13) sorted by null

  /external/v8/src/arm/
ic-arm.cc 765 Label* slow_case) {
771 __ JumpIfSmi(object, slow_case);
774 __ b(lt, slow_case);
778 __ b(ne, slow_case);
783 __ CheckMap(scratch1, scratch2, arguments_map, slow_case, DONT_DO_SMI_CHECK);
820 Label* slow_case) {
829 __ CheckMap(backing_store, scratch, fixed_array_map, slow_case,
833 __ b(cs, slow_case);
    [all...]
full-codegen-arm.cc 935 Label slow_case; local
937 patch_site.EmitJumpIfNotSmi(r2, &slow_case);
943 __ bind(&slow_case);
4267 Label slow_case; local
    [all...]
code-stubs-arm.cc 311 Label slow_case; local
317 __ b(eq, &slow_case);
327 COPY_ON_WRITE_ELEMENTS, &slow_case);
336 CLONE_ELEMENTS, &slow_case);
368 GenerateFastCloneShallowArrayCommon(masm, length_, mode, &slow_case);
374 __ bind(&slow_case);
389 Label slow_case; local
395 __ b(eq, &slow_case);
403 __ b(ne, &slow_case);
407 __ AllocateInNewSpace(size, r0, r1, r2, &slow_case, TAG_OBJECT)
    [all...]
  /external/v8/src/ia32/
ic-ia32.cc 373 Label* slow_case) {
380 __ JumpIfSmi(object, slow_case);
383 __ j(below, slow_case);
387 __ j(not_zero, slow_case);
392 __ CheckMap(scratch1, arguments_map, slow_case, DONT_DO_SMI_CHECK);
426 Label* slow_case) {
433 __ CheckMap(backing_store, fixed_array_map, slow_case, DONT_DO_SMI_CHECK);
436 __ j(greater_equal, slow_case);
    [all...]
full-codegen-ia32.cc 903 Label slow_case; local
906 patch_site.EmitJumpIfNotSmi(ecx, &slow_case, Label::kNear);
912 __ bind(&slow_case);
4255 Label slow_case; local
    [all...]
code-stubs-ia32.cc 315 Label slow_case; local
316 __ j(equal, &slow_case);
326 COPY_ON_WRITE_ELEMENTS, &slow_case);
333 CLONE_ELEMENTS, &slow_case);
362 GenerateFastCloneShallowArrayCommon(masm, length_, mode, &slow_case);
366 __ bind(&slow_case);
381 Label slow_case; local
391 __ j(equal, &slow_case);
399 __ j(not_equal, &slow_case);
403 __ AllocateInNewSpace(size, eax, ebx, edx, &slow_case, TAG_OBJECT)
    [all...]
  /external/v8/src/mips/
ic-mips.cc 760 Label* slow_case) {
764 __ JumpIfSmi(object, slow_case);
767 __ Branch(slow_case, lt, scratch2, Operand(FIRST_JS_RECEIVER_TYPE));
771 __ Branch(slow_case, ne, scratch1, Operand(zero_reg));
778 slow_case,
815 Label* slow_case) {
826 slow_case,
829 __ Branch(slow_case, Ugreater_equal, key, Operand(scratch));
    [all...]
full-codegen-mips.cc 946 Label slow_case; local
4308 Label slow_case; local
    [all...]
code-stubs-mips.cc 309 Label slow_case; local
317 __ Branch(&slow_case, eq, a3, Operand(t1));
327 COPY_ON_WRITE_ELEMENTS, &slow_case);
335 CLONE_ELEMENTS, &slow_case);
366 GenerateFastCloneShallowArrayCommon(masm, length_, mode, &slow_case);
371 __ bind(&slow_case);
386 Label slow_case; local
394 __ Branch(&slow_case, eq, a3, Operand(t0));
401 __ Branch(&slow_case, ne, a0, Operand(size >> kPointerSizeLog2));
405 __ AllocateInNewSpace(size, v0, a1, a2, &slow_case, TAG_OBJECT)
    [all...]
  /external/v8/src/x64/
ic-x64.cc 1171 __ j(NegateCondition(check), slow_case); local
    [all...]
code-stubs-x64.cc 298 Label slow_case; local
299 __ j(equal, &slow_case);
311 COPY_ON_WRITE_ELEMENTS, &slow_case);
319 CLONE_ELEMENTS, &slow_case);
349 GenerateFastCloneShallowArrayCommon(masm, length_, mode, &slow_case);
352 __ bind(&slow_case);
367 Label slow_case; local
374 __ j(equal, &slow_case);
382 __ j(not_equal, &slow_case);
386 __ AllocateInNewSpace(size, rax, rbx, rdx, &slow_case, TAG_OBJECT)
    [all...]
full-codegen-x64.cc 844 Label slow_case; local
847 patch_site.EmitJumpIfNotSmi(rcx, &slow_case, Label::kNear);
853 __ bind(&slow_case);
4169 Label slow_case; local
    [all...]
  /frameworks/native/opengl/libagl/
texture.cpp 813 goto slow_case;
835 slow_case:
    [all...]

Completed in 371 milliseconds