-
Notifications
You must be signed in to change notification settings - Fork 141
Use faster C++11 STL container for MIPS ISA #69
Comments
@TimofeevAlex I would like to see 3 |
@TimofeevAlex Any progress? |
I haven't had enough time to do this task yet. I've planned to do it
seriously next week.
2017-10-23 17:14 GMT+03:00 Pavel I. Kryukov <notifications@github.com>:
… @TimofeevAlex <https://github.com/timofeevalex> Any progress?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#69 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AevIrzjVY9jgcq-i1B_mtsLEb30i_s04ks5svJ9TgaJpZM4M5QU5>
.
--
С уважением, Александр Тимофеев
|
@TimofeevAlex Ok, thank you for notification. I advise you to finish it next week as we have a MIPS ISA lecture in the beginning of November, so other guys may implement missing MIPS instructions, creating merge conflicts for you. |
@TimofeevAlex Any progress? |
I have figured out the code in the project, C++ container and started
writing the code. But I am afraid that I won't get in time.
1 Ноя 2017 г. 10:58 пользователь "Pavel I. Kryukov" <
notifications@github.com> написал:
@TimofeevAlex <https://github.com/timofeevalex> Any progress?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#69 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AevIr3rzhuhMNlmKb4jMPq3T3l_HUVl1ks5syCSfgaJpZM4M5QU5>
.
|
That's great! I think we should use for ( const auto& entry : isaTable)
{
bool is_i_R = ( entry.format == FORMAT_R);
if ( entry.opcode == ident && ( is_i_R == is_R))
{
// instruction initialization And we want to get here (at least, you may do something better. like adding instruction format instead of bool to the key):
|
Feel free to ask questions |
OK I understood
1 Ноя 2017 г. 20:09 пользователь "Pavel I. Kryukov" <
notifications@github.com> написал:
… Feel free to ask questions
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#69 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AevIr_HUlftE97YTEadJhhGqV1Isovmnks5syKXTgaJpZM4M5QU5>
.
|
One week passed since our previous sync-up. Do you have any updates on the issue? |
One more week passed since our previous sync-up. Do you have any updates on the issue? Kirill is working on #93, he might proceed faster with that issue. |
I'm going to finish this weekend.
16 Ноя 2017 г. 13:22 пользователь "Pavel I. Kryukov" <
notifications@github.com> написал:
… One more week passed since our previous sync-up. Do you have any updates
on the issue? Kirill is working on #93
<#93>, he might proceed
faster with that issue.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#69 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AevIryXY_Ki19EyKUBM8EvaXlxKr5DM0ks5s3AzcgaJpZM4M5QU5>
.
|
Currently MIPS ISA is stored in C-style static array. With C++11 we may initialize something like std::list or std::unordered_map during compile-time.
The text was updated successfully, but these errors were encountered: