Searched refs:Alignment (Results 176 - 200 of 236) sorted by relevance

12345678910

/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp478 unsigned Alignment = (EncodedAttrs & (0xffffULL << 16)) >> 16; local
479 assert((!Alignment || isPowerOf2_32(Alignment)) &&
480 "Alignment must be a power of two.");
482 if (Alignment)
483 B.addAlignmentAttr(Alignment);
552 return Attribute::Alignment;
690 if (Kind == Attribute::Alignment)
1888 unsigned Alignment = (1 << Record[4]) >> 1; local
1916 NewGV->setAlignment(Alignment);
[all...]
/external/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp553 unsigned Alignment, bool AsCall) {
556 Alignment); local
580 getOriginPtr(Addr, IRBNew), Alignment); local
605 unsigned Alignment = std::max(kMinOriginAlignment, SI.getAlignment()); local
606 storeOrigin(IRB, Addr, Shadow, getOrigin(Val), Alignment,
1094 unsigned Alignment = std::max(kMinOriginAlignment, I.getAlignment()); local
1096 IRB.CreateAlignedLoad(getOriginPtr(Addr, IRB), Alignment));
2320 unsigned Alignment = CS.getParamAlignment(i + 1); local
2323 Size, Alignment);
552 storeOrigin(IRBuilder< &IRB, Value *Addr, Value *Shadow, Value *Origin, unsigned Alignment, bool AsCall) argument
/external/clang/lib/CodeGen/
H A DTargetInfo.cpp3410 unsigned Alignment = getContext().getTypeAlign(Ty); local
3411 if (!isDarwinPCS() && Alignment > 64)
3412 AllocatedGPR = llvm::RoundUpToAlignment(AllocatedGPR, Alignment / 64);
3459 unsigned Alignment = getContext().getTypeAlign(Ty); local
3460 if (!isDarwinPCS() && Alignment > 64)
3461 AllocatedGPR = llvm::RoundUpToAlignment(AllocatedGPR, Alignment / 64);
3468 if (Alignment < 128 && Size == 128) {
3897 void markAllocatedGPRs(unsigned Alignment, unsigned NumRequired) const;
3898 void markAllocatedVFPs(unsigned Alignment, unsigned NumRequired) const;
4146 void ARMABIInfo::markAllocatedVFPs(unsigned Alignment, argument
4182 markAllocatedGPRs(unsigned Alignment, unsigned NumRequired) const argument
[all...]
H A DCGDecl.cpp840 emission.Alignment = alignment;
1077 CharUnits alignment = emission.Alignment;
H A DCGException.cpp1049 CharUnits Alignment = CGF.getContext().getDeclAlign(&CatchParam); local
1051 AggValueSlot::forAddr(ParamAddr, Alignment, Qualifiers(),
/external/llvm/lib/Target/X86/
H A DX86FastISel.cpp944 unsigned Alignment = S->getAlignment(); local
946 if (Alignment == 0) // Ensure that codegen never sees alignment 0
947 Alignment = ABIAlignment;
948 bool Aligned = Alignment >= ABIAlignment;
3250 // Alignment of vector types. FIXME!
3350 unsigned Alignment = LI->getAlignment(); local
3352 if (Alignment == 0) // Ensure that codegen never sees alignment 0
3353 Alignment = DL.getABITypeAlignment(LI->getType());
3359 XII.foldMemoryOperandImpl(*FuncInfo.MF, MI, OpNo, AddrOps, Size, Alignment);
/external/llvm/lib/Transforms/Scalar/
H A DSROA.cpp3152 unsigned Alignment = AI.getAlignment(); local
3153 if (!Alignment) {
3157 Alignment = DL->getABITypeAlignment(AI.getAllocatedType());
3159 Alignment = MinAlign(Alignment, BeginOffset);
3162 if (Alignment <= DL->getABITypeAlignment(SliceTy))
3163 Alignment = 0;
3164 NewAI = new AllocaInst(SliceTy, nullptr, Alignment,
/external/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp1803 unsigned Alignment = LI->getAlignment(); local
1805 if (!Alignment)
1806 Alignment = DL->getABITypeAlignment(LI->getPointerOperand()->getType());
1807 LI->setAlignment(Alignment);
1813 unsigned Alignment = SI->getAlignment(); local
1826 if (!Alignment)
1827 Alignment = DL->getABITypeAlignment(SI->getPointerOperand()->getType());
1828 S->setAlignment(Alignment);
H A DLoopVectorize.cpp1619 unsigned Alignment = LI ? LI->getAlignment() : SI->getAlignment(); local
1622 if (!Alignment)
1623 Alignment = DL->getABITypeAlignment(ScalarDataTy);
1722 Builder.CreateStore(StoredVal[Part], VecPtr)->setAlignment(Alignment);
1744 cast<LoadInst>(LI)->setAlignment(Alignment);
5744 unsigned Alignment = SI ? SI->getAlignment() : LI->getAlignment();
5753 TTI.getMemoryOpCost(I->getOpcode(), VectorTy, Alignment, AS);
5780 Alignment, AS);
5786 Cost += TTI.getMemoryOpCost(I->getOpcode(), VectorTy, Alignment, AS);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1042 unsigned Alignment; member in struct:__anon25720::SectionCPs
1044 SectionCPs(const MCSection *s, unsigned a) : S(s), Alignment(a) {}
1098 if (Align > CPSections[SecIdx].Alignment)
1099 CPSections[SecIdx].Alignment = Align;
1106 EmitAlignment(Log2_32(CPSections[i].Alignment));
/external/llvm/lib/Linker/
H A DLinkModules.cpp512 unsigned Alignment; local
514 Alignment = std::max(DestGO->getAlignment(), SrcGV->getAlignment());
519 DestGO->setAlignment(Alignment);
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTypeVendor.cpp147 uint64_t &Alignment,
145 layoutRecordType(const clang::RecordDecl *Record, uint64_t &Size, uint64_t &Alignment, llvm::DenseMap <const clang::FieldDecl *, uint64_t> &FieldOffsets, llvm::DenseMap <const clang::CXXRecordDecl *, clang::CharUnits> &BaseOffsets, llvm::DenseMap <const clang::CXXRecordDecl *, clang::CharUnits> &VirtualBaseOffsets) argument
/external/llvm/lib/Object/
H A DCOFFYAML.cpp383 IO.mapOptional("Alignment", Sec.Alignment);
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp1818 unsigned Alignment = ST->getAlignment(); local
1819 if (Alignment >= ABIAlignment) {
1825 LD->getAlignment() == Alignment &&
1831 Alignment, false, ST->getPointerInfo(),
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp593 unsigned Alignment = ST->getAlignment(); local
624 isVolatile, isNonTemporal, Alignment, TBAAInfo);
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml95 | Alignment of int Constructor in type:Attribute/t
745 | Attribute.Alignment n -> Int32.shift_left (Int32.of_int n) 16
783 l := Attribute.Alignment (Int32.to_int align) :: !l;
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp1564 unsigned Alignment = ST->getAlignment(); local
1570 isVolatile, Alignment);
2377 int64_t Alignment = cast<ConstantInt>(Align)->getZExtValue(); local
2378 Info.align = Alignment;
2406 int64_t Alignment = cast<ConstantInt>(Align)->getZExtValue(); local
2407 Info.align = Alignment;
/external/clang/lib/Sema/
H A DSemaOpenMP.cpp3366 ArrayRef<Expr *> VarList, Expr *Alignment, SourceLocation StartLoc,
3426 if (Alignment != nullptr) {
3428 VerifyPositiveIntegerConstantInClause(Alignment, OMPC_aligned);
3431 Alignment = AlignResult.get();
3437 EndLoc, Vars, Alignment);
3365 ActOnOpenMPAlignedClause( ArrayRef<Expr *> VarList, Expr *Alignment, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation ColonLoc, SourceLocation EndLoc) argument
/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp3586 unsigned Alignment = std::min(Flags.getByValAlign(), RegSizeInBytes); local
3601 Alignment);
3630 MVT::getIntegerVT(LoadSizeInBytes * 8), false, false, Alignment);
3651 Alignment = std::min(Alignment, LoadSizeInBytes);
3667 Alignment, /*isVolatile=*/false, /*AlwaysInline=*/false,
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dattrib.c1336 dst->Alignment = src->Alignment;
/external/chromium_org/v8/src/ia32/
H A Dcodegen-ia32.cc108 enum Alignment { MOVE_ALIGNED, MOVE_UNALIGNED }; enum in namespace:v8::internal
118 Alignment alignment) {
/external/llvm/include/llvm/Target/
H A DTargetLowering.h2118 uint16_t Alignment;
2122 isReturned(false), Alignment(0) { }
/external/mesa3d/src/mesa/main/
H A Dattrib.c1336 dst->Alignment = src->Alignment;
/external/chromium_org/ui/views/layout/
H A Dgrid_layout_unittest.cc84 void TestAlignment(GridLayout::Alignment alignment, gfx::Rect* bounds) {
/external/chromium_org/v8/src/x87/
H A Dcodegen-x87.cc54 enum Alignment { MOVE_ALIGNED, MOVE_UNALIGNED }; enum in namespace:v8::internal

Completed in 741 milliseconds

12345678910