| Summary: | create POWER9 Logic Pipeline | ||
|---|---|---|---|
| Product: | Libre-SOC's first SoC | Reporter: | Luke Kenneth Casson Leighton <lkcl> |
| Component: | Source Code | Assignee: | Michael Nolan <mtnolan2640> |
| Status: | RESOLVED FIXED | ||
| Severity: | enhancement | CC: | libre-soc-bugs, mtnolan2640 |
| Priority: | --- | ||
| Version: | unspecified | ||
| Hardware: | PC | ||
| OS: | Mac OS | ||
| See Also: | https://bugs.libre-soc.org/show_bug.cgi?id=305 | ||
| NLnet milestone: | NLNet.2019.10.043.Wishbone | total budget (EUR) for completion of task and all subtasks: | 300 |
| budget (EUR) for this task, excluding subtasks' budget: | 300 | parent task for budget allocation: | 383 |
| child tasks for budget allocation: | The table of payments (in EUR) for this task; TOML format: |
lkcl = { amount = 150, paid = 2020-08-21 }
donated = { amount = 150, submitted = 2021-04-24, paid = 2021-05-01 }
|
|
| Bug Depends on: | 356, 361, 331, 360 | ||
| Bug Blocks: | 383 | ||
|
Description
Luke Kenneth Casson Leighton
2020-05-20 16:19:34 BST
i'm not seeing anything in main_stage.py that uses XER carry_in. it appears extraneous. sticky overflow on the other hand, because carry can be generated, should be. michael i am just reviewing the isatables for LOGICAL operations. two things struck me: 1. CR0 is apparently an input for OP_CNTZ but not an output, and we have no cr0 in LogicalInputData. 2. i am not seeing any of the LOGICAL operations listed as needing carry in nor producing carry out. looking here: https://libre-soc.org/openpower/isa/fixedlogical/ it does not appear that any or them set anything other than CR0 and that is an output only. (In reply to Luke Kenneth Casson Leighton from comment #2) > michael i am just reviewing the isatables for LOGICAL operations. two > things struck me: > > 1. CR0 is apparently an input for OP_CNTZ but not an output, and we have no > cr0 in LogicalInputData. That's a mistake, fixing... > > 2. i am not seeing any of the LOGICAL operations listed as needing carry in > nor producing carry out. > > looking here: > https://libre-soc.org/openpower/isa/fixedlogical/ > > it does not appear that any or them set anything other than CR0 and that is > an output only. They shouldn't need carry no. BTW, did the logical pipe's output stage get replaced with common_output_stage? The logical pipe test is broken and I'm not sure how to fix it. (In reply to Michael Nolan from comment #3) > (In reply to Luke Kenneth Casson Leighton from comment #2) > > michael i am just reviewing the isatables for LOGICAL operations. two > > things struck me: > > > > 1. CR0 is apparently an input for OP_CNTZ but not an output, and we have no > > cr0 in LogicalInputData. > > That's a mistake, fixing... ok excellent. it didn't show up in the unit tests. > > > > 2. i am not seeing any of the LOGICAL operations listed as needing carry in > > nor producing carry out. > > > > looking here: > > https://libre-soc.org/openpower/isa/fixedlogical/ > > > > it does not appear that any or them set anything other than CR0 and that is > > an output only. > > They shouldn't need carry no. ok good to confirm. > BTW, did the logical pipe's output stage get replaced with > common_output_stage? yes and common_input_stage as well. > The logical pipe test is broken and I'm not sure how to > fix it. you might have been in between git pulls, can you try again? |