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

1 2

  /external/llvm/include/llvm/Transforms/Utils/
CodeExtractor.h 54 Type *RetTy;
  /external/llvm/lib/CodeGen/
JumpInstrTables.cpp 204 Type *RetTy = VoidPtrTy;
217 return FunctionType::get(RetTy, EmptyParams, false);
226 return FunctionType::get(RetTy, ParamTys, IsVarArg);
244 return FunctionType::get(RetTy, ParamTys, IsVarArg);
  /external/llvm/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 218 Type *RetTy = FTy->getReturnType();
219 ffi_type *rtype = ffiTypeFor(RetTy);
223 if (RetTy->getTypeID() != Type::VoidTyID)
224 ret.resize(TD->getTypeStoreSize(RetTy));
226 switch (RetTy->getTypeID()) {
228 switch (cast<IntegerType>(RetTy)->getBitWidth()) {
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 439 Type *RetTy = FTy->getReturnType();
449 if (RetTy->isIntegerTy(32) || RetTy->isVoidTy()) {
493 switch (RetTy->getTypeID()) {
496 unsigned BitWidth = cast<IntegerType>(RetTy)->getBitWidth();
  /external/clang/lib/StaticAnalyzer/Checkers/
CallAndMessageChecker.cpp 537 QualType RetTy = Msg.getResultType();
538 CanQualType CanRetTy = Ctx.getCanonicalType(RetTy);
543 SVal V = C.getSValBuilder().makeZeroVal(RetTy);
581 SVal V = C.getSValBuilder().makeZeroVal(RetTy);
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.cpp     [all...]
TargetLowering.cpp 105 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext());
108 .setCallee(getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
    [all...]
LegalizeIntegerTypes.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 244 Type *RetTy = FTy->getReturnType();
254 if (RetTy->isIntegerTy(32) || RetTy->isVoidTy()) {
303 switch (RetTy->getTypeID()) {
306 unsigned BitWidth = cast<IntegerType>(RetTy)->getBitWidth();
345 FunctionType *STy=FunctionType::get(RetTy, false);
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp 607 Type *RetTy = FTy->getReturnType();
610 FunctionType *NFTy = FunctionType::get(RetTy, Params, FTy->isVarArg());
    [all...]
DeadArgumentElimination.cpp 737 Type *RetTy = FTy->getReturnType();
764 if (RetTy->isVoidTy() || HasLiveReturnedArg) {
765 NRetTy = RetTy;
767 StructType *STy = dyn_cast<StructType>(RetTy);
784 RetTypes.push_back(RetTy);
    [all...]
  /external/clang/lib/CodeGen/
CGAtomic.cpp 618 QualType RetTy;
633 RetTy = getContext().BoolTy;
657 RetTy = getContext().VoidTy;
714 RetTy = MemTy;
717 RetTy = getContext().VoidTy;
727 CGM.getTypes().arrangeFreeFunctionCall(RetTy, Args,
732 if (!RetTy->isVoidType())
    [all...]
CGCall.cpp 72 static CanQualType GetReturnType(QualType RetTy) {
73 return RetTy->getCanonicalTypeUnqualified().getUnqualifiedType();
    [all...]
CGBuiltin.cpp     [all...]
CGDebugInfo.cpp 628 llvm::DICompositeType RetTy = DBuilder.createReplaceableForwardDecl(
630 ReplaceMap.push_back(std::make_pair(Ty, static_cast<llvm::Value *>(RetTy)));
631 return RetTy;
    [all...]
CGObjCGNU.cpp 63 llvm::Type *RetTy, ...) {
69 va_start(Args, RetTy);
74 ArgTys.push_back(RetTy);
82 llvm::Type *RetTy = ArgTys.back();
84 llvm::FunctionType *FTy = llvm::FunctionType::get(RetTy, ArgTys, false);
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp     [all...]
  /external/llvm/lib/IR/
AsmWriter.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64FastISel.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 840 Type *RetTy = CI->getType();
844 InV = ConstantExpr::getCast(CI->getOpcode(), InC, RetTy);
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelLowering.cpp 493 NVPTXTargetLowering::getPrototype(Type *retTy, const ArgListTy &Args,
506 if (retTy->getTypeID() == Type::VoidTyID) {
510 if (retTy->isFloatingPointTy() || retTy->isIntegerTy()) {
512 if (const IntegerType *ITy = dyn_cast<IntegerType>(retTy)) {
517 assert(retTy->isFloatingPointTy() &&
519 size = retTy->getPrimitiveSizeInBits();
523 } else if (isa<PointerType>(retTy)) {
526 if((retTy->getTypeID() == Type::StructTyID) ||
527 isa<VectorType>(retTy)) {
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcISelLowering.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 294 Type *RetTy =
296 if (!isTypeLegal(RetTy, RetVT))
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp     [all...]

Completed in 826 milliseconds

1 2