/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/ |
D | InstSimplifyPass.cpp | 31 static bool runImpl(Function &F, const SimplifyQuery &SQ, in runImpl() argument 50 if (Value *V = SimplifyInstruction(I, SQ, ORE)) { in runImpl() 59 if (RecursivelyDeleteTriviallyDeadInstructions(I, SQ.TLI)) { in runImpl() 108 const SimplifyQuery SQ(DL, TLI, DT, AC); in runOnFunction() local 109 return runImpl(F, SQ, ORE); in runOnFunction() 136 const SimplifyQuery SQ(DL, &TLI, &DT, &AC); in run() local 137 bool Changed = runImpl(F, SQ, &ORE); in run()
|
D | LoopRotation.cpp | 41 const SimplifyQuery SQ = getBestSimplifyQuery(AR, DL); in run() local 43 bool Changed = LoopRotation(&L, &AR.LI, &AR.TTI, &AR.AC, &AR.DT, &AR.SE, SQ, in run() 86 const SimplifyQuery SQ = getBestSimplifyQuery(*this, F); in runOnLoop() local 87 return LoopRotation(L, LI, TTI, AC, DT, SE, SQ, false, MaxHeaderSize, in runOnLoop()
|
D | LoopInstSimplify.cpp | 53 SimplifyQuery SQ(DL, &TLI, &DT, &AC); in simplifyLoopInst() local 99 Value *V = SimplifyInstruction(&I, SQ.getWithInstruction(&I)); in simplifyLoopInst()
|
D | CorrelatedValuePropagation.cpp | 185 const SimplifyQuery &SQ) { in processPHI() argument 239 if (Value *V = SimplifyInstruction(P, SQ)) { in processPHI() 685 const SimplifyQuery &SQ) { in runImpl() argument 701 BBChanged |= processPHI(cast<PHINode>(II), LVI, DT, SQ); in runImpl()
|
/external/llvm/lib/Support/ |
D | YAMLTraits.cpp | 181 if (SequenceHNode *SQ = dyn_cast<SequenceHNode>(CurrentNode)) in beginSequence() local 182 return SQ->Entries.size(); in beginSequence() 201 if (SequenceHNode *SQ = dyn_cast<SequenceHNode>(CurrentNode)) { in preflightElement() local 203 CurrentNode = SQ->Entries[Index].get(); in preflightElement() 218 if (SequenceHNode *SQ = dyn_cast<SequenceHNode>(CurrentNode)) { in preflightFlowElement() local 220 CurrentNode = SQ->Entries[index].get(); in preflightFlowElement() 264 if (SequenceHNode *SQ = dyn_cast<SequenceHNode>(CurrentNode)) { in beginBitSetScalar() local 265 BitValuesUsed.insert(BitValuesUsed.begin(), SQ->Entries.size(), false); in beginBitSetScalar() 276 if (SequenceHNode *SQ = dyn_cast<SequenceHNode>(CurrentNode)) { in bitSetMatch() local 278 for (auto &N : SQ->Entries) { in bitSetMatch() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | YAMLTraits.cpp | 206 if (SequenceHNode *SQ = dyn_cast<SequenceHNode>(CurrentNode)) in beginSequence() local 207 return SQ->Entries.size(); in beginSequence() 226 if (SequenceHNode *SQ = dyn_cast<SequenceHNode>(CurrentNode)) { in preflightElement() local 228 CurrentNode = SQ->Entries[Index].get(); in preflightElement() 243 if (SequenceHNode *SQ = dyn_cast<SequenceHNode>(CurrentNode)) { in preflightFlowElement() local 245 CurrentNode = SQ->Entries[index].get(); in preflightFlowElement() 289 if (SequenceHNode *SQ = dyn_cast<SequenceHNode>(CurrentNode)) { in beginBitSetScalar() local 290 BitValuesUsed.insert(BitValuesUsed.begin(), SQ->Entries.size(), false); in beginBitSetScalar() 301 if (SequenceHNode *SQ = dyn_cast<SequenceHNode>(CurrentNode)) { in bitSetMatch() local 303 for (auto &N : SQ->Entries) { in bitSetMatch() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/ |
D | opaque.ll | 5 %SQ = type <{ [8 x i8] }> 8 …t8, %Vs4Int8, %Vs4Int8, %Vs4Int8, %Vs4Int8, %Vs4Int8, %Vs4Int8 }>, %Si, %SQ, %SQ, %Si, %swift.opaq…
|
/external/mesa3d/src/mesa/math/ |
D | m_matrix.c | 1223 #define SQ(x) ((x)*(x)) macro 1273 if (SQ(mm-1) > SQ(1e-6F) || in analyse_from_scratch() 1274 SQ(m4m4-1) > SQ(1e-6F)) in analyse_from_scratch() 1278 if (SQ(mm4) > SQ(1e-6F)) in analyse_from_scratch() 1288 if (SQ(m[0]-m[5]) < SQ(1e-6F) && in analyse_from_scratch() 1289 SQ(m[0]-m[10]) < SQ(1e-6F)) { in analyse_from_scratch() 1290 if (SQ(m[0]-1.0F) > SQ(1e-6F)) { in analyse_from_scratch() 1308 if (SQ(c1-c2) < SQ(1e-6F) && SQ(c1-c3) < SQ(1e-6F)) { in analyse_from_scratch() 1309 if (SQ(c1-1.0F) > SQ(1e-6F)) in analyse_from_scratch() 1318 if (SQ(d1) < SQ(1e-6F)) { in analyse_from_scratch() [all …]
|
/external/llvm/test/Transforms/InstCombine/ |
D | opaque.ll | 5 %SQ = type <{ [8 x i8] }> 8 …t8, %Vs4Int8, %Vs4Int8, %Vs4Int8, %Vs4Int8, %Vs4Int8, %Vs4Int8 }>, %Si, %SQ, %SQ, %Si, %swift.opaq…
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/ |
D | LSUnit.h | 119 LSUnit(unsigned LQ = 0, unsigned SQ = 0, bool AssumeNoAlias = false) 120 : LQ_Size(LQ), SQ_Size(SQ), NoAlias(AssumeNoAlias) {} in LQ_Size()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/ |
D | LoopRotationUtils.cpp | 56 const SimplifyQuery &SQ; member in __anon20384e8e0111::LoopRotate 63 DominatorTree *DT, ScalarEvolution *SE, const SimplifyQuery &SQ, in LoopRotate() argument 66 SQ(SQ), RotationOnly(RotationOnly), IsUtilMode(IsUtilMode) {} in LoopRotate() 351 Value *V = SimplifyInstruction(C, SQ); in rotateLoop() 638 ScalarEvolution *SE, const SimplifyQuery &SQ, in LoopRotation() argument 642 LoopRotate LR(Threshold, LI, TTI, AC, DT, SE, SQ, RotationOnly, IsUtilMode); in LoopRotation()
|
D | PromoteMemoryToRegister.cpp | 241 const SimplifyQuery SQ; member 283 AC(AC), SQ(DT.getRoot()->getParent()->getParent()->getDataLayout(), in PromoteMem2Reg() 586 if (rewriteSingleStoreAlloca(AI, Info, LBI, SQ.DL, DT, AC)) { in run() 597 promoteSingleBlockAlloca(AI, Info, LBI, SQ.DL, DT, AC)) { in run() 716 if (Value *V = SimplifyInstruction(PN, SQ)) { in run() 972 !isKnownNonZero(V, SQ.DL, 0, AC, LI, &DT)) in RenamePass()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Utils/ |
D | LoopRotationUtils.h | 35 const SimplifyQuery &SQ, bool RotationOnly,
|
/external/llvm/test/Analysis/ScalarEvolution/ |
D | SolveQuadraticEquation.ll | 20 %SQ = mul i32 %i.0, %i.0 22 %tmp5 = sub i32 %SQ, %tmp4
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Analysis/ScalarEvolution/ |
D | SolveQuadraticEquation.ll | 20 %SQ = mul i32 %i.0, %i.0 22 %tmp5 = sub i32 %SQ, %tmp4
|
/external/perfetto/src/traced/probes/ftrace/test/data/android_hammerhead_MRA59G_3.4.0/events/kgsl/kgsl_a2xx_irq_status/ |
D | format | 14 …rint_flags(REC->master_status, "|", { 0x00000020L, "MH" }, { 0x04000000L, "SQ" }, { 0x40000000L, "…
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/ |
D | InstructionCombining.cpp | 317 if (Value *V = SimplifyBinOp(Opcode, B, C, SQ.getWithInstruction(&I))) { in SimplifyAssociativeOrCommutative() 346 if (Value *V = SimplifyBinOp(Opcode, A, B, SQ.getWithInstruction(&I))) { in SimplifyAssociativeOrCommutative() 374 if (Value *V = SimplifyBinOp(Opcode, C, A, SQ.getWithInstruction(&I))) { in SimplifyAssociativeOrCommutative() 394 if (Value *V = SimplifyBinOp(Opcode, C, A, SQ.getWithInstruction(&I))) { in SimplifyAssociativeOrCommutative() 532 V = SimplifyBinOp(TopLevelOpcode, B, D, SQ.getWithInstruction(&I)); in tryFactorization() 551 V = SimplifyBinOp(TopLevelOpcode, A, C, SQ.getWithInstruction(&I)); in tryFactorization() 646 Value *L = SimplifyBinOp(TopLevelOpcode, A, C, SQ.getWithInstruction(&I)); in SimplifyUsingDistributiveLaws() 647 Value *R = SimplifyBinOp(TopLevelOpcode, B, C, SQ.getWithInstruction(&I)); in SimplifyUsingDistributiveLaws() 683 Value *L = SimplifyBinOp(TopLevelOpcode, A, B, SQ.getWithInstruction(&I)); in SimplifyUsingDistributiveLaws() 684 Value *R = SimplifyBinOp(TopLevelOpcode, A, C, SQ.getWithInstruction(&I)); in SimplifyUsingDistributiveLaws() [all …]
|
D | InstCombineMulDivRem.cpp | 130 SQ.getWithInstruction(&I))) in visitMul() 415 SQ.getWithInstruction(&I))) in visitFMul() 933 SQ.getWithInstruction(&I))) in visitUDiv() 1027 SQ.getWithInstruction(&I))) in visitSDiv() 1175 SQ.getWithInstruction(&I))) in visitFDiv() 1304 SQ.getWithInstruction(&I))) in visitURem() 1351 SQ.getWithInstruction(&I))) in visitSRem() 1425 SQ.getWithInstruction(&I))) in visitFRem()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-mca/X86/ |
D | option-all-stats-1.s | 32 # FULLREPORT-NEXT: SQ - Store queue full: 0
|
D | option-all-views-1.s | 34 # FULLREPORT-NEXT: SQ - Store queue full: 0
|
D | option-all-stats-2.s | 33 # FULL-NEXT: SQ - Store queue full: 0
|
D | option-all-views-2.s | 33 # ALL-NEXT: SQ - Store queue full: 0
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-mca/X86/BtVer2/ |
D | register-files-4.s | 29 # CHECK-NEXT: SQ - Store queue full: 0
|
D | register-files-3.s | 29 # CHECK-NEXT: SQ - Store queue full: 0
|
/external/honggfuzz/examples/apache-httpd/corpus_http1/ |
D | 879eea3a04fd753260a5ad4183be70e4.00000ba8.honggfuzz.cov | 19 …C���^JSIo�<�q�ܞxEJ^����bT���9p��L�Aľ�h�* �ay�~�S�O�ou�p���o%;s�u��:�SQ�##���0�չu�A���3�dzd,(…
|