HomeSort by: relevance | last modified time | path
    Searched defs:SQ (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopRotation.cpp 58 const SimplifyQuery SQ = getBestSimplifyQuery(AR, DL);
65 MSSAU.hasValue() ? MSSAU.getPointer() : nullptr, SQ, false,
122 const SimplifyQuery SQ = getBestSimplifyQuery(*this, F);
139 MSSAU.hasValue() ? MSSAU.getPointer() : nullptr, SQ,
EarlyCSE.cpp 524 const SimplifyQuery SQ;
605 : TLI(TLI), TTI(TTI), DT(DT), AC(AC), SQ(DL, &TLI, &DT, &AC), MSSA(MSSA),
1328 if (Value *V = SimplifyInstruction(&Inst, SQ)) {
NewGVN.cpp 508 const SimplifyQuery SQ;
665 SQ(DL, TLI, DT, AC, /*CtxI=*/nullptr, /*UseInstrInfo=*/false,
1090 Value *V = SimplifyBinOp(Opcode, E->getOperand(0), E->getOperand(1), SQ);
1174 SimplifyCmpInst(Predicate, E->getOperand(0), E->getOperand(1), SQ);
1183 E->getOperand(2), SQ);
1189 SimplifyBinOp(E->getOpcode(), E->getOperand(0), E->getOperand(1), SQ);
1194 SimplifyCastInst(CI->getOpcode(), E->getOperand(0), CI->getType(), SQ);
1199 E->getType(), ArrayRef<Value *>(E->op_begin(), E->op_end()), SQ);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
LoopRotationUtils.cpp 70 const SimplifyQuery &SQ;
79 const SimplifyQuery &SQ, bool RotationOnly, bool IsUtilMode,
82 MSSAU(MSSAU), SQ(SQ), RotationOnly(RotationOnly),
453 Value *V = SimplifyInstruction(C, SQ);
832 const SimplifyQuery &SQ, bool RotationOnly = true,
835 LoopRotate LR(Threshold, LI, TTI, AC, DT, SE, MSSAU, SQ, RotationOnly,
PromoteMemoryToRegister.cpp 232 const SimplifyQuery SQ;
269 AC(AC), SQ(DT.getRoot()->getParent()->getParent()->getDataLayout(),
580 if (rewriteSingleStoreAlloca(AI, Info, LBI, SQ.DL, DT, AC)) {
591 promoteSingleBlockAlloca(AI, Info, LBI, SQ.DL, DT, AC)) {
705 if (Value *V = SimplifyInstruction(PN, SQ)) {
962 !isKnownNonZero(V, SQ.DL, 0, AC, LI, &DT))
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/InstCombine/
InstCombiner.h 72 const SimplifyQuery SQ;
92 SQ(DL, &TLI, &DT, &AC), ORE(ORE), BFI(BFI), PSI(PSI), LI(LI) {}
371 const SimplifyQuery &getSimplifyQuery() const { return SQ; }
  /src/external/bsd/unbound/dist/smallapp/
unbound-control.c 213 #define SQ "="
215 #define PR_UL_NM(str, var) printf("%s."str SQ"%lu\n", nm, (unsigned long)(var));
216 #define PR_UL(str, var) printf(str SQ"%lu\n", (unsigned long)(var));
217 #define PR_UL_SUB(str, nm, var) printf(str".%s"SQ"%lu\n", nm, (unsigned long)(var));
218 #define PR_TIMEVAL(str, var) printf(str SQ ARG_LL "d.%6.6d\n", \
220 #define PR_STATSTIME(str, var) printf(str SQ ARG_LL "d.%6.6d\n", \
222 #define PR_LL(str, var) printf(str SQ ARG_LL"d\n", (long long)(var));
256 printf("%s.requestlist.avg"SQ"%g\n", nm,
273 printf("%s.recursion.time.median"SQ"%g\n", nm, s->mesh_time_median);
  /src/bin/sh/
parser.c 871 slurp_heredoc(char *const eofmark, const int striptabs, const int sq)
890 if (sq) {
946 plinno - lines, sq ? "quoted " : "", eofmark,
1268 #define SQ 0x01 /* Single Quotes */
1909 syntax == SQSYNTAX ? "SQ" : \
2034 quoted = SQ;
2035 VTRACE(DBG_LEXER, (" TS_PUSH(SQ)"));
2046 VTRACE(DBG_LEXER, ("SQ TS_POP->%s ", SYNTAX));
2410 VTRACE(DBG_LEXER, ("%s->TS_PUSH()->SQ ", SYNTAX));
  /src/external/bsd/unbound/dist/daemon/
remote.c 123 #ifdef SQ
124 #undef SQ
128 #define SQ "="
792 if(!ssl_printf(ssl, "%s.num.queries"SQ"%lu\n", nm,
794 if(!ssl_printf(ssl, "%s.num.queries_ip_ratelimited"SQ"%lu\n", nm,
796 if(!ssl_printf(ssl, "%s.num.queries_cookie_valid"SQ"%lu\n", nm,
798 if(!ssl_printf(ssl, "%s.num.queries_cookie_client"SQ"%lu\n", nm,
800 if(!ssl_printf(ssl, "%s.num.queries_cookie_invalid"SQ"%lu\n", nm,
802 if(!ssl_printf(ssl, "%s.num.queries_discard_timeout"SQ"%lu\n", nm,
804 if(!ssl_printf(ssl, "%s.num.queries_wait_limit"SQ"%lu\n", nm
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
CodeGenPrepare.cpp 3346 const SimplifyQuery &SQ;
3354 SimplificationTracker(const SimplifyQuery &sq)
3355 : SQ(sq) {}
3375 if (Value *V = SimplifyInstruction(cast<Instruction>(PI), SQ)) {
3453 const SimplifyQuery &SQ;
3460 : CommonType(nullptr), SQ(_SQ), Original(OriginalValue) {}
3564 Type *IntPtrTy = SQ.DL.getIntPtrType(AddrModes[0].OriginalValue->getType());
3614 SimplificationTracker ST(SQ);
5117 const SimplifyQuery SQ(*DL, TLInfo)
    [all...]

Completed in 54 milliseconds