HomeSort by relevance Sort by last modified time
    Searched refs:getParamType (Results 1 - 25 of 30) sorted by null

1 2

  /external/llvm/lib/Transforms/Scalar/
SimplifyLibCalls.cpp 257 if (FTy->getNumParams() != 1 || !FTy->getParamType(0)->isPointerTy())
265 !FTy->getParamType(0)->isPointerTy() ||
266 !FTy->getParamType(1)->isIntegerTy())
284 !FTy->getParamType(1)->isPointerTy())
290 !FTy->getParamType(0)->isPointerTy() ||
291 !FTy->getParamType(1)->isPointerTy())
304 !FTy->getParamType(0)->isPointerTy() ||
305 !FTy->getParamType(1)->isPointerTy())
313 if (FTy->getNumParams() != 2 || !FTy->getParamType(1)->isPointerTy())
320 if (FTy->getNumParams() < 2 || !FTy->getParamType(1)->isPointerTy()
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp 163 if (FT->getNumParams() != 4 || FT->getReturnType() != FT->getParamType(0) ||
164 !FT->getParamType(0)->isPointerTy() ||
165 !FT->getParamType(1)->isPointerTy() ||
166 FT->getParamType(2) != TD->getIntPtrType(Context) ||
167 FT->getParamType(3) != TD->getIntPtrType(Context))
186 if (FT->getNumParams() != 4 || FT->getReturnType() != FT->getParamType(0) ||
187 !FT->getParamType(0)->isPointerTy() ||
188 !FT->getParamType(1)->isPointerTy() ||
189 FT->getParamType(2) != TD->getIntPtrType(Context) ||
190 FT->getParamType(3) != TD->getIntPtrType(Context)
    [all...]
BuildLibCalls.cpp 483 if (FT->getNumParams() != 4 || FT->getReturnType() != FT->getParamType(0) ||
484 !FT->getParamType(0)->isPointerTy() ||
485 !FT->getParamType(1)->isPointerTy() ||
486 FT->getParamType(2) != TD->getIntPtrType(Context) ||
487 FT->getParamType(3) != TD->getIntPtrType(Context))
506 if (FT->getNumParams() != 4 || FT->getReturnType() != FT->getParamType(0) ||
507 !FT->getParamType(0)->isPointerTy() ||
508 !FT->getParamType(1)->isPointerTy() ||
509 FT->getParamType(2) != TD->getIntPtrType(Context) ||
510 FT->getParamType(3) != TD->getIntPtrType(Context)
    [all...]
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 204 if (FTy->getParamType(0)->isIntegerTy(32) &&
205 FTy->getParamType(1)->isPointerTy() &&
206 FTy->getParamType(2)->isPointerTy()) {
219 if (FTy->getParamType(0)->isIntegerTy(32) &&
220 FTy->getParamType(1)->isPointerTy()) {
232 FTy->getParamType(0)->isIntegerTy(32)) {
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 409 if (FTy->getParamType(0)->isIntegerTy(32) &&
410 FTy->getParamType(1)->isPointerTy() &&
411 FTy->getParamType(2)->isPointerTy()) {
424 if (FTy->getParamType(0)->isIntegerTy(32) &&
425 FTy->getParamType(1)->isPointerTy()) {
436 if (FTy->getParamType(0)->isIntegerTy(32)) {
442 if (FTy->getParamType(0)->isPointerTy()) {
509 Type *ArgTy = FTy->getParamType(i);
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 128 (FTy->getParamType(FstParam)->isIntegerTy(32) ||
129 FTy->getParamType(FstParam)->isIntegerTy(64))) &&
131 FTy->getParamType(SndParam)->isIntegerTy(32) ||
132 FTy->getParamType(SndParam)->isIntegerTy(64)))
331 if (FTy->getParamType(0) != Type::getInt8PtrTy(Callee->getContext()))
BasicAliasAnalysis.cpp 793 isa<PointerType>(MemsetType->getParamType(0)) &&
794 isa<PointerType>(MemsetType->getParamType(1)) &&
795 isa<IntegerType>(MemsetType->getParamType(2))) {
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 201 Type *ArgTy = FTy->getParamType(ArgNo);
213 Type *ArgTy = FTy->getParamType(ArgNo);
  /external/llvm/include/llvm/IR/
DerivedTypes.h 128 Type *getParamType(unsigned i) const { return ContainedTys[i+1]; }
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 88 ID.AddInteger(FTy->getParamType(i)->getTypeID());
268 if (!isEquivalentType(FTy1->getParamType(i), FTy2->getParamType(i)))
733 Args.push_back(Builder.CreateBitCast(AI, FFTy->getParamType(i)));
GlobalOpt.cpp     [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp     [all...]
CGBuiltin.cpp     [all...]
  /external/llvm/lib/IR/
Function.cpp 222 assert(!FT->getParamType(i)->isVoidTy() &&
224 ArgumentList.push_back(new Argument(FT->getParamType(i)));
Verifier.cpp 730 Ty = FT->getParamType(Index-1);
    [all...]
AutoUpgrade.cpp 34 Type *Arg0Type = F->getFunctionType()->getParamType(0);
Type.cpp 187 return cast<FunctionType>(this)->getParamType(i);
Instructions.cpp 280 FTy->getParamType(i) == Args[i]->getType()) &&
548 FTy->getParamType(i) == Args[i]->getType()) &&
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 368 if (NumArgs >= 3 && FTy->getParamType(2) != PPInt8Ty)
370 if (NumArgs >= 2 && FTy->getParamType(1) != PPInt8Ty)
372 if (NumArgs >= 1 && !FTy->getParamType(0)->isIntegerTy(32))
    [all...]
  /external/llvm/lib/Target/R600/
SIISelLowering.cpp 126 Type *ParamType = FType->getParamType(Arg.OrigArgIndex);
183 Type *ParamType = FType->getParamType(Arg.OrigArgIndex);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp     [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 335 TypeVals.push_back(VE.getTypeID(FT->getParamType(i)));
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]

Completed in 502 milliseconds

1 2