(self, arch, options)
| 208 | self.origin) |
| 209 | |
| 210 | def _GetDisasmLines(self, arch, options): |
| 211 | if self.origin == JS_ORIGIN: |
| 212 | inplace = False |
| 213 | filename = options.log + ".ll" |
| 214 | else: |
| 215 | inplace = True |
| 216 | filename = self.origin |
| 217 | return disasm.GetDisasmLines(filename, |
| 218 | self.origin_offset, |
| 219 | self.end_address - self.start_address, |
| 220 | arch, |
| 221 | inplace) |
| 222 | |
| 223 | |
| 224 | class CodePage(object): |
no test coverage detected