Merging Runtime into Processor.

This commit is contained in:
Ben Vanik
2015-05-03 22:28:25 -07:00
parent 4c8f3501ad
commit 78921c1a7e
56 changed files with 441 additions and 543 deletions

View File

@@ -16,7 +16,7 @@
namespace xe {
namespace cpu {
class Runtime;
class Processor;
class ThreadState;
} // namespace cpu
} // namespace xe
@@ -205,9 +205,9 @@ typedef struct alignas(64) PPCContext_s {
// Used to shuttle data into externs. Contents volatile.
uint64_t scratch;
// Runtime-specific data pointer. Used on callbacks to get access to the
// Processor-specific data pointer. Used on callbacks to get access to the
// current runtime and its data.
Runtime* runtime;
Processor* processor;
uint8_t* physical_membase;