Home | History | Annotate | Download | only in Frontend

Lines Matching defs:Target

59 ///      for example the preprocessor, the target information, and the AST
79 /// The target being compiled for.
80 IntrusiveRefCntPtr<TargetInfo> Target;
82 /// Auxiliary Target info.
212 /// - Clients should have initialized any LLVM target features that may be
356 /// @name Target Info
359 bool hasTarget() const { return Target != nullptr; }
362 assert(Target && "Compiler instance has no target!");
363 return *Target;
366 /// Replace the current Target.
702 /// atomically replace the target output on success).