| Index: src/s390/simulator-s390.h
|
| diff --git a/src/s390/simulator-s390.h b/src/s390/simulator-s390.h
|
| index 6e82c9afd0993905c69318d46f5977dd6a800804..5573a77bdaa1023df3ac3718a54987bebffe53c7 100644
|
| --- a/src/s390/simulator-s390.h
|
| +++ b/src/s390/simulator-s390.h
|
| @@ -282,6 +282,7 @@ class Simulator {
|
| // Byte Reverse
|
| inline int16_t ByteReverse(int16_t hword);
|
| inline int32_t ByteReverse(int32_t word);
|
| + inline int64_t ByteReverse(int64_t dword);
|
|
|
| // Read and write memory.
|
| inline uint8_t ReadBU(intptr_t addr);
|
| @@ -297,6 +298,7 @@ class Simulator {
|
|
|
| inline uint32_t ReadWU(intptr_t addr, Instruction* instr);
|
| inline int32_t ReadW(intptr_t addr, Instruction* instr);
|
| + inline int64_t ReadW64(intptr_t addr, Instruction* instr);
|
| inline void WriteW(intptr_t addr, uint32_t value, Instruction* instr);
|
| inline void WriteW(intptr_t addr, int32_t value, Instruction* instr);
|
|
|
|
|