cpu.hh (14198:9c2f67392409) cpu.hh (14297:b4519e586f5e)
1/*
2 * Copyright (c) 2011, 2016-2018 ARM Limited
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

560 override;
561
562 Fault writeMem(uint8_t *data, unsigned size, Addr addr,
563 Request::Flags flags, uint64_t *res,
564 const std::vector<bool>& byteEnable = std::vector<bool>())
565 override;
566
567 Fault amoMem(Addr addr, uint8_t* data, unsigned size,
1/*
2 * Copyright (c) 2011, 2016-2018 ARM Limited
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

560 override;
561
562 Fault writeMem(uint8_t *data, unsigned size, Addr addr,
563 Request::Flags flags, uint64_t *res,
564 const std::vector<bool>& byteEnable = std::vector<bool>())
565 override;
566
567 Fault amoMem(Addr addr, uint8_t* data, unsigned size,
568 Request::Flags flags, AtomicOpFunctor *amo_op) override
568 Request::Flags flags, AtomicOpFunctorPtr amo_op) override
569 {
570 panic("AMO is not supported yet in CPU checker\n");
571 }
572
573 unsigned int
574 readStCondFailures() const override {
575 return thread->readStCondFailures();
576 }

--- 92 unchanged lines hidden ---
569 {
570 panic("AMO is not supported yet in CPU checker\n");
571 }
572
573 unsigned int
574 readStCondFailures() const override {
575 return thread->readStCondFailures();
576 }

--- 92 unchanged lines hidden ---