Home
last modified time | relevance | path

Searched refs:getPointerType (Results 1 – 25 of 26) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceTypes.cpp176 Type getPointerType() { return TargetLowering::getPointerType(); } in getPointerType() function
DIceTypeConverter.cpp54 return getPointerType(); in convertToIceTypeOther()
DIceTypes.h88 Type getPointerType();
DIceTargetLowering.cpp61 ::Ice::Type getPointerType(); \
302 ::Ice::Type TargetLowering::getPointerType() { in getPointerType() function in Ice::TargetLowering
309 return ::X::getPointerType(); in getPointerType()
DIceELFSection.cpp48 const SizeT RelocAddrSize = typeWidthInBytes(getPointerType()); in appendRelocationOffset()
DIceConverter.cpp379 Ice::Variable *Dest = mapValueToIceVar(Instr, Ice::getPointerType()); in convertIntToPtrInstruction()
595 Ice::Variable *Dest = mapValueToIceVar(Instr, Ice::getPointerType()); in convertAllocaInstruction()
787 Ice::getPointerType()); in addGlobalInitializer()
DWasmTranslator.cpp285 auto *WasmMemoryV = makeVariable(getPointerType()); in Start()
1380 return Ctx->getConstantZero(getPointerType()); in sanitizeAddress()
1385 auto *Addr = makeVariable(Ice::getPointerType()); in sanitizeAddress()
1414 auto RealAddrV = Func->makeVariable(Ice::getPointerType()); in sanitizeAddress()
DIceTargetLowering.h178 static Type getPointerType();
DIceELFObjectWriter.cpp578 const Elf64_Xword PointerSize = typeWidthInBytes(getPointerType()); in writeJumpTable()
DIceTargetLoweringX8664.cpp64 ::Ice::Type getPointerType() { in getPointerType() function
65 return ::Ice::X8664::TargetX8664::getPointerType(); in getPointerType()
338 ::Ice::Type TargetX8664::getPointerType() { return ::Ice::IceType_i64; } in getPointerType() function in Ice::X8664::TargetX8664
5908 const Type PointerType = getPointerType(); in lowerCaseCluster()
6502 const Type PointerType = getPointerType(); in getMemoryOperandForStackSlot()
6896 << typeWidthInBytes(getPointerType()) << "\n" in emitJumpTable()
6998 (getPointerType() == IceType_i32) ? FK_Abs : FK_Abs64; in lowerJumpTables()
7014 << typeWidthInBytes(getPointerType()) << "\n" in lowerJumpTables()
DIceTargetLoweringARM32.cpp61 ::Ice::Type getPointerType() { in getPointerType() function
62 return ::Ice::ARM32::TargetARM32::getPointerType(); in getPointerType()
2090 T = makeReg(getPointerType()); in lowerAlloca()
5651 const Type PointerType = getPointerType(); in formAddressingMode()
5682 const Type PointerType = getPointerType(); in formAddressingMode()
5698 Variable *OffsetR = makeReg(getPointerType()); in formAddressingMode()
6227 Variable *BaseReg = makeReg(getPointerType()); in legalize()
DIceTargetLoweringMIPS32.h46 static ::Ice::Type getPointerType() { return ::Ice::IceType_i32; } in getPointerType() function
DIceTargetLoweringMIPS32.cpp56 ::Ice::Type getPointerType() { in getPointerType() function
57 return ::Ice::MIPS32::TargetMIPS32::getPointerType(); in getPointerType()
5343 const Type PointerType = getPointerType(); in formAddressingMode()
5355 const Type PointerType = getPointerType(); in formAddressingMode()
5907 Variable *TReg1 = makeReg(getPointerType()); in legalize()
DIceTargetLoweringX8632.h128 static ::Ice::Type getPointerType();
DIceTargetLoweringX8664.h129 static ::Ice::Type getPointerType();
DPNaClTranslator.cpp1648 Ice::Type PtrType = Ice::getPointerType(); in isValidPointerType()
2582 Ice::Type PtrTy = Ice::getPointerType(); in ProcessRecord()
DIceTargetLoweringARM32.h71 static ::Ice::Type getPointerType() { return ::Ice::IceType_i32; } in getPointerType() function
DIceTargetLoweringX8632.cpp65 ::Ice::Type getPointerType() { return ::Ice::Type::IceType_i32; } in getPointerType() function
329 Type TargetX8632::getPointerType() { return IceType_i32; } in getPointerType() function in Ice::X8632::TargetX8632
/third_party/flutter/skia/src/sksl/
DSkSLSPIRVCodeGenerator.h161 SpvId getPointerType(const Type& type, SpvStorageClass_ storageClass);
163 SpvId getPointerType(const Type& type, const MemoryLayout& layout,
DSkSLSPIRVCodeGenerator.cpp619 parameterTypes.push_back(this->getPointerType(function.fParameters[i]->fType, in getFunctionType()
637 SpvId SPIRVCodeGenerator::getPointerType(const Type& type, SpvStorageClass_ storageClass) { in getPointerType() function in SkSL::SPIRVCodeGenerator
638 return this->getPointerType(type, fDefaultLayout, storageClass); in getPointerType()
641 SpvId SPIRVCodeGenerator::getPointerType(const Type& rawType, const MemoryLayout& layout, in getPointerType() function in SkSL::SPIRVCodeGenerator
1043 this->getPointerType(c.fArguments[i]->fType, in writeFunctionCall()
1715 this->writeWord(this->getPointerType(expr.fType, get_storage_class(expr)), out); in getLValue()
1735 this->getPointerType(swizzle.fType, in getLValue()
1788 SpvId type = this->getPointerType(expr.fType, SpvStorageClassFunction); in getLValue()
1857 this->writeWord(this->getPointerType(*fContext.fFloat_Type, SpvStorageClassUniform), out); in writeVariableReference()
2361 this->writeInstruction(SpvOpVariable, this->getPointerType(t.fType, SpvStorageClassFunction), in writeTernaryExpression()
[all …]
/third_party/skia/src/sksl/codegen/
DSkSLSPIRVCodeGenerator.h197 SpvId getPointerType(const Type& type, SpvStorageClass_ storageClass);
199 SpvId getPointerType(const Type& type, const MemoryLayout& layout,
DSkSLSPIRVCodeGenerator.cpp731 parameterTypes.push_back(this->getPointerType(parameters[i]->type(), in getFunctionType()
746 SpvId SPIRVCodeGenerator::getPointerType(const Type& type, SpvStorageClass_ storageClass) { in getPointerType() function in SkSL::SPIRVCodeGenerator
747 return this->getPointerType(type, fDefaultLayout, storageClass); in getPointerType()
750 SpvId SPIRVCodeGenerator::getPointerType(const Type& rawType, const MemoryLayout& layout, in getPointerType() function in SkSL::SPIRVCodeGenerator
1229 this->getPointerType(arg.type(), SpvStorageClassFunction), in writeFunctionCallArgument()
2025 SpvId typeId = this->getPointerType(type, SpvStorageClassUniform); in getLValue()
2045 this->writeWord(this->getPointerType(type, get_storage_class(expr)), out); in getLValue()
2065 SpvId typeId = this->getPointerType(type, get_storage_class(*swizzle.base())); in getLValue()
2084 SpvId pointerType = this->getPointerType(type, SpvStorageClassFunction); in getLValue()
2781 this->writeInstruction(SpvOpVariable, this->getPointerType(type, SpvStorageClassFunction), in writeTernaryExpression()
[all …]
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DNucleus.hpp332 static Type *getPointerType(Type *elementType);
DSubzeroReactor.cpp85 Ice::Type getPointerType(Ice::Type elementType) in getPointerType() function
103 auto address = function->makeVariable(getPointerType(type)); in allocateStackVariable()
1105 auto address = ::function->makeVariable(T(getPointerType(t))); in allocateStackVariable()
1988 Type *Nucleus::getPointerType(Type *ElementType) in getPointerType() function in rr::Nucleus
1990 return T(sz::getPointerType(T(ElementType))); in getPointerType()
4766 const Ice::Type YieldPtrType = sz::getPointerType(T(::coroYieldType)); in generateAwaitFunction()
4767 const Ice::Type HandleType = sz::getPointerType(Ice::IceType_void); in generateAwaitFunction()
4831 const Ice::Type HandleType = sz::getPointerType(Ice::IceType_void); in generateDestroyFunction()
DReactor.hpp2454 Value *pointerT = Nucleus::createBitCast(pointerS.value(), Nucleus::getPointerType(T::type())); in Pointer()
2463 Value *pointerT = Nucleus::createBitCast(pointerS, Nucleus::getPointerType(T::type())); in Pointer()
3081 return Nucleus::getPointerType(T::type()); in type()

12