view dmd/backend/REG.d @ 165:25ede4f66bda

Temporarily disabled GC (again) because phobos fails to compile with it (looks like some ObjSymbols are being falsely collected, see Library.d:666) Getting rid of global state (i.e global and static variables) to allow running concurrent compilation
author korDen
date Thu, 30 Sep 2010 10:04:32 +0400
parents 10317f0c89a5
children
line wrap: on
line source

module dmd.backend.REG;

enum REG
{
	AX = 0,
	CX = 1,
	DX = 2,
	BX = 3,
	SP = 4,
	BP = 5,
	SI = 6,
	DI = 7,
	ES = 9,
	PSW = 10,
	STACK = 11,	// top of stack
	MEM = 12,	// memory
	OTHER = 13,	// other things
	ST0 = 14,	// 8087 top of stack register
	ST01 = 15,	// top two 8087 registers; for complex types

	NOREG = 100,	// no register
}