Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Dmachine-type.h109 : return_count_(return_count), in Signature()
113 size_t return_count() const { return return_count_; } in return_count()
118 return reps_[return_count_ + index]; in GetParam()
122 DCHECK(index < return_count_);
130 : return_count_(return_count), in Builder()
138 const size_t return_count_; variable
142 DCHECK(rcursor_ < return_count_); in AddReturn()
147 buffer_[return_count_ + pcursor_++] = val; in AddParam()
150 DCHECK(rcursor_ == return_count_); in Build()
152 return new (zone_) Signature<T>(return_count_, parameter_count_, buffer_); in Build()
[all …]
Dlinkage-impl.h19 DCHECK(locations->return_count_ <= 2); in AddReturnLocations()
20 if (locations->return_count_ > 0) { in AddReturnLocations()
23 if (locations->return_count_ > 1) { in AddReturnLocations()
/external/v8/test/cctest/compiler/
Dc-signature.h84 if (return_count_ == 1) storage_[0] = MachineTypeForC<Ret>(); in CSignatureOf()
88 reps_[return_count_ + index] = type; in Set()