Home
last modified time | relevance | path

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

/external/v8/src/
Dsignature.h18 : return_count_(return_count), in Signature()
22 size_t return_count() const { return return_count_; } in return_count()
27 return reps_[return_count_ + index]; in GetParam()
31 DCHECK(index < return_count_);
50 : return_count_(return_count), in Builder()
58 const size_t return_count_; variable
62 DCHECK(rcursor_ < return_count_); in AddReturn()
67 buffer_[return_count_ + pcursor_++] = val; in AddParam()
70 DCHECK(rcursor_ == return_count_); in Build()
72 return new (zone_) Signature<T>(return_count_, parameter_count_, buffer_); in Build()
[all …]
/external/v8/src/compiler/
Dlinkage.cc239 if (locations.return_count_ > 0) { in GetCEntryStubCallDescriptor()
242 if (locations.return_count_ > 1) { in GetCEntryStubCallDescriptor()
245 if (locations.return_count_ > 2) { in GetCEntryStubCallDescriptor()
354 if (locations.return_count_ > 0) { in GetStubCallDescriptor()
357 if (locations.return_count_ > 1) { in GetStubCallDescriptor()
360 if (locations.return_count_ > 2) { in GetStubCallDescriptor()
Dc-linkage.cc182 CHECK(locations.return_count_ <= 2); in GetSimplifiedCDescriptor()
184 if (locations.return_count_ > 0) { in GetSimplifiedCDescriptor()
187 if (locations.return_count_ > 1) { in GetSimplifiedCDescriptor()
Dwasm-linkage.cc287 const int return_count = static_cast<int>(locations.return_count_); in GetWasmCallDescriptor()