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

  /external/llvm/lib/CodeGen/
CallingConvLower.cpp 10 // This file implements the CCState class, used for lowering and implementing
26 CCState::CCState(CallingConv::ID CC, bool isVarArg, MachineFunction &mf,
42 void CCState::HandleByVal(unsigned ValNo, MVT ValVT,
59 void CCState::MarkAllocated(unsigned Reg) {
67 CCState::AnalyzeFormalArguments(const SmallVectorImpl<ISD::InputArg> &Ins,
86 bool CCState::CheckReturn(const SmallVectorImpl<ISD::OutputArg> &Outs,
100 void CCState::AnalyzeReturn(const SmallVectorImpl<ISD::OutputArg> &Outs,
118 void CCState::AnalyzeCallOperands(const SmallVectorImpl<ISD::OutputArg> &Outs,
136 void CCState::AnalyzeCallOperands(SmallVectorImpl<MVT> &ArgVTs
    [all...]
  /external/llvm/include/llvm/CodeGen/
CallingConvLower.h 10 // This file declares the CCState and CCValAssign classes, used for lowering
25 class CCState;
155 ISD::ArgFlagsTy ArgFlags, CCState &State);
162 ISD::ArgFlagsTy &ArgFlags, CCState &State);
169 /// CCState - This class holds information needed while lowering arguments and
172 class CCState {
240 CCState(CallingConv::ID CC, bool isVarArg, MachineFunction &MF,
  /external/clang/lib/CodeGen/
TargetInfo.cpp 505 /// \brief Similar to llvm::CCState, but for Clang.
506 struct CCState {
507 CCState(unsigned CC) : CC(CC), FreeRegs(0) {}
537 ABIArgInfo getIndirectResult(QualType Ty, bool ByVal, CCState &State) const;
539 ABIArgInfo getIndirectReturnResult(CCState &State) const;
545 ABIArgInfo classifyReturnType(QualType RetTy, CCState &State) const;
546 ABIArgInfo classifyArgumentType(QualType RetTy, CCState &State) const;
547 bool shouldUseInReg(QualType Ty, CCState &State, bool &NeedsPadding) const;
659 ABIArgInfo X86_32ABIInfo::getIndirectReturnResult(CCState &State) const {
669 ABIArgInfo X86_32ABIInfo::classifyReturnType(QualType RetTy, CCState &State) const
    [all...]

Completed in 331 milliseconds