mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
beebf4212b
readPrefixes() assumes insn->bytes is non-empty. The code path is not exercised in llvm-mc because llvm-mc does not feed empty input to MCDisassembler::getInstruction(). This bug is uncovered by a5994c789a2982a770254ae1607b5b4cb641f73c. An empty string did not crash before because the deleted regionReader() allowed UINT64_C(-1) as insn->readerCursor. Bytes.size() <= Address -> R->Base 0 <= UINT64_C(-1) - UINT32_C(-1)
111 lines
3.5 KiB
C++
111 lines
3.5 KiB
C++
//===- llvm/unittest/Object/Disassembler.cpp ------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm-c/Disassembler.h"
|
|
#include "llvm/Support/TargetSelect.h"
|
|
#include "gtest/gtest.h"
|
|
|
|
using namespace llvm;
|
|
|
|
static const char *symbolLookupCallback(void *DisInfo, uint64_t ReferenceValue,
|
|
uint64_t *ReferenceType,
|
|
uint64_t ReferencePC,
|
|
const char **ReferenceName) {
|
|
*ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
|
|
return nullptr;
|
|
}
|
|
|
|
TEST(Disassembler, X86Test) {
|
|
llvm::InitializeAllTargetInfos();
|
|
llvm::InitializeAllTargetMCs();
|
|
llvm::InitializeAllDisassemblers();
|
|
|
|
uint8_t Bytes[] = {0x90, 0x90, 0xeb, 0xfd};
|
|
uint8_t *BytesP = Bytes;
|
|
const char OutStringSize = 100;
|
|
char OutString[OutStringSize];
|
|
LLVMDisasmContextRef DCR = LLVMCreateDisasm("x86_64-pc-linux", nullptr, 0,
|
|
nullptr, symbolLookupCallback);
|
|
if (!DCR)
|
|
return;
|
|
|
|
size_t InstSize;
|
|
unsigned NumBytes = sizeof(Bytes);
|
|
unsigned PC = 0;
|
|
|
|
InstSize =
|
|
LLVMDisasmInstruction(DCR, BytesP, 0, PC, OutString, OutStringSize);
|
|
EXPECT_EQ(InstSize, 0U);
|
|
|
|
InstSize = LLVMDisasmInstruction(DCR, BytesP, NumBytes, PC, OutString,
|
|
OutStringSize);
|
|
EXPECT_EQ(InstSize, 1U);
|
|
EXPECT_EQ(StringRef(OutString), "\tnop");
|
|
PC += InstSize;
|
|
BytesP += InstSize;
|
|
NumBytes -= InstSize;
|
|
|
|
InstSize = LLVMDisasmInstruction(DCR, BytesP, NumBytes, PC, OutString,
|
|
OutStringSize);
|
|
EXPECT_EQ(InstSize, 1U);
|
|
EXPECT_EQ(StringRef(OutString), "\tnop");
|
|
PC += InstSize;
|
|
BytesP += InstSize;
|
|
NumBytes -= InstSize;
|
|
|
|
InstSize = LLVMDisasmInstruction(DCR, BytesP, NumBytes, PC, OutString,
|
|
OutStringSize);
|
|
EXPECT_EQ(InstSize, 2U);
|
|
EXPECT_EQ(StringRef(OutString), "\tjmp\t0x1");
|
|
|
|
LLVMDisasmDispose(DCR);
|
|
}
|
|
|
|
TEST(Disassembler, WebAssemblyTest) {
|
|
llvm::InitializeAllTargetInfos();
|
|
llvm::InitializeAllTargetMCs();
|
|
llvm::InitializeAllDisassemblers();
|
|
|
|
uint8_t Bytes[] = {0x6a, 0x42, 0x7F, 0x35, 0x01, 0x10};
|
|
uint8_t *BytesP = Bytes;
|
|
const char OutStringSize = 100;
|
|
char OutString[OutStringSize];
|
|
LLVMDisasmContextRef DCR = LLVMCreateDisasm("wasm32-unknown-unknown", nullptr,
|
|
0, nullptr, symbolLookupCallback);
|
|
if (!DCR)
|
|
return;
|
|
|
|
size_t InstSize;
|
|
unsigned NumBytes = sizeof(Bytes);
|
|
unsigned PC = 0;
|
|
|
|
InstSize = LLVMDisasmInstruction(DCR, BytesP, NumBytes, PC, OutString,
|
|
OutStringSize);
|
|
EXPECT_EQ(InstSize, 1U);
|
|
EXPECT_EQ(StringRef(OutString), "\ti32.add ");
|
|
PC += InstSize;
|
|
BytesP += InstSize;
|
|
NumBytes -= InstSize;
|
|
|
|
InstSize = LLVMDisasmInstruction(DCR, BytesP, NumBytes, PC, OutString,
|
|
OutStringSize);
|
|
EXPECT_EQ(InstSize, 2U);
|
|
EXPECT_EQ(StringRef(OutString), "\ti64.const\t-1");
|
|
|
|
PC += InstSize;
|
|
BytesP += InstSize;
|
|
NumBytes -= InstSize;
|
|
|
|
InstSize = LLVMDisasmInstruction(DCR, BytesP, NumBytes, PC, OutString,
|
|
OutStringSize);
|
|
EXPECT_EQ(InstSize, 3U);
|
|
EXPECT_EQ(StringRef(OutString), "\ti64.load32_u\t16:p2align=1");
|
|
|
|
LLVMDisasmDispose(DCR);
|
|
}
|