Home
last modified time | relevance | path

Searched refs:return_count_ (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/
Dsignature.h22 : return_count_(return_count), in Signature()
26 size_t return_count() const { return return_count_; } in return_count()
31 return reps_[return_count_ + index]; in GetParam()
35 DCHECK(index < return_count_);
41 return {reps_ + return_count_, reps_ + return_count_ + parameter_count_}; in parameters()
44 return {reps_, reps_ + return_count_}; in returns()
47 return {reps_, reps_ + return_count_ + parameter_count_}; in all()
62 : return_count_(return_count), in Builder()
70 const size_t return_count_; variable
74 DCHECK(rcursor_ < return_count_); in AddReturn()
[all …]
Dinterface-descriptors.cc29 return_count_ = return_count; in InitializePlatformIndependent()
31 const int types_length = return_count_ + param_count_; in InitializePlatformIndependent()
49 const int types_length = return_count_ + param_count_; in AllStackParametersAreTagged()
50 const int first_stack_param = return_count_ + register_param_count_; in AllStackParametersAreTagged()
Dinterface-descriptors.h117 int return_count() const { return return_count_; } in return_count()
123 DCHECK_LT(index, return_count_); in return_type()
128 return machine_types_[return_count_ + index]; in param_type()
150 return_count_ >= 0 && param_count_ >= 0 && machine_types_ != nullptr; in IsInitializedPlatformIndependent()
160 int return_count_ = -1; variable
/external/v8/src/compiler/
Dlinkage.cc244 if (locations.return_count_ > 0) { in GetCEntryStubCallDescriptor()
247 if (locations.return_count_ > 1) { in GetCEntryStubCallDescriptor()
250 if (locations.return_count_ > 2) { in GetCEntryStubCallDescriptor()
357 if (locations.return_count_ > 0) { in GetStubCallDescriptor()
360 if (locations.return_count_ > 1) { in GetStubCallDescriptor()
363 if (locations.return_count_ > 2) { in GetStubCallDescriptor()
Dc-linkage.cc173 CHECK_GE(2, locations.return_count_); in GetSimplifiedCDescriptor()
175 if (locations.return_count_ > 0) { in GetSimplifiedCDescriptor()
179 if (locations.return_count_ > 1) { in GetSimplifiedCDescriptor()
Dwasm-compiler.cc5296 const int return_count = static_cast<int>(locations.return_count_); in GetWasmCallDescriptor()