HomeSort by relevance Sort by last modified time
    Searched defs:Align (Results 51 - 75 of 100) sorted by null

1 23 4

  /external/clang/lib/CodeGen/
CGBlocks.cpp 171 BlockLayoutChunk(CharUnits align, CharUnits size,
174 : Alignment(align), Size(size), Capture(capture), Type(type) {}
389 CharUnits align = C.getDeclAlign(variable); local
391 maxFieldAlign = std::max(maxFieldAlign, align);
396 layout.push_back(BlockLayoutChunk(align, size, &*ci, llvmType));
463 // At this point, we just have to add padding if the end align still
738 CharUnits Align = getContext().getTypeAlignInChars(type);
740 AggValueSlot::forAddr(blockField, Align, Qualifiers(),
1102 unsigned align = getContext().getDeclAlign(variable).getQuantity(); local
    [all...]
CGBuiltin.cpp 590 unsigned Align = std::min(Dest.second, Src.second);
591 Builder.CreateMemCpy(Dest.first, Src.first, SizeVal, Align, false);
608 unsigned Align = std::min(Dest.second, Src.second);
609 Builder.CreateMemCpy(Dest.first, Src.first, SizeVal, Align, false);
635 unsigned Align = std::min(Dest.second, Src.second);
636 Builder.CreateMemMove(Dest.first, Src.first, SizeVal, Align, false);
647 unsigned Align = std::min(Dest.second, Src.second);
648 Builder.CreateMemMove(Dest.first, Src.first, SizeVal, Align, false);
    [all...]
CGCall.cpp     [all...]
CGClass.cpp 445 CharUnits Align = CGF.getContext().getTypeAlignInChars(T);
446 LV.setAlignment(std::min(Align, LV.getAlignment()));
    [all...]
CGExprCXX.cpp 405 CharUnits Align = Layout.getNonVirtualAlign();
423 NullVariable->setAlignment(Align.getQuantity());
427 CGF.Builder.CreateMemCpy(DestPtr, SrcPtr, SizeVal, Align.getQuantity());
435 Align.getQuantity());
    [all...]
CodeGenModule.cpp     [all...]
CGDebugInfo.cpp 439 // Bit size, align and offset of the type.
441 uint64_t Align = CGM.getContext().getTypeAlign(BT);
443 DBuilder.createBasicType(BTName, Size, Align, Encoding);
448 // Bit size, align and offset of the type.
454 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
456 DBuilder.createBasicType("complex", Size, Align, Encoding);
604 // Bit size, align and offset of the type.
609 uint64_t Align = CGM.getContext().getTypeAlign(Ty);
612 Size, Align);
643 // Bit size, align and offset of the type
    [all...]
  /external/llvm/include/llvm/Object/
MachOFormat.h 243 uint32_t Align;
256 uint32_t Align;
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 301 unsigned Align = 1 << AlignLog;
306 Align = 0;
309 OutStreamer.EmitCommonSymbol(GVSym, Size, Align);
318 OutStreamer.EmitZerofill(TheSection, GVSym, Size, Align);
322 if (Align == 1 ||
325 OutStreamer.EmitLocalCommonSymbol(GVSym, Size, Align);
330 Align = 0;
335 OutStreamer.EmitCommonSymbol(GVSym, Size, Align);
    [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseInstrInfo.cpp 624 // FIXME: Constant island pass should insert an "ALIGN" instruction
763 unsigned Align = MFI.getObjectAlignment(FI);
769 Align);
795 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
812 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
831 if (Align >= 16 && getRegisterInfo().canRealignStack(MF)) {
    [all...]
ARMConstantIslandPass.cpp 57 AlignConstantIslands("arm-align-constant-islands", cl::Hidden, cl::init(true),
58 cl::desc("Align constant islands in code"));
115 /// PostAlign - When non-zero, the block terminator contains a .align
535 unsigned Align = CPs[i].getAlignment();
536 assert(isPowerOf2_32(Align) && "Invalid alignment");
539 assert((Size % Align) == 0 && "CP Entry not multiple of 4 bytes!");
542 unsigned LogAlign = Log2_32(Align);
561 << Size << ", align = " << Align <<'\n');
610 unsigned Align = MCP->getConstants()[CPI].getAlignment()
    [all...]
ARMFastISel.cpp 538 unsigned Align = TD.getPrefTypeAlignment(CFP->getType());
539 if (Align == 0) {
541 Align = TD.getTypeAllocSize(CFP->getType());
543 unsigned Idx = MCP.getConstantPoolIndex(cast<Constant>(CFP), Align);
594 unsigned Align = TD.getPrefTypeAlignment(C->getType());
595 if (Align == 0) {
597 Align = TD.getTypeAllocSize(C->getType());
599 unsigned Idx = MCP.getConstantPoolIndex(C, Align);
645 unsigned Align = TD.getPrefTypeAlignment(GV->getType());
646 if (Align == 0)
    [all...]
ARMISelDAGToDAG.cpp 145 bool SelectAddrMode6(SDNode *Parent, SDValue N, SDValue &Addr,SDValue &Align);
279 SDValue GetVLDSTAlign(SDValue Align, unsigned NumVecs, bool is64BitVector);
    [all...]
ARMLoadStoreOptimizer.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp     [all...]
X86ISelDAGToDAG.cpp 71 unsigned Align; // CP alignment.
76 Segment(), GV(0), CP(0), BlockAddr(0), ES(0), JT(-1), Align(0),
135 dbgs() << " JT" << JT << " Align" << Align << '\n';
248 AM.Align, AM.Disp, AM.SymbolFlags);
645 AM.Align = CP->getAlignment();
680 AM.Align = CP->getAlignment();
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp     [all...]
  /external/v8/src/ia32/
assembler-ia32.cc 389 void Assembler::Align(int m) {
481 Align(16); // Preferred alignment of jump targets on ia32.
    [all...]
  /external/v8/src/x64/
assembler-x64.cc 426 void Assembler::Align(int m) {
434 Align(16); // Preferred alignment of jump targets on x64.
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Paint.java 86 static final Align[] sAlignArray = {
87 Align.LEFT, Align.CENTER, Align.RIGHT
311 * Align specifies how drawText aligns its text relative to the
314 public enum Align {
328 private Align(int nativeInt) {
1049 * Return the paint's Align value for drawing text. This controls how the
1050 * text is positioned relative to its origin. LEFT align means that all of
1054 * @return the paint's Align value for drawing text
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorTypes.cpp     [all...]
  /external/v8/src/mips/
assembler-mips.cc 348 void Assembler::Align(int m) {
359 Align(4);
    [all...]

Completed in 733 milliseconds

1 23 4