Home
last modified time | relevance | path

Searched refs:NewOffset (Results 1 – 8 of 8) sorted by relevance

/external/llvm/include/llvm/CodeGen/
DMachineMemOperand.h195 void setOffset(int64_t NewOffset) { PtrInfo.Offset = NewOffset; } in setOffset() argument
/external/llvm/include/llvm/ADT/
DIntervalMap.h1174 IdxPair NewOffset(0, Position); in branchRoot()
1180 NewOffset = distribute(Nodes, rootSize, Leaf::Capacity, nullptr, size, in branchRoot()
1201 return NewOffset; in branchRoot()
1215 IdxPair NewOffset(0, Position); in splitRoot()
1221 NewOffset = distribute(Nodes, rootSize, Leaf::Capacity, nullptr, Size, in splitRoot()
1240 return NewOffset; in splitRoot()
2006 IdxPair NewOffset = distribute(Nodes, Elements, NodeT::Capacity, in overflow() local
2033 while(Pos != NewOffset.first) { in overflow()
2037 P.offset(Level) = NewOffset.second; in overflow()
/external/llvm/lib/Transforms/Scalar/
DLoopStrengthReduce.cpp1721 bool reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
2245 LSRInstance::reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg, in reconcileNewOffset() argument
2264 if (NewOffset < LU.MinOffset) { in reconcileNewOffset()
2266 LU.MaxOffset - NewOffset, HasBaseReg)) in reconcileNewOffset()
2268 NewMinOffset = NewOffset; in reconcileNewOffset()
2269 } else if (NewOffset > LU.MaxOffset) { in reconcileNewOffset()
2271 NewOffset - LU.MinOffset, HasBaseReg)) in reconcileNewOffset()
2273 NewMaxOffset = NewOffset; in reconcileNewOffset()
2280 if (NewOffset != LU.Offsets.back()) in reconcileNewOffset()
2281 LU.Offsets.push_back(NewOffset); in reconcileNewOffset()
DScalarReplAggregates.cpp2103 uint64_t NewOffset = Offset; in RewriteLifetimeIntrinsic() local
2105 uint64_t Idx = FindElementAndOffset(AIType, NewOffset, IdxTy); in RewriteLifetimeIntrinsic()
2110 if (NewOffset) { in RewriteLifetimeIntrinsic()
2115 V = Builder.CreateGEP(V, Builder.getInt64(NewOffset)); in RewriteLifetimeIntrinsic()
2118 uint64_t EltSize = DL->getTypeAllocSize(IdxTy) - NewOffset; in RewriteLifetimeIntrinsic()
/external/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinter.cpp1115 unsigned NewOffset = (Offset + AlignMask) & ~AlignMask; in EmitConstantPool() local
1116 OutStreamer.EmitZeros(NewOffset - Offset); in EmitConstantPool()
1119 Offset = NewOffset + TM.getDataLayout()->getTypeAllocSize(Ty); in EmitConstantPool()
/external/llvm/lib/Target/AArch64/
DAArch64InstrInfo.cpp2112 int NewOffset; in rewriteAArch64FrameIndex() local
2116 &UnscaledOp, &NewOffset); in rewriteAArch64FrameIndex()
2124 MI.getOperand(ImmIdx).ChangeToImmediate(NewOffset); in rewriteAArch64FrameIndex()
/external/llvm/lib/Target/ARM/
DARMLoadStoreOptimizer.cpp744 int NewOffset = MemOps[i].Offset; in MergeLDR_STR() local
752 NewOffset == Offset + (int)Size && in MergeLDR_STR()
/external/clang/lib/CodeGen/
DTargetInfo.cpp3601 llvm::Value *NewOffset = nullptr; in EmitAArch64VAArg() local
3602 NewOffset = CGF.Builder.CreateAdd( in EmitAArch64VAArg()
3604 CGF.Builder.CreateStore(NewOffset, reg_offs_p); in EmitAArch64VAArg()
3610 NewOffset, llvm::ConstantInt::get(CGF.Int32Ty, 0), "inreg"); in EmitAArch64VAArg()