| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Hooks/ |
| D | BlockPythonEngine.cs | 32 Execute(code, error => in BlockPythonEngine() 42 Execute(code, error => in BlockPythonEngine() 56 code = Compile(source); in InnerInit() 64 private CompiledCode code; field in Antmicro.Renode.Hooks.BlockPythonEngine
|
| D | PacketInterceptionPythonEngine.cs | 40 Execute(code, error => in PacketInterceptionPythonEngine() 57 code = Compile(source); in InnerInit() 62 code = Compile(source); in InnerInit() 67 private CompiledCode code; field in Antmicro.Renode.Hooks.PacketInterceptionPythonEngine
|
| D | GPIOPythonEngine.cs | 30 Execute(code, error => in GPIOPythonEngine() 42 code = Compile(source); in InnerInit() 48 private CompiledCode code; field in Antmicro.Renode.Hooks.GPIOPythonEngine
|
| D | PSCIPythonEngine.cs | 30 Execute(code, error => in PSCIPythonEngine() 42 code = Compile(source); in InnerInit() 48 private CompiledCode code; field in Antmicro.Renode.Hooks.PSCIPythonEngine
|
| D | SyncPointHookPythonEngine.cs | 30 Execute(code, error => in SyncPointHookPythonEngine() 42 code = Compile(source); in InnerInit() 51 private CompiledCode code; field in Antmicro.Renode.Hooks.SyncPointHookPythonEngine
|
| D | UserStatePythonEngine.cs | 31 Execute(code, error => in UserStatePythonEngine() 44 code = Compile(source); in InnerInit() 50 private CompiledCode code; field in Antmicro.Renode.Hooks.UserStatePythonEngine
|
| D | InterruptPythonEngine.cs | 31 Execute(code, error => in InterruptPythonEngine() 45 code = Compile(source); in InnerInit() 51 private CompiledCode code; field in Antmicro.Renode.Hooks.InterruptPythonEngine
|
| D | WFIPythonEngine.cs | 31 Execute(code, error => in WFIPythonEngine() 45 code = Compile(source); in InnerInit() 51 private CompiledCode code; field in Antmicro.Renode.Hooks.WFIPythonEngine
|
| D | WatchpointHookPythonEngine.cs | 33 Execute(code, error => in WatchpointHookPythonEngine() 48 code = Compile(source); in InnerInit() 52 private CompiledCode code; field in Antmicro.Renode.Hooks.WatchpointHookPythonEngine
|
| D | RegisterCollectionHookPythonEngine.cs | 32 Execute(code, error => in RegisterCollectionHookPythonEngine() 49 code = Compile(source); in InnerInit() 53 private CompiledCode code; field in Antmicro.Renode.Hooks.RegisterCollectionHookPythonEngine
|
| D | UartPythonEngine.cs | 33 Execute(code, error => in UartPythonEngine() 47 code = Compile(source); in InnerInit() 53 private CompiledCode code; field in Antmicro.Renode.Hooks.UartPythonEngine
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/RiscV/ |
| D | RiscVCsrPythonEngine.cs | 47 Execute(code, error => in RiscVCsrPythonEngine() 59 Execute(code, error => in RiscVCsrPythonEngine() 94 code = Compile(source); in InnerInit() 105 Execute(code); in TryInit() 114 private CompiledCode code; field in Antmicro.Renode.Hooks.RiscVCsrPythonEngine
|
| D | RiscVInstructionPythonEngine.cs | 41 Execute(code, error => in RiscVInstructionPythonEngine() 70 code = Compile(source); in InnerInit() 76 private CompiledCode code; field in Antmicro.Renode.Hooks.RiscVInstructionPythonEngine
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/ |
| D | PythonEngine.cs | 170 protected void Execute(CompiledCode code) in Execute() argument 172 … Execute(code, error => throw new RecoverableException($"Python runtime error: {error}")); in Execute() 175 protected void Execute(CompiledCode code, Action<string> errorCallback) in Execute() argument 180 code?.Execute(Scope); in Execute()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Python/ |
| D | PeripheralPythonEngine.cs | 49 code = Compile(source); in InitScope() 74 Execute(code); in ExecuteCode() 81 private CompiledCode code; field in Antmicro.Renode.Peripherals.Python.PeripheralPythonEngine
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/Assembler/ |
| D | LLVMAssembler.cs | 25 public byte[] AssembleBlock(ulong pc, string code, uint flags) in AssembleBlock() argument 36 ok = llvm_asm(triple, model, flags, code, pc, out output, out outLen); in AssembleBlock()
|
| D | IAssembler.cs | 12 byte[] AssembleBlock(ulong pc, string code, uint flags); in AssembleBlock() argument
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/ |
| D | MonitorExecutorExtensions.cs | 83 code = Compile(source); in ExecutorPythonEngine() 84 Action = () => Execute(code); in ExecutorPythonEngine() 89 private CompiledCode code; field in Antmicro.Renode.UserInterface.MonitorExecutorExtensions.ExecutorPythonEngine
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/ |
| D | VideoCapturer.cs | 225 private static bool DoIoctl(IoctlCode code, IntPtr data) in DoIoctl() argument 228 if((err = LibCWrapper.Ioctl(fd, (int)code, data)) < 0) in DoIoctl() 233 … executing the {0} ioctl: {1} (0x{2:X})", Enum.GetName(typeof(IoctlCode), code), lastErrorMessage,… in DoIoctl()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/MemoryControllers/ |
| D | OpenTitan_ROMController.cs | 230 var code = 0ul; in AddECC() 235 BitHelper.SetBit(ref code, i, bit ^ inverted); in AddECC() 237 return (ulong)word | (code << 32); in AddECC()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Common/ |
| D | RegisterEnumParser.tt | 21 // * C# code that can be tested by UnitTests 23 // Parser code is stored in `RegisterEnumParserContent.tt` template. It is included
|
| /Renode-Infrastructure-v1.15.3-29f510e/licenses/ |
| D | LGPL.txt | 30 for this service if you wish); that you receive source code or can get 43 code. If you link other code with the library, you must provide 78 Public License permits more lax criteria for linking other code with 112 former contains code derived from the library, whereas the latter must 136 "Source code" for a work means the preferred form of the work for 137 making modifications to it. For a library, complete source code means 138 all the source code for all modules it contains, plus any associated 151 complete source code as you receive it, in any medium, provided that 224 This option is useful when you wish to copy part of the code of 228 derivative of it, under Section 2) in object code or executable form [all …]
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/ExecutionTracer/FBInstruction/ |
| D | README.txt | 3 FlatBuffers compiler (`flatc`) is used to generate C# code for reading and writing the instruction …
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CAN/ |
| D | UT32_CAN.cs | 325 var code = acceptanceCode.Select(r => (byte)r.Value).ToArray(); in FilterFrame() 355 var matches = ~(BitConverter.ToUInt32(input, 0) ^ BitConverter.ToUInt32(code, 0)); in FilterFrame() 373 … var matches = ~(BitConverter.ToUInt32(input, 0) ^ BitConverter.ToUInt32(code, 0)); in FilterFrame() 392 … var matches = ~(BitConverter.ToUInt32(input, 0) ^ BitConverter.ToUInt32(code, 0)); in FilterFrame()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/RiscV/opcodes/ |
| D | README | 13 1. Redistributions of source code must retain the above copyright
|