diff options
| author | Lars Knoll <lars.knoll@qt.io> | 2018-08-08 10:41:54 +0200 |
|---|---|---|
| committer | Lars Knoll <lars.knoll@qt.io> | 2018-08-11 13:11:16 +0000 |
| commit | d6d659a04832217d05930063a2aa484a5f0ec7ee (patch) | |
| tree | 7b635580834d659dc6150f59467359cbf5706ba7 /src/3rdparty/masm/assembler/LinkBuffer.cpp | |
| parent | c7686a6c00146860fa6466fc17eb13e91c1eb22d (diff) | |
Get rid of the Macro assembler for ARMv6 and earlier
We've not been using it for quite some time, and the interpreter
is the better fallback option there.
Change-Id: If4d698115eec6038b369586ebdd8c1e4b88ea0ba
Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src/3rdparty/masm/assembler/LinkBuffer.cpp')
| -rw-r--r-- | src/3rdparty/masm/assembler/LinkBuffer.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/3rdparty/masm/assembler/LinkBuffer.cpp b/src/3rdparty/masm/assembler/LinkBuffer.cpp index 74c278135b..44a11706c9 100644 --- a/src/3rdparty/masm/assembler/LinkBuffer.cpp +++ b/src/3rdparty/masm/assembler/LinkBuffer.cpp @@ -75,23 +75,6 @@ void LinkBuffer::dumpCode(void* code, size_t size) for (unsigned i = 0; i < tsize; i++) dataLogF("\t.short\t0x%x\n", tcode[i]); -#elif CPU(ARM_TRADITIONAL) - // gcc -c jit.s - // objdump -D jit.o - static unsigned codeCount = 0; - unsigned int* tcode = static_cast<unsigned int*>(code); - size_t tsize = size / sizeof(unsigned int); - char nameBuf[128]; - snprintf(nameBuf, sizeof(nameBuf), "_jsc_jit%u", codeCount++); - dataLogF("\t.globl\t%s\n" - "\t.align 4\n" - "\t.code 32\n" - "\t.text\n" - "# %p\n" - "%s:\n", nameBuf, code, nameBuf); - - for (unsigned i = 0; i < tsize; i++) - dataLogF("\t.long\t0x%x\n", tcode[i]); #endif } #endif |
