Home | History | Annotate | Download | only in Driver

Lines Matching refs:Phase

128 // affect the phase, starting with the earliest phases, and record which
129 // option we used to determine the final phase.
964 // FIXME: Clean this up if we move the phase sequence into the type.
1052 // If the first step comes after the final phase we are doing as part of
1081 phases::ID Phase = types::getCompilationPhase(InputType, i);
1084 if (Phase > FinalPhase)
1088 if (Phase == phases::Link) {
1094 // Some types skip the assembler phase (e.g., llvm-bc), but we can't
1097 if (Phase == phases::Assemble && Current->getType() != types::TY_PP_Asm)
1101 Current.reset(ConstructPhaseAction(Args, Phase, Current.take()));
1121 Action *Driver::ConstructPhaseAction(const ArgList &Args, phases::ID Phase,
1123 llvm::PrettyStackTraceString CrashInfo("Constructing phase actions");
1125 switch (Phase) {
1166 llvm_unreachable("invalid phase in ConstructPhaseAction");