Displaying 1 result from an estimated 1 matches for "exynos3m".
Did you mean:
exynos
2018 May 10
2
[RFC] MC support for variant scheduling classes.
...SchedClass(unsigned SchedClass, const MCInst *MI,
unsigned CPUID) const {
return 0;
}
```
The SubtargetEmitter is resonsible for processing scheduling classes and
generate an override for that method.
This is what the SubtargetEmitter generates for the Cyclone and Exynos3M if
we
implement the changes described by the previous sections:
```
unsigned resolveVariantSchedClass(unsigned SchedClass,
const MCInst *MI, unsigned CPUID) const override {
switch (SchedClass) {
case 117: // BLR
if (CPUID == 5) { // ExynosM3Model
if ((
( MI->getOpco...