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

1 2 3 4 5 6 7

  /external/llvm/unittests/IR/
FunctionTest.cpp 20 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C), ArgTypes, false);
24 Function::Create(FTy, GlobalValue::ExternalLinkage, "F"));
42 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C), ArgTypes, false);
44 Function::Create(FTy, GlobalValue::ExternalLinkage, "F1"));
46 Function::Create(FTy, GlobalValue::ExternalLinkage, "F1"));
VerifierTest.cpp 29 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C), /*isVarArg=*/false);
30 Function *F = cast<Function>(M.getOrInsertFunction("foo", FTy));
52 FunctionType *FTy = FunctionType::get(Type::getInt32Ty(C), /*isVarArg=*/false);
53 Function *F = cast<Function>(M.getOrInsertFunction("foo", FTy));
70 FunctionType *FTy = FunctionType::get(Type::getInt32Ty(C), /*isVarArg=*/false);
71 Function *F1 = cast<Function>(M1.getOrInsertFunction("foo1", FTy));
72 Function *F2 = cast<Function>(M2.getOrInsertFunction("foo2", FTy));
73 Function *F3 = cast<Function>(M3.getOrInsertFunction("foo3", FTy));
166 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C), /*isVarArg=*/false);
167 Function::Create(FTy, GlobalValue::LinkOnceODRLinkage, "foo", &M)
    [all...]
