HomeSort by relevance Sort by last modified time
    Searched defs:NumFixedArgs (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/CodeGen/
FastISel.h 69 unsigned NumFixedArgs;
90 IsTailCall(false), NumFixedArgs(-1), CallConv(CallingConv::C),
109 NumFixedArgs = FuncTy->getNumParams();
133 NumFixedArgs = (FixedArgs == ~0U) ? FuncTy->getNumParams() : FixedArgs;
147 NumFixedArgs = (FixedArgs == ~0U) ? Args.size() : FixedArgs;
163 NumFixedArgs = (FixedArgs == ~0U) ? Args.size() : FixedArgs;
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyISelLowering.cpp 361 unsigned NumFixedArgs = CLI.NumFixedArgs;
373 make_range(OutVals.begin() + NumFixedArgs, OutVals.end())) {
402 make_range(OutVals.begin() + NumFixedArgs, OutVals.end())) {
421 // Add all fixed arguments. Note that for non-varargs calls, NumFixedArgs
424 IsVarArg ? OutVals.begin() + NumFixedArgs : OutVals.end());

Completed in 60 milliseconds