Skip to content

Commit

Permalink
Rename process vset method
Browse files Browse the repository at this point in the history
  • Loading branch information
kathlenemagnus committed Aug 14, 2024
1 parent cd98462 commit 4068a2d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions core/Decode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ namespace olympia
in_reorder_flush_.registerConsumerHandler(
CREATE_SPARTA_HANDLER_WITH_DATA(Decode, handleFlush_, FlushManager::FlushingCriteria));
in_vset_inst_.registerConsumerHandler(
CREATE_SPARTA_HANDLER_WITH_DATA(Decode, process_vset_, InstPtr));
CREATE_SPARTA_HANDLER_WITH_DATA(Decode, processVset_, InstPtr));

sparta::StartupEvent(node, CREATE_SPARTA_HANDLER(Decode, sendInitialCredits_));
}
Expand Down Expand Up @@ -146,7 +146,7 @@ namespace olympia

// process vset settings being forward from execution pipe
// for set instructions that depend on register
void Decode::process_vset_(const InstPtr & inst)
void Decode::processVset_(const InstPtr & inst)
{
updateVectorConfig_(inst);

Expand Down
2 changes: 1 addition & 1 deletion core/Decode.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ namespace olympia
void sendInitialCredits_();
void fetchBufferAppended_(const InstGroupPtr &);
void receiveUopQueueCredits_(const uint32_t &);
void process_vset_(const InstPtr &);
void processVset_(const InstPtr &);
void decodeInsts_();
void handleFlush_(const FlushManager::FlushingCriteria & criteria);

Expand Down
3 changes: 0 additions & 3 deletions core/Fetch.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,6 @@ namespace olympia
// Receive flush from FlushManager
void flushFetch_(const FlushManager::FlushingCriteria &);

// Recieve vset instruction and set waiting_on_vset_ flag
void process_vset_(const InstPtr &);

// Are we fetching a speculative path?
bool speculative_path_ = false;
};
Expand Down

0 comments on commit 4068a2d

Please sign in to comment.