/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceTypes.cpp | 176 Type getPointerType() { return TargetLowering::getPointerType(); } in getPointerType() function
|
D | IceTypeConverter.cpp | 54 return getPointerType(); in convertToIceTypeOther()
|
D | IceTypes.h | 88 Type getPointerType();
|
D | IceTargetLowering.cpp | 61 ::Ice::Type getPointerType(); \ 302 ::Ice::Type TargetLowering::getPointerType() { in getPointerType() function in Ice::TargetLowering 309 return ::X::getPointerType(); in getPointerType()
|
D | IceELFSection.cpp | 48 const SizeT RelocAddrSize = typeWidthInBytes(getPointerType()); in appendRelocationOffset()
|
D | IceConverter.cpp | 379 Ice::Variable *Dest = mapValueToIceVar(Instr, Ice::getPointerType()); in convertIntToPtrInstruction() 595 Ice::Variable *Dest = mapValueToIceVar(Instr, Ice::getPointerType()); in convertAllocaInstruction() 787 Ice::getPointerType()); in addGlobalInitializer()
|
D | WasmTranslator.cpp | 285 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()
|
D | IceTargetLowering.h | 178 static Type getPointerType();
|
D | IceELFObjectWriter.cpp | 578 const Elf64_Xword PointerSize = typeWidthInBytes(getPointerType()); in writeJumpTable()
|
D | IceTargetLoweringX8664.cpp | 64 ::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()
|
D | IceTargetLoweringARM32.cpp | 61 ::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()
|
D | IceTargetLoweringMIPS32.h | 46 static ::Ice::Type getPointerType() { return ::Ice::IceType_i32; } in getPointerType() function
|
D | IceTargetLoweringMIPS32.cpp | 56 ::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()
|
D | IceTargetLoweringX8632.h | 128 static ::Ice::Type getPointerType();
|
D | IceTargetLoweringX8664.h | 129 static ::Ice::Type getPointerType();
|
D | PNaClTranslator.cpp | 1648 Ice::Type PtrType = Ice::getPointerType(); in isValidPointerType() 2582 Ice::Type PtrTy = Ice::getPointerType(); in ProcessRecord()
|
D | IceTargetLoweringARM32.h | 71 static ::Ice::Type getPointerType() { return ::Ice::IceType_i32; } in getPointerType() function
|
D | IceTargetLoweringX8632.cpp | 65 ::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/ |
D | SkSLSPIRVCodeGenerator.h | 161 SpvId getPointerType(const Type& type, SpvStorageClass_ storageClass); 163 SpvId getPointerType(const Type& type, const MemoryLayout& layout,
|
D | SkSLSPIRVCodeGenerator.cpp | 619 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/ |
D | SkSLSPIRVCodeGenerator.h | 197 SpvId getPointerType(const Type& type, SpvStorageClass_ storageClass); 199 SpvId getPointerType(const Type& type, const MemoryLayout& layout,
|
D | SkSLSPIRVCodeGenerator.cpp | 731 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/ |
D | Nucleus.hpp | 332 static Type *getPointerType(Type *elementType);
|
D | SubzeroReactor.cpp | 85 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()
|
D | Reactor.hpp | 2454 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()
|