HomeSort by relevance Sort by last modified time
    Searched defs:FTy (Results 26 - 50 of 56) sorted by null

12 3

  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 371 FunctionType *FTy = Fn->getFunctionType();
377 if (NumArgs >= 3 && FTy->getParamType(2) != PPInt8Ty)
379 if (NumArgs >= 2 && FTy->getParamType(1) != PPInt8Ty)
381 if (NumArgs >= 1 && !FTy->getParamType(0)->isIntegerTy(32))
383 if (!FTy->getReturnType()->isIntegerTy() &&
384 !FTy->getReturnType()->isVoidTy())
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 669 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
670 Function *F = Function::Create(FTy, GlobalValue::InternalLinkage,
681 FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
683 PointerType::get(FTy, 0),
684 PointerType::get(FTy, 0)
686 FTy = FunctionType::get(Builder.getVoidTy(), Params, false);
690 Constant *GCOVInit = M->getOrInsertFunction("llvm_gcov_init", FTy);
757 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
758 return M->getOrInsertFunction("llvm_gcda_start_file", FTy);
768 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false)
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp     [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp     [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp     [all...]
  /external/clang/lib/CodeGen/
CGException.cpp 29 llvm::FunctionType *FTy =
32 return CGM.CreateRuntimeFunction(FTy, "__cxa_allocate_exception");
38 llvm::FunctionType *FTy =
41 return CGM.CreateRuntimeFunction(FTy, "__cxa_free_exception");
49 llvm::FunctionType *FTy =
52 return CGM.CreateRuntimeFunction(FTy, "__cxa_throw");
58 llvm::FunctionType *FTy =
61 return CGM.CreateRuntimeFunction(FTy, "__cxa_rethrow");
67 llvm::FunctionType *FTy =
70 return CGM.CreateRuntimeFunction(FTy, "__cxa_get_exception_ptr")
    [all...]
CGStmt.cpp     [all...]
CodeGenFunction.cpp 328 llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false);
331 CGM.CreateRuntimeFunction(FTy, getTarget().getMCountName());
    [all...]
CodeGenModule.cpp     [all...]
ItaniumCXXABI.cpp 384 llvm::FunctionType *FTy =
437 VTable = Builder.CreateBitCast(VTable, FTy->getPointerTo()->getPointerTo());
445 Builder.CreateIntToPtr(FnAsInt, FTy->getPointerTo(), "memptr.nonvirtualfn");
449 llvm::PHINode *Callee = Builder.CreatePHI(FTy->getPointerTo(), 2);
    [all...]
MicrosoftCXXABI.cpp 657 llvm::FunctionType *FTy =
660 llvm::Constant *Fn = CGF.CGM.CreateRuntimeFunction(FTy, "__RTtypeid");
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
RegionStore.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/IR/
AsmWriter.cpp 213 FunctionType *FTy = cast<FunctionType>(Ty);
214 print(FTy->getReturnType(), OS);
216 for (FunctionType::param_iterator I = FTy->param_begin(),
217 E = FTy->param_end(); I != E; ++I) {
218 if (I != FTy->param_begin())
222 if (FTy->isVarArg()) {
223 if (FTy->getNumParams()) OS << ", ";
    [all...]
Instructions.cpp 271 FunctionType *FTy =
274 assert((Args.size() == FTy->getNumParams() ||
275 (FTy->isVarArg() && Args.size() > FTy->getNumParams())) &&
279 assert((i >= FTy->getNumParams() ||
280 FTy->getParamType(i) == Args[i]->getType()) &&
293 FunctionType *FTy =
296 assert(FTy->getNumParams() == 0 && "Calling a function with bad signature");
539 FunctionType *FTy =
542 assert(((Args.size() == FTy->getNumParams()) |
    [all...]
Verifier.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64FastISel.cpp     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFastISel.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp     [all...]
InstructionCombining.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp     [all...]

Completed in 658 milliseconds

12 3