Index: src/mips64/assembler-mips64.cc |
diff --git a/src/mips64/assembler-mips64.cc b/src/mips64/assembler-mips64.cc |
index 7a3091530336de4984369dbaa2fa7f69a0257722..bc61216b1f4f9099762c64414d0caab08909f02c 100644 |
--- a/src/mips64/assembler-mips64.cc |
+++ b/src/mips64/assembler-mips64.cc |
@@ -2753,6 +2753,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); |
@@ -2961,20 +2968,6 @@ void Assembler::set_target_address_at(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 v8::internal |
#endif // V8_TARGET_ARCH_MIPS64 |