Lines Matching defs:SectionCommand
87 struct SectionCommand {
88 SectionCommand(int k) : kind(k) {}
93 struct SymbolAssignment : SectionCommand {
95 : SectionCommand(AssignmentKind), name(name), expression(e),
98 static bool classof(const SectionCommand *c) {
196 class InputSectionDescription : public SectionCommand {
206 : SectionCommand(InputSectionKind), matchType(MatchType::Trivial),
226 static bool classof(const SectionCommand *c) {
259 struct ByteCommand : SectionCommand {
261 : SectionCommand(ByteKind), commandString(commandString), expression(e),
264 static bool classof(const SectionCommand *c) { return c->kind == ByteKind; }
414 SmallVector<SectionCommand *, 0> sectionCommands;