HomeSort by relevance Sort by last modified time
    Searched defs:RetTy (Results 1 - 24 of 24) sorted by null

  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 129 Type *RetTy = FTy->getReturnType();
139 if (RetTy->isIntegerTy(32) || RetTy->isVoidTy()) {
183 switch (RetTy->getTypeID()) {
186 unsigned BitWidth = cast<IntegerType>(RetTy)->getBitWidth();
  /external/clang/lib/StaticAnalyzer/Checkers/
CallAndMessageChecker.cpp 299 QualType RetTy = msg.getType(Ctx);
301 CanQualType CanRetTy = Ctx.getCanonicalType(RetTy);
RetainCountChecker.cpp 656 const RetainSummary *getInitMethodSummary(QualType RetTy);
760 QualType RetTy);
766 QualType RetTy);
795 Selector S, QualType RetTy);
930 QualType RetTy = FT->getResultType();
942 S = (RetTy->isObjCIdType())
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 217 Type *RetTy = FTy->getReturnType();
218 ffi_type *rtype = ffiTypeFor(RetTy);
222 if (RetTy->getTypeID() != Type::VoidTyID)
223 ret.resize(TD->getTypeStoreSize(RetTy));
225 switch (RetTy->getTypeID()) {
227 switch (cast<IntegerType>(RetTy)->getBitWidth()) {
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp 596 Type *RetTy = FTy->getReturnType();
607 FunctionType *NFTy = FunctionType::get(RetTy, Params, FTy->isVarArg());
    [all...]
DeadArgumentElimination.cpp 662 Type *RetTy = FTy->getReturnType();
669 if (RetTy->isVoidTy()) {
670 NRetTy = RetTy;
672 StructType *STy = dyn_cast<StructType>(RetTy);
689 RetTypes.push_back(RetTy);
850 assert(RetTy->isStructTy() &&
    [all...]
  /external/llvm/lib/Transforms/Utils/
CodeExtractor.cpp 53 Type *RetTy;
256 case 1: RetTy = Type::getVoidTy(header->getContext()); break;
257 case 2: RetTy = Type::getInt1Ty(header->getContext()); break;
258 default: RetTy = Type::getInt16Ty(header->getContext()); break;
281 DEBUG(dbgs() << "Function type: " << *RetTy << " f(");
294 FunctionType::get(RetTy, paramTy, false);
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.cpp     [all...]
LegalizeIntegerTypes.cpp     [all...]
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 394 Type *RetTy = FTy->getReturnType();
404 if (RetTy->isIntegerTy(32) || RetTy->isVoidTy()) {
448 switch (RetTy->getTypeID()) {
451 unsigned BitWidth = cast<IntegerType>(RetTy)->getBitWidth();
491 FunctionType *STy=FunctionType::get(RetTy, false);
  /external/llvm/lib/VMCore/
AsmWriter.cpp     [all...]
Verifier.cpp     [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]
CGCall.cpp 65 static CanQualType GetReturnType(QualType RetTy) {
66 return RetTy->getCanonicalTypeUnqualified().getUnqualifiedType();
767 QualType RetTy = FI.getReturnType();
772 if (RetTy->hasSignedIntegerRepresentation())
774 else if (RetTy->hasUnsignedIntegerRepresentation())
    [all...]
CGObjCGNU.cpp 65 llvm::Type *RetTy, ...) {
71 va_start(Args, RetTy);
76 ArgTys.push_back(RetTy);
84 llvm::Type *RetTy = ArgTys.back();
86 llvm::FunctionType *FTy = llvm::FunctionType::get(RetTy, ArgTys, false);
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp     [all...]
  /external/llvm/lib/Target/CBackend/
CBackend.cpp 386 Type *RetTy = cast<PointerType>(*I)->getElementType();
408 printType(Out, RetTy,
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 706 Type *RetTy = CI->getType();
710 InV = ConstantExpr::getCast(CI->getOpcode(), InC, RetTy);
    [all...]
  /external/clang/lib/Sema/
SemaDeclAttr.cpp     [all...]
TreeTransform.h     [all...]
SemaExpr.cpp     [all...]
  /external/llvm/lib/Target/CellSPU/
SPUISelLowering.cpp 83 Type *RetTy =
86 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false,
    [all...]

Completed in 340 milliseconds