Deleted Added
sdiff udiff text old ( 5169:bfd18d401251 ) new ( 5177:4307a768e10e )
full compact
1/*
2 * Copyright (c) 2002-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;

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

361 dataPtr += dataSize;
362 //Adjust the size to get the remaining bytes.
363 dataSize = addr + sizeof(T) - secondAddr;
364 //And access the right address.
365 addr = secondAddr;
366 }
367}
368
369#ifndef DOXYGEN_SHOULD_SKIP_THIS
370
371template
372Fault
373AtomicSimpleCPU::read(Addr addr, Twin32_t &data, unsigned flags);
374
375template
376Fault

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

519 dataPtr += dataSize;
520 //Adjust the size to get the remaining bytes.
521 dataSize = addr + sizeof(T) - secondAddr;
522 //And access the right address.
523 addr = secondAddr;
524 }
525}
526
527
528#ifndef DOXYGEN_SHOULD_SKIP_THIS
529
530template
531Fault
532AtomicSimpleCPU::write(Twin32_t data, Addr addr,
533 unsigned flags, uint64_t *res);
534
535template

--- 174 unchanged lines hidden ---