Searched defs:Ptr (Results 276 - 300 of 355) sorted by relevance

<<1112131415

/external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2634 Value *Val, *Ptr; local
2635 if (getValueTypePair(Record, OpNum, NextValueNo, Ptr) ||
2637 cast<PointerType>(Ptr->getType())->getElementType(), Val) ||
2641 I = new StoreInst(Val, Ptr, Record[OpNum+1], (1 << Record[OpNum]) >> 1);
2648 Value *Val, *Ptr; local
2649 if (getValueTypePair(Record, OpNum, NextValueNo, Ptr) ||
2651 cast<PointerType>(Ptr->getType())->getElementType(), Val) ||
2663 I = new StoreInst(Val, Ptr, Record[OpNum+1], (1 << Record[OpNum]) >> 1,
2671 Value *Ptr, *Cmp, *New; local
2672 if (getValueTypePair(Record, OpNum, NextValueNo, Ptr) ||
2691 Value *Ptr, *Val; local
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp1023 Value *Ptr = CE->getOperand(0);
1024 if (!isa<GlobalValue>(Ptr) ||
1025 !isa<StructType>(cast<PointerType>(Ptr->getType())->getElementType()))
1105 Value *Ptr = CE->getOperand(0); local
1108 Asm->Mang->getSymbol(cast<GlobalValue>(Ptr)));
1112 Asm->getTargetData().getIndexedOffset(Ptr->getType(), Idx));
/external/swiftshader/third_party/LLVM/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp1357 SDValue Ptr = Node->getOperand(1); local
1360 if (!SelectAddr(Node, Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
1569 SDValue Ptr = Node->getOperand(1); local
1572 if (!SelectAddr(Node, Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp277 void ConvertUsesToScalar(Value *Ptr, AllocaInst *NewAI, uint64_t Offset);
516 /// ConvertUsesToScalar - Convert all of the users of Ptr to use the new alloca
522 /// shifted to the right. By the end of this, there should be no uses of Ptr.
523 void ConvertToScalarInfo::ConvertUsesToScalar(Value *Ptr, AllocaInst *NewAI, argument
525 while (!Ptr->use_empty()) {
526 Instruction *User = cast<Instruction>(Ptr->use_back());
557 assert(SI->getOperand(0) != Ptr && "Consistency error!");
574 assert(MSI->getRawDest() == Ptr && "Consistency error!");
610 AllocaInst *OrigAI = cast<AllocaInst>(GetUnderlyingObject(Ptr, &TD, 0));
615 assert(MTI->getRawDest() == Ptr
[all...]
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
H A DMetadata.h737 PointerUnion<LLVMContext *, ReplaceableMetadataImpl *> Ptr; member in class:llvm::ContextAndReplaceableUses
740 ContextAndReplaceableUses(LLVMContext &Context) : Ptr(&Context) {}
743 : Ptr(ReplaceableUses.release()) {
758 return Ptr.is<ReplaceableMetadataImpl *>();
764 return *Ptr.get<LLVMContext *>();
769 return Ptr.get<ReplaceableMetadataImpl *>();
790 Ptr = ReplaceableUses.release();
800 Ptr = &ReplaceableUses->getContext();
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h1034 Load(SExpr *P) : SExpr(COP_Load), Ptr(P) {}
1035 Load(const Load &L, SExpr *P) : SExpr(L), Ptr(P) {}
1037 SExpr *pointer() { return Ptr; }
1038 const SExpr *pointer() const { return Ptr; }
1042 auto Np = Vs.traverse(Ptr, Vs.subExprCtx(Ctx));
1052 SExpr* Ptr; member in class:clang::threadSafety::Load
/external/clang/lib/AST/
H A DASTDiagnostic.cpp272 void *Ptr = (void*)PrevArgs[i].second; local
273 QualType PrevTy(QualType::getFromOpaquePtr(Ptr));
H A DASTDumper.cpp221 void dumpPointer(const void *Ptr);
583 void ASTDumper::dumpPointer(const void *Ptr) { argument
585 OS << ' ' << Ptr; local
/external/clang/lib/CodeGen/
H A DCGExprCXX.cpp1168 llvm::Value *Ptr; member in class:__anon1258::final
1180 llvm::Value *Ptr,
1183 Ptr(Ptr), AllocSize(AllocSize) {}
1200 DeleteArgs.add(RValue::get(Ptr), *AI++);
1221 DominatingValue<RValue>::saved_type Ptr; member in class:__anon1258::final
1235 DominatingValue<RValue>::saved_type Ptr,
1238 Ptr(Ptr), AllocSize(AllocSize) {}
1255 DeleteArgs.add(Ptr
1178 CallDeleteDuringNew(size_t NumPlacementArgs, const FunctionDecl *OperatorDelete, llvm::Value *Ptr, llvm::Value *AllocSize) argument
1233 CallDeleteDuringConditionalNew(size_t NumPlacementArgs, const FunctionDecl *OperatorDelete, DominatingValue<RValue>::saved_type Ptr, DominatingValue<RValue>::saved_type AllocSize) argument
1487 EmitDeleteCall(const FunctionDecl *DeleteFD, llvm::Value *Ptr, QualType DeleteTy) argument
1521 llvm::Value *Ptr; member in struct:__anon1259::final
1525 CallObjectDelete(llvm::Value *Ptr, const FunctionDecl *OperatorDelete, QualType ElementType) argument
1545 EmitObjectDelete(CodeGenFunction &CGF, const CXXDeleteExpr *DE, Address Ptr, QualType ElementType) argument
1601 llvm::Value *Ptr; member in struct:__anon1260::final
1607 CallArrayDelete(llvm::Value *Ptr, const FunctionDecl *OperatorDelete, llvm::Value *NumElements, QualType ElementType, CharUnits CookieSize) argument
1706 Address Ptr = EmitPointerWithAlignment(Arg); local
[all...]
H A DCGObjC.cpp2396 void CodeGenFunction::EmitObjCAutoreleasePoolCleanup(llvm::Value *Ptr) { argument
2398 EHStack.pushCleanup<CallObjCAutoreleasePoolObject>(NormalCleanup, Ptr);
2400 EHStack.pushCleanup<CallObjCMRRAutoreleasePoolObject>(NormalCleanup, Ptr);
H A DTargetInfo.cpp242 llvm::Value *Ptr,
244 llvm::Value *PtrAsInt = Ptr;
252 Ptr->getType(),
253 Ptr->getName() + ".aligned");
283 llvm::Value *Ptr = CGF.Builder.CreateLoad(VAListAddr, "argp.cur"); local
288 Addr = Address(emitRoundPointerUpToAlignment(CGF, Ptr, DirectAlign),
291 Addr = Address(Ptr, SlotSize);
3806 llvm::Value *Ptr = OverflowArea.getPointer();
3807 OverflowArea = Address(emitRoundPointerUpToAlignment(CGF, Ptr, Align),
241 emitRoundPointerUpToAlignment(CodeGenFunction &CGF, llvm::Value *Ptr, CharUnits Align) argument
/external/llvm/include/llvm/IR/
H A DIRBuilder.h387 CallInst *CreateMemSet(Value *Ptr, Value *Val, uint64_t Size, unsigned Align, argument
391 return CreateMemSet(Ptr, Val, getInt64(Size), Align, isVolatile,
395 CallInst *CreateMemSet(Value *Ptr, Value *Val, Value *Size, unsigned Align,
442 CallInst *CreateLifetimeStart(Value *Ptr, ConstantInt *Size = nullptr);
447 CallInst *CreateLifetimeEnd(Value *Ptr, ConstantInt *Size = nullptr);
450 CallInst *CreateMaskedLoad(Value *Ptr, unsigned Align, Value *Mask,
454 CallInst *CreateMaskedStore(Value *Val, Value *Ptr, unsigned Align,
547 Value *getCastedInt8PtrValue(Value *Ptr);
1045 // \brief Provided to resolve 'CreateLoad(Ptr, "...")' correctly, instead of
1047 LoadInst *CreateLoad(Value *Ptr, cons argument
1050 CreateLoad(Value *Ptr, const Twine &Name = �) argument
1053 CreateLoad(Type *Ty, Value *Ptr, const Twine &Name = �) argument
1056 CreateLoad(Value *Ptr, bool isVolatile, const Twine &Name = �) argument
1059 CreateStore(Value *Val, Value *Ptr, bool isVolatile = false) argument
1065 CreateAlignedLoad(Value *Ptr, unsigned Align, const char *Name) argument
1070 CreateAlignedLoad(Value *Ptr, unsigned Align, const Twine &Name = �) argument
1076 CreateAlignedLoad(Value *Ptr, unsigned Align, bool isVolatile, const Twine &Name = �) argument
1082 CreateAlignedStore(Value *Val, Value *Ptr, unsigned Align, bool isVolatile = false) argument
1094 CreateAtomicCmpXchg(Value *Ptr, Value *Cmp, Value *New, AtomicOrdering SuccessOrdering, AtomicOrdering FailureOrdering, SynchronizationScope SynchScope = CrossThread) argument
1101 CreateAtomicRMW(AtomicRMWInst::BinOp Op, Value *Ptr, Value *Val, AtomicOrdering Ordering, SynchronizationScope SynchScope = CrossThread) argument
1106 CreateGEP(Value *Ptr, ArrayRef<Value *> IdxList, const Twine &Name = �) argument
1110 CreateGEP(Type *Ty, Value *Ptr, ArrayRef<Value *> IdxList, const Twine &Name = �) argument
1123 CreateInBoundsGEP(Value *Ptr, ArrayRef<Value *> IdxList, const Twine &Name = �) argument
1127 CreateInBoundsGEP(Type *Ty, Value *Ptr, ArrayRef<Value *> IdxList, const Twine &Name = �) argument
1141 CreateGEP(Value *Ptr, Value *Idx, const Twine &Name = �) argument
1144 CreateGEP(Type *Ty, Value *Ptr, Value *Idx, const Twine &Name = �) argument
1150 CreateInBoundsGEP(Type *Ty, Value *Ptr, Value *Idx, const Twine &Name = �) argument
1157 CreateConstGEP1_32(Value *Ptr, unsigned Idx0, const Twine &Name = �) argument
1160 CreateConstGEP1_32(Type *Ty, Value *Ptr, unsigned Idx0, const Twine &Name = �) argument
1169 CreateConstInBoundsGEP1_32(Type *Ty, Value *Ptr, unsigned Idx0, const Twine &Name = �) argument
1178 CreateConstGEP2_32(Type *Ty, Value *Ptr, unsigned Idx0, unsigned Idx1, const Twine &Name = �) argument
1190 CreateConstInBoundsGEP2_32(Type *Ty, Value *Ptr, unsigned Idx0, unsigned Idx1, const Twine &Name = �) argument
1202 CreateConstGEP1_64(Value *Ptr, uint64_t Idx0, const Twine &Name = �) argument
1210 CreateConstInBoundsGEP1_64(Value *Ptr, uint64_t Idx0, const Twine &Name = �) argument
1219 CreateConstGEP2_64(Value *Ptr, uint64_t Idx0, uint64_t Idx1, const Twine &Name = �) argument
1231 CreateConstInBoundsGEP2_64(Value *Ptr, uint64_t Idx0, uint64_t Idx1, const Twine &Name = �) argument
1244 CreateStructGEP(Type *Ty, Value *Ptr, unsigned Idx, const Twine &Name = �) argument
1697 CreateInvariantGroupBarrier(Value *Ptr) argument
[all...]
/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp3891 static Value *SimplifyRelativeLoad(Constant *Ptr, Constant *Offset, argument
3895 if (!IsConstantOffsetFromGlobal(Ptr, PtrSym, PtrOffset, DL))
3898 Type *Int8PtrTy = Type::getInt8PtrTy(Ptr->getContext());
3899 Type *Int32Ty = Type::getInt32Ty(Ptr->getContext());
3901 Type *Int64Ty = Type::getInt64Ty(Ptr->getContext());
3912 Int32Ty, ConstantExpr::getBitCast(Ptr, Int32PtrTy),
H A DLoopAccessAnalysis.cpp116 Value *Ptr, Value *OrigPtr) {
117 const SCEV *OrigSCEV = PSE.getSCEV(Ptr);
122 PtrToStride.find(OrigPtr ? OrigPtr : Ptr);
140 auto *Expr = PSE.getSCEV(Ptr);
151 void RuntimePointerChecking::insert(Loop *Lp, Value *Ptr, bool WritePtr, argument
156 const SCEV *Sc = replaceSymbolicStrideSCEV(PSE, Strides, Ptr);
187 Pointers.emplace_back(Ptr, ScStart, ScEnd, WritePtr, DepSetId, ASId, Sc);
466 Value *Ptr = const_cast<Value*>(Loc.Ptr); local
467 AST.add(Ptr, MemoryLocatio
114 replaceSymbolicStrideSCEV(PredicatedScalarEvolution &PSE, const ValueToValueMap &PtrToStride, Value *Ptr, Value *OrigPtr) argument
475 Value *Ptr = const_cast<Value*>(Loc.Ptr); local
555 hasComputableBounds(PredicatedScalarEvolution &PSE, const ValueToValueMap &Strides, Value *Ptr, Loop *L) argument
572 isNoWrap(PredicatedScalarEvolution &PSE, const ValueToValueMap &Strides, Value *Ptr, Loop *L) argument
608 Value *Ptr = A.getValue(); local
741 Value *Ptr = AV.getValue(); local
814 isInBoundsGep(Value *Ptr) argument
822 isNoWrapAddRec(Value *Ptr, const SCEVAddRecExpr *AR, PredicatedScalarEvolution &PSE, const Loop *L) argument
869 getPtrStride(PredicatedScalarEvolution &PSE, Value *Ptr, const Loop *Lp, const ValueToValueMap &StridesMap, bool Assume) argument
1431 getInstructionsForAccess(Value *Ptr, bool isWrite) const argument
1611 Value *Ptr = ST->getPointerOperand(); local
1639 Value *Ptr = LD->getPointerOperand(); local
1785 Value *Ptr = PtrRtChecking.Pointers[CG->Members[0]].PointerValue; local
1902 Value *Ptr = nullptr; local
[all...]
H A DValueTracking.cpp2757 Value *llvm::GetPointerBaseWithConstantOffset(Value *Ptr, int64_t &Offset, argument
2759 unsigned BitWidth = DL.getPointerTypeSizeInBits(Ptr->getType());
2766 while (Visited.insert(Ptr).second) {
2767 if (Ptr->getType()->isVectorTy())
2770 if (GEPOperator *GEP = dyn_cast<GEPOperator>(Ptr)) {
2777 Ptr = GEP->getPointerOperand();
2778 } else if (Operator::getOpcode(Ptr) == Instruction::BitCast ||
2779 Operator::getOpcode(Ptr) == Instruction::AddrSpaceCast) {
2780 Ptr = cast<Operator>(Ptr)
[all...]
/external/llvm/lib/Object/
H A DMachOObjectFile.cpp78 uintptr_t CommandAddr = reinterpret_cast<uintptr_t>(L.Ptr);
172 getLoadCommandInfo(const MachOObjectFile *Obj, const char *Ptr, argument
174 if (auto CmdOrErr = getStructOrErr<MachO::load_command>(Obj, Ptr)) {
178 return MachOObjectFile::LoadCommandInfo({Ptr, *CmdOrErr});
198 if (L.Ptr + L.C.cmdsize + sizeof(MachOObjectFile::LoadCommandInfo) >
202 return getLoadCommandInfo(Obj, L.Ptr + L.C.cmdsize, LoadCommandIndex + 1);
231 if (auto SegOrErr = getStructOrErr<SegmentCmd>(Obj, Load.Ptr)) {
326 SymtabLoadCmd = Load.Ptr;
333 DysymtabLoadCmd = Load.Ptr;
340 DataInCodeLoadCmd = Load.Ptr;
1367 readULEB128(const uint8_t *&Ptr) argument
1405 NodeState(const uint8_t *Ptr) argument
1411 const uint8_t *Ptr = Trie.begin() + offset; local
2327 const uint8_t *Ptr = local
2338 const uint8_t *Ptr = local
2349 const uint8_t *Ptr = local
2360 const uint8_t *Ptr = local
2371 const uint8_t *Ptr = local
2380 const char *Ptr = UuidLoadCmd + offsetof(MachO::uuid_command, uuid); local
[all...]
/external/llvm/lib/Target/Mips/
H A DMipsSEISelLowering.cpp1217 SDValue Ptr = Nd.getBasePtr(), Chain = Nd.getChain(); local
1218 EVT PtrVT = Ptr.getValueType();
1221 SDValue Lo = DAG.getLoad(MVT::i32, DL, Chain, Ptr,
1227 Ptr = DAG.getNode(ISD::ADD, DL, PtrVT, Ptr, DAG.getConstant(4, DL, PtrVT));
1228 SDValue Hi = DAG.getLoad(MVT::i32, DL, Lo.getValue(1), Ptr,
1249 SDValue Val = Nd.getValue(), Ptr = Nd.getBasePtr(), Chain = Nd.getChain(); local
1250 EVT PtrVT = Ptr.getValueType();
1260 Chain = DAG.getStore(Chain, DL, Lo, Ptr, MachinePointerInfo(),
1265 Ptr
[all...]
/external/llvm/lib/Target/X86/
H A DX86FastISel.cpp346 /// The address is either pre-computed, i.e. Ptr, or a GlobalAddress, i.e. GV.
498 /// type VT. The address is either pre-computed, consisted of a base ptr, Ptr
1114 const Value *Ptr = S->getPointerOperand(); local
1127 if (!X86SelectAddress(Ptr, AM))
1308 const Value *Ptr = LI->getPointerOperand(); local
1311 if (!X86SelectAddress(Ptr, AM))
3734 const Value *Ptr = LI->getPointerOperand(); local
3736 if (!X86SelectAddress(Ptr, AM))
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp1111 Value *Ptr = II.getOperand(0); local
1129 unsigned AddrSpace = cast<PointerType>(Ptr->getType())->getAddressSpace();
1131 Value *PtrCast = IC.Builder->CreateBitCast(Ptr, VecPtrTy, "castvec");
1147 Value *Ptr = II.getOperand(0); local
1172 unsigned AddrSpace = cast<PointerType>(Ptr->getType())->getAddressSpace();
1174 Value *PtrCast = IC.Builder->CreateBitCast(Ptr, VecPtrTy, "castvec");
1485 Value *Ptr = Builder->CreateBitCast(II->getArgOperand(0), local
1487 return new LoadInst(Ptr);
1493 Value *Ptr = Builder->CreateBitCast(II->getArgOperand(0), local
1495 return new LoadInst(Ptr, Twin
1504 Value *Ptr = Builder->CreateBitCast(II->getArgOperand(1), OpPtrTy); local
1512 Value *Ptr = Builder->CreateBitCast(II->getArgOperand(1), OpPtrTy); local
1521 Value *Ptr = Builder->CreateBitCast(II->getArgOperand(0), local
1531 Value *Ptr = Builder->CreateBitCast(II->getArgOperand(0), local
1544 Value *Ptr = Builder->CreateBitCast(II->getArgOperand(1), OpPtrTy); local
1554 Value *Ptr = Builder->CreateBitCast(II->getArgOperand(1), OpPtrTy); local
[all...]
/external/pdfium/third_party/lcms2-2.6/src/
H A Dcmscgats.c105 void * Ptr; // Point to value member in struct:_OwnedMem
187 cmsUInt8Number* Ptr; // For save-to-mem behaviour member in struct:__anon16633
1036 if (p->Ptr) _cmsFree(it8 ->ContextID, p->Ptr);
1065 ptr1-> Ptr = ptr;
1589 memmove(f ->Ptr, str, len);
1590 f->Ptr += len;
1796 sd.Ptr = sd.Base;
1816 *sd.Ptr = 0;
2274 cmsUInt8Number Ptr[13 local
2295 cmsIT8LoadFromMem(cmsContext ContextID, void *Ptr, cmsUInt32Number len) argument
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DSelectionDAGNodes.h1011 // Ptr: address to update as a SDValue
1017 SDValue Chain, SDValue Ptr,
1022 InitOperands(Ops, Chain, Ptr, Cmp, Swp);
1025 SDValue Chain, SDValue Ptr,
1030 InitOperands(Ops, Chain, Ptr, Val);
1033 SDValue Chain, SDValue Ptr,
1038 InitOperands(Ops, Chain, Ptr);
1016 AtomicSDNode(unsigned Opc, DebugLoc dl, SDVTList VTL, EVT MemVT, SDValue Chain, SDValue Ptr, SDValue Cmp, SDValue Swp, MachineMemOperand *MMO, AtomicOrdering Ordering, SynchronizationScope SynchScope) argument
1024 AtomicSDNode(unsigned Opc, DebugLoc dl, SDVTList VTL, EVT MemVT, SDValue Chain, SDValue Ptr, SDValue Val, MachineMemOperand *MMO, AtomicOrdering Ordering, SynchronizationScope SynchScope) argument
1032 AtomicSDNode(unsigned Opc, DebugLoc dl, SDVTList VTL, EVT MemVT, SDValue Chain, SDValue Ptr, MachineMemOperand *MMO, AtomicOrdering Ordering, SynchronizationScope SynchScope) argument
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DIRBuilder.h275 CallInst *CreateMemSet(Value *Ptr, Value *Val, uint64_t Size, unsigned Align, argument
277 return CreateMemSet(Ptr, Val, getInt64(Size), Align, isVolatile, TBAATag);
280 CallInst *CreateMemSet(Value *Ptr, Value *Val, Value *Size, unsigned Align,
307 CallInst *CreateLifetimeStart(Value *Ptr, ConstantInt *Size = 0);
311 CallInst *CreateLifetimeEnd(Value *Ptr, ConstantInt *Size = 0);
314 Value *getCastedInt8PtrValue(Value *Ptr);
751 // Provided to resolve 'CreateLoad(Ptr, "...")' correctly, instead of
753 LoadInst *CreateLoad(Value *Ptr, const char *Name) { argument
754 return Insert(new LoadInst(Ptr), Name);
756 LoadInst *CreateLoad(Value *Ptr, cons argument
759 CreateLoad(Value *Ptr, bool isVolatile, const Twine &Name = �) argument
762 CreateStore(Value *Val, Value *Ptr, bool isVolatile = false) argument
769 CreateAtomicCmpXchg(Value *Ptr, Value *Cmp, Value *New, AtomicOrdering Ordering, SynchronizationScope SynchScope = CrossThread) argument
774 CreateAtomicRMW(AtomicRMWInst::BinOp Op, Value *Ptr, Value *Val, AtomicOrdering Ordering, SynchronizationScope SynchScope = CrossThread) argument
779 CreateGEP(Value *Ptr, ArrayRef<Value *> IdxList, const Twine &Name = �) argument
792 CreateInBoundsGEP(Value *Ptr, ArrayRef<Value *> IdxList, const Twine &Name = �) argument
805 CreateGEP(Value *Ptr, Value *Idx, const Twine &Name = �) argument
811 CreateInBoundsGEP(Value *Ptr, Value *Idx, const Twine &Name = �) argument
817 CreateConstGEP1_32(Value *Ptr, unsigned Idx0, const Twine &Name = �) argument
825 CreateConstInBoundsGEP1_32(Value *Ptr, unsigned Idx0, const Twine &Name = �) argument
834 CreateConstGEP2_32(Value *Ptr, unsigned Idx0, unsigned Idx1, const Twine &Name = �) argument
846 CreateConstInBoundsGEP2_32(Value *Ptr, unsigned Idx0, unsigned Idx1, const Twine &Name = �) argument
858 CreateConstGEP1_64(Value *Ptr, uint64_t Idx0, const Twine &Name = �) argument
866 CreateConstInBoundsGEP1_64(Value *Ptr, uint64_t Idx0, const Twine &Name = �) argument
875 CreateConstGEP2_64(Value *Ptr, uint64_t Idx0, uint64_t Idx1, const Twine &Name = �) argument
887 CreateConstInBoundsGEP2_64(Value *Ptr, uint64_t Idx0, uint64_t Idx1, const Twine &Name = �) argument
899 CreateStructGEP(Value *Ptr, unsigned Idx, const Twine &Name = �) argument
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp692 SDValue Ptr = N->getOperand(1); // Get the pointer. local
702 Parts[i] = DAG.getVAArg(RegVT, dl, Chain, Ptr, N->getOperand(2),
1027 SDValue Ch = N->getChain(), Ptr = N->getBasePtr(); local
1036 return DAG.getTruncStore(Ch, dl, Val, Ptr, N->getPointerInfo(),
1776 SDValue Ptr = N->getBasePtr(); local
1788 Lo = DAG.getExtLoad(ExtType, dl, NVT, Ch, Ptr, N->getPointerInfo(),
1810 Lo = DAG.getLoad(NVT, dl, Ch, Ptr, N->getPointerInfo(),
1819 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
2658 SDValue Ptr = N->getBasePtr(); local
[all...]
H A DLegalizeVectorTypes.cpp710 SDValue Ptr = LD->getBasePtr(); local
711 SDValue Offset = DAG.getUNDEF(Ptr.getValueType());
720 Lo = DAG.getLoad(ISD::UNINDEXED, ExtType, LoVT, dl, Ch, Ptr, Offset,
725 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
727 Hi = DAG.getLoad(ISD::UNINDEXED, ExtType, HiVT, dl, Ch, Ptr, Offset,
1109 SDValue Ptr = N->getBasePtr(); local
1123 Lo = DAG.getTruncStore(Ch, DL, Lo, Ptr, N->getPointerInfo(),
1126 Lo = DAG.getStore(Ch, DL, Lo, Ptr,
[all...]
H A DTargetLowering.cpp2056 SDValue Ptr = Lod->getBasePtr(); local
2058 Ptr = DAG.getNode(ISD::ADD, dl, PtrType, Lod->getBasePtr(),
2061 SDValue NewLoad = DAG.getLoad(newVT, dl, Lod->getChain(), Ptr,

Completed in 4539 milliseconds

<<1112131415