Home
last modified time | relevance | path

Searched refs:IntPtr (Results 1 – 6 of 6) sorted by relevance

/trueos/contrib/llvm/lib/Object/
HDCOFFObjectFile.cpp416 uintptr_t IntPtr = 0; in getHintName() local
417 if (error_code ec = getRvaPtr(Rva, IntPtr)) in getHintName()
419 const uint8_t *Ptr = reinterpret_cast<const uint8_t *>(IntPtr); in getHintName()
443 uintptr_t IntPtr = 0; in initImportTablePtr() local
444 if (error_code ec = getRvaPtr(ImportTableRva, IntPtr)) in initImportTablePtr()
447 const import_directory_table_entry *>(IntPtr); in initImportTablePtr()
912 uintptr_t IntPtr = 0; in getName() local
913 if (error_code ec = OwningObject->getRvaPtr(Dir->NameRVA, IntPtr)) in getName()
915 const char *Ptr = reinterpret_cast<const char *>(IntPtr); in getName()
923 uintptr_t IntPtr = 0; in getImportLookupEntry() local
[all …]
/trueos/contrib/llvm/lib/CodeGen/
HDIntrinsicLowering.cpp466 Type *IntPtr = TD.getIntPtrType(Context); in LowerIntrinsicCall() local
467 Value *Size = Builder.CreateIntCast(CI->getArgOperand(2), IntPtr, in LowerIntrinsicCall()
477 Type *IntPtr = TD.getIntPtrType(Context); in LowerIntrinsicCall() local
478 Value *Size = Builder.CreateIntCast(CI->getArgOperand(2), IntPtr, in LowerIntrinsicCall()
489 Type *IntPtr = TD.getIntPtrType(Op0->getType()); in LowerIntrinsicCall() local
490 Value *Size = Builder.CreateIntCast(CI->getArgOperand(2), IntPtr, in LowerIntrinsicCall()
/trueos/contrib/llvm/lib/Transforms/Scalar/
HDLoopIdiomRecognize.cpp1009 Type *IntPtr = Builder.getIntPtrTy(TD, DestAS); in processLoopStridedStore() local
1010 BECount = SE->getTruncateOrZeroExtend(BECount, IntPtr); in processLoopStridedStore()
1012 const SCEV *NumBytesS = SE->getAddExpr(BECount, SE->getConstant(IntPtr, 1), in processLoopStridedStore()
1015 NumBytesS = SE->getMulExpr(NumBytesS, SE->getConstant(IntPtr, StoreSize), in processLoopStridedStore()
1020 Expander.expandCodeFor(NumBytesS, IntPtr, Preheader->getTerminator()); in processLoopStridedStore()
1037 IntPtr, in processLoopStridedStore()
/trueos/contrib/llvm/lib/Target/X86/
HDX86SelectionDAGInfo.cpp54 EVT IntPtr = TLI.getPointerTy(); in EmitTargetCodeForMemset() local
68 DAG.getExternalSymbol(bzeroEntry, IntPtr), Args, in EmitTargetCodeForMemset()
/trueos/contrib/llvm/lib/Target/R600/
HDAMDGPUISelDAGToDAG.cpp81 bool SelectGlobalValueConstantOffset(SDValue Addr, SDValue& IntPtr);
454 SDValue& IntPtr) { in SelectGlobalValueConstantOffset() argument
456 IntPtr = CurDAG->getIntPtrConstant(Cst->getZExtValue() / 4, true); in SelectGlobalValueConstantOffset()
/trueos/contrib/llvm/lib/CodeGen/SelectionDAG/
HDSelectionDAGBuilder.cpp3348 EVT IntPtr = TLI->getPointerTy(); in visitAlloca() local
3349 if (AllocSize.getValueType() != IntPtr) in visitAlloca()
3350 AllocSize = DAG.getZExtOrTrunc(AllocSize, getCurSDLoc(), IntPtr); in visitAlloca()
3352 AllocSize = DAG.getNode(ISD::MUL, getCurSDLoc(), IntPtr, in visitAlloca()
3354 DAG.getConstant(TySize, IntPtr)); in visitAlloca()