HomeSort by: relevance | last modified time | path
    Searched defs:Builtin (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
Builtins.h 1 //===--- Builtins.h - Builtin function header -------------------*- C++ -*-===//
10 /// Defines enum values for all the target-independent builtin
31 GNU_LANG = 0x1, // builtin requires GNU mode.
32 C_LANG = 0x2, // builtin for c only.
33 CXX_LANG = 0x4, // builtin for cplusplus only.
34 OBJC_LANG = 0x8, // builtin for objective-c and objective-c++
35 MS_LANG = 0x10, // builtin requires MS mode.
36 OCLC20_LANG = 0x20, // builtin for OpenCL C 2.0 only.
37 OCLC1X_LANG = 0x40, // builtin for OpenCL C 1.x only.
38 OMP_LANG = 0x80, // builtin requires OpenMP
    [all...]
TargetInfo.h 54 namespace Builtin { struct Info; }
871 virtual ArrayRef<Builtin::Info> getTargetBuiltins() const = 0;
1381 /// Map from the address space field in builtin description strings to the
1387 /// Map from the address space field in builtin description strings to the
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGCall.h 70 Builtin,
102 : KindOrFunctionPointer(SpecialKind::Builtin) {
123 CGCallee result(SpecialKind::Builtin);
156 return KindOrFunctionPointer == SpecialKind::Builtin;
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
SveEmitter.cpp 118 /// string for passing to the BUILTIN() macro in Builtins.def.
199 /// Return the type string for a BUILTIN() macro in Builtins.def.
340 /// Emit all the information needed to map builtin -> LLVM IR intrinsic.
1011 "Expect TypeSpec for overloaded builtin!");
1306 OS << "BUILTIN(__builtin_sve_" << Def->getMangledName() << ", \""
1313 OS << "BUILTIN(__builtin_sve_reinterpret_" << From.Suffix << "_"
1343 std::string Builtin = Def->getMangledName();
1345 OS << "SVEMAP1(" << Builtin << ", " << LLVMName << ", " << FlagString
1348 OS << "SVEMAP2(" << Builtin << ", " << FlagString << "),\n";
  /src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp 471 bool Builtin = (State.getCallingConv() == CallingConv::MSP430_BUILTIN);
472 if (Builtin) {
488 if (Builtin) {
490 "Builtin calling convention requires two arguments");
522 if (Builtin) {
524 "Builtin calling convention requires 64-bit arguments");
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ASTContext.h 141 namespace Builtin {
145 } // namespace Builtin
614 Builtin::Context &BuiltinInfo;
1000 // Builtin Types.
1071 SelectorTable &sels, Builtin::Context &builtins);
1368 // Convenience struct to return information about a builtin vector type.
1379 /// (in case of tuple) for a builtin vector type.
1994 /// Return whether a declaration to a builtin is allowed to be
2096 /// Return the type for the specified builtin.
2099 /// arguments to the builtin that are required to be integer constan
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
Preprocessor.h 84 namespace Builtin {
152 /// Identifiers for builtin macros and other builtins.
246 std::unique_ptr<Builtin::Context> BuiltinInfo;
932 Builtin::Context &getBuiltinInfo() { return *BuiltinInfo; }
1322 /// which implicitly adds the builtin defines etc.
2144 /// Register builtin macros such as __LINE__ with the identifier table.
2173 /// as a builtin macro, handle it and return the next token as 'Tok'.
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 216 bool IsBooleanAlignBuiltin = ID == Builtin::BI__builtin_is_aligned;
330 if (BuiltinID == Builtin::BI__builtin_mul_overflow) {
351 Expr *Builtin = BuiltinCall->getCallee()->IgnoreImpCasts();
397 Builtin =
398 S.ImpCastExprToType(Builtin, BuiltinPtrTy, CK_BuiltinFnToFnPtr).get();
403 BuiltinCall->setCallee(Builtin);
617 case Builtin::BIsprintf:
618 case Builtin::BI__builtin___sprintf_chk: {
619 size_t FormatIndex = BuiltinID == Builtin::BIsprintf ? 1 : 3;
644 if (BuiltinID == Builtin::BI__builtin___sprintf_chk)
    [all...]
TreeTransform.h 2469 /// Build a new builtin offsetof expression.
2829 /// operator call into a use of a builtin operator, performing
3328 /// builtin.
3591 // Build a reference to the __builtin_shufflevector builtin
3592 FunctionDecl *Builtin = cast<FunctionDecl>(Lookup.front());
3594 DeclRefExpr(SemaRef.Context, Builtin, false,
3596 QualType CalleePtrTy = SemaRef.Context.getPointerType(Builtin->getType());
3602 SemaRef.Context, Callee, SubExprs, Builtin->getCallResultType(),
3603 Expr::getValueKindForType(Builtin->getReturnType()), RParenLoc,
14509 // Determine whether this should be a builtin operation
    [all...]
  /src/external/public-domain/sqlite/dist/
sqlite3.c     [all...]

Completed in 129 milliseconds