Home
last modified time | relevance | path

Searched refs:constant_key (Results 1 – 13 of 13) sorted by relevance

/external/v8/src/crankshaft/ppc/
Dlithium-codegen-ppc.cc3003 int constant_key = 0; in DoShiftI() local
3005 constant_key = ToInteger32(LConstantOperand::cast(instr->key())); in DoShiftI()
3006 if (constant_key & 0xF0000000) { in DoShiftI()
3019 __ Add(scratch0(), external_pointer, constant_key << element_size_shift, in DoShiftI()
3034 constant_key, element_size_shift, base_offset); in DoShiftI()
3112 int constant_key = 0; in DoShiftI() local
3114 constant_key = ToInteger32(LConstantOperand::cast(instr->key())); in DoShiftI()
3115 if (constant_key & 0xF0000000) { in DoShiftI()
3122 int base_offset = instr->base_offset() + constant_key * kDoubleSize; in DoShiftI()
3235 int constant_key, in DoShiftI() argument
[all …]
Dlithium-codegen-ppc.h119 int constant_key, int element_size_shift,
/external/v8/src/crankshaft/arm/
Dlithium-codegen-arm.cc2889 int constant_key = 0; in DoLoadKeyedExternalArray() local
2891 constant_key = ToInteger32(LConstantOperand::cast(instr->key())); in DoLoadKeyedExternalArray()
2892 if (constant_key & 0xF0000000) { in DoLoadKeyedExternalArray()
2906 ? Operand(constant_key << element_size_shift) in DoLoadKeyedExternalArray()
2918 key, external_pointer, key_is_constant, constant_key, in DoLoadKeyedExternalArray()
2973 int constant_key = ToInteger32(LConstantOperand::cast(instr->key())); in DoLoadKeyedFixedDoubleArray() local
2974 if (constant_key & 0xF0000000) { in DoLoadKeyedFixedDoubleArray()
2977 base_offset += constant_key * kDoubleSize; in DoLoadKeyedFixedDoubleArray()
3068 int constant_key, in PrepareKeyedOperand() argument
3073 return MemOperand(base, (constant_key << element_size) + base_offset); in PrepareKeyedOperand()
[all …]
Dlithium-codegen-arm.h126 int constant_key,
/external/v8/src/crankshaft/mips/
Dlithium-codegen-mips.cc2818 int constant_key = 0; in DoLoadKeyedExternalArray() local
2820 constant_key = ToInteger32(LConstantOperand::cast(instr->key())); in DoLoadKeyedExternalArray()
2821 if (constant_key & 0xF0000000) { in DoLoadKeyedExternalArray()
2835 __ Addu(scratch0(), external_pointer, constant_key << element_size_shift); in DoLoadKeyedExternalArray()
2849 key, external_pointer, key_is_constant, constant_key, in DoLoadKeyedExternalArray()
2904 int constant_key = ToInteger32(LConstantOperand::cast(instr->key())); in DoLoadKeyedFixedDoubleArray() local
2905 if (constant_key & 0xF0000000) { in DoLoadKeyedFixedDoubleArray()
2908 base_offset += constant_key * kDoubleSize; in DoLoadKeyedFixedDoubleArray()
3001 int constant_key, in PrepareKeyedOperand() argument
3006 return MemOperand(base, (constant_key << element_size) + base_offset); in PrepareKeyedOperand()
[all …]
Dlithium-codegen-mips.h125 int constant_key,
/external/v8/src/crankshaft/mips64/
Dlithium-codegen-mips64.cc2958 int constant_key = 0; in DoLoadKeyedExternalArray() local
2960 constant_key = ToInteger32(LConstantOperand::cast(instr->key())); in DoLoadKeyedExternalArray()
2961 if (constant_key & 0xF0000000) { in DoLoadKeyedExternalArray()
2977 constant_key << element_size_shift); in DoLoadKeyedExternalArray()
2999 key, external_pointer, key_is_constant, constant_key, in DoLoadKeyedExternalArray()
3054 int constant_key = ToInteger32(LConstantOperand::cast(instr->key())); in DoLoadKeyedFixedDoubleArray() local
3055 if (constant_key & 0xF0000000) { in DoLoadKeyedFixedDoubleArray()
3058 base_offset += constant_key * kDoubleSize; in DoLoadKeyedFixedDoubleArray()
3177 int constant_key, in PrepareKeyedOperand() argument
3182 return MemOperand(base, (constant_key << element_size) + base_offset); in PrepareKeyedOperand()
[all …]
Dlithium-codegen-mips64.h127 int constant_key,
/external/v8/src/crankshaft/arm64/
Dlithium-codegen-arm64.cc3100 int constant_key, in PrepareKeyedExternalArrayOperand() argument
3106 int key_offset = constant_key << element_size_shift; in PrepareKeyedExternalArrayOperand()
3133 int constant_key = 0; in DoLoadKeyedExternal() local
3136 constant_key = ToInteger32(LConstantOperand::cast(instr->key())); in DoLoadKeyedExternal()
3137 if (constant_key & 0xf0000000) { in DoLoadKeyedExternal()
3147 key_is_constant, constant_key, in DoLoadKeyedExternal()
3254 int constant_key = ToInteger32(LConstantOperand::cast(instr->key())); in DoLoadKeyedFixedDouble() local
3255 if (constant_key & 0xf0000000) { in DoLoadKeyedFixedDouble()
3258 int offset = instr->base_offset() + constant_key * kDoubleSize; in DoLoadKeyedFixedDouble()
4838 int constant_key = 0; in DoStoreKeyedExternal() local
[all …]
Dlithium-codegen-arm64.h242 int constant_key,
/external/v8/src/crankshaft/x64/
Dlithium-codegen-x64.cc4274 int32_t constant_key = ToInteger32(LConstantOperand::cast(key)); in DoMaybeGrowElements() local
4277 if (constant_key >= constant_capacity) { in DoMaybeGrowElements()
4282 int32_t constant_key = ToInteger32(LConstantOperand::cast(key)); in DoMaybeGrowElements() local
4283 __ cmpl(ToRegister(current_capacity), Immediate(constant_key)); in DoMaybeGrowElements()
/external/v8/src/crankshaft/ia32/
Dlithium-codegen-ia32.cc4086 int32_t constant_key = ToInteger32(LConstantOperand::cast(key)); in DoMaybeGrowElements() local
4089 if (constant_key >= constant_capacity) { in DoMaybeGrowElements()
4094 int32_t constant_key = ToInteger32(LConstantOperand::cast(key)); in DoMaybeGrowElements() local
4095 __ cmp(ToOperand(current_capacity), Immediate(constant_key)); in DoMaybeGrowElements()
/external/v8/src/crankshaft/x87/
Dlithium-codegen-x87.cc4491 int32_t constant_key = ToInteger32(LConstantOperand::cast(key)); in DoMaybeGrowElements() local
4494 if (constant_key >= constant_capacity) { in DoMaybeGrowElements()
4499 int32_t constant_key = ToInteger32(LConstantOperand::cast(key)); in DoMaybeGrowElements() local
4500 __ cmp(ToOperand(current_capacity), Immediate(constant_key)); in DoMaybeGrowElements()