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
324 for (unsigned i = 0, e = Alignments.size(); i != e; ++i) {
325 if (Alignments[i].AlignType == (unsigned)align_type &&
326 Alignments[i].TypeBitWidth == bit_width) {
327 // Update the abi, preferred alignments.
328 Alignments[i].ABIAlign = abi_align;
329 Alignments[i].PrefAlign = pref_align;
334 Alignments.push_back(LayoutAlignElem::get(align_type, abi_align,
361 for (unsigned i = 0, e = Alignments.size(); i != e; ++i) {
362 if (Alignments[i].AlignType == (unsigned)AlignType &
    [all...]
  /external/llvm/include/llvm/IR/
DataLayout.h 105 /// Alignments - Where the primitive type alignment data is stored.
108 /// @note Could support multiple size pointer alignments, e.g., 32-bit
111 SmallVector<LayoutAlignElem, 16> Alignments;
125 //! Set/initialize target alignments
131 //! Set/initialize pointer alignments
179 Alignments(DL.Alignments),

Completed in 61 milliseconds