Allow the formal engine to perform a same-cycle result in the ALU
[soc.git] / src / soc / decoder / pseudo / parser.py
2021-04-23 Luke Kenneth Casso... remove pseudo, moved to openpower-isa
2021-04-23 Luke Kenneth Casso... move over to from openpower imports
2021-03-13 Luke Kenneth Casso... get first revision setvl operational in ISACaller
2020-10-09 Luke Kenneth Casso... rename undef to undefined (preserving the fact that...
2020-10-05 Jacob Lifshay`deepcopy` from cache instead of recreating parsers...
2020-10-05 Jacob Lifshayformat code
2020-09-02 Luke Kenneth Casso... series of extensive modifications to fix long-standing...
2020-08-29 Luke Kenneth Casso... allow pseudocode numbering to decrement in for-loops
2020-08-14 Luke Kenneth Casso... bug in isa parser not recognising MSR as declared variable
2020-07-24 Luke Kenneth Casso... remove bad hack calling trunc_divs/trunc_mods
2020-07-22 Jacob LifshayMerge remote-tracking branch 'origin/master'
2020-07-22 Jacob Lifshayformat code
2020-07-13 Luke Kenneth Casso... fix read of sliced register
2020-07-13 Luke Kenneth Casso... not perfect but close enough: add read registers RA...
2020-07-11 Luke Kenneth Casso... whoops output trunc_divs not trunc_div
2020-06-29 Luke Kenneth Casso... attempting to add overflow setting in ISACaller
2020-06-19 Luke Kenneth Casso... add test_0_moduw and correct name to trunc_rem
2020-06-19 Luke Kenneth Casso... add another bad hack in parser.py which identifies...
2020-06-19 Luke Kenneth Casso... add in really bad hack which calls trunc_div or trunc_mod
2020-06-19 Luke Kenneth Casso... auto-assign needs to use concat / selectconcat
2020-06-19 Luke Kenneth Casso... bit of a mess. getting carry recognised and output...
2020-06-19 Luke Kenneth Casso... add auto-assign mode detecting uninitialised variable...
2020-06-19 Luke Kenneth Casso... div needs to be floordiv
2020-06-08 Luke Kenneth Casso... add CA/CA32 to write regs fields in parser
2020-06-07 Luke Kenneth Casso... how odd. just adding CA32 to self.namespace seems...
2020-06-07 Luke Kenneth Casso... add handling of CA/CA32 in simulator, generated from...
2020-06-07 Luke Kenneth Casso... add CA/CA32 to list of special regs
2020-06-07 Luke Kenneth Casso... Revert "if referred to through GPR (GPR[RA]), add to...
2020-06-07 Luke Kenneth Casso... Revert "remove fixedlogical.patch - added gprs to Power...
2020-06-07 Luke Kenneth Casso... Revert "add gprs to PowerParser write_regs in p_atom_name"
2020-06-07 Luke Kenneth Casso... if referred to through GPR (GPR[RA]), add to read_regs...
2020-06-07 Luke Kenneth Casso... add gprs to PowerParser write_regs in p_atom_name
2020-06-07 Luke Kenneth Casso... remove fixedlogical.patch - added gprs to PowerParser...
2020-06-07 Luke Kenneth Casso... add TRAP function, stub
2020-06-07 Luke Kenneth Casso... add MSR to simulator context
2020-05-06 Michael NolanAdd helper functions to replace direct comparison in...
2020-04-17 Jacob LifshayMerge branch 'master' of ssh://git.libre-riscv.org...
2020-04-07 Luke Kenneth Casso... add in special regs to be passed out of function (as...
2020-04-07 Luke Kenneth Casso... attempting to add mtcrf test, requires bringing CR...
2020-04-06 Jacob LifshayMerge branch 'master' of ssh://git.libre-riscv.org...
2020-04-06 Jacob LifshayMerge branch 'fix-tests'
2020-04-06 Jacob Lifshayalmost all tests work
2020-04-05 Luke Kenneth Casso... add Form name parsing
2020-04-05 Luke Kenneth Casso... add HEX to parser
2020-04-05 Luke Kenneth Casso... add SPR rework from SPR(x) to SPR[x]
2020-04-05 Luke Kenneth Casso... construct switch/case/default from if/elif/elif/else
2020-04-05 Luke Kenneth Casso... add start on switch/case/default in parser
2020-04-05 Luke Kenneth Casso... fix issue with subscript uninitialised detection
2020-04-05 Luke Kenneth Casso... allow [s] * 64 to be detected and turned into a repeat...
2020-04-04 Luke Kenneth Casso... add != operator
2020-04-04 Luke Kenneth Casso... add <-iea operator
2020-04-04 Luke Kenneth Casso... add support for syntax "do i = N to N" equivalent to for
2020-04-04 Luke Kenneth Casso... remove extraneous statement
2020-04-04 Luke Kenneth Casso... try again with adding XOR operator
2020-04-04 Luke Kenneth Casso... add means to subscript two levels deep
2020-04-04 Luke Kenneth Casso... add memory get/set
2020-04-04 Luke Kenneth Casso... test fixedload
2020-04-04 Luke Kenneth Casso... sigh change syntax to (RA|0)
2020-04-04 Luke Kenneth Casso... add OrderedSet, needed to preserve function arg order
2020-04-04 Luke Kenneth Casso... use set not list to make regs unique
2020-04-04 Luke Kenneth Casso... identify [0]*16 pattern and produce repeat-of-int
2020-04-04 Luke Kenneth Casso... add modulo to parser (and div to SelectableInt)
2020-04-03 Jacob Lifshaypower parser should work
2020-04-03 Luke Kenneth Casso... unary minus is at end not in front
2020-04-03 Luke Kenneth Casso... add invert operator, fix unary ops
2020-04-03 Luke Kenneth Casso... fix concat error
2020-04-03 Luke Kenneth Casso... add one to end subscript
2020-04-03 Luke Kenneth Casso... corrections to lte / gte
2020-04-03 Luke Kenneth Casso... add bit-wise OR and AND
2020-04-03 Luke Kenneth Casso... add less-than, greater-than, signed, and le/ge
2020-04-03 Luke Kenneth Casso... support assignment to subscripts, however it may need...
2020-04-02 Luke Kenneth Casso... add test of if elif
2020-04-02 Luke Kenneth Casso... start parsing all source files, output python
2020-04-02 Luke Kenneth Casso... add in ability to concat ints
2020-04-01 Luke Kenneth Casso... add bit of code ready for IntClass with an eq function
2020-04-01 Luke Kenneth Casso... split parser into separate module