Lines Matching refs:constant_key

3100     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
4841 constant_key = ToInteger32(LConstantOperand::cast(instr->key())); in DoStoreKeyedExternal()
4842 if (constant_key & 0xf0000000) { in DoStoreKeyedExternal()
4852 key_is_constant, constant_key, in DoStoreKeyedExternal()
4905 int constant_key = ToInteger32(LConstantOperand::cast(instr->key())); in DoStoreKeyedFixedDouble() local
4906 if (constant_key & 0xf0000000) { in DoStoreKeyedFixedDouble()
4909 int offset = instr->base_offset() + constant_key * kDoubleSize; in DoStoreKeyedFixedDouble()
5028 int32_t constant_key = ToInteger32(LConstantOperand::cast(key)); in DoMaybeGrowElements() local
5031 if (constant_key >= constant_capacity) { in DoMaybeGrowElements()
5036 int32_t constant_key = ToInteger32(LConstantOperand::cast(key)); in DoMaybeGrowElements() local
5037 __ Cmp(ToRegister(current_capacity), Operand(constant_key)); in DoMaybeGrowElements()