x86_cpu.cc (10653:e3fc6bc7f97e) x86_cpu.cc (10905:a6ca6831e775)
1/*
2 * Copyright (c) 2013 Andreas Sandberg
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;

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

557 // TODO: Do we need to create an identity mapped TSS area? We
558 // should call kvm.vm.setTSSAddress() here in that case. It should
559 // only be needed for old versions of the virtualization
560 // extensions. We should make sure that the identity range is
561 // reserved in the e820 memory map in that case.
562}
563
564void
1/*
2 * Copyright (c) 2013 Andreas Sandberg
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;

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

557 // TODO: Do we need to create an identity mapped TSS area? We
558 // should call kvm.vm.setTSSAddress() here in that case. It should
559 // only be needed for old versions of the virtualization
560 // extensions. We should make sure that the identity range is
561 // reserved in the e820 memory map in that case.
562}
563
564void
565X86KvmCPU::dump()
565X86KvmCPU::dump() const
566{
567 dumpIntRegs();
568 if (useXSave)
569 dumpXSave();
570 else
571 dumpFpuRegs();
572 dumpSpecRegs();
573 dumpDebugRegs();

--- 1055 unchanged lines hidden ---
566{
567 dumpIntRegs();
568 if (useXSave)
569 dumpXSave();
570 else
571 dumpFpuRegs();
572 dumpSpecRegs();
573 dumpDebugRegs();

--- 1055 unchanged lines hidden ---