Home
last modified time | relevance | path

Searched refs:ArgumentInfo (Results 1 – 13 of 13) sorted by relevance

/third_party/node/deps/v8/src/compiler/
Dfast-api-calls.cc57 candidates[i].signature->ArgumentInfo(arg_index + kReceiver); in ResolveOverloads()
111 if (c_signature->ArgumentInfo(i).GetType() == CTypeInfo::Type::kFloat32 || in CanOptimizeFastSignature()
112 c_signature->ArgumentInfo(i).GetType() == CTypeInfo::Type::kFloat64) { in CanOptimizeFastSignature()
118 if (c_signature->ArgumentInfo(i).GetType() == CTypeInfo::Type::kInt64 || in CanOptimizeFastSignature()
119 c_signature->ArgumentInfo(i).GetType() == CTypeInfo::Type::kUint64) { in CanOptimizeFastSignature()
Deffect-control-linearizer.cc5019 CTypeInfo arg_type = c_signature->ArgumentInfo( in AdaptOverloadedFastCallArgument()
5215 CTypeInfo type = c_signature->ArgumentInfo(i); in LowerFastApiCall()
5297 CTypeInfo type = c_signature->ArgumentInfo(i); in LowerFastApiCall()
Dwasm-compiler.cc7391 builder.AddParam(MachineType::TypeForCType(c_signature->ArgumentInfo(i))); in BuildJSFastApiCallWrapper()
7415 switch (c_signature->ArgumentInfo(i).GetType()) { in BuildJSFastApiCallWrapper()
7776 CTypeInfo arg = info->ArgumentInfo(i + 1); in IsSupportedWasmFastApiFunction()
Dsimplified-lowering.cc1944 c_signature->ArgumentInfo(i), op_params.feedback()); in VisitFastApiCall()
/third_party/node/deps/v8/src/execution/
Dencoded-c-signature.cc22 if (signature->ArgumentInfo(i).GetSequenceType() == in EncodedCSignature()
24 CTypeInfo::IsFloatingPointType(signature->ArgumentInfo(i).GetType())) { in EncodedCSignature()
/third_party/node/deps/v8/include/
Dv8-fast-api-calls.h402 const CTypeInfo& ArgumentInfo(unsigned int index) const;
453 const CTypeInfo& ArgumentInfo(unsigned int index) const { in ArgumentInfo() function
454 return type_info_->ArgumentInfo(index); in ArgumentInfo()
478 if (ArgumentInfo(i).GetSequenceType() != in GetOverloadResolution()
479 other->ArgumentInfo(i).GetSequenceType()) { in GetOverloadResolution()
486 if (ArgumentInfo(i).GetSequenceType() == in GetOverloadResolution()
488 other->ArgumentInfo(i).GetSequenceType() == in GetOverloadResolution()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
DOutputASM.h357 struct ArgumentInfo struct
359 ArgumentInfo(const BlockMemberInfo& b, const TType& t, int clampedIndex, int bufferIndex) : in ArgumentInfo() argument
366 ArgumentInfo getArgumentInfo(TIntermTyped *argument, int index); argument
DOutputASM.cpp2329 OutputASM::ArgumentInfo OutputASM::getArgumentInfo(TIntermTyped *arg, int index) in getArgumentInfo()
2333 ArgumentInfo argumentInfo(BlockMemberInfo::getDefaultBlockInfo(), type, -1, -1); in getArgumentInfo()
2394 const ArgumentInfo argumentInfo = getArgumentInfo(arg, index); in source()
2446 const ArgumentInfo argumentInfo = getArgumentInfo(arg, index); in source()
/third_party/vk-gl-cts/build/external/spirv-tools/spirv-tools/
Dnonsemantic.clspvreflection.insts.inc5 …{"ArgumentInfo", 2, 0, nullptr, {SPV_OPERAND_TYPE_ID, SPV_OPERAND_TYPE_OPTIONAL_ID, SPV_OPERAND_TY…
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/val/
Dval_ext_inst_test.cpp6336 TEST_P(ArgumentBasics, ArgumentInfo) { in TEST_P() argument
/third_party/spirv-tools/test/val/
Dval_ext_inst_test.cpp6350 TEST_P(ArgumentBasics, ArgumentInfo) { in TEST_P() argument
/third_party/skia/third_party/externals/spirv-tools/test/val/
Dval_ext_inst_test.cpp6336 TEST_P(ArgumentBasics, ArgumentInfo) { in TEST_P() argument
/third_party/node/deps/v8/src/api/
Dapi.cc10377 const CTypeInfo& CFunctionInfo::ArgumentInfo(unsigned int index) const { in ArgumentInfo() function in v8::CFunctionInfo