tlb.cc (3907:00f18b4eedb5) tlb.cc (3908:0a072cce91dd)
1/*
2 * Copyright (c) 2001-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 654 unchanged lines hidden (view full) ---

663
664 if (!implicit) {
665 if (AsiIsLittle(asi))
666 panic("Little Endian ASIs not supported\n");
667 if (AsiIsBlock(asi))
668 panic("Block ASIs not supported\n");
669 if (AsiIsNoFault(asi))
670 panic("No Fault ASIs not supported\n");
1/*
2 * Copyright (c) 2001-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 654 unchanged lines hidden (view full) ---

663
664 if (!implicit) {
665 if (AsiIsLittle(asi))
666 panic("Little Endian ASIs not supported\n");
667 if (AsiIsBlock(asi))
668 panic("Block ASIs not supported\n");
669 if (AsiIsNoFault(asi))
670 panic("No Fault ASIs not supported\n");
671 if (!write && asi == ASI_QUAD_LDD)
671 if (!write && (asi == ASI_QUAD_LDD || asi == ASI_LDTX_REAL))
672 goto continueDtbFlow;
673
674 if (AsiIsTwin(asi))
675 panic("Twin ASIs not supported\n");
676 if (AsiIsPartialStore(asi))
677 panic("Partial Store ASIs not supported\n");
678 if (AsiIsInterrupt(asi))
679 panic("Interrupt ASIs not supported\n");

--- 616 unchanged lines hidden ---
672 goto continueDtbFlow;
673
674 if (AsiIsTwin(asi))
675 panic("Twin ASIs not supported\n");
676 if (AsiIsPartialStore(asi))
677 panic("Partial Store ASIs not supported\n");
678 if (AsiIsInterrupt(asi))
679 panic("Interrupt ASIs not supported\n");

--- 616 unchanged lines hidden ---