Index: src/x64/assembler-x64.cc |
diff --git a/src/x64/assembler-x64.cc b/src/x64/assembler-x64.cc |
index cb93ab878b9517a1348d32df1914fa9cff856f65..d67a92b06b348465eb3e35ef317fd5d8f31af854 100644 |
--- a/src/x64/assembler-x64.cc |
+++ b/src/x64/assembler-x64.cc |
@@ -3883,12 +3883,6 @@ |
} |
-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()) { |
@@ -3927,6 +3921,20 @@ |
} |
+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 | |