Home
last modified time | relevance | path

Searched defs:flags (Results 1 – 14 of 14) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/Disassembler/
DLLVMDisassembler.cs32 …public bool TryDisassembleInstruction(ulong pc, byte[] data, uint flags, out DisassemblyResult res… in TryDisassembleInstruction()
37 …public bool TryDecodeInstruction(ulong pc, byte[] memory, uint flags, out byte[] opcode, int memor… in TryDecodeInstruction()
42 public int DisassembleBlock(ulong pc, byte[] memory, uint flags, out string text) in DisassembleBlock()
73 private IDisassembler GetDisassembler(uint flags) in GetDisassembler()
100 public LLVMDisasWrapper(string cpu, string triple, uint flags) in LLVMDisasWrapper()
151 …public bool TryDisassembleInstruction(ulong pc, byte[] data, uint flags, out DisassemblyResult res… in TryDisassembleInstruction()
185 …public bool TryDecodeInstruction(ulong pc, byte[] memory, uint flags, out byte[] opcode, int memor… in TryDecodeInstruction()
258 … static extern IntPtr llvm_create_disasm_cpu_with_flags(string tripleName, string cpu, uint flags); in llvm_create_disasm_cpu_with_flags()
277 …public bool TryDisassembleInstruction(ulong pc, byte[] memory, uint flags, out DisassemblyResult r… in TryDisassembleInstruction()
352 …public bool TryDecodeInstruction(ulong pc, byte[] memory, uint flags, out byte[] opcode, int memor… in TryDecodeInstruction()
[all …]
DIDisassembler.cs14 …bool TryDisassembleInstruction(ulong pc, byte[] memory, uint flags, out DisassemblyResult result, … in TryDisassembleInstruction()
15 …bool TryDecodeInstruction(ulong pc, byte[] memory, uint flags, out byte[] opcode, int memoryOffset… in TryDecodeInstruction()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/Assembler/
DLLVMAssembler.cs25 public byte[] AssembleBlock(ulong pc, string code, uint flags) in AssembleBlock()
61 …private static extern bool llvm_asm(string arch, string cpu, uint flags, string instructions, ulon… in llvm_asm()
DIAssembler.cs12 byte[] AssembleBlock(ulong pc, string code, uint flags); in AssembleBlock()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/
DLLVMArchitectureMapping.cs20 … public static void GetTripleAndModelKey(ICPU cpu, uint flags, out string triple, out string model) in GetTripleAndModelKey()
DTranslationCPU.cs2108 private void LogDisassembly(ulong pc, uint size, uint flags) in LogDisassembly()
2165 … public string DisassembleBlock(ulong addr = ulong.MaxValue, uint blockSize = 40, uint flags = 0) in DisassembleBlock()
2185 public uint AssembleBlock(ulong addr, string instructions, uint flags = 0) in AssembleBlock()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/
DTypeExtensions.cs57 public static bool IsCurrentlyGettable(this PropertyInfo info, BindingFlags flags) in IsCurrentlyGettable()
62 public static bool IsCurrentlySettable(this PropertyInfo info, BindingFlags flags) in IsCurrentlySettable()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/ExecutionTracer/
DTraceWriter.cs64 …protected bool TryReadAndDisassembleInstruction(ulong pc, uint flags, out DisassemblyResult result) in TryReadAndDisassembleInstruction()
DTraceBinaryWriter.cs142 private bool TryReadAndDecodeInstruction(ulong pc, uint flags, out byte[] opcode) in TryReadAndDecodeInstruction()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/TAPHelper/
DTAPTools.cs94 private static int Open_TUNTAP(IntPtr dev, UInt16 flags, bool persistent) in Open_TUNTAP()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/X86/
DBaseX86.cs26 …etDescriptor(SegmentDescriptor descriptor, uint selector, uint baseAddress, uint limit, uint flags) in SetDescriptor()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DOpenTitan_CSRNG.cs341 …int commandHeader, out CommandName command, out uint commandLength, out bool[] flags, out uint gen… in TryExtractCommandParameters()
369 …private void ExecuteCommand(CommandName command, uint commandLength, bool[] flags, uint generateLe… in ExecuteCommand()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DLibCWrapper.cs233 private static extern int open(IntPtr pathname, int flags); in open()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Storage/
DUFSDevice.cs1317 private Dictionary<UFSDeviceFlag, bool> flags; field in Antmicro.Renode.Peripherals.Storage.UFSDevice