Home
last modified time | relevance | path

Searched refs:CC_C (Results 1 – 16 of 16) sorted by relevance

/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/
DItaniumCXXABI.cpp62 return CC_C; in getDefaultMethodCallConv()
DMicrosoftCXXABI.cpp55 return CC_C; in getDefaultMethodCallConv()
DTypePrinter.cpp638 case CC_C: in printFunctionProtoAfter()
DMicrosoftMangle.cpp1435 case CC_C: Out << 'A'; break; in mangleCallingConvention()
DType.cpp1569 case CC_C: return "cdecl"; in getNameForCallConv()
DASTContext.cpp7821 FunctionType::ExtInfo EI(CC_C); in GetBuiltinType()
7991 return (LangOpts.MRTD && !IsVariadic) ? CC_X86StdCall : CC_C; in getDefaultCallingConvention()
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/
DSpecifiers.h210 CC_C, // __attribute__((cdecl)) enumerator
DTargetInfo.h784 return CC_C; in getDefaultCallingConv()
800 case CC_C: in checkCallingConvention()
/freebsd-10-stable/contrib/gcc/config/arm/
Darm-modes.def51 CC_MODE (CC_C);
Darm.md400 [(parallel [(set (reg:CC_C CC_REGNUM)
401 (compare:CC_C (plus:SI (match_dup 1) (match_dup 2))
404 (set (match_dup 3) (plus:SI (ltu:SI (reg:CC_C CC_REGNUM) (const_int 0))
428 [(parallel [(set (reg:CC_C CC_REGNUM)
429 (compare:CC_C (plus:SI (match_dup 1) (match_dup 2))
432 (set (match_dup 3) (plus:SI (ltu:SI (reg:CC_C CC_REGNUM) (const_int 0))
457 [(parallel [(set (reg:CC_C CC_REGNUM)
458 (compare:CC_C (plus:SI (match_dup 1) (match_dup 2))
461 (set (match_dup 3) (plus:SI (ltu:SI (reg:CC_C CC_REGNUM) (const_int 0))
671 [(set (reg:CC_C CC_REGNUM)
[all …]
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Basic/
DTargets.cpp2012 CC == CC_C || in checkCallingConvention()
2018 return MT == CCMT_Member ? CC_X86ThisCall : CC_C; in getDefaultCallingConv()
3281 return (CC == CC_C || in checkCallingConvention()
3287 return CC_C; in getDefaultCallingConv()
3320 return (CC == CC_C || in checkCallingConvention()
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/
DSemaDeclAttr.cpp3892 case AttributeList::AT_CDecl: CC = CC_C; break; in CheckCallingConvAttr()
3898 CC = Context.getTargetInfo().getTriple().isOSWindows() ? CC_C : in CheckCallingConvAttr()
3903 CC_C; in CheckCallingConvAttr()
DSemaLookup.cpp747 EPI.ExtInfo = EPI.ExtInfo.withCallingConv(CC_C); in LookupDirect()
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/
DCGCall.cpp149 return CC_C; in getCallingConventionForDecl()
DTargetInfo.cpp1279 if (fnType->getCallConv() == CC_C) { in isNoProtoCallVariadic()
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/
DType.h2690 ExtInfo() : Bits(CC_C) { }