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

  /external/llvm/include/llvm/IR/
Operator.h 382 Value *getPointerOperand() {
385 const Value *getPointerOperand() const {
395 return getPointerOperand()->getType();
Instructions.h 225 Value *getPointerOperand() { return getOperand(0); }
226 const Value *getPointerOperand() const { return getOperand(0); }
231 return getPointerOperand()->getType()->getPointerAddressSpace();
348 Value *getPointerOperand() { return getOperand(1); }
349 const Value *getPointerOperand() const { return getOperand(1); }
354 return getPointerOperand()->getType()->getPointerAddressSpace();
513 Value *getPointerOperand() { return getOperand(0); }
514 const Value *getPointerOperand() const { return getOperand(0); }
525 return getPointerOperand()->getType()->getPointerAddressSpace();
660 Value *getPointerOperand() { return getOperand(0);
    [all...]
  /external/llvm/lib/Analysis/
DependenceAnalysis.cpp 650 Value *getPointerOperand(Instruction *I) {
652 return LI->getPointerOperand();
654 return SI->getPointerOperand();
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 285 static Value *getPointerOperand(Value *I);
965 Value *BoUpSLP::getPointerOperand(Value *I) {
967 return LI->getPointerOperand();
969 return SI->getPointerOperand();
982 Value *PtrA = getPointerOperand(A);
983 Value *PtrB = getPointerOperand(B);
    [all...]

Completed in 65 milliseconds