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

123

/external/llvm/lib/Target/PowerPC/
H A DPPCCCState.h33 PPCCCState(CallingConv::ID CC, bool isVarArg, MachineFunction &MF, argument
35 : CCState(CC, isVarArg, MF, locs, C) {}
/external/doclava/src/com/google/doclava/
H A DParameterInfo.java27 public ParameterInfo(String name, String typeName, TypeInfo type, boolean isVarArg, argument
32 mIsVarArg = isVarArg;
62 boolean isVarArg() { method in class:ParameterInfo
H A DConverter.java281 private static ParameterInfo convertParameter(Parameter p, SourcePosition pos, boolean isVarArg) { argument
284 new ParameterInfo(p.name(), p.typeName(), Converter.obtainType(p.type()), isVarArg,
295 boolean isVarArg = (m.isVarArgs() && i == len - 1);
296 q[i] = Converter.convertParameter(p[i], pos, isVarArg);
/external/llvm/lib/Target/Mips/
H A DMipsCCState.h67 MipsCCState(CallingConv::ID CC, bool isVarArg, MachineFunction &MF, argument
70 : CCState(CC, isVarArg, MF, locs, C), SpecialCallingConv(SpecialCC) {}
/external/llvm/lib/Target/SystemZ/
H A DSystemZCallingConv.h41 SystemZCCState(CallingConv::ID CC, bool isVarArg, MachineFunction &MF, argument
43 : CCState(CC, isVarArg, MF, locs, C) {}
/external/swiftshader/third_party/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/CodeGen/
H A DCallingConvLower.cpp28 CCState::CCState(CallingConv::ID CC, bool isVarArg, MachineFunction &mf, argument
30 : CallingConv(CC), IsVarArg(isVarArg), MF(mf),
/external/swiftshader/third_party/LLVM/include/llvm/
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/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DThumb1FrameLowering.cpp339 bool isVarArg = AFI->getVarArgsRegSaveSize() > 0; local
349 if (isVarArg)
H A DARMFrameLowering.cpp616 bool isVarArg, bool NoGap,
637 if (Reg == ARM::LR && !isTailCall && !isVarArg && STI.hasV5TOps()) {
722 bool isVarArg = AFI->getVarArgsRegSaveSize() > 0; local
727 emitPopInst(MBB, MI, CSI, FltOpc, 0, isVarArg, true, &isARMArea3Register);
728 emitPopInst(MBB, MI, CSI, PopOpc, LdrOpc, isVarArg, false,
730 emitPopInst(MBB, MI, CSI, PopOpc, LdrOpc, isVarArg, false,
612 emitPopInst(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, const std::vector<CalleeSavedInfo> &CSI, unsigned LdmOpc, unsigned LdrOpc, bool isVarArg, bool NoGap, bool(*Func)(unsigned, bool)) const argument
/external/swiftshader/third_party/LLVM/lib/Target/PTX/
H A DPTXISelLowering.cpp193 bool isVarArg,
198 if (isVarArg) llvm_unreachable("PTX does not support varargs");
260 bool isVarArg,
265 if (isVarArg) llvm_unreachable("PTX does not support varargs");
346 CallingConv::ID CallConv, bool isVarArg,
191 LowerFormalArguments(SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::InputArg> &Ins, DebugLoc dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
258 LowerReturn(SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::OutputArg> &Outs, const SmallVectorImpl<SDValue> &OutVals, DebugLoc dl, SelectionDAG &DAG) const argument
345 LowerCall(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, DebugLoc dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
/external/swiftshader/third_party/LLVM/lib/Target/XCore/
H A DXCoreFrameLowering.cpp350 bool isVarArg = MF.getFunction()->isVarArg(); local
352 if (! isVarArg) {
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DFunction.cpp142 bool Function::isVarArg() const { function in class:Function
143 return getFunctionType()->isVarArg();
H A DType.cpp330 ArrayRef<Type*> Params, bool isVarArg) {
337 if (isVarArg)
347 new (FT) FunctionType(ReturnType, Params, isVarArg);
354 FunctionType *FunctionType::get(Type *Result, bool isVarArg) { argument
355 return get(Result, ArrayRef<Type *>(), isVarArg);
329 get(Type *ReturnType, ArrayRef<Type*> Params, bool isVarArg) argument
/external/llvm/include/llvm/IR/
H A DDerivedTypes.h107 ArrayRef<Type*> Params, bool isVarArg);
110 static FunctionType *get(Type *Result, bool isVarArg);
118 bool isVarArg() const { return getSubclassData()!=0; } function in class:llvm::FunctionType
144 return cast<FunctionType>(this)->isVarArg();
/external/llvm/lib/Target/ARM/
H A DThumb1FrameLowering.cpp619 bool isVarArg = AFI->getArgRegsSaveSize() > 0; local
630 if (isVarArg)
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DCallingConvLower.h172 CCState(CallingConv::ID CC, bool isVarArg, MachineFunction &MF,
184 bool isVarArg() const { return IsVarArg; } function in class:llvm::CCState
/external/swiftshader/third_party/LLVM/lib/Target/Blackfin/
H A DBlackfinISelLowering.cpp165 CallingConv::ID CallConv, bool isVarArg,
176 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
225 CallingConv::ID CallConv, bool isVarArg,
234 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
283 CallingConv::ID CallConv, bool isVarArg,
295 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
383 CCState RVInfo(CallConv, isVarArg, DAG.getMachineFunction(),
164 LowerFormalArguments(SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::InputArg> &Ins, DebugLoc dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
224 LowerReturn(SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::OutputArg> &Outs, const SmallVectorImpl<SDValue> &OutVals, DebugLoc dl, SelectionDAG &DAG) const argument
282 LowerCall(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, DebugLoc dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
H A DDerivedTypes.h111 ArrayRef<Type*> Params, bool isVarArg);
114 static FunctionType *get(Type *Result, bool isVarArg);
122 bool isVarArg() const { return getSubclassData()!=0; } function in class:llvm::FunctionType
148 return cast<FunctionType>(this)->isVarArg();
/external/llvm/include/llvm/CodeGen/
H A DCallingConvLower.h263 CCState(CallingConv::ID CC, bool isVarArg, MachineFunction &MF,
273 bool isVarArg() const { return IsVarArg; } function in class:llvm::CCState
/external/llvm/lib/IR/
H A DType.cpp292 ArrayRef<Type*> Params, bool isVarArg) {
294 FunctionTypeKeyInfo::KeyTy Key(ReturnType, Params, isVarArg);
302 new (FT) FunctionType(ReturnType, Params, isVarArg);
311 FunctionType *FunctionType::get(Type *Result, bool isVarArg) { argument
312 return get(Result, None, isVarArg);
291 get(Type *ReturnType, ArrayRef<Type*> Params, bool isVarArg) argument
H A DFunction.cpp238 bool Function::isVarArg() const { function in class:Function
239 return getFunctionType()->isVarArg();
520 if (FT->isVarArg())
1062 Intrinsic::matchIntrinsicVarArg(bool isVarArg, argument
1066 return isVarArg;
1076 return !isVarArg;
1101 if (Intrinsic::matchIntrinsicVarArg(FTy->isVarArg(), TableRef))
/external/swiftshader/third_party/LLVM/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp237 bool isVarArg,
250 return LowerCCCArguments(Chain, CallConv, isVarArg, Ins, dl, DAG, InVals);
256 CallingConv::ID CallConv, bool isVarArg,
271 return LowerCCCCallTo(Chain, Callee, CallConv, isVarArg, isTailCall,
283 bool isVarArg,
297 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
301 if (isVarArg)
374 CallingConv::ID CallConv, bool isVarArg,
390 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
502 return LowerCallResult(Chain, InFlag, CallConv, isVarArg, In
235 LowerFormalArguments(SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::InputArg> &Ins, DebugLoc dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
255 LowerCall(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, DebugLoc dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
281 LowerCCCArguments(SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::InputArg> &Ins, DebugLoc dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
373 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, DebugLoc dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
510 LowerCallResult(SDValue Chain, SDValue InFlag, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::InputArg> &Ins, DebugLoc dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
554 LowerReturn(SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::OutputArg> &Outs, const SmallVectorImpl<SDValue> &OutVals, DebugLoc dl, SelectionDAG &DAG) const argument
[all...]
/external/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp283 if (State.isVarArg()) {
362 SDValue Chain, CallingConv::ID CallConv, bool isVarArg,
371 return LowerCCCArguments(Chain, CallConv, isVarArg, Ins, dl, DAG, InVals);
391 bool isVarArg = CLI.IsVarArg; local
401 return LowerCCCCallTo(Chain, Callee, CallConv, isVarArg, isTailCall,
412 SDValue Chain, CallingConv::ID CallConv, bool isVarArg,
422 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs,
427 if (isVarArg) {
506 bool isVarArg,
519 CCState CCInfo(CallConv, isVarArg, DA
361 LowerFormalArguments( SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
411 LowerCCCArguments( SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
505 LowerReturn(SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::OutputArg> &Outs, const SmallVectorImpl<SDValue> &OutVals, const SDLoc &dl, SelectionDAG &DAG) const argument
557 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, const SDLoc &dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
691 LowerCallResult( SDValue Chain, SDValue InFlag, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/Alpha/
H A DAlphaISelLowering.cpp230 CallingConv::ID CallConv, bool isVarArg,
242 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
340 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
349 CallingConv::ID CallConv, bool isVarArg,
356 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
391 CallingConv::ID CallConv, bool isVarArg,
446 if (isVarArg) {
477 CallingConv::ID CallConv, bool isVarArg,
229 LowerCall(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, DebugLoc dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
348 LowerCallResult(SDValue Chain, SDValue InFlag, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::InputArg> &Ins, DebugLoc dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
390 LowerFormalArguments(SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::InputArg> &Ins, DebugLoc dl, SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const argument
476 LowerReturn(SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::OutputArg> &Outs, const SmallVectorImpl<SDValue> &OutVals, DebugLoc dl, SelectionDAG &DAG) const argument

Completed in 1103 milliseconds

123