Browse Source

enforce 4k align

pull/3278/head
lizzie 1 month ago
committed by Caio Oliveira
parent
commit
88a0a60af4
No known key found for this signature in database GPG Key ID: AAAE6C7FD4186B0C
  1. 2
      src/dynarmic/src/dynarmic/ir/basic_block.h

2
src/dynarmic/src/dynarmic/ir/basic_block.h

@ -33,7 +33,7 @@ enum class Opcode;
/// Note that this is a linear IR and not a pure tree-based IR: i.e.: there is an ordering to /// Note that this is a linear IR and not a pure tree-based IR: i.e.: there is an ordering to
/// the microinstructions. This only matters before chaining is done in order to correctly /// the microinstructions. This only matters before chaining is done in order to correctly
/// order memory accesses. /// order memory accesses.
class Block final {
class alignas(4096) Block final {
public: public:
//using instruction_list_type = dense_list<Inst>; //using instruction_list_type = dense_list<Inst>;
using instruction_list_type = mcl::intrusive_list<Inst>; using instruction_list_type = mcl::intrusive_list<Inst>;

Loading…
Cancel
Save