| 31 | } |
| 32 | |
| 33 | bool MemSection::followFlags(int flags) const |
| 34 | { |
| 35 | if ((flags & MemNoSpecial) && (type == MemSpecial)) |
| 36 | return false; |
| 37 | |
| 38 | if ((flags & MemNoRO) && (!writeflag)) |
| 39 | return false; |
| 40 | |
| 41 | if ((flags & MemNoExec) && (execflag)) |
| 42 | return false; |
| 43 | |
| 44 | return true; |
| 45 | } |
| 46 | |
| 47 | void MemSection::readMap(std::string& line) |
| 48 | { |
no outgoing calls
no test coverage detected