ldstop.isa (12384:481add71d2e4) | ldstop.isa (12463:84f365522633) |
---|---|
1// Copyright (c) 2007-2008 The Hewlett-Packard Development Company 2// Copyright (c) 2015 Advanced Micro Devices, Inc. 3// All rights reserved. 4// 5// The license below extends only to copyright in the software and shall 6// not be construed as granting a license to any other intellectual 7// property including but not limited to intellectual property relating 8// to a hardware implementation of the functionality of the software --- 620 unchanged lines hidden (view full) --- 629 Mem = *(uint64_t *)&FpData_df; 630 break; 631 default: 632 panic("Unhandled data size in StFp87.\\n"); 633 } 634 ''') 635 636 defineMicroStoreOp('Cda', 'Mem = 0;', mem_flags="Request::NO_ACCESS") | 1// Copyright (c) 2007-2008 The Hewlett-Packard Development Company 2// Copyright (c) 2015 Advanced Micro Devices, Inc. 3// All rights reserved. 4// 5// The license below extends only to copyright in the software and shall 6// not be construed as granting a license to any other intellectual 7// property including but not limited to intellectual property relating 8// to a hardware implementation of the functionality of the software --- 620 unchanged lines hidden (view full) --- 629 Mem = *(uint64_t *)&FpData_df; 630 break; 631 default: 632 panic("Unhandled data size in StFp87.\\n"); 633 } 634 ''') 635 636 defineMicroStoreOp('Cda', 'Mem = 0;', mem_flags="Request::NO_ACCESS") |
637 defineMicroStoreOp('Clflushopt', 'Mem = 0;', 638 mem_flags="Request::CLEAN | Request::INVALIDATE" + 639 " | Request::DST_POC") 640 defineMicroStoreOp('Clwb', 'Mem = 0;', 641 mem_flags="Request::CLEAN | Request::DST_POC") |
|
637 638 def defineMicroStoreSplitOp(mnemonic, code, 639 completeCode="", mem_flags="0"): 640 global header_output 641 global decoder_output 642 global exec_output 643 global microopClasses 644 Name = mnemonic --- 88 unchanged lines hidden --- | 642 643 def defineMicroStoreSplitOp(mnemonic, code, 644 completeCode="", mem_flags="0"): 645 global header_output 646 global decoder_output 647 global exec_output 648 global microopClasses 649 Name = mnemonic --- 88 unchanged lines hidden --- |