Home
last modified time | relevance | path

Searched refs:IType (Results 1 – 13 of 13) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
DHexagonDepITypes.td13 class IType<bits<6> t> { bits<6> Value = t; }
14 def TypeALU32_2op : IType<0>;
15 def TypeALU32_3op : IType<1>;
16 def TypeALU32_ADDI : IType<2>;
17 def TypeALU64 : IType<3>;
18 def TypeCJ : IType<4>;
19 def TypeCOPROC_VX : IType<5>;
20 def TypeCR : IType<6>;
21 def TypeCVI_4SLOT_MPY : IType<7>;
22 def TypeCVI_GATHER : IType<8>;
[all …]
DHexagonInstrFormats.td50 string cstr, InstrItinClass itin, IType type>
71 IType Type = type;
190 class HInst<dag outs, dag ins, string asmstr, InstrItinClass itin, IType type> :
DHexagonInstrFormatsV4.td34 IType Type = TypeDUPLEX; // uses slot 0,1
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DRepeatedFieldBuilder.java69 IType extends MessageOrBuilder>
84 private List<SingleFieldBuilder<MType, BType, IType>> builders;
108 private MessageExternalList<MType, BType, IType> externalMessageList;
114 private BuilderExternalList<MType, BType, IType> externalBuilderList;
121 private MessageOrBuilderExternalList<MType, BType, IType>
167 new ArrayList<SingleFieldBuilder<MType, BType, IType>>( in ensureBuilders()
223 SingleFieldBuilder<MType, BType, IType> builder = builders.get(index); in getMessage()
245 SingleFieldBuilder<MType, BType, IType> builder = builders.get(index); in getBuilder()
248 builder = new SingleFieldBuilder<MType, BType, IType>( in getBuilder()
263 public IType getMessageOrBuilder(int index) { in getMessageOrBuilder()
[all …]
DSingleFieldBuilder.java62 IType extends MessageOrBuilder>
156 public IType getMessageOrBuilder() { in getMessageOrBuilder()
158 return (IType) builder; in getMessageOrBuilder()
160 return (IType) message; in getMessageOrBuilder()
170 public SingleFieldBuilder<MType, BType, IType> setMessage( in setMessage()
190 public SingleFieldBuilder<MType, BType, IType> mergeFrom( in mergeFrom()
207 public SingleFieldBuilder<MType, BType, IType> clear() { in clear()
/external/llvm/lib/Target/Hexagon/
DHexagonInstrFormatsV60.td20 def TypeCVI_VA : IType<13>;
21 def TypeCVI_VA_DV : IType<14>;
22 def TypeCVI_VX : IType<15>;
23 def TypeCVI_VX_DV : IType<16>;
24 def TypeCVI_VP : IType<17>;
25 def TypeCVI_VP_VS : IType<18>;
26 def TypeCVI_VS : IType<19>;
27 def TypeCVI_VINLANESAT : IType<20>;
28 def TypeCVI_VM_LD : IType<21>;
29 def TypeCVI_VM_TMP_LD : IType<22>;
[all …]
DHexagonInstrFormatsV4.td20 def TypeMEMOP : IType<9>;
21 def TypeNV : IType<10>;
22 def TypeDUPLEX : IType<11>;
23 def TypeCOMPOUND : IType<12>;
24 def TypePREFIX : IType<30>;
46 IType Type = TypeDUPLEX; // uses slot 0,1
DHexagonInstrFormats.td16 class IType<bits<5> t> {
19 def TypePSEUDO : IType<0>;
20 def TypeALU32 : IType<1>;
21 def TypeCR : IType<2>;
22 def TypeJR : IType<3>;
23 def TypeJ : IType<4>;
24 def TypeLD : IType<5>;
25 def TypeST : IType<6>;
26 def TypeSYSTEM : IType<7>;
27 def TypeXTYPE : IType<8>;
[all …]
DHexagonInstrInfoV60.td35 IType type = TypeCVI_VM_ST>
45 IType type = TypeCVI_VM_LD>
52 IType type = TypeCVI_VM_ST>
1031 IType type = TypeCVI_VA_DV>
1139 let Type = !cast<IType>("Type"#itin);
1308 let Type = !cast<IType>("Type"#itin);
1704 let Type = !cast<IType>("Type"#itin);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCCodeEmitter.cpp631 unsigned IType = HexagonMCInstrInfo::getType(MCII, MI); in getExprOpValue() local
673 bool BranchOrCR = MCID.isBranch() || IType == HexagonII::TypeCR; in getExprOpValue()
/external/llvm/lib/Transforms/Vectorize/
DBBVectorize.cpp2844 Type *IType = I->getType(); in replaceOutputsOfPair() local
2847 VectorType *VType = getVecTypeForPair(IType, JType); in replaceOutputsOfPair()
2850 unsigned numElemI = getNumScalarElements(IType); in replaceOutputsOfPair()
2853 if (IType->isVectorTy()) { in replaceOutputsOfPair()
/external/clang/lib/Sema/
DSemaInit.cpp1537 QualType IType = IList->getInit(Index)->getType(); in CheckVectorType() local
1538 if (!IType->isVectorType()) { in CheckVectorType()
1544 const VectorType *IVT = IType->getAs<VectorType>(); in CheckVectorType()
1547 if (IType->isExtVectorType()) in CheckVectorType()
/external/v8/src/compiler/s390/
Dcode-generator-s390.cc454 template <int numOfOperand, class RType, class MType, class IType>
455 static inline int AssembleOp(Instruction* instr, RType r, MType m, IType i) { in AssembleOp()