Home
last modified time | relevance | path

Searched refs:SQ (Results 1 – 25 of 274) sorted by relevance

1234567891011

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DInstSimplifyPass.cpp31 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()
DLoopRotation.cpp41 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()
DLoopInstSimplify.cpp53 SimplifyQuery SQ(DL, &TLI, &DT, &AC); in simplifyLoopInst() local
99 Value *V = SimplifyInstruction(&I, SQ.getWithInstruction(&I)); in simplifyLoopInst()
DCorrelatedValuePropagation.cpp185 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/
DYAMLTraits.cpp181 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/
DYAMLTraits.cpp206 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/
Dopaque.ll5 %SQ = type <{ [8 x i8] }>
8 …t8, %Vs4Int8, %Vs4Int8, %Vs4Int8, %Vs4Int8, %Vs4Int8, %Vs4Int8 }>, %Si, %SQ, %SQ, %Si, %swift.opaq…
/external/mesa3d/src/mesa/math/
Dm_matrix.c1223 #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/
Dopaque.ll5 %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/
DLSUnit.h119 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/
DLoopRotationUtils.cpp56 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()
DPromoteMemoryToRegister.cpp241 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/
DLoopRotationUtils.h35 const SimplifyQuery &SQ, bool RotationOnly,
/external/llvm/test/Analysis/ScalarEvolution/
DSolveQuadraticEquation.ll20 %SQ = mul i32 %i.0, %i.0
22 %tmp5 = sub i32 %SQ, %tmp4
/external/swiftshader/third_party/llvm-7.0/llvm/test/Analysis/ScalarEvolution/
DSolveQuadraticEquation.ll20 %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/
Dformat14 …rint_flags(REC->master_status, "|", { 0x00000020L, "MH" }, { 0x04000000L, "SQ" }, { 0x40000000L, "…
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
DInstructionCombining.cpp317 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 …]
DInstCombineMulDivRem.cpp130 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/
Doption-all-stats-1.s32 # FULLREPORT-NEXT: SQ - Store queue full: 0
Doption-all-views-1.s34 # FULLREPORT-NEXT: SQ - Store queue full: 0
Doption-all-stats-2.s33 # FULL-NEXT: SQ - Store queue full: 0
Doption-all-views-2.s33 # ALL-NEXT: SQ - Store queue full: 0
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-mca/X86/BtVer2/
Dregister-files-4.s29 # CHECK-NEXT: SQ - Store queue full: 0
Dregister-files-3.s29 # CHECK-NEXT: SQ - Store queue full: 0
/external/honggfuzz/examples/apache-httpd/corpus_http1/
D879eea3a04fd753260a5ad4183be70e4.00000ba8.honggfuzz.cov19 …C���^JSIo�<�q�ܞxEJ^����bT���9p��L�Aľ�h�* �ay�~�S�O�ou�p���o��%;s�u��:�SQ�##���0�չu�A���3�dzd,(…

1234567891011