Home | History | Annotate | Download | only in target

Lines Matching refs:the

3  *                     The LLVM Compiler Infrastructure
5 * This file is distributed under the University of Illinois Open Source
13 the classes in the Target library. *)
24 (** [TargetData.create rep] parses the target data string representation [rep].
25 See the constructor llvm::TargetData::TargetData. *)
28 (** [add_target_data td pm] adds the target data [td] to the pass manager [pm].
29 Does not take ownership of the target data.
30 See the method llvm::PassManagerBase::add. *)
34 (** [as_string td] is the string representation of the target data [td].
35 See the constructor llvm::TargetData::TargetData. *)
39 See the destructor llvm::TargetData::~TargetData. *)
43 (** Returns the byte order of a target, either LLVMBigEndian or
45 See the method llvm::TargetData::isLittleEndian. *)
48 (** Returns the pointer size in bytes for a target.
49 See the method llvm::TargetData::getPointerSize. *)
52 (** Returns the integer type that is the same size as a pointer on a target.
53 See the method llvm::TargetData::getIntPtrType. *)
56 (** Computes the size of a type in bytes for a target.
57 See the method llvm::TargetData::getTypeSizeInBits. *)
61 (** Computes the storage size of a type in bytes for a target.
62 See the method llvm::TargetData::getTypeStoreSize. *)
65 (** Computes the ABI size of a type in bytes for a target.
66 See the method llvm::TargetData::getTypeAllocSize. *)
69 (** Computes the ABI alignment of a type in bytes for a target.
70 See the method llvm::TargetData::getTypeABISize. *)
73 (** Computes the call frame alignment of a type in bytes for a target.
74 See the method llvm::TargetData::getTypeABISize. *)
77 (** Computes the preferred alignment of a type in bytes for a target.
78 See the method llvm::TargetData::getTypeABISize. *)
82 (** Computes the preferred alignment of a global variable in bytes for a target.
83 See the method llvm::TargetData::getPreferredAlignment. *)
87 (** Computes the structure element that contains the byte offset for a target.
88 See the method llvm::StructLayout::getElementContainingOffset. *)
92 (** Computes the byte offset of the indexed struct element for a target.
93 See the method llvm::StructLayout::getElementContainingOffset. *)