Home | History | Annotate | Download | only in lli

Lines Matching full:address

41   /// Allocate space in the remote target address space.
45 /// @param[out] Address Remote address of the allocated memory.
50 uint64_t &Address) override;
52 /// Load data into the target address space.
54 /// @param Address Destination address in the target process.
55 /// @param Data Source address in the host process.
60 bool loadData(uint64_t Address, const void *Data, size_t Size) override;
62 /// Load code into the target address space and prepare it for execution.
64 /// @param Address Destination address in the target process.
65 /// @param Data Source address in the host process.
70 bool loadCode(uint64_t Address, const void *Data, size_t Size) override;
75 /// @param Address Address of the loaded function in the target
81 bool executeCode(uint64_t Address, int &RetVal) override;