| Index: src/ia32/assembler-ia32.cc
|
| diff --git a/src/ia32/assembler-ia32.cc b/src/ia32/assembler-ia32.cc
|
| index a3c19af7866bc144e2b2b37acce21ef7ce630f9b..d2746266ef5ccc8c90db3ad6dffd53c4b856f1da 100644
|
| --- a/src/ia32/assembler-ia32.cc
|
| +++ b/src/ia32/assembler-ia32.cc
|
| @@ -2921,6 +2921,12 @@ void Assembler::dd(uint32_t data) {
|
| }
|
|
|
|
|
| +void Assembler::dq(uint64_t data) {
|
| + EnsureSpace ensure_space(this);
|
| + emit_q(data);
|
| +}
|
| +
|
| +
|
| void Assembler::dd(Label* label) {
|
| EnsureSpace ensure_space(this);
|
| RecordRelocInfo(RelocInfo::INTERNAL_REFERENCE);
|
| @@ -2940,20 +2946,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;
|
| -}
|
| -
|
| -
|
| #ifdef GENERATED_CODE_COVERAGE
|
| static FILE* coverage_log = NULL;
|
|
|
|
|