| Index: src/s390/macro-assembler-s390.h
|
| diff --git a/src/s390/macro-assembler-s390.h b/src/s390/macro-assembler-s390.h
|
| index 06fcaf0519fd5c16545db78a0f01bce48baf25f5..2970b01b8757bcb661fc2211d9d08e1b1bec2f76 100644
|
| --- a/src/s390/macro-assembler-s390.h
|
| +++ b/src/s390/macro-assembler-s390.h
|
| @@ -784,16 +784,6 @@ class MacroAssembler : public Assembler {
|
| LoadNativeContextSlot(Context::GLOBAL_PROXY_INDEX, dst);
|
| }
|
|
|
| - // Conditionally load the cached Array transitioned map of type
|
| - // transitioned_kind from the native context if the map in register
|
| - // map_in_out is the cached Array map in the native context of
|
| - // expected_kind.
|
| - void LoadTransitionedArrayMapConditional(ElementsKind expected_kind,
|
| - ElementsKind transitioned_kind,
|
| - Register map_in_out,
|
| - Register scratch,
|
| - Label* no_map_match);
|
| -
|
| void LoadNativeContextSlot(int index, Register dst);
|
|
|
| // Load the initial map from the global function. The registers
|
| @@ -1071,22 +1061,6 @@ class MacroAssembler : public Assembler {
|
| // sets the flags and leaves the object type in the type_reg register.
|
| void CompareInstanceType(Register map, Register type_reg, InstanceType type);
|
|
|
| - // Check if a map for a JSObject indicates that the object can have both smi
|
| - // and HeapObject elements. Jump to the specified label if it does not.
|
| - void CheckFastObjectElements(Register map, Register scratch, Label* fail);
|
| -
|
| - // Check if a map for a JSObject indicates that the object has fast smi only
|
| - // elements. Jump to the specified label if it does not.
|
| - void CheckFastSmiElements(Register map, Register scratch, Label* fail);
|
| -
|
| - // Check to see if maybe_number can be stored as a double in
|
| - // FastDoubleElements. If it can, store it at the index specified by key in
|
| - // the FastDoubleElements array elements. Otherwise jump to fail.
|
| - void StoreNumberToDoubleElements(Register value_reg, Register key_reg,
|
| - Register elements_reg, Register scratch1,
|
| - DoubleRegister double_scratch, Label* fail,
|
| - int elements_offset = 0);
|
| -
|
| // Compare an object's map with the specified map and its transitioned
|
| // elements maps if mode is ALLOW_ELEMENT_TRANSITION_MAPS. Condition flags are
|
| // set with result of map compare. If multiple map compares are required, the
|
| @@ -1576,10 +1550,6 @@ class MacroAssembler : public Assembler {
|
| // Souce and destination can be the same register.
|
| void UntagAndJumpIfSmi(Register dst, Register src, Label* smi_case);
|
|
|
| - // Untag the source value into destination and jump if source is not a smi.
|
| - // Souce and destination can be the same register.
|
| - void UntagAndJumpIfNotSmi(Register dst, Register src, Label* non_smi_case);
|
| -
|
| inline void TestIfSmi(Register value) { tmll(value, Operand(1)); }
|
|
|
| inline void TestIfPositiveSmi(Register value, Register scratch) {
|
| @@ -1772,21 +1742,6 @@ class MacroAssembler : public Assembler {
|
| Register scratch2_reg,
|
| Label* no_memento_found);
|
|
|
| - void JumpIfJSArrayHasAllocationMemento(Register receiver_reg,
|
| - Register scratch_reg,
|
| - Register scratch2_reg,
|
| - Label* memento_found) {
|
| - Label no_memento_found;
|
| - TestJSArrayForAllocationMemento(receiver_reg, scratch_reg, scratch2_reg,
|
| - &no_memento_found);
|
| - beq(memento_found);
|
| - bind(&no_memento_found);
|
| - }
|
| -
|
| - // Jumps to found label if a prototype map has dictionary elements.
|
| - void JumpIfDictionaryInPrototypeChain(Register object, Register scratch0,
|
| - Register scratch1, Label* found);
|
| -
|
| private:
|
| static const int kSmiShift = kSmiTagSize + kSmiShiftSize;
|
|
|
|
|