HomeSort by relevance Sort by last modified time
    Searched defs:SE (Results 1 - 25 of 202) sorted by null

1 2 3 4 5 6 7 8 9

  /build/kati/testcase/
var_append.mk 3 SE:=
11 SE+=$(foo) $(bar)
20 echo "$(SE)"
25 echo "$(flavor SE)"
  /external/llvm/include/llvm/Transforms/Scalar/
AlignmentFromAssumptions.h 42 ScalarEvolution *SE = nullptr;
  /external/llvm/include/llvm/Analysis/
LoopUnrollAnalyzer.h 51 ScalarEvolution &SE, const Loop *L)
52 : SimplifiedValues(SimplifiedValues), SE(SE), L(L) {
53 IterationNumber = SE.getConstant(APInt(64, Iteration));
82 ScalarEvolution &SE;
ScalarEvolutionAliasAnalysis.h 28 ScalarEvolution &SE;
31 explicit SCEVAAResult(ScalarEvolution &SE) : AAResultBase(), SE(SE) {}
32 SCEVAAResult(SCEVAAResult &&Arg) : AAResultBase(std::move(Arg)), SE(Arg.SE) {}
IVUsers.h 126 ScalarEvolution *SE;
  /external/llvm/include/llvm/Transforms/Vectorize/
LoopVectorize.h 77 ScalarEvolution *SE;
SLPVectorizer.h 46 ScalarEvolution *SE = nullptr;
  /external/clang/test/OpenMP/
target_codegen_registration.cpp 30 // CHECK-DAG: [[SE:%.+]] = type { [64 x i32] }
45 // CHECK-DAG: [[E1:@.+]] = global [[SE]]
53 // CHECK-NTARGET-DAG: [[SE:%.+]] = type { [64 x i32] }
249 struct SE {
257 SE() {
263 ~SE() {
384 SE e1;
  /external/llvm/include/llvm/Transforms/Utils/
LoopVersioning.h 43 DominatorTree *DT, ScalarEvolution *SE,
148 ScalarEvolution *SE;
  /external/strace/tests/
ksysent.c 46 #define SE 0
nsyscalls.c 47 #define SE 0
  /external/strace/tests-m32/
ksysent.c 46 #define SE 0
nsyscalls.c 47 #define SE 0
  /external/strace/tests-mx32/
ksysent.c 46 #define SE 0
nsyscalls.c 47 #define SE 0
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
LoopDependenceAnalysis.h 40 ScalarEvolution *SE;
  /external/swiftshader/third_party/LLVM/lib/Analysis/
ScalarEvolutionAliasAnalysis.cpp 33 ScalarEvolution *SE;
37 ScalarEvolutionAliasAnalysis() : FunctionPass(ID), SE(0) {
83 SE = &getAnalysis<ScalarEvolution>();
118 const SCEV *AS = SE->getSCEV(const_cast<Value *>(LocA.Ptr));
119 const SCEV *BS = SE->getSCEV(const_cast<Value *>(LocB.Ptr));
126 if (SE->getEffectiveSCEVType(AS->getType()) ==
127 SE->getEffectiveSCEVType(BS->getType())) {
128 unsigned BitWidth = SE->getTypeSizeInBits(AS->getType());
133 const SCEV *BA = SE->getMinusSCEV(BS, AS);
138 if (ASizeInt.ule(SE->getUnsignedRange(BA).getUnsignedMin()) &
    [all...]
ScalarEvolutionNormalization.cpp 70 ScalarEvolution &SE;
77 ScalarEvolution &se, DominatorTree &dt):
78 Kind(kind), Loops(loops), SE(se), DT(dt) {}
99 case scZeroExtend: return SE.getZeroExtendExpr(N, S->getType());
100 case scSignExtend: return SE.getSignExtendExpr(N, S->getType());
101 case scTruncate: return SE.getTruncateExpr(N, S->getType());
119 const SCEV *Result = SE.getAddRecExpr(Operands, L, SCEV::FlagAnyWrap);
125 TransformSubExpr(AR->getStepRecurrence(SE),
127 Result = SE.getMinusSCEV(Result, TransformedStep)
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
Environment.cpp 178 SymExpr::symbol_iterator SI = X.symbol_begin(), SE = X.symbol_end();
179 for (; SI != SE; ++SI)
SimpleConstraintManager.cpp 29 const SymExpr *SE = SymVal->getSymbol();
31 if (const SymIntExpr *SIE = dyn_cast<SymIntExpr>(SE)) {
52 if (const SymSymExpr *SSE = dyn_cast<SymSymExpr>(SE)) {
140 } else if (const SymIntExpr *SE = dyn_cast<SymIntExpr>(sym)) {
143 BinaryOperator::Opcode op = SE->getOpcode();
148 return assumeSymRel(state, SE->getLHS(), op, SE->getRHS());
231 if (const SymIntExpr *SE = dyn_cast<SymIntExpr>(Sym)) {
232 BinaryOperator::Opcode Op = SE->getOpcode();
234 Sym = SE->getLHS()
    [all...]
  /external/llvm/lib/Analysis/
Delinearization.cpp 44 ScalarEvolution *SE;
67 SE = &getAnalysis<ScalarEvolutionWrapperPass>().getSE();
96 const SCEV *AccessFn = SE->getSCEVAtScope(getPointerOperand(*Inst), L);
99 dyn_cast<SCEVUnknown>(SE->getPointerBase(AccessFn));
103 AccessFn = SE->getMinusSCEV(AccessFn, BasePointer);
111 SE->delinearize(AccessFn, Subscripts, Sizes, SE->getElementSize(Inst));
ScalarEvolutionNormalization.cpp 70 ScalarEvolution &SE;
77 ScalarEvolution &se, DominatorTree &dt):
78 Kind(kind), Loops(loops), SE(se), DT(dt) {}
99 case scZeroExtend: return SE.getZeroExtendExpr(N, S->getType());
100 case scSignExtend: return SE.getSignExtendExpr(N, S->getType());
101 case scTruncate: return SE.getTruncateExpr(N, S->getType());
119 const SCEV *Result = SE.getAddRecExpr(Operands, L, SCEV::FlagAnyWrap);
135 TransformSubExpr(AR->getStepRecurrence(SE),
137 Result = SE.getMinusSCEV(Result, TransformedStep)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
LoopUnrollPass.cpp 131 ScalarEvolution *SE = &getAnalysis<ScalarEvolution>();
156 TripCount = SE->getSmallConstantTripCount(L, LatchBlock);
157 TripMultiple = SE->getSmallConstantTripMultiple(L, LatchBlock);
  /external/clang/lib/StaticAnalyzer/Checkers/
VLASizeChecker.cpp 95 const Expr *SE = VLA->getSizeExpr();
97 SVal sizeV = state->getSVal(SE, C.getLocationContext());
100 reportBug(VLA_Garbage, SE, state, C);
111 reportBug(VLA_Tainted, SE, nullptr, C);
122 reportBug(VLA_Zero, SE, stateZero, C);
136 QualType Ty = SE->getType();
147 reportBug(VLA_Negative, SE, state, C);
156 svalBuilder.evalCast(sizeD, SizeTy, SE->getType()).castAs<NonLoc>();
  /external/llvm/lib/Transforms/Scalar/
LoopDataPrefetch.cpp 81 // FIXME: For some reason, preserving SE here breaks LSR (even if
116 ScalarEvolution *SE;
140 const auto *ConstStride = dyn_cast<SCEVConstant>(AR->getStepRecurrence(*SE));
155 SE = &getAnalysis<ScalarEvolutionWrapperPass>().getSE();
242 const SCEV *LSCEV = SE->getSCEV(PtrValue);
257 const SCEV *PtrDiff = SE->getMinusSCEV(LSCEVAddRec, PrefLoad.second);
270 const SCEV *NextLSCEV = SE->getAddExpr(LSCEVAddRec, SE->getMulExpr(
271 SE->getConstant(LSCEVAddRec->getType(), ItersAhead),
272 LSCEVAddRec->getStepRecurrence(*SE)));
    [all...]

Completed in 808 milliseconds

1 2 3 4 5 6 7 8 9