Lines Matching defs:DragonFly
1 //===--- DragonFly.cpp - DragonFly ToolChain Implementations ----*- C++ -*-===//
9 #include "DragonFly.h"
22 /// DragonFly Tools
24 // For now, DragonFly Assemble does just about the same as for
26 void dragonfly::Assembler::ConstructJob(Compilation &C, const JobAction &JA,
34 // When building 32-bit code on DragonFly/pc64, we have to explicitly
53 void dragonfly::Linker::ConstructJob(Compilation &C, const JobAction &JA,
80 // When building 32-bit code on DragonFly/pc64, we have to explicitly
179 /// DragonFly - DragonFly tool chain which can call as(1) and ld(1) directly.
181 DragonFly::DragonFly(const Driver &D, const llvm::Triple &Triple,
195 Tool *DragonFly::buildAssembler() const {
196 return new tools::dragonfly::Assembler(*this);
199 Tool *DragonFly::buildLinker() const {
200 return new tools::dragonfly::Linker(*this);