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