Lines Matching refs:SectionCommand
82 struct SectionCommand { struct
83 SectionCommand(int k) : kind(k) {} in SectionCommand() argument
88 struct SymbolAssignment : SectionCommand { argument
90 : SectionCommand(AssignmentKind), name(name), expression(e), in SymbolAssignment()
93 static bool classof(const SectionCommand *c) { in classof()
183 class InputSectionDescription : public SectionCommand {
192 : SectionCommand(InputSectionKind), filePat(filePattern), in SectionCommand() function
195 static bool classof(const SectionCommand *c) { in classof()
224 struct ByteCommand : SectionCommand {
226 : SectionCommand(ByteKind), commandString(commandString), expression(e), in ByteCommand()
229 static bool classof(const SectionCommand *c) { return c->kind == ByteKind; } in classof()
337 SmallVector<SectionCommand *, 0> sectionCommands;