Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/codegen/
Dsignature.h22 : return_count_(return_count), in Signature()
25 DCHECK_EQ(kReturnCountOffset, offsetof(Signature, return_count_)); in Signature()
31 size_t return_count() const { return return_count_; } in return_count()
36 return reps_[return_count_ + index]; in GetParam()
40 DCHECK_LT(index, return_count_);
46 return {reps_ + return_count_, reps_ + return_count_ + parameter_count_}; in parameters()
49 return {reps_, reps_ + return_count_}; in returns()
52 return {reps_, reps_ + return_count_ + parameter_count_}; in all()
67 : return_count_(return_count), in Builder()
75 const size_t return_count_; variable
[all …]
Dinterface-descriptors.cc38 return_count_ = return_count; in InitializeRegisters()
49 const int types_length = return_count_ + param_count_; in InitializeTypes()
67 const int types_length = return_count_ + param_count_; in AllStackParametersAreTagged()
68 const int first_stack_param = return_count_ + register_param_count_; in AllStackParametersAreTagged()
Dinterface-descriptors.h198 int return_count() const { return return_count_; } in return_count()
203 DCHECK_LT(index, return_count_); in return_type()
208 return machine_types_[return_count_ + index]; in param_type()
225 return_count_ != kUninitializedCount && in IsInitializedRegisters()
242 int return_count_ = kUninitializedCount; variable
/third_party/node/deps/v8/src/compiler/
Dc-linkage.cc241 for (size_t i = 0; i < locations.return_count_; i++) { in GetSimplifiedCDescriptor()
247 CHECK_GE(2, locations.return_count_); in GetSimplifiedCDescriptor()
248 if (locations.return_count_ > 0) { in GetSimplifiedCDescriptor()
263 if (locations.return_count_ > 1) { in GetSimplifiedCDescriptor()
Dlinkage.cc337 if (locations.return_count_ > 0) { in GetCEntryStubCallDescriptor()
340 if (locations.return_count_ > 1) { in GetCEntryStubCallDescriptor()
343 if (locations.return_count_ > 2) { in GetCEntryStubCallDescriptor()
461 for (size_t i = 0; i < locations.return_count_; i++) { in GetStubCallDescriptor()
Dwasm-compiler.cc8609 const size_t return_count = locations.return_count_; in BuildLocations()