Lines Matching refs:SectionCommand
84 struct SectionCommand { struct
85 SectionCommand(int k) : kind(k) {} in SectionCommand() function
90 struct SymbolAssignment : SectionCommand { argument
92 : SectionCommand(AssignmentKind), name(name), expression(e), in SymbolAssignment()
95 static bool classof(const SectionCommand *c) { in classof()
193 class InputSectionDescription : public SectionCommand {
202 : SectionCommand(InputSectionKind), filePat(filePattern), in SectionCommand() function
205 static bool classof(const SectionCommand *c) { in classof()
234 struct ByteCommand : SectionCommand {
236 : SectionCommand(ByteKind), commandString(commandString), expression(e), in ByteCommand()
239 static bool classof(const SectionCommand *c) { return c->kind == ByteKind; } in classof()
382 SmallVector<SectionCommand *, 0> sectionCommands;