HomeSort by: relevance | last modified time | path
    Searched refs:getFunctionType (Results 1 - 25 of 154) sorted by relevancy

1 2 3 4 5 6 7

  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyFixFunctionBitcasts.cpp 129 FunctionType::param_iterator PI = F->getFunctionType()->param_begin();
130 FunctionType::param_iterator PE = F->getFunctionType()->param_end();
134 Type *ExpectedRtnType = F->getFunctionType()->getReturnType();
137 if ((F->getFunctionType()->getNumParams() != Ty->getNumParams()) ||
138 (F->getFunctionType()->isVarArg() != Ty->isVarArg()) ||
178 Type *ExpectedRtnType = F->getFunctionType()->getReturnType();
263 if (shouldFixMainFunction(F.getFunctionType(), MainTy)) {
265 << *F.getFunctionType() << "\n");
WebAssemblyAddMissingPrototypes.cpp 81 unsigned NumParams = F.getFunctionType()->getNumParams();
122 NewType = FunctionType::get(F.getFunctionType()->getReturnType(), false);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
ReplaceWithVeclib.cpp 51 TLIFunc = Function::Create(OldFunc->getFunctionType(),
78 assert(OldFunc->getFunctionType() == TLIFunc->getFunctionType() &&
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.cpp 91 const size_t ArgCount = F->getFunctionType()->getNumParams();
ExternalFunctions.cpp 104 FunctionType *FT = F->getFunctionType();
194 FunctionType *FTy = F->getFunctionType();
269 return Fn(F->getFunctionType(), ArgVals);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
LowerInvoke.cpp 56 CallInst::Create(II->getFunctionType(), II->getCalledOperand(),
CallPromotionUtils.cpp 400 unsigned NumParams = Callee->getFunctionType()->getNumParams();
418 Type *FormalTy = Callee->getFunctionType()->getFunctionParamType(I);
457 if (CB.getFunctionType() == Callee->getFunctionType())
465 CB.mutateFunctionType(Callee->getFunctionType());
470 auto CalleeType = Callee->getFunctionType();
InjectTLIMappings.cpp 52 assert(!CI.getFunctionType()->isVarArg() &&
FunctionComparator.cpp 729 if (int Res = cmpTypes(L->getFunctionType(), R->getFunctionType()))
741 assert(L->getFunctionType() != R->getFunctionType());
853 if (int Res = cmpTypes(FnL->getFunctionType(), FnR->getFunctionType()))
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
Mips16HardFloat.cpp 111 TypeID ArgTypeID = F.getFunctionType()->getParamType(0)->getTypeID();
122 TypeID ArgTypeID0 = F.getFunctionType()->getParamType(0)->getTypeID();
123 TypeID ArgTypeID1 = F.getFunctionType()->getParamType(1)->getTypeID();
158 Type *ArgType = F.getFunctionType()->getParamType(0);
271 FStub = Function::Create(F.getFunctionType(),
420 FunctionType *FT = CI->getFunctionType();
456 (F->getFunctionType(),
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
Coroutines.cpp 452 Prototype->getFunctionType()->dump();
461 Prototype->getFunctionType()->dump();
480 Prototype->getFunctionType()->dump();
488 Prototype->getFunctionType()->dump();
539 Alloc->getFunctionType()->getParamType(0),
562 Dealloc->getFunctionType()->getParamType(0));
594 auto FT = F->getFunctionType();
612 I->getFunction()->getFunctionType()->getReturnType())
630 auto FT = F->getFunctionType();
645 auto FT = F->getFunctionType();
    [all...]
CoroInternal.h 213 return RetconLowering.ResumePrototype->getFunctionType();
225 auto FTy = CoroBegin->getFunction()->getFunctionType();
240 auto FTy = RetconLowering.ResumePrototype->getFunctionType();
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPULibFunc.h 348 virtual FunctionType *getFunctionType(Module &M) const = 0;
392 FunctionType *getFunctionType(Module &M) const {
393 return Impl->getFunctionType(M);
417 FunctionType *getFunctionType(Module &M) const override;
447 FunctionType *getFunctionType(Module &M) const override { return FuncTy; }
R600OpenCLImageTypeLoweringPass.cpp 257 FunctionType *FT = F->getFunctionType();
336 M.getOrInsertFunction(NewF->getName(), NewF->getFunctionType(),
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
MatrixBuilder.h 82 CallInst *Call = B.CreateCall(TheFn->getFunctionType(), TheFn, Ops, Name);
105 CallInst *Call = B.CreateCall(TheFn->getFunctionType(), TheFn, Ops, Name);
125 return B.CreateCall(TheFn->getFunctionType(), TheFn, Ops, Name);
145 return B.CreateCall(TheFn->getFunctionType(), TheFn, Ops, Name);
DerivedTypes.h 166 // Allow implicit conversion from types which have a getFunctionType member
168 template <typename T, typename U = decltype(&T::getFunctionType)>
170 : FnTy(Fn ? Fn->getFunctionType() : nullptr), Callee(Fn) {}
181 FunctionType *getFunctionType() { return FnTy; }
Function.h 175 FunctionType *getFunctionType() const {
180 Type *getReturnType() const { return getFunctionType()->getReturnType(); }
188 bool isVarArg() const { return getFunctionType()->isVarArg(); }
InlineAsm.h 79 /// getFunctionType - InlineAsm's are always pointers to functions.
81 FunctionType *getFunctionType() const;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/
ObjCARC.cpp 50 FunctionType *FTy = Func.getFunctionType();
  /src/external/apache2/llvm/dist/llvm/lib/IR/
InlineAsm.cpp 38 assert(Verify(getFunctionType(), constraints) &&
57 FunctionType *InlineAsm::getFunctionType() const {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp 125 assert(Fn.getFunctionType()->isVarArg() && "Function isn't varargs!");
160 FunctionType *FTy = Fn.getFunctionType();
275 if (Fn.hasLocalLinkage() && !Fn.getFunctionType()->isVarArg())
443 if (ArgNo >= F->getFunctionType()->getNumParams())
523 != F.getFunctionType()->getReturnType()) {
625 if (F.getFunctionType()->isVarArg() || HasMustTailCallers ||
742 FunctionType *FTy = F->getFunctionType();
1098 if (F.getFunctionType()->isVarArg())
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGGPUBuiltin.cpp 34 assert(F->getFunctionType() == VprintfFuncType);
ObjectFilePCHContainerOperations.cpp 108 QualType FnTy = Ctx.getFunctionType(RetTy, ArgTypes,
127 QualType FnTy = Ctx.getFunctionType(RetTy, ArgTypes,
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCLowerMASSVEntries.cpp 143 MASSVEntryName, Func.getFunctionType(), Func.getAttributes());
  /src/external/apache2/llvm/dist/llvm/tools/bugpoint/
Miscompilation.cpp 393 F->getFunctionType());
420 I->getFunctionType());
592 I->getFunctionType());
800 Function::Create(oldMain->getFunctionType(),
804 Function *oldMainProto = Function::Create(oldMain->getFunctionType(),
873 FunctionType *FuncTy = F->getFunctionType();
899 Resolver, PointerType::getUnqual(F->getFunctionType()),

Completed in 61 milliseconds

1 2 3 4 5 6 7