Uses of Class
mars.assembler.Directives
Packages that use Directives
-
Uses of Directives in mars.assembler
Fields in mars.assembler declared as DirectivesModifier and TypeFieldDescriptionstatic DirectivesDirectives.ALIGNstatic DirectivesDirectives.ASCIIstatic DirectivesDirectives.ASCIIZstatic DirectivesDirectives.BYTEstatic DirectivesDirectives.DATAstatic DirectivesDirectives.DOUBLEstatic DirectivesDirectives.END_MACROstatic DirectivesDirectives.EQVstatic DirectivesDirectives.EXTERNstatic DirectivesDirectives.FLOATstatic DirectivesDirectives.GLOBLstatic DirectivesDirectives.HALFstatic DirectivesDirectives.INCLUDEstatic DirectivesDirectives.KDATAstatic DirectivesDirectives.KTEXTstatic DirectivesDirectives.MACROstatic DirectivesDirectives.SETstatic DirectivesDirectives.SPACEstatic DirectivesDirectives.TEXTstatic DirectivesDirectives.WORDMethods in mars.assembler that return DirectivesModifier and TypeMethodDescriptionstatic DirectivesDirectives.matchDirective(String str)Find Directive object, if any, which matches the given String.Methods in mars.assembler that return types with arguments of type DirectivesModifier and TypeMethodDescriptionstatic ArrayList<Directives>Directives.getDirectiveList()Produces List of Directive objectsstatic ArrayList<Directives>Directives.prefixMatchDirectives(String str)Find Directive object, if any, which contains the given string as a prefix.Methods in mars.assembler with parameters of type DirectivesModifier and TypeMethodDescriptionstatic intDataTypes.getLengthInBytes(Directives direct)Get length in bytes for numeric MIPS directives.static booleanDirectives.isFloatingDirective(Directives direct)Lets you know whether given directive is for floating number (FLOAT,DOUBLE).static booleanDirectives.isIntegerDirective(Directives direct)Lets you know whether given directive is for integer (WORD,HALF,BYTE).static booleanDataTypes.outOfRange(Directives direct, double value)Determines whether given floating point value falls within value range for given directive.static booleanDataTypes.outOfRange(Directives direct, int value)Determines whether given integer value falls within value range for given directive.