summaryrefslogtreecommitdiff
path: root/deps/v8/src/arm64/instructions-arm64.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/arm64/instructions-arm64.h')
-rw-r--r--deps/v8/src/arm64/instructions-arm64.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/deps/v8/src/arm64/instructions-arm64.h b/deps/v8/src/arm64/instructions-arm64.h
index b1c488eb65..bb1791becb 100644
--- a/deps/v8/src/arm64/instructions-arm64.h
+++ b/deps/v8/src/arm64/instructions-arm64.h
@@ -402,9 +402,9 @@ class Instruction {
bool IsTargetInImmPCOffsetRange(Instruction* target);
// Patch a PC-relative offset to refer to 'target'. 'this' may be a branch or
// a PC-relative addressing instruction.
- void SetImmPCOffsetTarget(AssemblerBase::IsolateData isolate_data,
+ void SetImmPCOffsetTarget(const AssemblerOptions& options,
Instruction* target);
- void SetUnresolvedInternalReferenceImmTarget(AssemblerBase::IsolateData,
+ void SetUnresolvedInternalReferenceImmTarget(const AssemblerOptions& options,
Instruction* target);
// Patch a literal load instruction to load from 'source'.
void SetImmLLiteral(Instruction* source);
@@ -441,8 +441,7 @@ class Instruction {
static const int ImmPCRelRangeBitwidth = 21;
static bool IsValidPCRelOffset(ptrdiff_t offset) { return is_int21(offset); }
- void SetPCRelImmTarget(AssemblerBase::IsolateData isolate_data,
- Instruction* target);
+ void SetPCRelImmTarget(const AssemblerOptions& options, Instruction* target);
void SetBranchImmTarget(Instruction* target);
};