Home
last modified time | relevance | path

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

/external/chromium_org/v8/src/arm/
Dlithium-codegen-arm.cc3173 int constant_key = 0; in DoLoadKeyedExternalArray() local
3175 constant_key = ToInteger32(LConstantOperand::cast(instr->key())); in DoLoadKeyedExternalArray()
3176 if (constant_key & 0xF0000000) { in DoLoadKeyedExternalArray()
3194 ? Operand(constant_key << element_size_shift) in DoLoadKeyedExternalArray()
3207 key, external_pointer, key_is_constant, constant_key, in DoLoadKeyedExternalArray()
3270 int constant_key = ToInteger32(LConstantOperand::cast(instr->key())); in DoLoadKeyedFixedDoubleArray() local
3271 if (constant_key & 0xF0000000) { in DoLoadKeyedFixedDoubleArray()
3274 base_offset += constant_key * kDoubleSize; in DoLoadKeyedFixedDoubleArray()
3348 int constant_key, in PrepareKeyedOperand() argument
3353 return MemOperand(base, (constant_key << element_size) + base_offset); in PrepareKeyedOperand()
[all …]
Dlithium-codegen-arm.h133 int constant_key,
/external/chromium_org/v8/src/mips/
Dlithium-codegen-mips.cc3116 int constant_key = 0; in DoLoadKeyedExternalArray() local
3118 constant_key = ToInteger32(LConstantOperand::cast(instr->key())); in DoLoadKeyedExternalArray()
3119 if (constant_key & 0xF0000000) { in DoLoadKeyedExternalArray()
3137 __ Addu(scratch0(), external_pointer, constant_key << element_size_shift); in DoLoadKeyedExternalArray()
3152 key, external_pointer, key_is_constant, constant_key, in DoLoadKeyedExternalArray()
3215 int constant_key = ToInteger32(LConstantOperand::cast(instr->key())); in DoLoadKeyedFixedDoubleArray() local
3216 if (constant_key & 0xF0000000) { in DoLoadKeyedFixedDoubleArray()
3219 base_offset += constant_key * kDoubleSize; in DoLoadKeyedFixedDoubleArray()
3294 int constant_key, in PrepareKeyedOperand() argument
3299 return MemOperand(base, (constant_key << element_size) + base_offset); in PrepareKeyedOperand()
[all …]
Dlithium-codegen-mips.h132 int constant_key,
/external/chromium_org/v8/src/arm64/
Dlithium-codegen-arm64.cc3417 int constant_key, in PrepareKeyedExternalArrayOperand() argument
3423 int key_offset = constant_key << element_size_shift; in PrepareKeyedExternalArrayOperand()
3450 int constant_key = 0; in DoLoadKeyedExternal() local
3453 constant_key = ToInteger32(LConstantOperand::cast(instr->key())); in DoLoadKeyedExternal()
3454 if (constant_key & 0xf0000000) { in DoLoadKeyedExternal()
3464 key_is_constant, constant_key, in DoLoadKeyedExternal()
3582 int constant_key = ToInteger32(LConstantOperand::cast(instr->key())); in DoLoadKeyedFixedDouble() local
3583 if (constant_key & 0xf0000000) { in DoLoadKeyedFixedDouble()
3586 int offset = instr->base_offset() + constant_key * kDoubleSize; in DoLoadKeyedFixedDouble()
5175 int constant_key = 0; in DoStoreKeyedExternal() local
[all …]
Dlithium-codegen-arm64.h256 int constant_key,