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

/external/v8/src/crankshaft/arm/
H A Dlithium-codegen-arm.cc2768 int const_length = ToInteger32(LConstantOperand::cast(instr->length())); local
2771 int index = (const_length - const_index) + 1;
2775 __ rsb(result, index, Operand(const_length + 1));
/external/v8/src/crankshaft/mips/
H A Dlithium-codegen-mips.cc2662 int const_length = ToInteger32(LConstantOperand::cast(instr->length())); local
2665 int index = (const_length - const_index) + 1;
2669 __ li(at, Operand(const_length + 1));
/external/v8/src/crankshaft/mips64/
H A Dlithium-codegen-mips64.cc2798 int const_length = ToInteger32(LConstantOperand::cast(instr->length())); local
2801 int index = (const_length - const_index) + 1;
2805 __ li(at, Operand(const_length + 1));
/external/v8/src/crankshaft/ppc/
H A Dlithium-codegen-ppc.cc2871 int const_length = ToInteger32(LConstantOperand::cast(instr->length())); local
2874 int index = (const_length - const_index) + 1;
2878 __ subfic(result, index, Operand(const_length + 1));
/external/v8/src/crankshaft/s390/
H A Dlithium-codegen-s390.cc2817 int const_length = ToInteger32(LConstantOperand::cast(instr->length())); local
2820 int index = (const_length - const_index) + 1;
2824 __ SubP(result, index, Operand(const_length + 1));
/external/v8/src/crankshaft/x64/
H A Dlithium-codegen-x64.cc2725 int32_t const_length = ToInteger32(LConstantOperand::cast(instr->length())); local
2726 if (const_index >= 0 && const_index < const_length) {
2727 StackArgumentsAccessor args(arguments, const_length,
/external/v8/src/crankshaft/ia32/
H A Dlithium-codegen-ia32.cc2582 int const_length = ToInteger32(LConstantOperand::cast(instr->length())); local
2583 int index = (const_length - const_index) + 1;
/external/v8/src/crankshaft/x87/
H A Dlithium-codegen-x87.cc2861 int const_length = ToInteger32(LConstantOperand::cast(instr->length())); local
2862 int index = (const_length - const_index) + 1;

Completed in 205 milliseconds