Searched refs:Types (Results 1 - 25 of 45) sorted by relevance

12

/freebsd-10.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGRecordLayoutBuilder.cpp83 CodeGenTypes &Types; member in class:__anon3247::CGRecordLayoutBuilder
192 CGRecordLayoutBuilder(CodeGenTypes &Types) argument
195 Packed(false), Types(Types) { }
204 const ASTRecordLayout &Layout = Types.getContext().getASTRecordLayout(D);
229 CGBitFieldInfo CGBitFieldInfo::MakeInfo(CodeGenTypes &Types, argument
234 llvm::Type *Ty = Types.ConvertTypeForMem(FD->getType());
236 CharUnits::fromQuantity(Types.getDataLayout().getTypeAllocSize(Ty));
237 uint64_t TypeSizeInBits = Types.getContext().toBits(TypeSizeInBytes);
258 if (Types
[all...]
H A DCGCUDANV.cpp48 CodeGen::CodeGenTypes &Types = CGM.getTypes(); local
51 IntTy = Types.ConvertType(Ctx.IntTy);
52 SizeTy = Types.ConvertType(Ctx.getSizeType());
54 CharPtrTy = llvm::PointerType::getUnqual(Types.ConvertType(Ctx.CharTy));
55 VoidPtrTy = cast<llvm::PointerType>(Types.ConvertType(Ctx.VoidPtrTy));
H A DCGRecordLayout.h98 static CGBitFieldInfo MakeInfo(class CodeGenTypes &Types,
H A DCGExprConstant.cpp615 SmallVector<llvm::Type*, 2> Types; local
617 Types.push_back(C->getType());
628 Types.push_back(Ty);
632 llvm::StructType::get(C->getType()->getContext(), Types, false);
762 std::vector<llvm::Type*> Types; local
763 Types.reserve(NumInitableElts + NumElements);
765 Types.push_back(Elts[i]->getType());
767 Types, true);
1192 std::vector<llvm::Type*> Types; local
1193 Types
[all...]
H A DCGObjCMac.cpp197 CodeGen::CodeGenTypes &Types = CGM.getTypes(); local
199 llvm::Type *T = Types.ConvertType(Ctx.getObjCProtoType());
235 CodeGen::CodeGenTypes &Types = CGM.getTypes(); local
246 Types.GetFunctionType(Types.arrangeLLVMFunctionInfo(IdType, Params,
253 CodeGen::CodeGenTypes &Types = CGM.getTypes(); local
266 Types.GetFunctionType(Types.arrangeLLVMFunctionInfo(Ctx.VoidTy, Params,
273 CodeGen::CodeGenTypes &Types = CGM.getTypes(); local
292 Types
309 CodeGen::CodeGenTypes &Types = CGM.getTypes(); local
330 CodeGen::CodeGenTypes &Types = CGM.getTypes(); local
345 CodeGen::CodeGenTypes &Types = CGM.getTypes(); local
3411 CodeGenTypes &Types = CGM.getTypes(); local
5047 CodeGen::CodeGenTypes &Types = CGM.getTypes(); local
5445 CodeGen::CodeGenTypes &Types = CGM.getTypes(); local
[all...]
H A DTargetInfo.cpp2132 // AMD64-ABI 3.2.3p4: Rule 2. Types of class memory are returned via
5658 return *(TheTargetCodeGenInfo = new DefaultTargetCodeGenInfo(Types));
5661 return *(TheTargetCodeGenInfo = new PNaClTargetCodeGenInfo(Types));
5664 return *(TheTargetCodeGenInfo = new MIPSTargetCodeGenInfo(Types, true));
5668 return *(TheTargetCodeGenInfo = new MIPSTargetCodeGenInfo(Types, false));
5671 return *(TheTargetCodeGenInfo = new AArch64TargetCodeGenInfo(Types));
5687 new NaClARMTargetCodeGenInfo(Types, Kind));
5690 new ARMTargetCodeGenInfo(Types, Kind));
5695 return *(TheTargetCodeGenInfo = new PPC32TargetCodeGenInfo(Types));
5698 return *(TheTargetCodeGenInfo = new PPC64_SVR4_TargetCodeGenInfo(Types));
[all...]
H A DCGObjCGNU.cpp918 CodeGenTypes &Types = CGM.getTypes(); local
920 Types.ConvertType(CGM.getContext().IntTy));
922 Types.ConvertType(CGM.getContext().LongTy));
924 Types.ConvertType(CGM.getContext().getSizeType()));
926 Types.ConvertType(CGM.getContext().getPointerDiffType()));
1068 SmallVectorImpl<TypedSelector> &Types = SelectorTable[Sel]; local
1072 for (SmallVectorImpl<TypedSelector>::iterator i = Types.begin(),
1073 e = Types.end() ; i!=e ; i++) {
1084 Types.push_back(TypedSelector(TypeEncoding, SelValue));
2456 SmallVectorImpl<TypedSelector> &Types local
2632 CodeGenTypes &Types = CGM.getTypes(); local
[all...]
H A DItaniumCXXABI.cpp568 CodeGenTypes &Types = CGM.getTypes(); local
603 if (Types.isFuncTypeConvertible(FPT)) {
605 Ty = Types.GetFunctionType(Types.arrangeCXXMethodDeclaration(MD));
/freebsd-10.3-release/lib/clang/libclangdriver/
H A DMakefile20 Types.cpp \
/freebsd-10.3-release/contrib/llvm/lib/Target/R600/
H A DSITypeRewriter.cpp104 SmallVector <Type*, 8> Types; local
112 Types.push_back(i128);
124 Types.push_back(ElementTy);
130 Types.push_back(Arg->getType());
139 NewF = Function::Create(FunctionType::get(F->getReturnType(), Types, false), GlobalValue::ExternalLinkage, Name, Mod);
/freebsd-10.3-release/sys/contrib/dev/acpica/components/utilities/
H A Dutpredef.c210 /* Types that can be returned externally by a predefined name */
354 * ArgumentTypes - Types field for this method
414 * Types - Bitfield of expected data types
425 UINT16 Types)
438 if (Types & 1)
445 Types >>= 1;
423 AcpiUtGetResourceBitWidth( char *Buffer, UINT16 Types) argument
/freebsd-10.3-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DTypeList.h60 Types () function in class:lldb_private::TypeList
/freebsd-10.3-release/contrib/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.h302 SmallVector<EEVT::TypeSet, 1> Types;
329 Types.resize(NumResults);
333 Types.resize(NumResults);
344 unsigned getNumTypes() const { return Types.size(); }
346 return Types[ResNo].getConcrete();
348 const SmallVectorImpl<EEVT::TypeSet> &getExtTypes() const { return Types; }
349 const EEVT::TypeSet &getExtType(unsigned ResNo) const { return Types[ResNo]; }
350 EEVT::TypeSet &getExtType(unsigned ResNo) { return Types[ResNo]; }
351 void setType(unsigned ResNo, const EEVT::TypeSet &T) { Types[ResNo] = T; }
354 return Types[ResN
[all...]
H A DCodeGenDAGPatterns.cpp1130 for (unsigned i = 0, e = Types.size(); i != e; ++i)
1205 New->Types = Types;
1213 for (unsigned i = 0, e = Types.size(); i != e; ++i)
1214 Types[i] = EEVT::TypeSet(); // Reset to unknown type.
1302 for (unsigned i = 0, e = Types.size(); i != e; ++i)
1502 for (unsigned i = 0, e = Types.size(); i != e; ++i)
1510 assert(Types.size() == 1 && "Invalid IntInit");
1513 bool MadeChange = Types[0].EnforceInteger(TP);
1515 if (!Types[
[all...]
/freebsd-10.3-release/sys/contrib/dev/acpica/components/debugger/
H A Ddbexec.c180 Status = AcpiDbConvertToObject (Info->Types[i],
410 ACPI_OBJECT_TYPE *Types,
448 AcpiGbl_DbMethodInfo.Types = Types;
582 LocalInfo.Types = LocalInfo.ArgTypes;
752 AcpiGbl_DbMethodInfo.Types = AcpiGbl_DbMethodInfo.ArgTypes;
407 AcpiDbExecute( char *Name, char **Args, ACPI_OBJECT_TYPE *Types, UINT32 Flags) argument
/freebsd-10.3-release/contrib/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.h46 TypeList Types; member in class:llvm::ValueEnumerator
131 const TypeList &getTypes() const { return Types; }
H A DValueEnumerator.cpp390 Types.push_back(Ty);
392 *TypeID = Types.size();
/freebsd-10.3-release/sys/dev/mpr/
H A Dmpr_ioctl.h212 uint32_t Types[4]; member in struct:mpr_event_query
217 uint32_t Types[4]; member in struct:mpr_event_enable
/freebsd-10.3-release/sys/dev/mps/
H A Dmps_ioctl.h213 uint32_t Types[4]; member in struct:mps_event_query
218 uint32_t Types[4]; member in struct:mps_event_enable
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/DataFormatters/
H A DTypeFormat.cpp189 for (lldb::TypeSP type_sp : types.Types())
/freebsd-10.3-release/sys/contrib/dev/acpica/include/
H A Dacdebug.h334 ACPI_OBJECT_TYPE *Types,
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/AST/
H A DASTContext.cpp744 if (size_reserve > 0) Types.reserve(size_reserve);
803 llvm::errs() << " " << Types.size() << " types total.\n";
812 for (unsigned i = 0, e = Types.size(); i != e; ++i) {
813 Type *T = Types[i];
905 Types.push_back(Ty);
2133 Types.push_back(New);
2161 Types.push_back(New);
2200 Types.push_back(New);
2232 Types.push_back(New);
2272 Types
[all...]
/freebsd-10.3-release/contrib/llvm/tools/clang/utils/TableGen/
H A DNeonEmitter.cpp2744 std::string Types = R->getValueAsString("Types"); local
2747 ParseTypes(R, Types, TypeVec);
2857 std::string Types = R->getValueAsString("Types"); local
2872 ParseTypes(R, Types, TypeVec);
3009 std::string Types = R->getValueAsString("Types"); local
3024 ParseTypes(R, Types, TypeVec);
3149 std::string Types local
3332 std::string Types = R->getValueAsString("Types"); local
[all...]
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DASTContext.h81 mutable SmallVector<Type *, 0> Types; member in class:clang::ASTContext
766 // Builtin Types.
792 // Types for deductions in C++0x [stmt.ranged]'s desugaring. Built on demand.
833 const SmallVectorImpl<Type *>& getTypes() const { return Types; }
2034 type_iterator types_begin() { return Types.begin(); }
2035 type_iterator types_end() { return Types.end(); }
2036 const_type_iterator types_begin() const { return Types.begin(); }
2037 const_type_iterator types_end() const { return Types.end(); }
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Symbol/
H A DClangASTContext.cpp526 #pragma mark Basic Types
1904 #pragma mark Function Types
2011 #pragma mark Array Types
2051 #pragma mark Enumeration Types

Completed in 203 milliseconds

12