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

References

lib/Target/ARM/AsmParser/ARMAsmParser.cpp
 3288     if (Value >= 256 && Value <= 0xffff)
 3288     if (Value >= 256 && Value <= 0xffff)
 3289       Value = (Value >> 8) | ((Value & 0xff) ? 0xc00 : 0x200);
 3289       Value = (Value >> 8) | ((Value & 0xff) ? 0xc00 : 0x200);
 3289       Value = (Value >> 8) | ((Value & 0xff) ? 0xc00 : 0x200);
 3290     else if (Value > 0xffff && Value <= 0xffffff)
 3290     else if (Value > 0xffff && Value <= 0xffffff)
 3291       Value = (Value >> 16) | ((Value & 0xff) ? 0xd00 : 0x400);
 3291       Value = (Value >> 16) | ((Value & 0xff) ? 0xd00 : 0x400);
 3291       Value = (Value >> 16) | ((Value & 0xff) ? 0xd00 : 0x400);
 3292     else if (Value > 0xffffff)
 3293       Value = (Value >> 24) | 0x600;
 3293       Value = (Value >> 24) | 0x600;
 3294     return Value;