Searched refs:getAlignment (Results 1 - 25 of 185) sorted by relevance

12345678

/external/llvm/lib/Target/XCore/
H A DXCoreMachineFunctionInfo.cpp44 LRSpillSlot = MFI->CreateStackObject(RC->getSize(), RC->getAlignment(), true);
56 FPSpillSlot = MFI->CreateStackObject(RC->getSize(), RC->getAlignment(), true);
67 EHSpillSlot[0] = MFI->CreateStackObject(RC->getSize(), RC->getAlignment(), true);
68 EHSpillSlot[1] = MFI->CreateStackObject(RC->getSize(), RC->getAlignment(), true);
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DUniformListItem.java56 super(getAlignment(items), writeSize(items));
74 private static int getAlignment(List<? extends OffsettedItem> items) { method in class:UniformListItem
77 return Math.max(HEADER_SIZE, items.get(0).getAlignment());
99 return (items.size() * first.writeSize()) + getAlignment(items);
170 theAlignment = i.getAlignment();
177 if (i.getAlignment() != theAlignment) {
214 return getAlignment();
H A DUniformItemSection.java84 int alignment = getAlignment();
H A DSection.java97 public final int getAlignment() { method in class:Section
H A DMixedItemSection.java173 if (item.getAlignment() > getAlignment()) {
346 int alignMask = one.getAlignment() - 1;
H A DOffsettedItem.java253 public final int getAlignment() { method in class:OffsettedItem
/external/llvm/lib/Transforms/IPO/
H A DConstantMerge.cpp53 unsigned getAlignment(GlobalVariable *GV) const;
93 return DL || GV->getAlignment() != 0;
96 unsigned ConstantMerge::getAlignment(GlobalVariable *GV) const { function in class:ConstantMerge
97 unsigned Align = GV->getAlignment();
216 if (Replacements[i].first->getAlignment() ||
217 Replacements[i].second->getAlignment()) {
219 std::max(getAlignment(Replacements[i].first),
220 getAlignment(Replacements[i].second)));
/external/deqp/modules/gles2/functional/
H A Des2fBufferTestUtil.hpp111 virtual int getAlignment (void) const = DE_NULL;
129 int getAlignment (void) const { return m_verifier->getAlignment(); } function in class:deqp::gles2::Functional::BufferTestUtil::BufferVerifier
148 int getAlignment (void) const { return 1; } function in class:deqp::gles2::Functional::BufferTestUtil::VertexArrayVerifier
164 int getAlignment (void) const { return 1; } function in class:deqp::gles2::Functional::BufferTestUtil::IndexArrayVerifier
/external/deqp/modules/glshared/
H A DglsBufferTestUtil.hpp122 virtual int getAlignment (void) const = DE_NULL;
141 int getAlignment (void) const { return m_writer->getAlignment(); } function in class:deqp::gls::BufferTestUtil::BufferWriter
159 int getAlignment (void) const { return 1; } function in class:deqp::gls::BufferTestUtil::BufferSubDataWriter
171 int getAlignment (void) const { return 1; } function in class:deqp::gls::BufferTestUtil::BufferWriteMapWriter
198 virtual int getAlignment (void) const = DE_NULL;
218 int getAlignment (void) const { return m_verifier->getAlignment(); } function in class:deqp::gls::BufferTestUtil::BufferVerifier
238 int getAlignment (void) const { return 1; } function in class:deqp::gls::BufferTestUtil::BufferMapVerifier
250 int getAlignment (voi function in class:deqp::gls::BufferTestUtil::VertexArrayVerifier
270 int getAlignment (void) const { return 1; } function in class:deqp::gls::BufferTestUtil::IndexArrayVerifier
[all...]
/external/llvm/lib/IR/
H A DGlobals.cpp62 unsigned GlobalValue::getAlignment() const { function in class:GlobalValue
66 return GO->getAlignment();
73 return cast<GlobalObject>(this)->getAlignment();
81 assert(getAlignment() == Align && "Alignment representation error!");
87 setAlignment(GV->getAlignment());
H A DDataLayout.cpp629 unsigned DataLayout::getAlignment(Type *Ty, bool abi_or_pref) const {
646 return getAlignment(cast<ArrayType>(Ty)->getElementType(), abi_or_pref);
656 return std::max(Align, Layout->getAlignment());
676 llvm_unreachable("Bad type for getAlignment!!!");
684 return getAlignment(Ty, true);
694 return getAlignment(Ty, false);
773 unsigned GVAlignment = GV->getAlignment();
H A DInstruction.cpp274 (LI->getAlignment() == cast<LoadInst>(I2)->getAlignment() ||
280 (SI->getAlignment() == cast<StoreInst>(I2)->getAlignment() ||
/external/llvm/include/llvm/IR/
H A DGlobalObject.h39 unsigned getAlignment() const { function in class:llvm::GlobalObject
/external/llvm/lib/Target/SystemZ/
H A DSystemZConstantPoolValue.cpp45 (Constants[I].getAlignment() & AlignMask) == 0) {
H A DSystemZSubtarget.cpp69 if (GV->getAlignment() == 1)
H A DSystemZLongBranch.cpp271 BlockPosition Position(MF->getAlignment());
277 Block.Alignment = MBB->getAlignment();
335 BlockPosition Position(MF->getAlignment());
436 BlockPosition Position(MF->getAlignment());
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp184 New->setAlignment(AI.getAlignment());
214 if (AI.getAlignment() == 0)
245 if (EntryAI->getAlignment() == 0)
251 unsigned MaxAlign = std::max(EntryAI->getAlignment(),
252 AI.getAlignment());
261 if (AI.getAlignment()) {
271 AI.getAlignment(), DL);
272 if (AI.getAlignment() <= SourceAlign) {
343 NewLoad->setAlignment(LI.getAlignment());
367 unsigned LoadAlign = LI.getAlignment();
[all...]
/external/llvm/lib/Analysis/
H A DLoads.cpp70 BaseAlign = AI->getAlignment();
76 BaseAlign = GV->getAlignment();
H A DLint.cpp278 MCI->getAlignment(), nullptr,
281 MCI->getAlignment(), nullptr,
302 MMI->getAlignment(), nullptr,
305 MMI->getAlignment(), nullptr,
313 MSI->getAlignment(), nullptr,
429 BaseAlign = AI->getAlignment();
439 BaseAlign = GV->getAlignment();
463 AA->getTypeStoreSize(I.getType()), I.getAlignment(),
470 I.getAlignment(),
/external/llvm/include/llvm/CodeGen/
H A DMachineConstantPool.h104 int getAlignment() const { function in class:llvm::MachineConstantPoolEntry
H A DMachineMemOperand.h156 /// getAlignment - Return the minimum known alignment in bytes of the
158 uint64_t getAlignment() const;
/external/llvm/lib/Transforms/Scalar/
H A DLoadCombine.cpp147 if (L.Load->getAlignment() > BaseLoad->getAlignment())
208 Loads[0].Load->getAlignment(), FirstLP.Load);
H A DMemCpyOptimizer.cpp226 SI->getPointerOperand(), SI->getAlignment(), SI);
231 addRange(OffsetFromFirst, Size, MSI->getDest(), MSI->getAlignment(), MSI);
523 unsigned storeAlign = SI->getAlignment();
526 unsigned loadAlign = LI->getAlignment();
655 unsigned srcAlign = srcAlloca->getAlignment();
801 unsigned Align = std::min(MDep->getAlignment(), M->getAlignment());
841 M->getAlignment(), false);
862 CopySize->getZExtValue(), M->getAlignment(),
966 if (MDep->getAlignment() < ByValAlig
[all...]
/external/clang/lib/CodeGen/
H A DCGRecordLayoutBuilder.cpp136 CharUnits getAlignment(llvm::Type *Type) { function in struct:__anon17851::CGRecordLowering
224 Layout.getAlignment().alignmentAtOffset(StartOffset).getQuantity();
304 getAlignment(FieldType) > getAlignment(StorageType) ||
305 (getAlignment(FieldType) == getAlignment(StorageType) &&
319 if (LayoutSize % getAlignment(StorageType))
545 if (Member->Offset % getAlignment(Member->Data))
547 Alignment = std::max(Alignment, getAlignment(Member->Data));
570 getAlignment(Membe
[all...]
/external/llvm/lib/Target/Mips/
H A DMipsMachineFunction.cpp113 RC->getAlignment(), false);

Completed in 5135 milliseconds

12345678