Lines Matching refs:action

245   for (auto& action : input_actions) {  in InitializeInputs()  local
246 assert(action != nullptr); in InitializeInputs()
247 action->activate(ir_builder.getInputBuilder()); in InitializeInputs()
825 Action action; in TranslateArguments() local
838 action.reset(new mcld::ScriptAction( in TranslateArguments()
840 actions.push_back(std::move(action)); in TranslateArguments()
842 action.reset(new mcld::ContextAction(0x0)); in TranslateArguments()
843 actions.push_back(std::move(action)); in TranslateArguments()
845 action.reset(new mcld::MemoryAreaAction(0x0, in TranslateArguments()
847 actions.push_back(std::move(action)); in TranslateArguments()
859 action.reset(new mcld::DefSymAction(index, script_.defsyms().back())); in TranslateArguments()
860 actions.push_back(std::move(action)); in TranslateArguments()
866 action.reset(new mcld::NamespecAction( in TranslateArguments()
868 actions.push_back(std::move(action)); in TranslateArguments()
870 action.reset(new mcld::ContextAction(index)); in TranslateArguments()
871 actions.push_back(std::move(action)); in TranslateArguments()
873 action.reset(new mcld::MemoryAreaAction(index, in TranslateArguments()
875 actions.push_back(std::move(action)); in TranslateArguments()
883 action.reset(new mcld::WholeArchiveAction(index)); in TranslateArguments()
884 actions.push_back(std::move(action)); in TranslateArguments()
890 action.reset(new mcld::NoWholeArchiveAction(index)); in TranslateArguments()
891 actions.push_back(std::move(action)); in TranslateArguments()
897 action.reset(new mcld::AsNeededAction(index)); in TranslateArguments()
898 actions.push_back(std::move(action)); in TranslateArguments()
904 action.reset(new mcld::NoAsNeededAction(index)); in TranslateArguments()
905 actions.push_back(std::move(action)); in TranslateArguments()
913 action.reset(new mcld::AddNeededAction(index)); in TranslateArguments()
914 actions.push_back(std::move(action)); in TranslateArguments()
922 action.reset(new mcld::AddNeededAction(index)); in TranslateArguments()
923 actions.push_back(std::move(action)); in TranslateArguments()
929 action.reset(new mcld::BDynamicAction(index)); in TranslateArguments()
930 actions.push_back(std::move(action)); in TranslateArguments()
936 action.reset(new mcld::BStaticAction(index)); in TranslateArguments()
937 actions.push_back(std::move(action)); in TranslateArguments()
943 action.reset(new mcld::StartGroupAction(index)); in TranslateArguments()
944 actions.push_back(std::move(action)); in TranslateArguments()
950 action.reset(new mcld::EndGroupAction(index)); in TranslateArguments()
951 actions.push_back(std::move(action)); in TranslateArguments()
956 action.reset(new mcld::InputFileAction(index, arg->getValue())); in TranslateArguments()
957 actions.push_back(std::move(action)); in TranslateArguments()
959 action.reset(new mcld::ContextAction(index)); in TranslateArguments()
960 actions.push_back(std::move(action)); in TranslateArguments()
962 action.reset(new mcld::MemoryAreaAction(index, in TranslateArguments()
964 actions.push_back(std::move(action)); in TranslateArguments()