mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-30 16:17:05 +00:00 
			
		
		
		
	Better processor definition
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43749 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
		| @@ -33,6 +33,7 @@ def MipsInstrInfo : InstrInfo { | |||||||
| // CPU Directives                                                             // | // CPU Directives                                                             // | ||||||
| //===----------------------------------------------------------------------===// | //===----------------------------------------------------------------------===// | ||||||
|  |  | ||||||
|  | // Not currently supported, but work as SubtargetFeature placeholder. | ||||||
| def FeatureMipsIII : SubtargetFeature<"mips3", "IsMipsIII", "true", | def FeatureMipsIII : SubtargetFeature<"mips3", "IsMipsIII", "true", | ||||||
|                                       "MipsIII ISA Support">; |                                       "MipsIII ISA Support">; | ||||||
|  |  | ||||||
| @@ -40,8 +41,9 @@ def FeatureMipsIII : SubtargetFeature<"mips3", "IsMipsIII", "true", | |||||||
| // Mips processors supported. | // Mips processors supported. | ||||||
| //===----------------------------------------------------------------------===// | //===----------------------------------------------------------------------===// | ||||||
|  |  | ||||||
| def : Processor<"generic", MipsGenericItineraries, []>; | def : Processor<"mips1", MipsGenericItineraries, []>; | ||||||
| //def : Processor<"r4000",   MipsR4000Itineraries,   [FeatureMipsIII]>; | def : Processor<"r2000", MipsGenericItineraries, []>; | ||||||
|  | def : Processor<"r3000", MipsGenericItineraries, []>; | ||||||
|  |  | ||||||
| def Mips : Target { | def Mips : Target { | ||||||
|   let InstructionSet = MipsInstrInfo; |   let InstructionSet = MipsInstrInfo; | ||||||
|   | |||||||
| @@ -20,7 +20,7 @@ MipsSubtarget::MipsSubtarget(const TargetMachine &TM, const Module &M, | |||||||
|                              const std::string &FS) :  |                              const std::string &FS) :  | ||||||
|   IsMipsIII(false) |   IsMipsIII(false) | ||||||
| { | { | ||||||
|   std::string CPU = "generic"; |   std::string CPU = "mips1"; | ||||||
|  |  | ||||||
|   // Parse features string. |   // Parse features string. | ||||||
|   ParseSubtargetFeatures(FS, CPU); |   ParseSubtargetFeatures(FS, CPU); | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user