Searched refs:const_length (Results 1 - 8 of 8) sorted by relevance

/external/v8/src/crankshaft/arm/
H A Dlithium-codegen-arm.cc2681 int const_length = ToInteger32(LConstantOperand::cast(instr->length())); local
2684 int index = (const_length - const_index) + 1;
2688 __ rsb(result, index, Operand(const_length + 1));
/external/v8/src/crankshaft/mips/
H A Dlithium-codegen-mips.cc2598 int const_length = ToInteger32(LConstantOperand::cast(instr->length())); local
2601 int index = (const_length - const_index) + 1;
2605 __ li(at, Operand(const_length + 1));
/external/v8/src/crankshaft/mips64/
H A Dlithium-codegen-mips64.cc2736 int const_length = ToInteger32(LConstantOperand::cast(instr->length())); local
2739 int index = (const_length - const_index) + 1;
2743 __ li(at, Operand(const_length + 1));
/external/v8/src/crankshaft/ppc/
H A Dlithium-codegen-ppc.cc2817 int const_length = ToInteger32(LConstantOperand::cast(instr->length())); local
2820 int index = (const_length - const_index) + 1;
2824 __ subfic(result, index, Operand(const_length + 1));
/external/v8/src/crankshaft/s390/
H A Dlithium-codegen-s390.cc2775 int const_length = ToInteger32(LConstantOperand::cast(instr->length())); local
2778 int index = (const_length - const_index) + 1;
2782 __ SubP(result, index, Operand(const_length + 1));
/external/v8/src/crankshaft/x64/
H A Dlithium-codegen-x64.cc2641 int32_t const_length = ToInteger32(LConstantOperand::cast(instr->length())); local
2642 if (const_index >= 0 && const_index < const_length) {
2643 StackArgumentsAccessor args(arguments, const_length,
/external/v8/src/crankshaft/ia32/
H A Dlithium-codegen-ia32.cc2498 int const_length = ToInteger32(LConstantOperand::cast(instr->length())); local
2499 int index = (const_length - const_index) + 1;
/external/v8/src/crankshaft/x87/
H A Dlithium-codegen-x87.cc2776 int const_length = ToInteger32(LConstantOperand::cast(instr->length())); local
2777 int index = (const_length - const_index) + 1;

Completed in 273 milliseconds