reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Target/Sparc/SparcISelLowering.cpp
 3298         && !name.substr(1).getAsInteger(10, intVal) && intVal <= 31) {
 3298         && !name.substr(1).getAsInteger(10, intVal) && intVal <= 31) {
 3300       char regType = regTypes[intVal/8];
 3301       char regIdx = '0' + (intVal % 8);
 3308         !name.substr(1).getAsInteger(10, intVal) && intVal <= 63) {
 3308         !name.substr(1).getAsInteger(10, intVal) && intVal <= 63) {
 3312         newConstraint = "{f" + utostr(intVal) + "}";
 3313       } else if (VT == MVT::f64 && (intVal % 2 == 0)) {
 3314         newConstraint = "{d" + utostr(intVal / 2) + "}";
 3315       } else if (VT == MVT::f128 && (intVal % 4 == 0)) {
 3316         newConstraint = "{q" + utostr(intVal / 4) + "}";