Home
last modified time | relevance | path

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

12345678910>>...48

/external/swiftshader/src/Pipeline/
DSpirvShaderDebug.hpp53 struct PrintValue::Ty<sw::SpirvShader::Object::ID> struct in rr::PrintValue
55 …::string fmt(sw::SpirvShader::Object::ID v) { return "Object<" + std::to_string(v.value()) + ">"; } in fmt()
56 static inline std::vector<Value *> val(sw::SpirvShader::Object::ID v) { return {}; } in val()
59 struct PrintValue::Ty<sw::SpirvShader::Type::ID> struct in rr::PrintValue
61 … std::string fmt(sw::SpirvShader::Type::ID v) { return "Type<" + std::to_string(v.value()) + ">"; } in fmt()
62 static inline std::vector<Value *> val(sw::SpirvShader::Type::ID v) { return {}; } in val()
65 struct PrintValue::Ty<sw::SpirvShader::Block::ID> struct in rr::PrintValue
67 …td::string fmt(sw::SpirvShader::Block::ID v) { return "Block<" + std::to_string(v.value()) + ">"; } in fmt()
68 static inline std::vector<Value *> val(sw::SpirvShader::Block::ID v) { return {}; } in val()
72 struct PrintValue::Ty<sw::Intermediate> struct in rr::PrintValue
[all …]
DShaderCore.hpp532 struct PrintValue::Ty<sw::Vector4f> struct in rr::PrintValue
534 static std::string fmt(const sw::Vector4f &v) in fmt()
542 static std::vector<rr::Value *> val(const sw::Vector4f &v) in val()
548 struct PrintValue::Ty<sw::Vector4s> struct in rr::PrintValue
550 static std::string fmt(const sw::Vector4s &v) in fmt()
558 static std::vector<rr::Value *> val(const sw::Vector4s &v) in val()
564 struct PrintValue::Ty<sw::SIMD::Pointer> struct in rr::PrintValue
566 static std::string fmt(const sw::SIMD::Pointer &v) in fmt()
571 static std::vector<rr::Value *> val(const sw::SIMD::Pointer &v) in val()
/external/swiftshader/third_party/subzero/src/
DIceAssemblerX86BaseImpl.h230 void AssemblerX86Base<TraitsType>::mov(Type Ty, GPRRegister dst, in mov()
249 void AssemblerX86Base<TraitsType>::mov(Type Ty, GPRRegister dst, in mov()
264 void AssemblerX86Base<TraitsType>::mov(Type Ty, GPRRegister dst, in mov()
280 void AssemblerX86Base<TraitsType>::mov(Type Ty, const Address &dst, in mov()
296 void AssemblerX86Base<TraitsType>::mov(Type Ty, const Address &dst, in mov()
406 void AssemblerX86Base<TraitsType>::lea(Type Ty, GPRRegister dst, in lea()
420 void AssemblerX86Base<TraitsType>::cmov(Type Ty, BrCond cond, GPRRegister dst, in cmov()
434 void AssemblerX86Base<TraitsType>::cmov(Type Ty, BrCond cond, GPRRegister dst, in cmov()
455 void AssemblerX86Base<TraitsType>::movss(Type Ty, XmmRegister dst, in movss()
467 void AssemblerX86Base<TraitsType>::movss(Type Ty, const Address &dst, 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/src/Reactor/
DPrint.hpp46 struct Ty struct in rr::PrintValue
212 struct PrintValue::Ty<const char *> struct in rr::PrintValue
214 static std::string fmt(const char *v) { return "%s"; } in fmt()
218 struct PrintValue::Ty<std::string> struct in rr::PrintValue
220 …atic std::string fmt(const std::string &v) { return PrintValue::Ty<const char *>::fmt(v.c_str()); } in fmt()
221 …:vector<Value *> val(const std::string &v) { return PrintValue::Ty<const char *>::val(v.c_str()); } in val()
226 struct PrintValue::Ty<Bool> struct in rr::PrintValue
228 static std::string fmt(const RValue<Bool> &v) { return "%s"; } in fmt()
232 struct PrintValue::Ty<Byte> struct in rr::PrintValue
234 static std::string fmt(const RValue<Byte> &v) { return "%d"; } in fmt()
[all …]
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
Dbuilder_gfx_mem.cpp129 Value* BuilderGfxMem::GEP(Value* Ptr, Value* Idx, Type* Ty, bool isReadOnly, const Twine& Name) in GEP()
153 Value* BuilderGfxMem::GEP(Type* Ty, Value* Ptr, Value* Idx, const Twine& Name) in GEP()
170 Value* BuilderGfxMem::GEP(Value* Ptr, const std::initializer_list<Value*>& indexList, Type* Ty) in GEP()
188 BuilderGfxMem::GEP(Value* Ptr, const std::initializer_list<uint32_t>& indexList, Type* Ty) in GEP()
205 Value* BuilderGfxMem::TranslationHelper(Value* Ptr, Type* Ty, Value* pfnTranslateGfxAddress) in TranslationHelper()
219 void BuilderGfxMem::TrackerHelper(Value* Ptr, Type* Ty, MEM_CLIENT usage, bool isRead) in TrackerHelper()
266 LoadInst* BuilderGfxMem::LOAD(Value* Ptr, const char* Name, Type* Ty, MEM_CLIENT usage) in LOAD()
275 LoadInst* BuilderGfxMem::LOAD(Value* Ptr, const Twine& Name, Type* Ty, MEM_CLIENT usage) in LOAD()
285 Value* Ptr, bool isVolatile, const Twine& Name, Type* Ty, MEM_CLIENT usage) in LOAD()
297 Type* Ty, in LOAD()
[all …]
/external/llvm-project/llvm/lib/CodeGen/
DLowLevelType.cpp21 LLT llvm::getLLTForType(Type &Ty, const DataLayout &DL) { in getLLTForType()
46 MVT llvm::getMVTForLLT(LLT Ty) { in getMVTForLLT()
55 LLT llvm::getLLTForMVT(MVT Ty) { in getLLTForMVT()
63 const llvm::fltSemantics &llvm::getFltSemanticForLLT(LLT Ty) { in getFltSemanticForLLT()
/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/llvm-project/llvm/lib/Target/ARM/
DARMRegisterBankInfo.cpp237 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
282 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
295 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
302 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
362 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
376 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
400 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
422 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
437 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
/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/llvm-project/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/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 …]
/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/llvm-project/llvm/lib/IR/
DConstants.cpp336 Constant *Constant::getNullValue(Type *Ty) { in getNullValue()
377 Constant *Constant::getIntegerValue(Type *Ty, const APInt &V) { in getIntegerValue()
394 Constant *Constant::getAllOnesValue(Type *Ty) { in getAllOnesValue()
738 Type *Ty = C->getType(); in replaceUndefsWith() local
765 Type *Ty = C->getType(); in mergeUndefsWith() local
799 ConstantInt::ConstantInt(IntegerType *Ty, const APInt &V) in ConstantInt()
818 Constant *ConstantInt::getTrue(Type *Ty) { in getTrue()
826 Constant *ConstantInt::getFalse(Type *Ty) { in getFalse()
848 Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) { in get()
858 ConstantInt *ConstantInt::get(IntegerType *Ty, uint64_t V, bool isSigned) { in get()
[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/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/llvm-project/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/src/Shader/
DShaderCore.hpp388 template <> struct PrintValue::Ty<sw::Vector4f> struct in rr::PrintValue
390 static std::string fmt(const sw::Vector4f& v) in fmt()
398 static std::vector<rr::Value*> val(const sw::Vector4f& v) in val()
403 template <> struct PrintValue::Ty<sw::Vector4s> struct in rr::PrintValue
405 static std::string fmt(const sw::Vector4s& v) in fmt()
413 static std::vector<rr::Value*> val(const sw::Vector4s& v) in val()
/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/llvm-project/polly/lib/CodeGen/
DRuntimeDebugBuilder.cpp27 FunctionType *Ty = FunctionType::get( in getVPrintF() local
48 FunctionType *Ty = FunctionType::get( in getAddressSpaceCast() local
104 bool RuntimeDebugBuilder::isPrintable(Type *Ty) { in isPrintable()
123 Type *Ty = Val->getType(); in prepareValuesForPrinting() local
196 Type *Ty = Val->getType(); in createGPUPrinterT() local
251 FunctionType *Ty = FunctionType::get(Builder.getInt32Ty(), true); in getPrintF() local
276 FunctionType *Ty = in createFlush() local
/external/llvm-project/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/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()

12345678910>>...48