| Index: src/arm/codegen-arm.cc
|
| diff --git a/src/arm/codegen-arm.cc b/src/arm/codegen-arm.cc
|
| index 98a8abe97afc4574bc5f7dccfd0a6b65a0cc75d3..ecf355fdc84e90d8199949eb79c2936412c5b8e3 100644
|
| --- a/src/arm/codegen-arm.cc
|
| +++ b/src/arm/codegen-arm.cc
|
| @@ -33,7 +33,8 @@ UnaryMathFunctionWithIsolate CreateExpFunction(Isolate* isolate) {
|
| if (buffer == nullptr) return nullptr;
|
| ExternalReference::InitializeMathExpData();
|
|
|
| - MacroAssembler masm(nullptr, buffer, static_cast<int>(actual_size));
|
| + MacroAssembler masm(isolate, buffer, static_cast<int>(actual_size),
|
| + CodeObjectRequired::kNo);
|
|
|
| {
|
| DwVfpRegister input = d0;
|
| @@ -88,7 +89,8 @@ MemCopyUint8Function CreateMemCopyUint8Function(MemCopyUint8Function stub) {
|
| static_cast<byte*>(base::OS::Allocate(1 * KB, &actual_size, true));
|
| if (buffer == NULL) return stub;
|
|
|
| - MacroAssembler masm(NULL, buffer, static_cast<int>(actual_size));
|
| + MacroAssembler masm(NULL, buffer, static_cast<int>(actual_size),
|
| + CodeObjectRequired::kNo);
|
|
|
| Register dest = r0;
|
| Register src = r1;
|
| @@ -245,7 +247,8 @@ MemCopyUint16Uint8Function CreateMemCopyUint16Uint8Function(
|
| static_cast<byte*>(base::OS::Allocate(1 * KB, &actual_size, true));
|
| if (buffer == NULL) return stub;
|
|
|
| - MacroAssembler masm(NULL, buffer, static_cast<int>(actual_size));
|
| + MacroAssembler masm(NULL, buffer, static_cast<int>(actual_size),
|
| + CodeObjectRequired::kNo);
|
|
|
| Register dest = r0;
|
| Register src = r1;
|
| @@ -330,7 +333,8 @@ UnaryMathFunction CreateSqrtFunction() {
|
| static_cast<byte*>(base::OS::Allocate(1 * KB, &actual_size, true));
|
| if (buffer == NULL) return &std::sqrt;
|
|
|
| - MacroAssembler masm(NULL, buffer, static_cast<int>(actual_size));
|
| + MacroAssembler masm(NULL, buffer, static_cast<int>(actual_size),
|
| + CodeObjectRequired::kNo);
|
|
|
| __ MovFromFloatParameter(d0);
|
| __ vsqrt(d0, d0);
|
|
|