Home
last modified time | relevance | path

Searched defs:Ty (Results 1 – 25 of 1023) sorted by relevance

12345678910>>...41

/external/swiftshader/src/Pipeline/
DSpirvShaderDebug.hpp53 struct PrintValue::Ty<sw::Spirv::Object::ID> struct in rr::PrintValue
55 …ne std::string fmt(sw::Spirv::Object::ID v) { return "Object<" + std::to_string(v.value()) + ">"; } in fmt()
56 static inline std::vector<Value *> val(sw::Spirv::Object::ID v) { return {}; } in val()
59 struct PrintValue::Ty<sw::Spirv::Type::ID> struct in rr::PrintValue
61 …inline std::string fmt(sw::Spirv::Type::ID v) { return "Type<" + std::to_string(v.value()) + ">"; } in fmt()
62 static inline std::vector<Value *> val(sw::Spirv::Type::ID v) { return {}; } in val()
65 struct PrintValue::Ty<sw::Spirv::Block::ID> struct in rr::PrintValue
67 …line std::string fmt(sw::Spirv::Block::ID v) { return "Block<" + std::to_string(v.value()) + ">"; } in fmt()
68 static inline std::vector<Value *> val(sw::Spirv::Block::ID v) { return {}; } in val()
72 struct PrintValue::Ty<sw::Intermediate> struct in rr::PrintValue
[all …]
DShaderCore.hpp290 struct PrintValue::Ty<sw::Vector4f> struct in rr::PrintValue
292 static std::string fmt(const sw::Vector4f &v) in fmt()
300 static std::vector<rr::Value *> val(const sw::Vector4f &v) in val()
306 struct PrintValue::Ty<sw::Vector4s> struct in rr::PrintValue
308 static std::string fmt(const sw::Vector4s &v) in fmt()
316 static std::vector<rr::Value *> val(const sw::Vector4s &v) in val()
322 struct PrintValue::Ty<sw::Vector4i> struct in rr::PrintValue
324 static std::string fmt(const sw::Vector4i &v) in fmt()
332 static std::vector<rr::Value *> val(const sw::Vector4i &v) in val()
/external/swiftshader/src/Reactor/
DPrint.hpp47 struct Ty struct in rr::PrintValue
213 struct PrintValue::Ty<const char *> struct in rr::PrintValue
215 static std::string fmt(const char *v) { return "%s"; } in fmt()
219 struct PrintValue::Ty<std::string> struct in rr::PrintValue
221 …atic std::string fmt(const std::string &v) { return PrintValue::Ty<const char *>::fmt(v.c_str()); } in fmt()
222 …:vector<Value *> val(const std::string &v) { return PrintValue::Ty<const char *>::val(v.c_str()); } in val()
227 struct PrintValue::Ty<Bool> struct in rr::PrintValue
229 static std::string fmt(const RValue<Bool> &v) { return "%s"; } in fmt()
233 struct PrintValue::Ty<Byte> struct in rr::PrintValue
235 static std::string fmt(const RValue<Byte> &v) { return "%d"; } in fmt()
[all …]
/external/swiftshader/third_party/subzero/src/
DIceAssemblerX8632.cpp279 void AssemblerX8632::mov(Type Ty, GPRRegister dst, const Immediate &imm) { in mov()
295 void AssemblerX8632::mov(Type Ty, GPRRegister dst, GPRRegister src) { in mov()
307 void AssemblerX8632::mov(Type Ty, GPRRegister dst, const AsmAddress &src) { in mov()
319 void AssemblerX8632::mov(Type Ty, const AsmAddress &dst, GPRRegister src) { in mov()
331 void AssemblerX8632::mov(Type Ty, const AsmAddress &dst, const Immediate &imm) { in mov()
384 void AssemblerX8632::lea(Type Ty, GPRRegister dst, const AsmAddress &src) { in lea()
393 void AssemblerX8632::cmov(Type Ty, BrCond cond, GPRRegister dst, in cmov()
405 void AssemblerX8632::cmov(Type Ty, BrCond cond, GPRRegister dst, in cmov()
423 void AssemblerX8632::movss(Type Ty, XmmRegister dst, const AsmAddress &src) { in movss()
431 void AssemblerX8632::movss(Type Ty, const AsmAddress &dst, XmmRegister src) { in movss()
[all …]
DIceAssemblerX8664.cpp261 void AssemblerX8664::mov(Type Ty, GPRRegister dst, const Immediate &imm) { in mov()
278 void AssemblerX8664::mov(Type Ty, GPRRegister dst, GPRRegister src) { in mov()
291 void AssemblerX8664::mov(Type Ty, GPRRegister dst, const AsmAddress &src) { in mov()
304 void AssemblerX8664::mov(Type Ty, const AsmAddress &dst, GPRRegister src) { in mov()
317 void AssemblerX8664::mov(Type Ty, const AsmAddress &dst, const Immediate &imm) { in mov()
411 void AssemblerX8664::lea(Type Ty, GPRRegister dst, const AsmAddress &src) { in lea()
421 void AssemblerX8664::cmov(Type Ty, BrCond cond, GPRRegister dst, in cmov()
434 void AssemblerX8664::cmov(Type Ty, BrCond cond, GPRRegister dst, in cmov()
453 void AssemblerX8664::movss(Type Ty, XmmRegister dst, const AsmAddress &src) { in movss()
462 void AssemblerX8664::movss(Type Ty, const AsmAddress &dst, XmmRegister src) { in movss()
[all …]
DIceTypes.cpp143 size_t typeWidthInBytes(Type Ty) { in typeWidthInBytes()
148 int8_t typeWidthInBytesLog2(Type Ty) { in typeWidthInBytesLog2()
155 size_t typeAlignInBytes(Type Ty) { in typeAlignInBytes()
162 size_t typeNumElements(Type Ty) { in typeNumElements()
169 Type typeElementType(Type Ty) { in typeElementType()
178 bool isVectorType(Type Ty) { in isVectorType()
185 bool isBooleanType(Type Ty) { in isBooleanType()
192 bool isIntegerType(Type Ty) { in isIntegerType()
199 bool isScalarIntegerType(Type Ty) { in isScalarIntegerType()
206 bool isVectorIntegerType(Type Ty) { in isVectorIntegerType()
[all …]
DIceTypes.h85 inline std::string typeStdString(Type Ty) { return typeString(Ty); } in typeStdString()
109 inline bool isCallReturnType(Type Ty) { in isCallReturnType()
122 inline bool isByteSizedType(Type Ty) { in isByteSizedType()
130 inline bool isByteSizedArithType(Type Ty) { in isByteSizedArithType()
136 inline bool isInt32Asserting32Or64(Type Ty) { in isInt32Asserting32Or64()
143 inline bool isFloat32Asserting32Or64(Type Ty) { in isFloat32Asserting32Or64()
/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/
DLowLevelType.cpp20 LLT llvm::getLLTForType(Type &Ty, const DataLayout &DL) { in getLLTForType()
45 MVT llvm::getMVTForLLT(LLT Ty) { in getMVTForLLT()
54 EVT llvm::getApproximateEVTForLLT(LLT Ty, const DataLayout &DL, in getApproximateEVTForLLT()
64 LLT llvm::getLLTForMVT(MVT Ty) { in getLLTForMVT()
72 const llvm::fltSemantics &llvm::getFltSemanticForLLT(LLT Ty) { in getFltSemanticForLLT()
/external/rust/crates/clap_derive/src/utils/
Dty.rs11 pub enum Ty { enum
22 impl Ty { impl
152 fn get_vec_ty(ty: &Type, vec_ty: Ty, vecvec_ty: Ty) -> Option<Ty> { in get_vec_ty()
163 fn get_vec_ty(ty: &Type, vec_ty: Ty, _vecvec_ty: Ty) -> Option<Ty> { in get_vec_ty()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMRegisterBankInfo.cpp235 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
280 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
293 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
300 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
360 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
374 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
398 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
420 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
435 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/ARM/
DARMRegisterBankInfo.cpp238 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
283 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
296 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
303 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
363 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
377 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
401 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
423 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
438 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
/external/llvm/lib/IR/
DConstants.cpp195 Constant *Constant::getNullValue(Type *Ty) { in getNullValue()
232 Constant *Constant::getIntegerValue(Type *Ty, const APInt &V) { in getIntegerValue()
249 Constant *Constant::getAllOnesValue(Type *Ty) { in getAllOnesValue()
503 ConstantInt::ConstantInt(IntegerType *Ty, const APInt &V) in ConstantInt()
522 Constant *ConstantInt::getTrue(Type *Ty) { in getTrue()
534 Constant *ConstantInt::getFalse(Type *Ty) { in getFalse()
560 Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) { in get()
570 ConstantInt *ConstantInt::get(IntegerType *Ty, uint64_t V, bool isSigned) { in get()
574 ConstantInt *ConstantInt::getSigned(IntegerType *Ty, int64_t V) { in getSigned()
578 Constant *ConstantInt::getSigned(Type *Ty, int64_t V) { in getSigned()
[all …]
DGlobals.cpp220 GlobalVariable::GlobalVariable(Type *Ty, bool constant, LinkageTypes Link, in GlobalVariable()
237 GlobalVariable::GlobalVariable(Module &M, Type *Ty, bool constant, in GlobalVariable()
312 GlobalIndirectSymbol::GlobalIndirectSymbol(Type *Ty, ValueTy VTy, in GlobalIndirectSymbol()
324 GlobalAlias::GlobalAlias(Type *Ty, unsigned AddressSpace, LinkageTypes Link, in GlobalAlias()
333 GlobalAlias *GlobalAlias::create(Type *Ty, unsigned AddressSpace, in create()
339 GlobalAlias *GlobalAlias::create(Type *Ty, unsigned AddressSpace, in create()
345 GlobalAlias *GlobalAlias::create(Type *Ty, unsigned AddressSpace, in create()
384 GlobalIFunc::GlobalIFunc(Type *Ty, unsigned AddressSpace, LinkageTypes Link, in GlobalIFunc()
393 GlobalIFunc *GlobalIFunc::create(Type *Ty, unsigned AddressSpace, in create()
/external/clang/test/Misc/
Dinteger-literal-printing.cpp15 template <> struct Type3Helper<boolTy::b> { typedef boolTy Ty; }; typedef
24 template <> struct Type4Helper<charTy::c> { typedef charTy Ty; }; typedef
32 template <> struct Type5Helper<scharTy::c> { typedef scharTy Ty; }; typedef
40 template <> struct Type6Helper<ucharTy::c> { typedef ucharTy Ty; }; typedef
48 template <> struct Type7Helper<wcharTy::c> { typedef wcharTy Ty; }; typedef
56 template <> struct Type8Helper<char16Ty::c> { typedef char16Ty Ty; }; typedef
64 template <> struct Type9Helper<char32Ty::c> { typedef char32Ty Ty; }; typedef
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DConstants.cpp285 Type *Ty = getType(); in isElementWiseEqual() local
318 Constant *Constant::getNullValue(Type *Ty) { in getNullValue()
355 Constant *Constant::getIntegerValue(Type *Ty, const APInt &V) { in getIntegerValue()
372 Constant *Constant::getAllOnesValue(Type *Ty) { in getAllOnesValue()
629 Type *Ty = C->getType(); in replaceUndefsWith() local
655 ConstantInt::ConstantInt(IntegerType *Ty, const APInt &V) in ConstantInt()
674 Constant *ConstantInt::getTrue(Type *Ty) { in getTrue()
682 Constant *ConstantInt::getFalse(Type *Ty) { in getFalse()
704 Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) { in get()
714 ConstantInt *ConstantInt::get(IntegerType *Ty, uint64_t V, bool isSigned) { in get()
[all …]
/external/swiftshader/third_party/llvm-16.0/llvm/lib/IR/
DConstants.cpp356 Constant *Constant::getNullValue(Type *Ty) { in getNullValue()
386 Constant *Constant::getIntegerValue(Type *Ty, const APInt &V) { in getIntegerValue()
403 Constant *Constant::getAllOnesValue(Type *Ty) { in getAllOnesValue()
757 Type *Ty = C->getType(); in replaceUndefsWith() local
784 Type *Ty = C->getType(); in mergeUndefsWith() local
830 ConstantInt::ConstantInt(IntegerType *Ty, const APInt &V) in ConstantInt()
853 Constant *ConstantInt::getTrue(Type *Ty) { in getTrue()
861 Constant *ConstantInt::getFalse(Type *Ty) { in getFalse()
869 Constant *ConstantInt::getBool(Type *Ty, bool V) { in getBool()
887 Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) { in get()
[all …]
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/CSKY/
DCSKYConstantPoolValue.cpp27 CSKYConstantPoolValue::CSKYConstantPoolValue(Type *Ty, CSKYCP::CSKYCPKind Kind, in CSKYConstantPoolValue()
80 const Constant *C, Type *Ty, CSKYCP::CSKYCPKind Kind, unsigned PCAdjust, in CSKYConstantPoolConstant()
94 const Constant *C, Type *Ty, CSKYCP::CSKYCPKind Kind, unsigned PCAdjust, in Create()
134 CSKYConstantPoolSymbol::CSKYConstantPoolSymbol(Type *Ty, const char *S, in CSKYConstantPoolSymbol()
143 CSKYConstantPoolSymbol::Create(Type *Ty, const char *S, unsigned PCAdjust, in Create()
168 CSKYConstantPoolMBB::CSKYConstantPoolMBB(Type *Ty, const MachineBasicBlock *Mbb, in CSKYConstantPoolMBB()
176 CSKYConstantPoolMBB *CSKYConstantPoolMBB::Create(Type *Ty, in Create()
201 CSKYConstantPoolJT::CSKYConstantPoolJT(Type *Ty, int JTIndex, unsigned PCAdj, in CSKYConstantPoolJT()
209 CSKYConstantPoolJT::Create(Type *Ty, int JTI, unsigned PCAdj, in Create()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Interpreter/
DExecution.cpp49 static void executeFNegInst(GenericValue &Dest, GenericValue Src, Type *Ty) { in executeFNegInst()
64 Type *Ty = I.getOperand(0)->getType(); in visitUnaryOperator() local
109 GenericValue Src2, Type *Ty) { in executeFAddInst()
120 GenericValue Src2, Type *Ty) { in executeFSubInst()
131 GenericValue Src2, Type *Ty) { in executeFMulInst()
142 GenericValue Src2, Type *Ty) { in executeFDivInst()
153 GenericValue Src2, Type *Ty) { in executeFRemInst()
192 Type *Ty) { in executeICMP_EQ()
206 Type *Ty) { in executeICMP_NE()
220 Type *Ty) { in executeICMP_ULT()
[all …]
/external/swiftshader/third_party/llvm-16.0/llvm/lib/ExecutionEngine/Interpreter/
DExecution.cpp49 static void executeFNegInst(GenericValue &Dest, GenericValue Src, Type *Ty) { in executeFNegInst()
64 Type *Ty = I.getOperand(0)->getType(); in visitUnaryOperator() local
109 GenericValue Src2, Type *Ty) { in executeFAddInst()
120 GenericValue Src2, Type *Ty) { in executeFSubInst()
131 GenericValue Src2, Type *Ty) { in executeFMulInst()
142 GenericValue Src2, Type *Ty) { in executeFDivInst()
153 GenericValue Src2, Type *Ty) { in executeFRemInst()
193 Type *Ty) { in executeICMP_EQ()
207 Type *Ty) { in executeICMP_NE()
221 Type *Ty) { in executeICMP_ULT()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DLowLevelType.cpp20 LLT llvm::getLLTForType(Type &Ty, const DataLayout &DL) { in getLLTForType()
45 MVT llvm::getMVTForLLT(LLT Ty) { in getMVTForLLT()
54 LLT llvm::getLLTForMVT(MVT Ty) { in getLLTForMVT()
/external/llvm/lib/ExecutionEngine/Interpreter/
DExecution.cpp56 GenericValue Src2, Type *Ty) { in executeFAddInst()
67 GenericValue Src2, Type *Ty) { in executeFSubInst()
78 GenericValue Src2, Type *Ty) { in executeFMulInst()
89 GenericValue Src2, Type *Ty) { in executeFDivInst()
100 GenericValue Src2, Type *Ty) { in executeFRemInst()
139 Type *Ty) { in executeICMP_EQ()
153 Type *Ty) { in executeICMP_NE()
167 Type *Ty) { in executeICMP_ULT()
181 Type *Ty) { in executeICMP_SLT()
195 Type *Ty) { in executeICMP_UGT()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/
DRISCVTargetTransformInfo.cpp18 int RISCVTTIImpl::getIntImmCost(const APInt &Imm, Type *Ty) { in getIntImmCost()
33 Type *Ty) { in getIntImmCostInst()
89 const APInt &Imm, Type *Ty) { in getIntImmCostIntrin()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/
DTarget.cpp101 unsigned long long LLVMSizeOfTypeInBits(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMSizeOfTypeInBits()
105 unsigned long long LLVMStoreSizeOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMStoreSizeOfType()
109 unsigned long long LLVMABISizeOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMABISizeOfType()
113 unsigned LLVMABIAlignmentOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMABIAlignmentOfType()
117 unsigned LLVMCallFrameAlignmentOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMCallFrameAlignmentOfType()
121 unsigned LLVMPreferredAlignmentOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMPreferredAlignmentOfType()
/external/llvm/lib/Target/
DTarget.cpp102 unsigned long long LLVMSizeOfTypeInBits(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMSizeOfTypeInBits()
106 unsigned long long LLVMStoreSizeOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMStoreSizeOfType()
110 unsigned long long LLVMABISizeOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMABISizeOfType()
114 unsigned LLVMABIAlignmentOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMABIAlignmentOfType()
118 unsigned LLVMCallFrameAlignmentOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMCallFrameAlignmentOfType()
122 unsigned LLVMPreferredAlignmentOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMPreferredAlignmentOfType()
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/
DTarget.cpp101 unsigned long long LLVMSizeOfTypeInBits(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMSizeOfTypeInBits()
105 unsigned long long LLVMStoreSizeOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMStoreSizeOfType()
109 unsigned long long LLVMABISizeOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMABISizeOfType()
113 unsigned LLVMABIAlignmentOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMABIAlignmentOfType()
117 unsigned LLVMCallFrameAlignmentOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMCallFrameAlignmentOfType()
121 unsigned LLVMPreferredAlignmentOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMPreferredAlignmentOfType()

12345678910>>...41