Home
last modified time | relevance | path

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

/trueos/contrib/llvm/include/llvm/CodeGen/
HDMachineMemOperand.h178 void setOffset(int64_t NewOffset) { PtrInfo.Offset = NewOffset; } in setOffset() argument
/trueos/contrib/llvm/include/llvm/ADT/
HDIntervalMap.h1174 IdxPair NewOffset(0, Position); in branchRoot()
1180 NewOffset = distribute(Nodes, rootSize, Leaf::Capacity, NULL, size, in branchRoot()
1201 return NewOffset; in branchRoot()
1215 IdxPair NewOffset(0, Position); in splitRoot()
1221 NewOffset = distribute(Nodes, rootSize, Leaf::Capacity, NULL, 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()
/trueos/contrib/llvm/lib/Transforms/Scalar/
HDLoopStrengthReduce.cpp1664 bool reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
2177 LSRInstance::reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg, in reconcileNewOffset() argument
2189 if (NewOffset < LU.MinOffset) { in reconcileNewOffset()
2191 LU.MaxOffset - NewOffset, HasBaseReg)) in reconcileNewOffset()
2193 NewMinOffset = NewOffset; in reconcileNewOffset()
2194 } else if (NewOffset > LU.MaxOffset) { in reconcileNewOffset()
2196 NewOffset - LU.MinOffset, HasBaseReg)) in reconcileNewOffset()
2198 NewMaxOffset = NewOffset; in reconcileNewOffset()
2210 if (NewOffset != LU.Offsets.back()) in reconcileNewOffset()
2211 LU.Offsets.push_back(NewOffset); in reconcileNewOffset()
HDScalarReplAggregates.cpp2107 uint64_t NewOffset = Offset; in RewriteLifetimeIntrinsic() local
2109 uint64_t Idx = FindElementAndOffset(AIType, NewOffset, IdxTy); in RewriteLifetimeIntrinsic()
2114 if (NewOffset) { in RewriteLifetimeIntrinsic()
2118 V = Builder.CreateGEP(V, Builder.getInt64(NewOffset)); in RewriteLifetimeIntrinsic()
2121 uint64_t EltSize = TD->getTypeAllocSize(IdxTy) - NewOffset; in RewriteLifetimeIntrinsic()
/trueos/contrib/llvm/lib/CodeGen/AsmPrinter/
HDAsmPrinter.cpp1092 unsigned NewOffset = (Offset + AlignMask) & ~AlignMask; in EmitConstantPool() local
1093 OutStreamer.EmitZeros(NewOffset - Offset); in EmitConstantPool()
1096 Offset = NewOffset + TM.getDataLayout()->getTypeAllocSize(Ty); in EmitConstantPool()
/trueos/contrib/llvm/lib/Target/ARM/
HDARMLoadStoreOptimizer.cpp559 int NewOffset = MemOps[i].Offset; in MergeLDR_STR() local
567 NewOffset == Offset + (int)Size && in MergeLDR_STR()
/trueos/contrib/llvm/tools/clang/lib/CodeGen/
HDTargetInfo.cpp4137 llvm::Value *NewOffset = 0; in EmitVAArg() local
4138 NewOffset = CGF.Builder.CreateAdd(reg_offs, in EmitVAArg()
4141 CGF.Builder.CreateStore(NewOffset, reg_offs_p); in EmitVAArg()
4146 InRegs = CGF.Builder.CreateICmpSLE(NewOffset, in EmitVAArg()