Searched defs:isVarArg (Results 1 - 25 of 30) sorted by relevance

12

/external/doclava/src/com/google/doclava/
H A DParameterInfo.java26 public ParameterInfo(String name, String typeName, TypeInfo type, boolean isVarArg, argument
31 mIsVarArg = isVarArg;
59 boolean isVarArg() { method in class:ParameterInfo
H A DConverter.java224 private static ParameterInfo convertParameter(Parameter p, SourcePosition pos, boolean isVarArg) { argument
227 new ParameterInfo(p.name(), p.typeName(), Converter.obtainType(p.type()), isVarArg,
237 boolean isVarArg = (m.isVarArgs() && i == len - 1);
238 q[i] = Converter.convertParameter(p[i], pos, isVarArg);
/external/llvm/lib/CodeGen/
H A DCallingConvLower.cpp26 CCState::CCState(CallingConv::ID CC, bool isVarArg, MachineFunction &mf, argument
29 : CallingConv(CC), IsVarArg(isVarArg), MF(mf), TM(tm),
/external/llvm/lib/Target/Hexagon/
H A DHexagonCallingConvLower.cpp26 Hexagon_CCState::Hexagon_CCState(CallingConv::ID CC, bool isVarArg, argument
30 : CallingConv(CC), IsVarArg(isVarArg), TM(tm), Locs(locs), Context(c) {
H A DHexagonCallingConvLower.h56 Hexagon_CCState(CallingConv::ID CC, bool isVarArg, const TargetMachine &TM,
66 bool isVarArg() const { return IsVarArg; } function in class:llvm::Hexagon_CCState
H A DHexagonISelLowering.cpp53 HexagonCCState(CallingConv::ID CC, bool isVarArg, MachineFunction &MF, argument
56 : CCState(CC, isVarArg, MF, TM, locs, C),
316 CallingConv::ID CallConv, bool isVarArg,
325 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
364 CallingConv::ID CallConv, bool isVarArg,
375 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
406 bool isVarArg = CLI.IsVarArg; local
421 if (CalleeFn->isVarArg() &&
430 HexagonCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
444 isVarArg, IsStructRe
315 LowerReturn(SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::OutputArg> &Outs, const SmallVectorImpl<SDValue> &OutVals, SDLoc dl, SelectionDAG &DAG) const argument
363 LowerCallResult(SDValue Chain, SDValue InFlag, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::InputArg> &Ins, SDLoc dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals, const SmallVectorImpl<SDValue> &OutVals, SDValue Callee) const argument
828 LowerFormalArguments(SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::InputArg> &Ins, SDLoc dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
1665 IsEligibleForTailCallOptimization( SDValue Callee, CallingConv::ID CalleeCC, bool isVarArg, bool isCalleeStructRet, bool isCallerStructRet, const SmallVectorImpl<ISD::OutputArg> &Outs, const SmallVectorImpl<SDValue> &OutVals, const SmallVectorImpl<ISD::InputArg> &Ins, SelectionDAG& DAG) const argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDGPUISelLowering.cpp51 bool isVarArg,
67 bool isVarArg,
48 LowerFormalArguments( SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::InputArg> &Ins, DebugLoc DL, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
64 LowerReturn( SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::OutputArg> &Outs, const SmallVectorImpl<SDValue> &OutVals, DebugLoc DL, SelectionDAG &DAG) const argument
/external/llvm/include/llvm/IR/
H A DDerivedTypes.h106 ArrayRef<Type*> Params, bool isVarArg);
110 static FunctionType *get(Type *Result, bool isVarArg);
120 bool isVarArg() const { return getSubclassData()!=0; } function in class:llvm::FunctionType
/external/llvm/lib/Target/ARM/
H A DThumb1FrameLowering.cpp461 bool isVarArg = AFI->getArgRegsSaveSize() > 0; local
471 if (isVarArg)
H A DARMFrameLowering.cpp875 bool isVarArg, bool NoGap,
901 if (Reg == ARM::LR && !isTailCall && !isVarArg && !isInterrupt &&
1239 bool isVarArg = AFI->getArgRegsSaveSize() > 0; local
1250 emitPopInst(MBB, MI, CSI, FltOpc, 0, isVarArg, true, &isARMArea3Register,
1252 emitPopInst(MBB, MI, CSI, PopOpc, LdrOpc, isVarArg, false,
1254 emitPopInst(MBB, MI, CSI, PopOpc, LdrOpc, isVarArg, false,
1738 if (MF.getFunction()->isVarArg())
871 emitPopInst(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, const std::vector<CalleeSavedInfo> &CSI, unsigned LdmOpc, unsigned LdrOpc, bool isVarArg, bool NoGap, bool(*Func)(unsigned, bool), unsigned NumAlignedDPRCS2Regs) const argument
H A DARMFastISel.cpp198 bool isVarArg);
206 bool isVarArg);
210 unsigned &NumBytes, bool isVarArg);
1838 bool isVarArg) {
1843 if (Subtarget->hasVFP2() && !isVarArg) {
1854 TM.Options.FloatABIType == FloatABI::Hard && !isVarArg)
1861 if (!isVarArg)
1884 bool isVarArg) {
1886 CCState CCInfo(CC, isVarArg, *FuncInfo.MF, TM, ArgLocs, *Context);
1888 CCAssignFnForCall(CC, false, isVarArg));
1836 CCAssignFnForCall(CallingConv::ID CC, bool Return, bool isVarArg) argument
1877 ProcessCallArgs(SmallVectorImpl<Value*> &Args, SmallVectorImpl<unsigned> &ArgRegs, SmallVectorImpl<MVT> &ArgVTs, SmallVectorImpl<ISD::ArgFlagsTy> &ArgFlags, SmallVectorImpl<unsigned> &RegArgs, CallingConv::ID CC, unsigned &NumBytes, bool isVarArg) argument
2017 FinishCall(MVT RetVT, SmallVectorImpl<unsigned> &UsedRegs, const Instruction *I, CallingConv::ID CC, unsigned &NumBytes, bool isVarArg) argument
2291 bool isVarArg = FTy->isVarArg(); local
[all...]
/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDGPUISelLowering.cpp51 bool isVarArg,
67 bool isVarArg,
48 LowerFormalArguments( SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::InputArg> &Ins, DebugLoc DL, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
64 LowerReturn( SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::OutputArg> &Outs, const SmallVectorImpl<SDValue> &OutVals, DebugLoc DL, SelectionDAG &DAG) const argument
/external/llvm/lib/IR/
H A DFunction.cpp198 bool Function::isVarArg() const { function in class:Function
199 return getFunctionType()->isVarArg();
H A DLLVMContextImpl.h148 bool isVarArg; member in struct:llvm::FunctionTypeKeyInfo::KeyTy
150 ReturnType(R), Params(P), isVarArg(V) {}
154 isVarArg(FT->isVarArg()) {}
158 if (isVarArg != that.isVarArg)
178 Key.isVarArg);
H A DType.cpp177 return cast<FunctionType>(this)->isVarArg();
356 ArrayRef<Type*> Params, bool isVarArg) {
358 FunctionTypeKeyInfo::KeyTy Key(ReturnType, Params, isVarArg);
367 new (FT) FunctionType(ReturnType, Params, isVarArg);
376 FunctionType *FunctionType::get(Type *Result, bool isVarArg) { argument
377 return get(Result, None, isVarArg);
355 get(Type *ReturnType, ArrayRef<Type*> Params, bool isVarArg) argument
H A DVerifier.cpp328 bool VerifyIntrinsicIsVarArg(bool isVarArg,
1069 Assert1(!F.isVarArg(),
1536 if (FTy->isVarArg())
1567 if (FTy->isVarArg()) {
1660 Assert1(CallerTy->isVarArg() == CalleeTy->isVarArg(),
2388 Verifier::VerifyIntrinsicIsVarArg(bool isVarArg, argument
2394 return isVarArg ? true : false;
2404 return isVarArg ? false : true;
2419 bool IsVarArg = IFTy->isVarArg();
[all...]
/external/llvm/include/llvm/CodeGen/
H A DCallingConvLower.h240 CCState(CallingConv::ID CC, bool isVarArg, MachineFunction &MF,
252 bool isVarArg() const { return IsVarArg; } function in class:llvm::CCState
/external/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp289 if (State.isVarArg()) {
370 bool isVarArg,
383 return LowerCCCArguments(Chain, CallConv, isVarArg, Ins, dl, DAG, InVals);
403 bool isVarArg = CLI.IsVarArg; local
413 return LowerCCCCallTo(Chain, Callee, CallConv, isVarArg, isTailCall,
426 bool isVarArg,
440 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
445 if (isVarArg) {
523 CallingConv::ID CallConv, bool isVarArg,
536 CCState CCInfo(CallConv, isVarArg, DA
368 LowerFormalArguments(SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::InputArg> &Ins, SDLoc dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
424 LowerCCCArguments(SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::InputArg> &Ins, SDLoc dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
522 LowerReturn(SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::OutputArg> &Outs, const SmallVectorImpl<SDValue> &OutVals, SDLoc dl, SelectionDAG &DAG) const argument
575 LowerCCCCallTo(SDValue Chain, SDValue Callee, CallingConv::ID CallConv, bool isVarArg, bool isTailCall, const SmallVectorImpl<ISD::OutputArg> &Outs, const SmallVectorImpl<SDValue> &OutVals, const SmallVectorImpl<ISD::InputArg> &Ins, SDLoc dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
714 LowerCallResult(SDValue Chain, SDValue InFlag, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::InputArg> &Ins, SDLoc dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
[all...]
/external/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp211 /// @param isVarArg function uses vararg arguments
220 bool isVarArg) {
222 llvm::FunctionType::get(retType, theArgTypes, isVarArg);
213 createFunction(llvm::Module &module, llvm::Type *retType, const ArgTypes &theArgTypes, const ArgNames &theArgNames, const std::string &functName, llvm::GlobalValue::LinkageTypes linkage, bool declarationOnly, bool isVarArg) argument
/external/llvm/lib/Target/R600/
H A DR600ISelLowering.cpp1661 bool isVarArg,
1666 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1658 LowerFormalArguments( SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::InputArg> &Ins, SDLoc DL, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
H A DSIISelLowering.cpp307 bool isVarArg,
365 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
304 LowerFormalArguments( SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::InputArg> &Ins, SDLoc DL, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
H A DAMDGPUISelLowering.cpp491 bool isVarArg,
488 LowerReturn( SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::OutputArg> &Outs, const SmallVectorImpl<SDValue> &OutVals, SDLoc DL, SelectionDAG &DAG) const argument
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp1043 bool isVarArg = CLI.IsVarArg; local
1055 return LowerCCCCallTo(Chain, Callee, CallConv, isVarArg, isTailCall,
1111 CallingConv::ID CallConv, bool isVarArg,
1121 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1132 CCState RetCCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1250 bool isVarArg,
1262 return LowerCCCArguments(Chain, CallConv, isVarArg,
1274 bool isVarArg,
1287 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1296 if (!isVarArg)
1110 LowerCCCCallTo(SDValue Chain, SDValue Callee, CallingConv::ID CallConv, bool isVarArg, bool isTailCall, const SmallVectorImpl<ISD::OutputArg> &Outs, const SmallVectorImpl<SDValue> &OutVals, const SmallVectorImpl<ISD::InputArg> &Ins, SDLoc dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
1248 LowerFormalArguments(SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::InputArg> &Ins, SDLoc dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
1272 LowerCCCArguments(SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::InputArg> &Ins, SDLoc dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
1441 CanLowerReturn(CallingConv::ID CallConv, MachineFunction &MF, bool isVarArg, const SmallVectorImpl<ISD::OutputArg> &Outs, LLVMContext &Context) const argument
1455 LowerReturn(SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::OutputArg> &Outs, const SmallVectorImpl<SDValue> &OutVals, SDLoc dl, SelectionDAG &DAG) const argument
[all...]
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp1627 SDValue Chain, CallingConv::ID CallConv, bool isVarArg,
1922 // if (F.isVarArg()) {
1935 bool isVarArg,
1626 LowerFormalArguments( SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::InputArg> &Ins, SDLoc dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
1934 LowerReturn(SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::OutputArg> &Outs, const SmallVectorImpl<SDValue> &OutVals, SDLoc dl, SelectionDAG &DAG) const argument
/external/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp341 bool isVarArg,
352 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
496 if (isVarArg) {
694 bool isVarArg = CLI.IsVarArg; local
701 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
937 CCState RVInfo(CallConv, isVarArg, DAG.getMachineFunction(),
339 LowerFormalArguments_32(SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::InputArg> &Ins, SDLoc dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument

Completed in 1271 milliseconds

12