| Index: src/a64/simulator-a64.h
|
| diff --git a/src/a64/simulator-a64.h b/src/a64/simulator-a64.h
|
| index b7b033961ad4a86b2f5ce4ac59c3b444804c163b..4cb3761fe9213e21eb366f14cf07dfe5cd44d322 100644
|
| --- a/src/a64/simulator-a64.h
|
| +++ b/src/a64/simulator-a64.h
|
| @@ -651,9 +651,13 @@ class Simulator : public DecoderVisitor {
|
| int64_t offset,
|
| AddrMode addrmode);
|
| void LoadStorePairHelper(Instruction* instr, AddrMode addrmode);
|
| - uint8_t* AddressModeHelper(unsigned addr_reg,
|
| - int64_t offset,
|
| - AddrMode addrmode);
|
| + uint8_t* LoadStoreAddress(unsigned addr_reg,
|
| + int64_t offset,
|
| + AddrMode addrmode);
|
| + void LoadStoreWriteBack(unsigned addr_reg,
|
| + int64_t offset,
|
| + AddrMode addrmode);
|
| + void CheckMemoryAccess(uint8_t* address, uint8_t* stack);
|
|
|
| uint64_t MemoryRead(uint8_t* address, unsigned num_bytes);
|
| uint8_t MemoryRead8(uint8_t* address);
|
|
|