Searched refs:CVT (Results 1 - 14 of 14) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeRecordHelpers.cpp18 template <typename RecordT> static ClassOptions getUdtOptions(CVType CVT) { argument
20 if (auto EC = TypeDeserializer::deserializeAs<RecordT>(CVT, Record)) {
27 bool llvm::codeview::isUdtForwardRef(CVType CVT) { argument
29 switch (CVT.kind()) {
33 UdtOptions = getUdtOptions<ClassRecord>(std::move(CVT));
36 UdtOptions = getUdtOptions<EnumRecord>(std::move(CVT));
39 UdtOptions = getUdtOptions<UnionRecord>(std::move(CVT));
47 TypeIndex llvm::codeview::getModifiedType(const CVType &CVT) { argument
48 assert(CVT.kind() == LF_MODIFIER);
50 discoverTypeIndices(CVT, Ref
[all...]
H A DSimpleTypeSerializer.cpp44 CVType CVT(Prefix, sizeof(RecordPrefix));
46 cantFail(Mapping.visitTypeBegin(CVT));
47 cantFail(Mapping.visitKnownRecord(CVT, Record));
48 cantFail(Mapping.visitTypeEnd(CVT));
53 Prefix->RecordKind = CVT.kind();
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecordHelpers.h20 bool isUdtForwardRef(CVType CVT);
24 TypeIndex getModifiedType(const CVType &CVT);
H A DTypeDeserializer.h42 template <typename T> static Error deserializeAs(CVType &CVT, T &Record) { argument
43 Record.Kind = static_cast<TypeRecordKind>(CVT.kind());
44 MappingInfo I(CVT.content());
45 if (auto EC = I.Mapping.visitTypeBegin(CVT))
47 if (auto EC = I.Mapping.visitKnownRecord(CVT, Record))
49 if (auto EC = I.Mapping.visitTypeEnd(CVT))
61 CVType CVT(Data);
62 if (auto EC = deserializeAs<T>(CVT, Record))
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeEnumTypes.cpp29 CVType CVT = Types.getType(*TI); local
30 TypeLeafKind K = CVT.kind();
33 if (!isUdtForwardRef(CVT))
36 TypeIndex ModifiedTI = getModifiedType(CVT);
H A DSymbolCache.cpp119 codeview::CVType CVT) {
121 if (auto EC = TypeDeserializer::deserializeAs<ModifierRecord>(CVT, Record)) {
170 codeview::CVType CVT = Types.getType(Index); local
172 if (isUdtForwardRef(CVT)) {
191 switch (CVT.kind()) {
193 Id = createSymbolForType<NativeTypeEnum, EnumRecord>(Index, std::move(CVT));
197 std::move(CVT));
202 Id = createSymbolForType<NativeTypeUDT, ClassRecord>(Index, std::move(CVT));
205 Id = createSymbolForType<NativeTypeUDT, UnionRecord>(Index, std::move(CVT));
209 std::move(CVT));
118 createSymbolForModifiedType(codeview::TypeIndex ModifierTI, codeview::CVType CVT) argument
[all...]
H A DTpiStream.cpp195 CVType CVT = Types->getType(TI); local
196 if (CVT.kind() != F.kind())
199 Expected<TagRecordHash> FullTRH = hashTagRecord(CVT);
H A DNativeTypeFunctionSig.cpp103 CVType CVT = Tpi.typeCollection().getType(ArgListTI); local
105 cantFail(TypeDeserializer::deserializeAs<ArgListRecord>(CVT, ArgList));
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DSymbolCache.h93 SymIndexId createSymbolForType(codeview::TypeIndex TI, codeview::CVType CVT, argument
97 codeview::TypeDeserializer::deserializeAs<CVRecordT>(CVT, Record)) {
107 codeview::CVType CVT);
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelMatcher.cpp410 if (const CheckValueTypeMatcher *CVT = dyn_cast<CheckValueTypeMatcher>(M))
411 return CVT->getTypeName() != getTypeName();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp790 auto CVT = Err(LeafRecord::fromCodeViewRecord(T)); local
791 Result.push_back(CVT);
/freebsd-13-stable/sys/dev/mwl/
H A Dif_mwl.c2417 #define CVT(_dst, _src) do { \ macro
2437 CVT(mi->ch[0].rssi[0], mn->mn_ai.rssi_a);
2438 CVT(mi->ch[1].rssi[0], mn->mn_ai.rssi_b);
2439 CVT(mi->ch[2].rssi[0], mn->mn_ai.rssi_c);
2444 #undef CVT macro
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp9016 EVT CVT = CN->getValueType(0);
9018 assert(CVT.bitsGE(NSVT) && "Illegal build vector element extension");
9019 if (AllowTruncation || (CVT == NSVT))
9040 EVT CVT = CN->getValueType(0);
9042 assert(CVT.bitsGE(NSVT) && "Illegal build vector element extension");
9043 if (AllowTruncation || (CVT == NSVT))
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp8739 MVT CVT = MVT::getIntegerVT(SplatBitSize);
8747 DAG.getVTList(MVT::getVectorVT(CVT, Repeat), MVT::Other);
8752 X86ISD::VBROADCAST_LOAD, dl, Tys, Ops, CVT, MPI, Alignment,
8758 MVT CVT = VT.getScalarType();
8765 MVT::getVectorVT(CVT, NumElm), dl, DAG.getEntryNode(), VCP,
8813 EVT CVT = Ld.getValueType();
8814 assert(!CVT.isVector() && "Must not broadcast a vector type");
8839 return DAG.getMemIntrinsicNode(X86ISD::VBROADCAST_LOAD, dl, Tys, Ops, CVT,
[all...]

Completed in 197 milliseconds