| Index: src/mips/assembler-mips.cc
|
| diff --git a/src/mips/assembler-mips.cc b/src/mips/assembler-mips.cc
|
| index e05fc015a838c7bd6ffd729e91937ae7bc5ee063..ffdfb69b96ba08831a07f138cf07d8c719240ebf 100644
|
| --- a/src/mips/assembler-mips.cc
|
| +++ b/src/mips/assembler-mips.cc
|
| @@ -2577,6 +2577,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);
|
| @@ -2873,20 +2880,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 v8::internal
|
|
|
| #endif // V8_TARGET_ARCH_MIPS
|
|
|