Home
last modified time | relevance | path

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

/external/llvm/include/llvm/CodeGen/
DMachineMemOperand.h172 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, 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()
/external/llvm/lib/Transforms/Scalar/
DLoopStrengthReduce.cpp1568 bool reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
2083 LSRInstance::reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg, in reconcileNewOffset() argument
2095 if (NewOffset < LU.MinOffset) { in reconcileNewOffset()
2097 LU.MaxOffset - NewOffset, HasBaseReg)) in reconcileNewOffset()
2099 NewMinOffset = NewOffset; in reconcileNewOffset()
2100 } else if (NewOffset > LU.MaxOffset) { in reconcileNewOffset()
2102 NewOffset - LU.MinOffset, HasBaseReg)) in reconcileNewOffset()
2104 NewMaxOffset = NewOffset; in reconcileNewOffset()
2116 if (NewOffset != LU.Offsets.back()) in reconcileNewOffset()
2117 LU.Offsets.push_back(NewOffset); in reconcileNewOffset()
DScalarReplAggregates.cpp2116 uint64_t NewOffset = Offset; in RewriteLifetimeIntrinsic() local
2118 uint64_t Idx = FindElementAndOffset(AIType, NewOffset, IdxTy); in RewriteLifetimeIntrinsic()
2123 if (NewOffset) { in RewriteLifetimeIntrinsic()
2127 V = Builder.CreateGEP(V, Builder.getInt64(NewOffset)); in RewriteLifetimeIntrinsic()
2130 uint64_t EltSize = TD->getTypeAllocSize(IdxTy) - NewOffset; in RewriteLifetimeIntrinsic()
/external/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinter.cpp1042 unsigned NewOffset = (Offset + AlignMask) & ~AlignMask; in EmitConstantPool() local
1043 OutStreamer.EmitZeros(NewOffset - Offset); in EmitConstantPool()
1046 Offset = NewOffset + TM.getDataLayout()->getTypeAllocSize(Ty); in EmitConstantPool()
/external/llvm/lib/Target/ARM/
DARMLoadStoreOptimizer.cpp482 int NewOffset = MemOps[i].Offset; in MergeLDR_STR() local
490 NewOffset == Offset + (int)Size && in MergeLDR_STR()
/external/clang/lib/CodeGen/
DTargetInfo.cpp3891 llvm::Value *NewOffset = 0; in EmitVAArg() local
3892 NewOffset = CGF.Builder.CreateAdd(reg_offs, in EmitVAArg()
3895 CGF.Builder.CreateStore(NewOffset, reg_offs_p); in EmitVAArg()
3900 InRegs = CGF.Builder.CreateICmpSLE(NewOffset, in EmitVAArg()