Home | History | Annotate | Download | only in Core

Lines Matching refs:mTarget

95 Compiler::Compiler() : mTarget(NULL), mEnableLTO(true) {
99 Compiler::Compiler(const CompilerConfig &pConfig) : mTarget(NULL),
128 return ((mTarget != NULL) ? kErrSwitchTargetMachine :
133 delete mTarget;
134 mTarget = new_target;
146 mTarget->setMCRelaxAll(true);
152 delete mTarget;
162 data_layout = new (std::nothrow) llvm::DataLayout(*mTarget->getDataLayout());
182 if (mTarget->getOptLevel() == llvm::CodeGenOpt::None) {
288 data_layout = new (std::nothrow) llvm::DataLayout(*mTarget->getDataLayout());
302 if (mTarget->addPassesToEmitMC(codegen_passes, mc_context, pResult,
334 if (mTarget == NULL) {