search for: iic_default

Displaying 1 result from an estimated 1 matches for "iic_default".

Did you mean: mic_default
2013 Apr 30
1
[LLVMdev] Instruction Scheduling - migration from v3.1 to v3.2
...A8Model : SchedMachineModel { ... let Itineraries = CortexA8Itineraries; } If you don't actually have any itineraries defined in you target's Schedule.td files, you need to define some dummy itinerary with at least one entry. Something like this may work (I haven't tried it). def IIC_Default : InstrItinClass; def MyItineraries : ProcessorItineraries<[ InstrItinData<IIC_Default, [], []> ]>; 3) The new style of machine model. Here, you don't use any hooks above the machine model. Instead you define all possible instruction latencies and resources in your .td. For a p...