Index: src/compiler/code-stub-assembler.cc |
diff --git a/src/compiler/code-stub-assembler.cc b/src/compiler/code-stub-assembler.cc |
index 6573297e62f3e27a4dfd99392a0cc0470a69ca93..bbb4d6353bf701844784e76f4c2eaf95bcf34141 100644 |
--- a/src/compiler/code-stub-assembler.cc |
+++ b/src/compiler/code-stub-assembler.cc |
@@ -436,12 +436,6 @@ |
IntPtrConstant(offset - kHeapObjectTag)); |
} |
-Node* CodeStubAssembler::StoreObjectFieldNoWriteBarrier( |
- Node* object, int offset, Node* value, MachineRepresentation rep) { |
- return StoreNoWriteBarrier(rep, object, |
- IntPtrConstant(offset - kHeapObjectTag), value); |
-} |
- |
Node* CodeStubAssembler::LoadHeapNumberValue(Node* object) { |
return Load(MachineType::Float64(), object, |
IntPtrConstant(HeapNumber::kValueOffset - kHeapObjectTag)); |
@@ -495,11 +489,6 @@ |
Node* scaled_index = WordShl(int32_index, IntPtrConstant(kPointerSizeLog2)); |
Node* offset = IntPtrAdd(scaled_index, header_size); |
return Load(MachineType::AnyTagged(), object, offset); |
-} |
- |
-Node* CodeStubAssembler::LoadMapInstanceSize(Node* map) { |
- return Load(MachineType::Uint8(), map, |
- IntPtrConstant(Map::kInstanceSizeOffset - kHeapObjectTag)); |
} |
Node* CodeStubAssembler::LoadFixedArrayElementSmiIndex(Node* object, |
@@ -669,10 +658,6 @@ |
return AllocateRawUnaligned(IntPtrConstant(size_in_bytes), flags, top_address, |
limit_address); |
-} |
- |
-Node* CodeStubAssembler::InnerAllocate(Node* previous, int offset) { |
- return IntPtrAdd(previous, IntPtrConstant(offset)); |
} |
Node* CodeStubAssembler::AllocateHeapNumber() { |