tlb.cc (6428:9e35cdc95e81) | tlb.cc (7518:917208416d2a) |
---|---|
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; --- 1035 unchanged lines hidden (view full) --- 1044 } 1045 pkt->makeAtomicResponse(); 1046 return tc->getCpuPtr()->ticks(1); 1047} 1048 1049Tick 1050TLB::doMmuRegWrite(ThreadContext *tc, Packet *pkt) 1051{ | 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; --- 1035 unchanged lines hidden (view full) --- 1044 } 1045 pkt->makeAtomicResponse(); 1046 return tc->getCpuPtr()->ticks(1); 1047} 1048 1049Tick 1050TLB::doMmuRegWrite(ThreadContext *tc, Packet *pkt) 1051{ |
1052 uint64_t data = gtoh(pkt->get<uint64_t>()); | 1052 uint64_t data = pkt->get<uint64_t>(); |
1053 Addr va = pkt->getAddr(); 1054 ASI asi = (ASI)pkt->req->getAsi(); 1055 1056 Addr ta_insert; 1057 Addr va_insert; 1058 Addr ct_insert; 1059 int part_insert; 1060 int entry_insert = -1; --- 378 unchanged lines hidden --- | 1053 Addr va = pkt->getAddr(); 1054 ASI asi = (ASI)pkt->req->getAsi(); 1055 1056 Addr ta_insert; 1057 Addr va_insert; 1058 Addr ct_insert; 1059 int part_insert; 1060 int entry_insert = -1; --- 378 unchanged lines hidden --- |