Searched refs:no_memento_found (Results 1 - 25 of 28) sorted by relevance

12

/external/v8/src/arm/
H A Dmacro-assembler-arm.cc3667 Label* no_memento_found) {
3677 JumpIfNotInNewSpace(receiver_reg, scratch_reg, no_memento_found);
3692 b(ne, no_memento_found);
3702 b(ge, no_memento_found);
3664 TestJSArrayForAllocationMemento( Register receiver_reg, Register scratch_reg, Label* no_memento_found) argument
H A Dmacro-assembler-arm.h1400 Label* no_memento_found);
/external/v8/src/ia32/
H A Dmacro-assembler-ia32.cc2874 Label* no_memento_found) {
2884 JumpIfNotInNewSpace(receiver_reg, scratch_reg, no_memento_found);
2897 j(not_zero, no_memento_found);
2905 j(greater_equal, no_memento_found);
2871 TestJSArrayForAllocationMemento( Register receiver_reg, Register scratch_reg, Label* no_memento_found) argument
H A Dmacro-assembler-ia32.h880 Label* no_memento_found);
/external/v8/src/x87/
H A Dmacro-assembler-x87.cc2720 Label* no_memento_found) {
2730 JumpIfNotInNewSpace(receiver_reg, scratch_reg, no_memento_found);
2743 j(not_zero, no_memento_found);
2751 j(greater_equal, no_memento_found);
2717 TestJSArrayForAllocationMemento( Register receiver_reg, Register scratch_reg, Label* no_memento_found) argument
H A Dmacro-assembler-x87.h862 Label* no_memento_found);
/external/v8/src/arm64/
H A Dmacro-assembler-arm64.cc1529 Label* no_memento_found) {
1539 JumpIfNotInNewSpace(receiver, no_memento_found);
1553 B(ne, no_memento_found);
1562 B(ge, no_memento_found);
1526 TestJSArrayForAllocationMemento(Register receiver, Register scratch1, Register scratch2, Label* no_memento_found) argument
H A Dmacro-assembler-arm64.h1562 Label* no_memento_found);
/external/v8/src/ppc/
H A Dmacro-assembler-ppc.cc4191 Label* no_memento_found) {
4204 JumpIfNotInNewSpace(receiver_reg, scratch_reg, no_memento_found);
4222 bne(no_memento_found, cr0);
4229 bge(no_memento_found);
4188 TestJSArrayForAllocationMemento(Register receiver_reg, Register scratch_reg, Register scratch2_reg, Label* no_memento_found) argument
H A Dmacro-assembler-ppc.h1466 Label* no_memento_found);
/external/v8/src/x64/
H A Dmacro-assembler-x64.cc5238 Label* no_memento_found) {
5248 JumpIfNotInNewSpace(receiver_reg, scratch_reg, no_memento_found);
5261 j(not_zero, no_memento_found);
5269 j(greater_equal, no_memento_found);
5235 TestJSArrayForAllocationMemento( Register receiver_reg, Register scratch_reg, Label* no_memento_found) argument
H A Dmacro-assembler-x64.h1527 Label* no_memento_found);
/external/v8/src/mips/
H A Dmacro-assembler-mips.cc6331 Label* no_memento_found) {
6341 JumpIfNotInNewSpace(receiver_reg, scratch_reg, no_memento_found);
6356 Branch(no_memento_found, ne, scratch_reg, Operand(zero_reg));
6365 Branch(no_memento_found, ge, scratch_reg, Operand(at));
6369 Branch(no_memento_found, ne, scratch_reg,
6329 TestJSArrayForAllocationMemento(Register receiver_reg, Register scratch_reg, Label* no_memento_found) argument
/external/v8/src/
H A Dcode-stub-assembler.cc6085 Label no_memento_found(this);
6103 &no_memento_found);
6121 &no_memento_found);
6128 &no_memento_found, &map_check);
6137 memento_found, &no_memento_found);
6139 Bind(&no_memento_found);
/external/v8/src/s390/
H A Dmacro-assembler-s390.cc3140 Label* no_memento_found) {
3152 JumpIfNotInNewSpace(receiver_reg, scratch_reg, no_memento_found);
3169 bne(no_memento_found);
3176 bge(no_memento_found);
3137 TestJSArrayForAllocationMemento(Register receiver_reg, Register scratch_reg, Register scratch2_reg, Label* no_memento_found) argument
/external/v8/src/mips64/
H A Dmacro-assembler-mips64.cc6738 Label* no_memento_found) {
6748 JumpIfNotInNewSpace(receiver_reg, scratch_reg, no_memento_found);
6763 Branch(no_memento_found, ne, scratch_reg, Operand(zero_reg));
6772 Branch(no_memento_found, ge, scratch_reg, Operand(at));
6776 Branch(no_memento_found, ne, scratch_reg,
6736 TestJSArrayForAllocationMemento(Register receiver_reg, Register scratch_reg, Label* no_memento_found) argument
/external/v8/src/crankshaft/arm/
H A Dlithium-codegen-arm.cc4111 Label no_memento_found; local
4112 __ TestJSArrayForAllocationMemento(object, temp, &no_memento_found);
4114 __ bind(&no_memento_found);
/external/v8/src/crankshaft/arm64/
H A Dlithium-codegen-arm64.cc5333 Label no_memento_found; local
5334 __ TestJSArrayForAllocationMemento(object, temp1, temp2, &no_memento_found);
5336 __ Bind(&no_memento_found);
/external/v8/src/crankshaft/ia32/
H A Dlithium-codegen-ia32.cc3775 Label no_memento_found; local
3776 __ TestJSArrayForAllocationMemento(object, temp, &no_memento_found);
3778 __ bind(&no_memento_found);
/external/v8/src/crankshaft/mips/
H A Dlithium-codegen-mips.cc4085 Label no_memento_found; local
4086 __ TestJSArrayForAllocationMemento(object, temp, &no_memento_found);
4088 __ bind(&no_memento_found);
/external/v8/src/crankshaft/mips64/
H A Dlithium-codegen-mips64.cc4305 Label no_memento_found; local
4306 __ TestJSArrayForAllocationMemento(object, temp, &no_memento_found);
4308 __ bind(&no_memento_found);
/external/v8/src/crankshaft/ppc/
H A Dlithium-codegen-ppc.cc4422 Label no_memento_found; local
4423 __ TestJSArrayForAllocationMemento(object, temp1, temp2, &no_memento_found);
4425 __ bind(&no_memento_found);
/external/v8/src/crankshaft/s390/
H A Dlithium-codegen-s390.cc4364 Label no_memento_found; local
4365 __ TestJSArrayForAllocationMemento(object, temp1, temp2, &no_memento_found);
4367 __ bind(&no_memento_found);
/external/v8/src/crankshaft/x64/
H A Dlithium-codegen-x64.cc4190 Label no_memento_found; local
4191 __ TestJSArrayForAllocationMemento(object, temp, &no_memento_found);
4193 __ bind(&no_memento_found);
/external/v8/src/crankshaft/x87/
H A Dlithium-codegen-x87.cc4110 Label no_memento_found; local
4111 __ TestJSArrayForAllocationMemento(object, temp, &no_memento_found);
4113 __ bind(&no_memento_found);

Completed in 1949 milliseconds

12