HomeSort by relevance Sort by last modified time
    Searched refs:Alignments (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/IR/
DataLayout.cpp 161 // Default alignments
326 for (unsigned i = 0, e = Alignments.size(); i != e; ++i) {
327 if (Alignments[i].AlignType == (unsigned)align_type &&
328 Alignments[i].TypeBitWidth == bit_width) {
329 // Update the abi, preferred alignments.
330 Alignments[i].ABIAlign = abi_align;
331 Alignments[i].PrefAlign = pref_align;
336 Alignments.push_back(LayoutAlignElem::get(align_type, abi_align,
363 for (unsigned i = 0, e = Alignments.size(); i != e; ++i) {
364 if (Alignments[i].AlignType == (unsigned)AlignType &
    [all...]
  /external/llvm/include/llvm/IR/
DataLayout.h 103 /// Alignments - Where the primitive type alignment data is stored.
106 /// @note Could support multiple size pointer alignments, e.g., 32-bit
109 SmallVector<LayoutAlignElem, 16> Alignments;
123 //! Set/initialize target alignments
129 //! Set/initialize pointer alignments
177 Alignments(TD.Alignments),

Completed in 68 milliseconds