Index: src/mips/assembler-mips.cc |
diff --git a/src/mips/assembler-mips.cc b/src/mips/assembler-mips.cc |
index c1f72d1527c2f389fb86e23f53a16d4f30f36e3d..fc664aafa524df3888f25ee752a00837515753d3 100644 |
--- a/src/mips/assembler-mips.cc |
+++ b/src/mips/assembler-mips.cc |
@@ -2729,6 +2729,13 @@ void Assembler::dd(uint32_t data) { |
} |
+void Assembler::dq(uint64_t data) { |
+ CheckBuffer(); |
+ *reinterpret_cast<uint64_t*>(pc_) = data; |
+ pc_ += sizeof(uint64_t); |
+} |
+ |
+ |
void Assembler::dd(Label* label) { |
CheckBuffer(); |
RecordRelocInfo(RelocInfo::INTERNAL_REFERENCE); |
@@ -3025,20 +3032,6 @@ void Assembler::JumpToJumpRegister(Address pc) { |
} |
-Handle<ConstantPoolArray> Assembler::NewConstantPool(Isolate* isolate) { |
- // No out-of-line constant pool support. |
- DCHECK(!FLAG_enable_ool_constant_pool); |
- return isolate->factory()->empty_constant_pool_array(); |
-} |
- |
- |
-void Assembler::PopulateConstantPool(ConstantPoolArray* constant_pool) { |
- // No out-of-line constant pool support. |
- DCHECK(!FLAG_enable_ool_constant_pool); |
- return; |
-} |
- |
- |
} // namespace internal |
} // namespace v8 |