/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/GlobalISel/ |
D | Combiner.cpp | 28 Combiner::Combiner(CombinerInfo &Info, const TargetPassConfig *TPC) in Combiner() argument 29 : CInfo(Info), TPC(TPC) { in Combiner() 30 (void)this->TPC; // FIXME: Remove when used. in Combiner()
|
D | InstructionSelect.cpp | 71 const TargetPassConfig &TPC = getAnalysis<TargetPassConfig>(); in runOnMachineFunction() local 89 reportGISelFailure(MF, TPC, MORE, "gisel-select", in runOnMachineFunction() 133 reportGISelFailure(MF, TPC, MORE, "gisel-select", "cannot select", MI); in runOnMachineFunction() 197 reportGISelFailure(MF, TPC, MORE, "gisel-select", in runOnMachineFunction() 205 MF, TPC, MORE, "gisel-select", in runOnMachineFunction() 216 reportGISelFailure(MF, TPC, MORE, R); in runOnMachineFunction()
|
D | Utils.cpp | 156 void llvm::reportGISelFailure(MachineFunction &MF, const TargetPassConfig &TPC, in reportGISelFailure() argument 163 if (!R.getLocation().isValid() || TPC.isGlobalISelAbortEnabled()) in reportGISelFailure() 166 if (TPC.isGlobalISelAbortEnabled()) in reportGISelFailure() 172 void llvm::reportGISelFailure(MachineFunction &MF, const TargetPassConfig &TPC, in reportGISelFailure() argument 180 if (TPC.isGlobalISelAbortEnabled() || MORE.allowExtraAnalysis(PassName)) in reportGISelFailure() 182 reportGISelFailure(MF, TPC, MORE, R); in reportGISelFailure()
|
D | Legalizer.cpp | 78 const TargetPassConfig &TPC = getAnalysis<TargetPassConfig>(); in runOnMachineFunction() local 142 reportGISelFailure(MF, TPC, MORE, "gisel-legalize", in runOnMachineFunction() 182 reportGISelFailure(MF, TPC, MORE, R); in runOnMachineFunction()
|
D | RegBankSelect.cpp | 88 TPC = &getAnalysis<TargetPassConfig>(); in init() 139 if (ValMapping.NumBreakDowns != 1 && !TPC->isGlobalISelAbortEnabled()) in repairReg() 258 if (!BestMapping && !TPC->isGlobalISelAbortEnabled()) { in findBestMapping() 618 reportGISelFailure(MF, *TPC, *MORE, "gisel-regbankselect", in runOnMachineFunction() 643 reportGISelFailure(MF, *TPC, *MORE, "gisel-regbankselect", in runOnMachineFunction()
|
D | IRTranslator.cpp | 87 const TargetPassConfig &TPC, in INITIALIZE_PASS_DEPENDENCY() 94 if (!R.getLocation().isValid() || TPC.isGlobalISelAbortEnabled()) in INITIALIZE_PASS_DEPENDENCY() 97 if (TPC.isGlobalISelAbortEnabled()) in INITIALIZE_PASS_DEPENDENCY() 199 reportTranslationError(*MF, *TPC, *ORE, R); in getOrCreateVRegs() 253 reportTranslationError(*MF, *TPC, *ORE, R); in getMemOpAlignment() 1542 TPC = &getAnalysis<TargetPassConfig>(); in runOnMachineFunction() 1552 reportTranslationError(*MF, *TPC, *ORE, R); in runOnMachineFunction() 1593 reportTranslationError(*MF, *TPC, *ORE, R); in runOnMachineFunction() 1602 reportTranslationError(*MF, *TPC, *ORE, R); in runOnMachineFunction() 1644 reportTranslationError(*MF, *TPC, *ORE, R); in runOnMachineFunction()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-exegesis/lib/ |
D | Assembler.cpp | 49 llvm::TargetPassConfig &TPC) { in addPass() argument 64 TPC.printAndVerify(Banner); in addPass() 188 llvm::TargetPassConfig *TPC = TM->createPassConfig(PM); in assembleToStream() local 189 PM.add(TPC); in assembleToStream() 191 TPC->printAndVerify("MachineFunctionGenerator::assemble"); in assembleToStream() 194 TPC->printAndVerify("After ExegesisTarget::addTargetSpecificPasses"); in assembleToStream() 199 if (addPass(PM, PassName, *TPC)) in assembleToStream() 201 TPC->setInitialized(); in assembleToStream()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llc/ |
D | llc.cpp | 360 StringRef PassName, TargetPassConfig &TPC) { in addPass() argument 382 TPC.printAndVerify(Banner); in addPass() 548 TargetPassConfig &TPC = *LLVMTM.createPassConfig(PM); in compileModule() local 549 if (TPC.hasLimitedCodeGenPipeline()) { in compileModule() 552 << TPC.getLimitedCodeGenPipelineReason(" and ") << ".\n"; in compileModule() 556 TPC.setDisableVerify(NoVerify); in compileModule() 557 PM.add(&TPC); in compileModule() 559 TPC.printAndVerify(""); in compileModule() 561 if (addPass(PM, argv0, RunPassName, TPC)) in compileModule() 564 TPC.setInitialized(); in compileModule()
|
/external/clang/lib/AST/ |
D | CommentParser.cpp | 283 void Parser::parseTParamCommandArgs(TParamCommandComment *TPC, in parseTParamCommandArgs() argument 287 S.actOnTParamCommandParamNameArg(TPC, in parseTParamCommandArgs() 315 TParamCommandComment *TPC = nullptr; in parseBlockCommand() local 326 TPC = S.actOnTParamCommandStart(Tok.getLocation(), in parseBlockCommand() 345 } else if (TPC) { in parseBlockCommand() 346 S.actOnTParamCommandFinish(TPC, Paragraph); in parseBlockCommand() 347 return TPC; in parseBlockCommand() 354 if (PC || TPC || Info->NumArgs > 0) { in parseBlockCommand() 361 else if (TPC) in parseBlockCommand() 362 parseTParamCommandArgs(TPC, Retokenizer); in parseBlockCommand() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/GlobalISel/ |
D | Combiner.h | 29 Combiner(CombinerInfo &CombinerInfo, const TargetPassConfig *TPC); 37 const TargetPassConfig *TPC; variable
|
D | Utils.h | 84 void reportGISelFailure(MachineFunction &MF, const TargetPassConfig &TPC, 88 void reportGISelFailure(MachineFunction &MF, const TargetPassConfig &TPC,
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPULowerIntrinsics.cpp | 115 auto *TPC = getAnalysisIfAvailable<TargetPassConfig>(); in makeLIDRangeMetadata() local 116 if (!TPC) in makeLIDRangeMetadata() 119 const TargetMachine &TM = TPC->getTM<TargetMachine>(); in makeLIDRangeMetadata()
|
D | AMDGPUAnnotateKernelFeatures.cpp | 317 auto *TPC = getAnalysisIfAvailable<TargetPassConfig>(); in doInitialization() local 318 if (!TPC) in doInitialization() 322 TM = &TPC->getTM<TargetMachine>(); in doInitialization()
|
D | AMDGPUPerfHintAnalysis.cpp | 371 auto *TPC = getAnalysisIfAvailable<TargetPassConfig>(); in runOnFunction() local 372 if (!TPC) in runOnFunction() 375 const TargetMachine &TM = TPC->getTM<TargetMachine>(); in runOnFunction()
|
D | AMDGPULowerKernelArguments.cpp | 68 auto &TPC = getAnalysis<TargetPassConfig>(); in runOnFunction() local 70 const TargetMachine &TM = TPC.getTM<TargetMachine>(); in runOnFunction()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/ |
D | MipsModuleISelDAGToDAG.cpp | 48 auto &TPC = getAnalysis<TargetPassConfig>(); in runOnMachineFunction() local 49 auto &TM = TPC.getTM<MipsTargetMachine>(); in runOnMachineFunction()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | IndirectBrExpandPass.cpp | 78 auto *TPC = getAnalysisIfAvailable<TargetPassConfig>(); in runOnFunction() local 79 if (!TPC) in runOnFunction() 82 auto &TM = TPC->getTM<TargetMachine>(); in runOnFunction()
|
D | LowerEmuTLS.cpp | 66 auto *TPC = getAnalysisIfAvailable<TargetPassConfig>(); in runOnModule() local 67 if (!TPC) in runOnModule() 70 auto &TM = TPC->getTM<TargetMachine>(); in runOnModule()
|
D | InterleavedAccessPass.cpp | 440 auto *TPC = getAnalysisIfAvailable<TargetPassConfig>(); in runOnFunction() local 441 if (!TPC || !LowerInterleavedAccesses) in runOnFunction() 447 auto &TM = TPC->getTM<TargetMachine>(); in runOnFunction()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/ |
D | PPCBoolRetToInt.cpp | 192 auto *TPC = getAnalysisIfAvailable<TargetPassConfig>(); in runOnFunction() local 193 if (!TPC) in runOnFunction() 196 auto &TM = TPC->getTM<PPCTargetMachine>(); in runOnFunction()
|
D | PPCCTRLoops.cpp | 190 auto *TPC = getAnalysisIfAvailable<TargetPassConfig>(); in runOnFunction() local 191 if (!TPC) in runOnFunction() 194 TM = &TPC->getTM<PPCTargetMachine>(); in runOnFunction()
|
/external/llvm/tools/llc/ |
D | llc.cpp | 415 TargetPassConfig *TPC = LLVMTM.createPassConfig(PM); in compileModule() local 416 PM.add(TPC); in compileModule() 419 TPC->printAndVerify(""); in compileModule() 441 TPC->printAndVerify(Banner); in compileModule()
|
/external/autotest/client/tests/dbt2/ |
D | control | 7 Dbt-2 is a fair-use implementation of the TPC-C benchmark. The test is
|
/external/clang/include/clang/AST/ |
D | CommentParser.h | 98 void parseTParamCommandArgs(TParamCommandComment *TPC,
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/ |
D | ARMCodeGenPrepare.cpp | 690 auto *TPC = &getAnalysis<TargetPassConfig>(); in runOnFunction() local 691 if (!TPC) in runOnFunction() 694 const TargetMachine &TM = TPC->getTM<TargetMachine>(); in runOnFunction()
|