/external/v8/src/arm/ |
D | macro-assembler-arm.cc | 1734 Register alloc_limit = ip; in Allocate() local 1740 ldm(ia, top_address, result.bit() | alloc_limit.bit()); in Allocate() 1744 ldr(alloc_limit, MemOperand(top_address)); in Allocate() 1745 cmp(result, alloc_limit); in Allocate() 1749 ldr(alloc_limit, MemOperand(top_address, limit - top)); in Allocate() 1760 cmp(result, Operand(alloc_limit)); in Allocate() 1790 cmp(result_end, Operand(alloc_limit)); in Allocate() 1838 Register alloc_limit = ip; in Allocate() local 1843 ldm(ia, top_address, result.bit() | alloc_limit.bit()); in Allocate() 1847 ldr(alloc_limit, MemOperand(top_address)); in Allocate() [all …]
|
/external/v8/src/ppc/ |
D | macro-assembler-ppc.cc | 1522 Register alloc_limit = ip; in Allocate() local 1529 LoadP(alloc_limit, MemOperand(top_address, kPointerSize)); in Allocate() 1533 LoadP(alloc_limit, MemOperand(top_address)); in Allocate() 1534 cmp(result, alloc_limit); in Allocate() 1538 LoadP(alloc_limit, MemOperand(top_address, limit - top)); in Allocate() 1552 cmpl(result, alloc_limit); in Allocate() 1564 sub(r0, alloc_limit, result); in Allocate() 1616 Register alloc_limit = ip; in Allocate() local 1622 LoadP(alloc_limit, MemOperand(top_address, kPointerSize)); in Allocate() 1626 LoadP(alloc_limit, MemOperand(top_address)); in Allocate() [all …]
|
/external/v8/src/arm64/ |
D | macro-assembler-arm64.cc | 2968 Register alloc_limit = scratch2; in Allocate() local 2974 Ldp(result, alloc_limit, MemOperand(top_address)); in Allocate() 2978 Ldr(alloc_limit, MemOperand(top_address)); in Allocate() 2979 Cmp(result, alloc_limit); in Allocate() 2983 Ldr(alloc_limit, MemOperand(top_address, limit - top)); in Allocate() 2992 Ccmp(result_end, alloc_limit, CFlag, cc); in Allocate() 3039 Register alloc_limit = scratch2; in Allocate() local 3044 Ldp(result, alloc_limit, MemOperand(top_address)); in Allocate() 3048 Ldr(alloc_limit, MemOperand(top_address)); in Allocate() 3049 Cmp(result, alloc_limit); in Allocate() [all …]
|
/external/v8/src/mips/ |
D | macro-assembler-mips.cc | 3297 Register alloc_limit = t9; in Allocate() local 3304 lw(alloc_limit, MemOperand(top_address, kPointerSize)); in Allocate() 3308 lw(alloc_limit, MemOperand(top_address)); in Allocate() 3309 Check(eq, kUnexpectedAllocationTop, result, Operand(alloc_limit)); in Allocate() 3312 lw(alloc_limit, MemOperand(top_address, limit - top)); in Allocate() 3323 Branch(gc_required, Ugreater_equal, result, Operand(alloc_limit)); in Allocate() 3334 Branch(gc_required, Ugreater, result_end, Operand(alloc_limit)); in Allocate() 3378 Register alloc_limit = t9; in Allocate() local 3384 lw(alloc_limit, MemOperand(top_address, kPointerSize)); in Allocate() 3388 lw(alloc_limit, MemOperand(top_address)); in Allocate() [all …]
|
/external/v8/src/mips64/ |
D | macro-assembler-mips64.cc | 3740 Register alloc_limit = t9; in Allocate() local 3747 ld(alloc_limit, MemOperand(top_address, kPointerSize)); in Allocate() 3751 ld(alloc_limit, MemOperand(top_address)); in Allocate() 3752 Check(eq, kUnexpectedAllocationTop, result, Operand(alloc_limit)); in Allocate() 3755 ld(alloc_limit, MemOperand(top_address, static_cast<int32_t>(limit - top))); in Allocate() 3770 Branch(gc_required, Ugreater, result_end, Operand(alloc_limit)); in Allocate() 3812 Register alloc_limit = t9; in Allocate() local 3818 ld(alloc_limit, MemOperand(top_address, kPointerSize)); in Allocate() 3822 ld(alloc_limit, MemOperand(top_address)); in Allocate() 3823 Check(eq, kUnexpectedAllocationTop, result, Operand(alloc_limit)); in Allocate() [all …]
|