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

  /external/clang/lib/CodeGen/
TargetInfo.h 29 class ABIInfo;
43 ABIInfo *Info;
45 // WARNING: Acquires the ownership of ABIInfo.
46 TargetCodeGenInfo(ABIInfo *info = 0):Info(info) { }
50 const ABIInfo& getABIInfo() const { return *Info; }
ABIInfo.h 1 //===----- ABIInfo.h - ABI information access & encapsulation ---*- C++ -*-===//
154 /// ABIInfo - Target specific hooks for defining how a type should be
156 class ABIInfo {
160 ABIInfo(CodeGen::CodeGenTypes &cgt) : CGT(cgt) {}
161 virtual ~ABIInfo();
CodeGenTypes.h 33 class ABIInfo;
66 const ABIInfo &TheABIInfo;
114 const ABIInfo &getABIInfo() const { return TheABIInfo; }
TargetInfo.cpp 16 #include "ABIInfo.h"
44 ABIInfo::~ABIInfo() {}
46 ASTContext &ABIInfo::getContext() const {
50 llvm::LLVMContext &ABIInfo::getVMContext() const {
54 const llvm::TargetData &ABIInfo::getTargetData() const {
330 class DefaultABIInfo : public ABIInfo {
332 DefaultABIInfo(CodeGen::CodeGenTypes &CGT) : ABIInfo(CGT) {}
415 class X86_32ABIInfo : public ABIInfo {
455 : ABIInfo(CGT), IsDarwinVectorABI(d), IsSmallStructInRegABI(p)
    [all...]
  /external/llvm/lib/Target/
TargetData.cpp 331 /// getAlignmentInfo - Return the alignment (either ABI if ABIInfo = true or
332 /// preferred if ABIInfo = false) the target wants for the specified datatype.
334 uint32_t BitWidth, bool ABIInfo,
342 return ABIInfo ? Alignments[i].ABIAlign : Alignments[i].PrefAlign;
382 return ABIInfo ? Alignments[BestMatchIdx].ABIAlign

Completed in 1922 milliseconds