IRBuilderTest.cpp 31 FunctionType *FTy = FunctionType::get(Type::getVoidTy(Ctx),
33 F = Function::Create(FTy, Function::ExternalLinkage, "", M.get());
  /external/llvm/lib/ExecutionEngine/Orc/
OrcMCJITReplacement.cpp 33 FunctionType *FTy = F->getFunctionType();
34 Type *RetTy = FTy->getReturnType();
36 assert((FTy->getNumParams() == ArgValues.size() ||
37 (FTy->isVarArg() && FTy->getNumParams() <= ArgValues.size())) &&
39 assert(FTy->getNumParams() == ArgValues.size() &&
47 if (FTy->getParamType(0)->isIntegerTy(32) &&
48 FTy->getParamType(1)->isPointerTy() &&
49 FTy->getParamType(2)->isPointerTy()) {
62 if (FTy->getParamType(0)->isIntegerTy(32) &
    [all...]
  /external/swiftshader/third_party/LLVM/unittests/VMCore/
VerifierTest.cpp 27 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C), /*isVarArg=*/false);
28 OwningPtr<Function> F(Function::Create(FTy, GlobalValue::ExternalLinkage));
  /external/swiftshader/third_party/LLVM/unittests/Support/
IRBuilderTest.cpp 26 FunctionType *FTy = FunctionType::get(Type::getVoidTy(getGlobalContext()),
28 Function *F = Function::Create(FTy, Function::ExternalLinkage, "", M.get());
  /frameworks/compile/libbcc/lib/
RSX86CallConvPass.cpp 113 llvm::FunctionType *FTy = OrigFn->getFunctionType();
114 std::vector<llvm::Type *> Params(FTy->param_begin(), FTy->param_end());
116 llvm::FunctionType *NewTy = llvm::FunctionType::get(FTy->getReturnType(),
118 FTy->isVarArg());
  /external/llvm/unittests/Analysis/
MixedTBAATest.cpp 37 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C),
39 auto *F = cast<Function>(M.getOrInsertFunction("f", FTy));
AliasAnalysisTest.cpp 168 FunctionType *FTy =
170 auto *F = cast<Function>(M.getOrInsertFunction("f", FTy));
ScalarEvolutionTest.cpp 51 FunctionType *FTy = FunctionType::get(Type::getVoidTy(Context),
53 Function *F = cast<Function>(M.getOrInsertFunction("f", FTy));
103 FunctionType *FTy = FunctionType::get(Type::getVoidTy(Context), Types, false);
104 Function *F = cast<Function>(M.getOrInsertFunction("f", FTy));
241 FunctionType *FTy = FunctionType::get(Type::getVoidTy(Context),
243 Function *F = cast<Function>(M.getOrInsertFunction("f", FTy));
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 128 FunctionType *FTy = F->getFunctionType();
129 Type *RetTy = FTy->getReturnType();
131 assert((FTy->getNumParams() == ArgValues.size() ||
132 (FTy->isVarArg() && FTy->getNumParams() <= ArgValues.size())) &&
134 assert(FTy->getNumParams() == ArgValues.size() &&
142 if (FTy->getParamType(0)->isIntegerTy(32) &&
143 FTy->getParamType(1)->isPointerTy() &&
144 FTy->getParamType(2)->isPointerTy()) {
157 if (FTy->getParamType(0)->isIntegerTy(32) &
    [all...]
  /external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/
JITMemoryManagerTest.cpp 25 FunctionType *FTy =
27 return Function::Create(FTy, GlobalValue::ExternalLinkage);
  /external/llvm/lib/CodeGen/
DwarfEHPrepare.cpp 208 FunctionType *FTy = FunctionType::get(Type::getVoidTy(Ctx),
211 RewindFunction = Fn.getParent()->getOrInsertFunction(RewindName, FTy);
  /external/llvm/unittests/Transforms/Utils/
ValueMapperTest.cpp 175 FunctionType *FTy =
178 Function::Create(FTy, GlobalValue::ExternalLinkage, "F"));
234 FunctionType *FTy =
237 Function::Create(FTy, GlobalValue::ExternalLinkage, "F"));
256 Function::Create(FTy, GlobalValue::ExternalLinkage, "F2"));
269 FunctionType *FTy =
272 Function::Create(FTy, GlobalValue::ExternalLinkage, "F"));
288 FunctionType *FTy =
291 Function::Create(FTy, GlobalValue::ExternalLinkage, "F"));
331 FunctionType *FTy = FunctionType::get(Type::getVoidTy(Context), Int8, false)
    [all...]
  /external/swiftshader/third_party/LLVM/unittests/Analysis/
ScalarEvolutionTest.cpp 40 FunctionType *FTy = FunctionType::get(Type::getVoidTy(Context),
42 Function *F = cast<Function>(M.getOrInsertFunction("f", FTy));
94 FunctionType *FTy = FunctionType::get(Type::getVoidTy(Context), Types, false);
95 Function *F = cast<Function>(M.getOrInsertFunction("f", FTy));
  /frameworks/rs/rsov/compiler/
GlobalMergePass.cpp 193 FunctionType *FTy = FunctionType::get(Type::getVoidTy(LLVMCtxt), false);
194 Func = Function::Create(FTy, GlobalValue::ExternalLinkage, FName, &M);
  /external/clang/lib/CodeGen/
CGCXXABI.cpp 87 llvm::FunctionType *FTy = CGM.getTypes().GetFunctionType(
89 return llvm::Constant::getNullValue(FTy->getPointerTo());
CodeGenTypes.cpp 601 const QualType FTy = cast<BlockPointerType>(Ty)->getPointeeType();
602 llvm::Type *PointeeType = ConvertTypeForMem(FTy);
603 unsigned AS = Context.getTargetAddressSpace(FTy);
  /external/llvm/include/llvm/IR/
InlineAsm.h 47 FunctionType *FTy;
  /external/llvm/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 183 FunctionType *FTy = F->getFunctionType();
199 Type *ArgTy = FTy->getParamType(ArgNo);
211 Type *ArgTy = FTy->getParamType(ArgNo);
216 Type *RetTy = FTy->getReturnType();
  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 194 FunctionType *FTy = FunctionType::get(F->getFunctionType()->getReturnType(),
199 Function::Create(FTy, F->getLinkage(), F->getName(), F->getParent());
  /external/llvm/unittests/Linker/
LinkModulesTest.cpp 31 FunctionType *FTy = FunctionType::get(
33 F = Function::Create(FTy, Function::ExternalLinkage, "ba_func", M.get());
136 FunctionType *FTy = FunctionType::get(
140 Function::Create(FTy, Function::ExternalLinkage, FuncName, M);
151 FunctionType *FTy = FunctionType::get(
155 Function::Create(FTy, Function::InternalLinkage, "bar", InternalM);
162 StructType *STy = StructType::create(Ctx, PointerType::get(FTy, 0));
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 184 FunctionType *FTy = F->getFunctionType();
200 Type *ArgTy = FTy->getParamType(ArgNo);
212 Type *ArgTy = FTy->getParamType(ArgNo);
217 Type *RetTy = FTy->getReturnType();
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
CloneFunction.cpp 154 FunctionType *FTy = FunctionType::get(F->getFunctionType()->getReturnType(),
158 Function *NewF = Function::Create(FTy, F->getLinkage(), F->getName());
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
InlineAsm.h 43 FunctionType *FTy;

Completed in 861 milliseconds

1 2 3 4 5 6 7