Searched defs:Alignment (Results 26 - 50 of 141) sorted by relevance

123456

/external/llvm/lib/Target/ARM/
H A DARMConstantPoolValue.cpp64 unsigned Alignment) {
165 unsigned Alignment) {
166 return getExistingMachineCPValueImpl<ARMConstantPoolConstant>(CP, Alignment);
204 unsigned Alignment) {
205 return getExistingMachineCPValueImpl<ARMConstantPoolSymbol>(CP, Alignment);
244 unsigned Alignment) {
245 return getExistingMachineCPValueImpl<ARMConstantPoolMBB>(CP, Alignment);
63 getExistingMachineCPValue(MachineConstantPool *CP, unsigned Alignment) argument
164 getExistingMachineCPValue(MachineConstantPool *CP, unsigned Alignment) argument
203 getExistingMachineCPValue(MachineConstantPool *CP, unsigned Alignment) argument
243 getExistingMachineCPValue(MachineConstantPool *CP, unsigned Alignment) argument
H A DARMConstantPoolValue.h71 unsigned Alignment) {
72 unsigned AlignMask = Alignment - 1;
109 unsigned Alignment) override;
168 unsigned Alignment) override;
202 unsigned Alignment) override;
238 unsigned Alignment) override;
70 getExistingMachineCPValueImpl(MachineConstantPool *CP, unsigned Alignment) argument
H A DARMTargetTransformInfo.cpp134 unsigned getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
575 unsigned ARMTTI::getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment, argument
579 if (Src->isVectorTy() && Alignment != 16 &&
/external/llvm/tools/lli/ChildTarget/
H A DChildTarget.cpp107 uint32_t Alignment; local
109 rc = ReadBytes(&Alignment, 4);
116 RT->allocateSpace(AllocSize, Alignment, Addr);
/external/llvm/tools/lli/
H A DRemoteTargetExternal.cpp31 bool RemoteTargetExternal::allocateSpace(size_t Size, unsigned Alignment, argument
34 ", align: " << Alignment << "\n"); local
35 if (!SendAllocateSpace(Alignment, Size)) {
119 bool RemoteTargetExternal::SendAllocateSpace(uint32_t Alignment, uint32_t Size) { argument
125 AppendWrite((const void *)&Alignment, 4);
H A DRemoteMemoryManager.cpp33 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, argument
41 AllocatedSections.push_back( Allocation(Block, Alignment, true) );
43 UnmappedSections.push_back( Allocation(Block, Alignment, true) );
48 allocateDataSection(uintptr_t Size, unsigned Alignment, argument
57 AllocatedSections.push_back( Allocation(Block, Alignment, false) );
59 UnmappedSections.push_back( Allocation(Block, Alignment, false) );
102 unsigned Align = Section.Alignment;
119 unsigned Align = Section.Alignment;
189 unsigned Alignment) {
197 uint8_t *RemoteMemoryManager::allocateSpace(intptr_t Size, unsigned Alignment) { argument
188 allocateStub(const GlobalValue* F, unsigned StubSize, unsigned Alignment) argument
201 allocateGlobal(uintptr_t Size, unsigned Alignment) argument
[all...]
/external/clang/include/clang/AST/
H A DAttr.h67 size_t Alignment = 16) throw() {
68 return ::operator new(Bytes, C, Alignment);
71 size_t Alignment) throw() {
72 return ::operator delete(Ptr, C, Alignment);
70 operator delete(void *Ptr, ASTContext &C, size_t Alignment) argument
/external/clang/lib/AST/
H A DExternalASTSource.cpp46 const RecordDecl *Record, uint64_t &Size, uint64_t &Alignment,
45 layoutRecordType( const RecordDecl *Record, uint64_t &Size, uint64_t &Alignment, llvm::DenseMap<const FieldDecl *, uint64_t> &FieldOffsets, llvm::DenseMap<const CXXRecordDecl *, CharUnits> &BaseOffsets, llvm::DenseMap<const CXXRecordDecl *, CharUnits> &VirtualBaseOffsets) argument
/external/eigen/Eigen/src/SparseLU/
H A DSparseLU_gemm_kernel.h256 Alignment = PacketSize>1 ? Aligned : 0 enumerator in enum:Eigen::internal::__anon20999
258 typedef Map<Matrix<Scalar,Dynamic,1>, Alignment > MapVector;
259 typedef Map<const Matrix<Scalar,Dynamic,1>, Alignment > ConstMapVector;
/external/llvm/include/llvm/CodeGen/
H A DMachineCodeEmitter.h163 void emitAlignment(unsigned Alignment) { argument
164 if (Alignment == 0) Alignment = 1;
166 if(Alignment <= (uintptr_t)(BufferEnd-CurBufferPtr)) {
169 (uint8_t*)(((uintptr_t)CurBufferPtr+Alignment-1) &
170 ~(uintptr_t)(Alignment-1));
257 /// failure. Alignment is the alignment in bytes of the buffer desired.
258 virtual void *allocateSpace(uintptr_t Size, unsigned Alignment) { argument
259 emitAlignment(Alignment);
H A DMachineFunction.h124 /// Alignment - The alignment of the function.
125 unsigned Alignment; member in class:llvm::MachineFunction
197 unsigned getAlignment() const { return Alignment; }
201 void setAlignment(unsigned A) { Alignment = A; }
205 if (Alignment < A) Alignment = A;
240 AlignOf<Ty>::Alignment));
/external/llvm/include/llvm/Support/
H A DAlignOf.h32 /// AlignOf<int>::Alignment represents the alignment of type "int". The
39 enum { Alignment = enumerator in enum:llvm::AlignOf::__anon25547
42 enum { Alignment_GreaterEqual_2Bytes = Alignment >= 2 ? 1 : 0 };
43 enum { Alignment_GreaterEqual_4Bytes = Alignment >= 4 ? 1 : 0 };
44 enum { Alignment_GreaterEqual_8Bytes = Alignment >= 8 ? 1 : 0 };
45 enum { Alignment_GreaterEqual_16Bytes = Alignment >= 16 ? 1 : 0 };
47 enum { Alignment_LessEqual_2Bytes = Alignment <= 2 ? 1 : 0 };
48 enum { Alignment_LessEqual_4Bytes = Alignment <= 4 ? 1 : 0 };
49 enum { Alignment_LessEqual_8Bytes = Alignment <= 8 ? 1 : 0 };
50 enum { Alignment_LessEqual_16Bytes = Alignment <
[all...]
H A DAllocator.h44 /// \brief Allocate \a Size bytes of \a Alignment aligned memory. This method
46 void *Allocate(size_t Size, size_t Alignment) { argument
55 return static_cast<DerivedT *>(this)->Allocate(Size, Alignment);
77 return static_cast<T *>(Allocate(Num * sizeof(T), AlignOf<T>::Alignment));
93 void *Allocate(size_t Size, size_t /*Alignment*/) { return malloc(Size); }
203 void *Allocate(size_t Size, size_t Alignment) { argument
211 if (Alignment == 0)
212 Alignment = 1;
215 char *Ptr = alignPtr(CurPtr, Alignment);
228 size_t PaddedSize = Size + Alignment
[all...]
/external/llvm/lib/CodeGen/
H A DGlobalMerge.cpp307 unsigned Alignment = DL->getPreferredAlignment(I); local
309 if (Alignment > DL->getABITypeAlignment(Ty))
/external/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.cpp125 unsigned getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
473 unsigned Alignment,
477 if (Opcode == Instruction::Store && Src->isVectorTy() && Alignment != 16 &&
472 getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment, unsigned AddressSpace) const argument
/external/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.cpp107 unsigned Alignment,
382 unsigned PPCTTI::getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment, argument
390 TargetTransformInfo::getMemoryOpCost(Opcode, Src, Alignment, AddressSpace);
407 if (SrcBytes && Alignment && Alignment < SrcBytes && !UnalignedAltivec) {
408 Cost += LT.first*(SrcBytes/Alignment-1);
/external/llvm/lib/Target/SystemZ/
H A DSystemZLongBranch.cpp85 unsigned Alignment; member in struct:__anon26159::MBBInfo
91 : Address(0), Size(0), Alignment(0), NumTerminators(0) {}
178 if (Block.Alignment > Position.KnownBits) {
181 Position.Address += ((uint64_t(1) << Block.Alignment) -
183 Position.KnownBits = Block.Alignment;
187 uint64_t AlignMask = (uint64_t(1) << Block.Alignment) - 1;
277 Block.Alignment = MBB->getAlignment();
/external/llvm/lib/Target/X86/
H A DX86JITInfo.cpp452 const unsigned Alignment = 8; local
458 const unsigned Alignment = 4;
463 return JCE.allocIndirectGV(GV, Buffer, sizeof(Buffer), Alignment);
/external/llvm/tools/llvm-readobj/
H A DMachODumper.cpp141 uint32_t Alignment; member in struct:__anon26414::MachOSection
166 Section.Alignment = Sect.align;
178 Section.Alignment = Sect.align;
241 W.printNumber("Alignment", MOSection.Alignment);
/external/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp90 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
93 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
112 unsigned Alignment,
121 unsigned Alignment,
111 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName) argument
120 allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName, bool IsReadOnly) argument
/external/chromium_org/chrome/browser/themes/
H A Dtheme_properties.h21 // The int values of OverwritableByUserThemeProperties, Alignment, and Tiling
59 enum Alignment { enum in class:ThemeProperties
115 // "top left" into a bitmask of Alignment.
122 // Converts a bitmask of Alignment into a string like "top left". The result
/external/clang/lib/CodeGen/
H A DCGDeclCXX.cpp153 unsigned Alignment = getContext().getDeclAlign(&D).getQuantity(); local
155 EmitStoreOfScalar(RV.getScalarVal(), DeclPtr, false, Alignment, T);
H A DCGObjCRuntime.cpp126 CharUnits Alignment = CGF.CGM.getContext().toCharUnitsFromBits(AlignmentBits); local
137 Alignment.getQuantity()));
144 Alignment);
/external/lldb/include/lldb/Expression/
H A DClangASTSource.h135 /// @param[out] Alignment
161 uint64_t &Alignment,
283 uint64_t &Alignment,
290 Alignment,
281 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/include/llvm/IR/
H A DDataLayout.h63 unsigned AlignType : 8; ///< Alignment type (AlignTypeEnum)
441 /// boundary specified by Alignment. For example, 7 rounded up to an
445 static UIntTy RoundUpAlignment(UIntTy Val, unsigned Alignment) { argument
446 assert((Alignment & (Alignment-1)) == 0 && "Alignment must be power of 2!");
447 return (Val + (Alignment-1)) & ~UIntTy(Alignment-1);

Completed in 1227 milliseconds

123456