HomeSort by relevance Sort by last modified time
    Searched defs:getPointerOperand (Results 1 - 6 of 6) sorted by null

  /external/llvm/lib/Analysis/
Delinearization.cpp 73 static Value *getPointerOperand(Instruction &Inst) {
75 return Load->getPointerOperand();
77 return Store->getPointerOperand();
79 return Gep->getPointerOperand();
97 const SCEV *AccessFn = SE->getSCEVAtScope(getPointerOperand(*Inst), L);
DependenceAnalysis.cpp 652 Value *getPointerOperand(Instruction *I) {
654 return LI->getPointerOperand();
656 return SI->getPointerOperand();
    [all...]
  /external/llvm/include/llvm/IR/
Operator.h 388 Value *getPointerOperand() {
391 const Value *getPointerOperand() const {
400 return getPointerOperand()->getType();
459 Value *getPointerOperand() {
462 const Value *getPointerOperand() const {
471 return getPointerOperand()->getType();
Instructions.h 286 Value *getPointerOperand() { return getOperand(0); }
287 const Value *getPointerOperand() const { return getOperand(0); }
292 return getPointerOperand()->getType()->getPointerAddressSpace();
410 Value *getPointerOperand() { return getOperand(1); }
411 const Value *getPointerOperand() const { return getOperand(1); }
416 return getPointerOperand()->getType()->getPointerAddressSpace();
612 Value *getPointerOperand() { return getOperand(0); }
613 const Value *getPointerOperand() const { return getOperand(0); }
624 return getPointerOperand()->getType()->getPointerAddressSpace();
786 Value *getPointerOperand() { return getOperand(0);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 451 return (getPointerOperand() == Inst.getPointerOperand() &&
454 bool isValid() const { return getPointerOperand() != nullptr; }
464 Value *getPointerOperand() const {
467 return LI->getPointerOperand();
469 return SI->getPointerOperand();
610 LoadValue InVal = AvailableLoads.lookup(MemInst.getPointerOperand());
632 MemInst.getPointerOperand(),
687 LoadValue InVal = AvailableLoads.lookup(MemInst.getPointerOperand());
695 ParseMemoryInst(LastStore, TTI).getPointerOperand() =
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 318 return (LI->getPointerOperand() == Scalar);
322 return (SI->getPointerOperand() == Scalar);
436 static Value *getPointerOperand(Value *I);
    [all...]

Completed in 1308 milliseconds