Searched refs:top_reg (Results 1 – 3 of 3) sorted by relevance
/external/v8/src/x87/ |
D | macro-assembler-x87.cc | 1310 Register top_reg = result_end.is_valid() ? result_end : result; in Allocate() local 1311 if (!top_reg.is(result)) { in Allocate() 1312 mov(top_reg, result); in Allocate() 1314 add(top_reg, Immediate(object_size)); in Allocate() 1316 cmp(top_reg, Operand::StaticVariable(allocation_limit)); in Allocate() 1320 UpdateAllocationTopHelper(top_reg, scratch, flags); in Allocate() 1324 if (top_reg.is(result)) { in Allocate()
|
/external/v8/src/ia32/ |
D | macro-assembler-ia32.cc | 1344 Register top_reg = result_end.is_valid() ? result_end : result; in Allocate() local 1345 if (!top_reg.is(result)) { in Allocate() 1346 mov(top_reg, result); in Allocate() 1348 add(top_reg, Immediate(object_size)); in Allocate() 1350 cmp(top_reg, Operand::StaticVariable(allocation_limit)); in Allocate() 1354 UpdateAllocationTopHelper(top_reg, scratch, flags); in Allocate() 1358 if (top_reg.is(result)) { in Allocate()
|
/external/v8/src/x64/ |
D | macro-assembler-x64.cc | 4698 Register top_reg = result_end.is_valid() ? result_end : result; in Allocate() local 4700 if (!top_reg.is(result)) { in Allocate() 4701 movp(top_reg, result); in Allocate() 4703 addp(top_reg, Immediate(object_size)); in Allocate() 4706 cmpp(top_reg, limit_operand); in Allocate() 4710 UpdateAllocationTopHelper(top_reg, scratch, flags); in Allocate() 4713 if (top_reg.is(result)) { in Allocate()
|