HomeSort by: relevance | last modified time | path
    Searched refs:CalleeTy (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
StackSafetyAnalysis.cpp 98 template <typename CalleeTy> struct CallInfo {
100 const CalleeTy *Callee = nullptr;
104 CallInfo(const CalleeTy *Callee, size_t ParamNo)
115 template <typename CalleeTy> struct UseInfo {
125 using CallsTy = std::map<CallInfo<CalleeTy>, ConstantRange,
126 typename CallInfo<CalleeTy>::Less>;
134 template <typename CalleeTy>
135 raw_ostream &operator<<(raw_ostream &OS, const UseInfo<CalleeTy> &U) {
175 template <typename CalleeTy> struct FunctionInfo {
176 std::map<const AllocaInst *, UseInfo<CalleeTy>> Allocas
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Statepoint.h 125 auto *CalleeTy =
127 return cast<FunctionType>(CalleeTy)->getReturnType();
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDeclCXX.cpp 820 llvm::FunctionType *CalleeTy;
823 std::tie(CalleeTy, Callee, Arg) = DtorsOrStermFinalizers[e - i - 1];
830 CI = Builder.CreateCall(CalleeTy, Callee);
832 CI = Builder.CreateCall(CalleeTy, Callee, Arg);
CGExpr.cpp 5281 llvm::Type *CalleeTy = getTypes().GetFunctionType(FnInfo);
5283 CalleeTy = CalleeTy->getPointerTo(AS);
5286 CalleePtr = Builder.CreateBitCast(CalleePtr, CalleeTy, "callee.knr.cast");
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
CoroSplit.cpp 1220 FunctionType *CalleeTy = CI.getFunctionType();
1221 if (!CalleeTy->getReturnType()->isVoidTy() || (CalleeTy->getNumParams() != 1))
1224 Type *CalleeParmTy = CalleeTy->getParamType(0);
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Verifier.cpp 3406 FunctionType *CalleeTy = CI.getFunctionType();
3408 Assert(CallerTy->getNumParams() == CalleeTy->getNumParams(),
3413 isTypeCongruent(CallerTy->getParamType(I), CalleeTy->getParamType(I)),
3417 Assert(CallerTy->isVarArg() == CalleeTy->isVarArg(),
3419 Assert(isTypeCongruent(CallerTy->getReturnType(), CalleeTy->getReturnType()),
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 2751 Type *CalleeTy = Callee->getType();
2891 Constant *NewCallee = ConstantExpr::getBitCast(NestF, CalleeTy);
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 4689 PointerType *CalleeTy = dyn_cast<PointerType>(Callee->getType());
4690 if (!CalleeTy)

Completed in 40 milliseconds