Home
last modified time | relevance | path

Searched refs:log (Results 1 – 3 of 3) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/RiscV/
DCV32E40P.cs39 …gisterRegister(opcode, Width.Byte, BitExtension.Sign, postIncrement: true, log: "p.lb rD, rs2(rs1!… in CV32E40P()
40 …gisterRegister(opcode, Width.Byte, BitExtension.Zero, postIncrement: true, log: "p.lbu rD, rs2(rs1… in CV32E40P()
41 …erRegister(opcode, Width.HalfWord, BitExtension.Sign, postIncrement: true, log: "p.lh rD, rs2(rs1!… in CV32E40P()
42 …erRegister(opcode, Width.HalfWord, BitExtension.Zero, postIncrement: true, log: "p.lhu rD, rs2(rs1… in CV32E40P()
43 …gisterRegister(opcode, Width.Word, BitExtension.Zero, postIncrement: true, log: "p.lw rD, rs2(rs1!… in CV32E40P()
52 …: opcode => StoreRegisterRegister(opcode, Width.Byte, postIncrement: true, log: "p.sb rs2, rs3(rs1… in CV32E40P()
53 …code => StoreRegisterRegister(opcode, Width.HalfWord, postIncrement: true, log: "p.sh rs2, rs3(rs1… in CV32E40P()
54 …: opcode => StoreRegisterRegister(opcode, Width.Word, postIncrement: true, log: "p.sw rs2, rs3(rs1… in CV32E40P()
78 …10011", handler: opcode => MultiplyAccumulate(opcode, operationAdd: false, log: "p.msu rD, rs1, rs… in CV32E40P()
79 …110011", handler: opcode => MultiplyAccumulate(opcode, operationAdd: true, log: "p.mac rD, rs1, rs… in CV32E40P()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Logging/
DLogLevel.cs163 var log = obj as LogLevel; in Equals()
164 if(log != null) in Equals()
165 return Equals(log); in Equals()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/Structure/Registers/
DPeripheralRegister.cs801 private bool InvalidTagValues(long offset, ulong originalValue, out string log) in InvalidTagValues() argument
815 log = ""; in InvalidTagValues()
833log = $"Invalid value written to offset 0x{offset:X} reserved bits. Allowed values = {desiredValue… in InvalidTagValues()