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

  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 109 isSafeToConvert(QualType T, CodeGenTypes &CGT,
117 isSafeToConvert(const RecordDecl *RD, CodeGenTypes &CGT,
123 const Type *Key = CGT.getContext().getTagDeclType(RD).getTypePtr();
126 if (CGT.isRecordLayoutComplete(Key)) return true;
129 if (CGT.isRecordBeingLaidOut(Key))
140 CGT, AlreadyChecked))
148 if (!isSafeToConvert(I->getType(), CGT, AlreadyChecked))
159 isSafeToConvert(QualType T, CodeGenTypes &CGT,
165 return isSafeToConvert(RT->getDecl(), CGT, AlreadyChecked);
169 return isSafeToConvert(AT->getElementType(), CGT, AlreadyChecked)
    [all...]
TargetInfo.cpp 47 return CGT.getContext();
51 return CGT.getLLVMContext();
55 return CGT.getDataLayout();
339 DefaultABIInfo(CodeGen::CodeGenTypes &CGT) : ABIInfo(CGT) {}
357 DefaultTargetCodeGenInfo(CodeGen::CodeGenTypes &CGT)
358 : TargetCodeGenInfo(new DefaultABIInfo(CGT)) {}
405 PNaClABIInfo(CodeGen::CodeGenTypes &CGT) : ABIInfo(CGT) {}
417 PNaClTargetCodeGenInfo(CodeGen::CodeGenTypes &CGT)
    [all...]
ABIInfo.h 187 CodeGen::CodeGenTypes &CGT;
191 ABIInfo(CodeGen::CodeGenTypes &cgt)
192 : CGT(cgt), RuntimeCC(llvm::CallingConv::C) {}
CGCall.cpp 88 static const CGFunctionInfo &arrangeLLVMFunctionInfo(CodeGenTypes &CGT,
97 return CGT.arrangeLLVMFunctionInfo(resultType, prefix, extInfo, required);
102 static const CGFunctionInfo &arrangeFreeFunctionType(CodeGenTypes &CGT,
105 return arrangeLLVMFunctionInfo(CGT, prefix, FTP, FTP->getExtInfo());
110 static void adjustCXXMethodInfo(CodeGenTypes &CGT,
114 CallingConv CC = CGT.getContext().getDefaultCXXMethodCallConv(isVariadic);
121 static const CGFunctionInfo &arrangeCXXMethodType(CodeGenTypes &CGT,
125 adjustCXXMethodInfo(CGT, extInfo, FTP->isVariadic());
126 return arrangeLLVMFunctionInfo(CGT, prefix, FTP, extInfo);
328 arrangeFreeFunctionLikeCall(CodeGenTypes &CGT,
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcherGen.cpp 644 const CodeGenTarget &CGT = CGP.getTargetInfo();
645 CodeGenInstruction &II = CGT.getInstruction(Op);
673 const CodeGenTarget &CGT = CGP.getTargetInfo();
674 CodeGenInstruction &II = CGT.getInstruction(Op);
783 if (II.HasOneImplicitDefWithKnownVT(CGT) != MVT::Other)
789 ResultVTs.push_back(getRegisterValueType(Reg, CGT));
    [all...]

Completed in 179 milliseconds