Home
last modified time | relevance | path

Searched refs:IValueT (Results 1 – 6 of 6) sorted by relevance

/external/swiftshader/third_party/subzero/src/
DIceAssemblerARM32.cpp33 static constexpr IValueT kWordSize = sizeof(WordType);
36 static constexpr IValueT B0 = 1;
37 static constexpr IValueT B1 = 1 << 1;
38 static constexpr IValueT B2 = 1 << 2;
39 static constexpr IValueT B3 = 1 << 3;
40 static constexpr IValueT B4 = 1 << 4;
41 static constexpr IValueT B5 = 1 << 5;
42 static constexpr IValueT B6 = 1 << 6;
43 static constexpr IValueT B7 = 1 << 7;
44 static constexpr IValueT B8 = 1 << 8;
[all …]
DIceAssemblerMIPS32.cpp69 constexpr intptr_t InstWidth = sizeof(IValueT); in padWithNop()
115 IValueT encodeBranchOffset(IOffsetT Offset, IValueT Inst) { in encodeBranchOffset()
125 IValueT getEncodedGPRegNum(const Variable *Var) { in getEncodedGPRegNum()
131 IValueT getEncodedFPRegNum(const Variable *Var) { in getEncodedFPRegNum()
134 IValueT RegEncoding; in getEncodedFPRegNum()
143 bool encodeOperand(const Operand *Opnd, IValueT &Value, in encodeOperand()
163 IValueT encodeRegister(const Operand *OpReg, RegSetWanted WantedRegSet, in encodeRegister()
165 IValueT Reg = 0; in encodeRegister()
172 IValueT encodeGPRegister(const Operand *OpReg, const char *RegName, in encodeGPRegister()
177 IValueT encodeFPRegister(const Operand *OpReg, const char *RegName, in encodeFPRegister()
[all …]
DIceAssemblerARM32.h117 constexpr SizeT InstSize = sizeof(IValueT); in alignFunction()
207 void dmb(IValueT Option); // Option is a 4-bit value.
261 void popList(const IValueT Registers, CondARM32::Cond Cond);
266 void pushList(const IValueT Registers, CondARM32::Cond Cond);
546 void vdup(Type ElmtTy, const Operand *OpQd, const Operand *OpQn, IValueT Idx);
704 static IValueT encodeElmtType(Type ElmtTy);
706 void emitInst(IValueT Value) { in emitInst()
708 Buffer.emit<IValueT>(Value); in emitInst()
717 void emitType01(CondARM32::Cond Cond, IValueT InstType, IValueT Opcode,
718 bool SetFlags, IValueT Rn, IValueT Rd, IValueT imm12,
[all …]
DIceAssemblerMIPS32.h27 using IValueT = uint32_t; variable
75 void emitRsRt(IValueT Opcode, const Operand *OpRs, const Operand *OpRt,
78 void emitRtRsImm16(IValueT Opcode, const Operand *OpRt, const Operand *OpRs,
81 void emitRtRsImm16Rel(IValueT Opcode, const Operand *OpRt,
85 void emitFtRsImm16(IValueT Opcode, const Operand *OpFt, const Operand *OpRs,
88 void emitRdRtSa(IValueT Opcode, const Operand *OpRd, const Operand *OpRt,
91 void emitRdRsRt(IValueT Opcode, const Operand *OpRd, const Operand *OpRs,
94 void emitCOP1Fcmp(IValueT Opcode, FPInstDataFormat Format,
95 const Operand *OpFs, const Operand *OpFt, IValueT CC,
98 void emitCOP1FmtFsFd(IValueT Opcode, FPInstDataFormat Format,
[all …]
DIceInstARM32.h32 using IValueT = uint32_t; variable
1222 IValueT Registers) const = 0;
1249 IValueT Registers) const final;
1277 IValueT Registers) const final;
1396 IValueT Idx) { in create()
1406 InstARM32Vdup(Cfg *Func, Variable *Dest, Variable *Src, IValueT Idx);
1408 const IValueT Idx;
DIceInstARM32.cpp1405 ARM32::IValueT GPRegisters = 0; in emitUsingForm()
1509 IValueT Idx) in InstARM32Vdup()
2561 IValueT Registers) const { in emitMultipleGPRs()
2609 IValueT Registers) const { in emitMultipleGPRs()
3171 constexpr ARM32::IValueT SyOption = 0xF; // i.e. 1111 in emitIAS()