summaryrefslogtreecommitdiffstats
path: root/js/src/jit/mips-shared/Assembler-mips-shared.h
diff options
context:
space:
mode:
authorJiaxun Yang <jiaxun.yang@flygoat.com>2020-05-12 12:40:07 +0800
committerMoonchild <moonchild@palemoon.org>2020-05-20 14:01:06 +0000
commitc3a21acaee65f9fde0f76b635ce906ca9c901889 (patch)
treea63a7052aebf85979f97a1d673874b7f37660b7a /js/src/jit/mips-shared/Assembler-mips-shared.h
parent3fb8648bed83c95f601d2c2e20962cbd08bc7dc7 (diff)
downloadUXP-c3a21acaee65f9fde0f76b635ce906ca9c901889.tar
UXP-c3a21acaee65f9fde0f76b635ce906ca9c901889.tar.gz
UXP-c3a21acaee65f9fde0f76b635ce906ca9c901889.tar.lz
UXP-c3a21acaee65f9fde0f76b635ce906ca9c901889.tar.xz
UXP-c3a21acaee65f9fde0f76b635ce906ca9c901889.zip
Bug 1271968 - IonMonkey: MIPS: Merge Assembler::bind.
Tag: #1542
Diffstat (limited to 'js/src/jit/mips-shared/Assembler-mips-shared.h')
-rw-r--r--js/src/jit/mips-shared/Assembler-mips-shared.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/js/src/jit/mips-shared/Assembler-mips-shared.h b/js/src/jit/mips-shared/Assembler-mips-shared.h
index 8fca6f5c2..bebf8ad57 100644
--- a/js/src/jit/mips-shared/Assembler-mips-shared.h
+++ b/js/src/jit/mips-shared/Assembler-mips-shared.h
@@ -1211,8 +1211,9 @@ class AssemblerMIPSShared : public AssemblerShared
// label operations
void bind(Label* label, BufferOffset boff = BufferOffset());
void bindLater(Label* label, wasm::TrapDesc target);
- virtual void bind(InstImm* inst, uintptr_t branch, uintptr_t target) = 0;
+ void bind(InstImm* inst, uintptr_t branch, uintptr_t target);
virtual void Bind(uint8_t* rawCode, CodeOffset* label, const void* address) = 0;
+ void bind(RepatchLabel* label);
void bind(CodeOffset* label) {
label->bind(currentOffset());
}