| Index: src/x64/assembler-x64.cc
|
| diff --git a/src/x64/assembler-x64.cc b/src/x64/assembler-x64.cc
|
| index cafa402fd6ca124a5d8e832655d42934d19819c0..f9ed3ff478ac4b532668f981671e7f02856beb28 100644
|
| --- a/src/x64/assembler-x64.cc
|
| +++ b/src/x64/assembler-x64.cc
|
| @@ -3883,6 +3883,12 @@ void Assembler::dd(uint32_t data) {
|
| }
|
|
|
|
|
| +void Assembler::dq(uint64_t data) {
|
| + EnsureSpace ensure_space(this);
|
| + emitq(data);
|
| +}
|
| +
|
| +
|
| void Assembler::dq(Label* label) {
|
| EnsureSpace ensure_space(this);
|
| if (label->is_bound()) {
|
| @@ -3921,20 +3927,6 @@ void Assembler::RecordRelocInfo(RelocInfo::Mode rmode, intptr_t data) {
|
| }
|
|
|
|
|
| -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;
|
| -}
|
| -
|
| -
|
| const int RelocInfo::kApplyMask = RelocInfo::kCodeTargetMask |
|
| 1 << RelocInfo::RUNTIME_ENTRY |
|
| 1 << RelocInfo::INTERNAL_REFERENCE |
|
|
|