mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Use const properly so that we dont remove const qualifier from region and MII
by casting. Found with gcc48. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163247 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
576cd11ab8
commit
b438615abd
@ -44,7 +44,7 @@ void x86DisassemblerDebug(const char *file,
|
||||
dbgs() << file << ":" << line << ": " << s;
|
||||
}
|
||||
|
||||
const char *x86DisassemblerGetInstrName(unsigned Opcode, void *mii) {
|
||||
const char *x86DisassemblerGetInstrName(unsigned Opcode, const void *mii) {
|
||||
const MCInstrInfo *MII = static_cast<const MCInstrInfo *>(mii);
|
||||
return MII->getName(Opcode);
|
||||
}
|
||||
@ -95,8 +95,8 @@ const EDInstInfo *X86GenericDisassembler::getEDInfo() const {
|
||||
/// be a pointer to a MemoryObject.
|
||||
/// @param byte - A pointer to the byte to be read.
|
||||
/// @param address - The address to be read.
|
||||
static int regionReader(void* arg, uint8_t* byte, uint64_t address) {
|
||||
MemoryObject* region = static_cast<MemoryObject*>(arg);
|
||||
static int regionReader(const void* arg, uint8_t* byte, uint64_t address) {
|
||||
const MemoryObject* region = static_cast<const MemoryObject*>(arg);
|
||||
return region->readByte(address, byte);
|
||||
}
|
||||
|
||||
@ -135,10 +135,10 @@ X86GenericDisassembler::getInstruction(MCInst &instr,
|
||||
|
||||
int ret = decodeInstruction(&internalInstr,
|
||||
regionReader,
|
||||
(void*)®ion,
|
||||
(const void*)®ion,
|
||||
loggerFn,
|
||||
(void*)&vStream,
|
||||
(void*)MII,
|
||||
(const void*)MII,
|
||||
address,
|
||||
fMode);
|
||||
|
||||
|
@ -719,7 +719,7 @@ static BOOL is16BitEquvalent(const char* orig, const char* equiv) {
|
||||
* @return - 0 if the ModR/M could be read when needed or was not needed;
|
||||
* nonzero otherwise.
|
||||
*/
|
||||
static int getID(struct InternalInstruction* insn, void *miiArg) {
|
||||
static int getID(struct InternalInstruction* insn, const void *miiArg) {
|
||||
uint8_t attrMask;
|
||||
uint16_t instructionID;
|
||||
|
||||
@ -1621,10 +1621,10 @@ static int readOperands(struct InternalInstruction* insn) {
|
||||
*/
|
||||
int decodeInstruction(struct InternalInstruction* insn,
|
||||
byteReader_t reader,
|
||||
void* readerArg,
|
||||
const void* readerArg,
|
||||
dlog_t logger,
|
||||
void* loggerArg,
|
||||
void* miiArg,
|
||||
const void* miiArg,
|
||||
uint64_t startLoc,
|
||||
DisassemblerMode mode) {
|
||||
memset(insn, 0, sizeof(struct InternalInstruction));
|
||||
|
@ -403,7 +403,7 @@ typedef uint8_t BOOL;
|
||||
* be read from.
|
||||
* @return - -1 if the byte cannot be read for any reason; 0 otherwise.
|
||||
*/
|
||||
typedef int (*byteReader_t)(void* arg, uint8_t* byte, uint64_t address);
|
||||
typedef int (*byteReader_t)(const void* arg, uint8_t* byte, uint64_t address);
|
||||
|
||||
/*
|
||||
* dlog_t - Type for the logging function that the consumer can provide to
|
||||
@ -422,7 +422,7 @@ struct InternalInstruction {
|
||||
/* Reader interface (C) */
|
||||
byteReader_t reader;
|
||||
/* Opaque value passed to the reader */
|
||||
void* readerArg;
|
||||
const void* readerArg;
|
||||
/* The address of the next byte to read via the reader */
|
||||
uint64_t readerCursor;
|
||||
|
||||
@ -561,10 +561,10 @@ struct InternalInstruction {
|
||||
*/
|
||||
int decodeInstruction(struct InternalInstruction* insn,
|
||||
byteReader_t reader,
|
||||
void* readerArg,
|
||||
const void* readerArg,
|
||||
dlog_t logger,
|
||||
void* loggerArg,
|
||||
void* miiArg,
|
||||
const void* miiArg,
|
||||
uint64_t startLoc,
|
||||
DisassemblerMode mode);
|
||||
|
||||
@ -579,7 +579,7 @@ void x86DisassemblerDebug(const char *file,
|
||||
unsigned line,
|
||||
const char *s);
|
||||
|
||||
const char *x86DisassemblerGetInstrName(unsigned Opcode, void *mii);
|
||||
const char *x86DisassemblerGetInstrName(unsigned Opcode, const void *mii);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user