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

1 2

  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 823 if (FTy->getNumParams() != 1 || !FTy->getParamType(0)->isPointerTy())
832 !FTy->getParamType(0)->isPointerTy() ||
833 !FTy->getParamType(1)->isIntegerTy())
846 !FTy->getParamType(1)->isPointerTy())
859 !FTy->getParamType(1)->isPointerTy())
867 !FTy->getParamType(0)->isPointerTy() ||
868 !FTy->getParamType(1)->isPointerTy())
883 !FTy->getParamType(0)->isPointerTy() ||
884 !FTy->getParamType(1)->isPointerTy())
893 if (FTy->getNumParams() != 2 || !FTy->getParamType(1)->isPointerTy()
    [all...]
MergeFunctions.cpp 97 ID.AddInteger(getTypeIDForHash(FTy->getParamType(i)));
276 if (!isEquivalentType(FTy1->getParamType(i), FTy2->getParamType(i)))
741 Args.push_back(Builder.CreateBitCast(AI, FFTy->getParamType(i)));
GlobalOpt.cpp     [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 245 if (FTy->getParamType(0)->isIntegerTy(32) &&
246 FTy->getParamType(1)->isPointerTy() &&
247 FTy->getParamType(2)->isPointerTy()) {
260 if (FTy->getParamType(0)->isIntegerTy(32) &&
261 FTy->getParamType(1)->isPointerTy()) {
273 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/Target/Mips/
Mips16HardFloat.cpp 104 TypeID ArgTypeID = F.getFunctionType()->getParamType(0)->getTypeID();
115 TypeID ArgTypeID0 = F.getFunctionType()->getParamType(0)->getTypeID();
116 TypeID ArgTypeID1 = F.getFunctionType()->getParamType(1)->getTypeID();
152 Type *ArgType = F.getFunctionType()->getParamType(0);
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 131 (FTy->getParamType(FstParam)->isIntegerTy(32) ||
132 FTy->getParamType(FstParam)->isIntegerTy(64))) &&
134 FTy->getParamType(SndParam)->isIntegerTy(32) ||
135 FTy->getParamType(SndParam)->isIntegerTy(64)))
340 if (FTy->getParamType(0) != Type::getInt8PtrTy(Callee->getContext()))
BasicAliasAnalysis.cpp 833 isa<PointerType>(MemsetType->getParamType(0)) &&
834 isa<PointerType>(MemsetType->getParamType(1)) &&
835 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/IR/
Function.cpp 238 assert(!FT->getParamType(i)->isVoidTy() &&
240 ArgumentList.push_back(new Argument(FT->getParamType(i)));
Verifier.cpp     [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/clang/lib/CodeGen/
CGCall.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 369 if (NumArgs >= 3 && FTy->getParamType(2) != PPInt8Ty)
371 if (NumArgs >= 2 && FTy->getParamType(1) != PPInt8Ty)
373 if (NumArgs >= 1 && !FTy->getParamType(0)->isIntegerTy(32))
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp     [all...]
  /external/llvm/lib/Target/R600/
SIISelLowering.cpp 172 Type *ParamType = FType->getParamType(Arg.OrigArgIndex);
245 Type *ParamType = FType->getParamType(Arg.OrigArgIndex);
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 418 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 407 milliseconds

1 2