Home
last modified time | relevance | path

Searched refs:msig (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/compiler/
Dc-linkage.cc136 Zone* zone, const MachineSignature* msig) { in GetSimplifiedCDescriptor() argument
137 LocationSignature::Builder locations(zone, msig->return_count(), in GetSimplifiedCDescriptor()
138 msig->parameter_count()); in GetSimplifiedCDescriptor()
144 for (size_t i = 0; i < msig->return_count(); i++) { in GetSimplifiedCDescriptor()
145 MachineType type = RepresentationOf(msig->GetReturn(i)); in GetSimplifiedCDescriptor()
148 for (size_t i = 0; i < msig->parameter_count(); i++) { in GetSimplifiedCDescriptor()
149 MachineType type = RepresentationOf(msig->GetParam(i)); in GetSimplifiedCDescriptor()
171 const int parameter_count = static_cast<int>(msig->parameter_count()); in GetSimplifiedCDescriptor()
217 msig, // machine_sig in GetSimplifiedCDescriptor()
Dwasm-linkage.cc198 MachineSignature::Builder msig(zone, fsig->return_count(), in GetWasmCallDescriptor() local
228 msig.AddReturn(MachineTypeFor(ret)); in GetWasmCallDescriptor()
257 msig.AddParam(MachineTypeFor(param)); in GetWasmCallDescriptor()
271 msig.Build(), // machine_sig in GetWasmCallDescriptor()
/external/v8/test/cctest/compiler/
Dtest-multiple-return.cc28 MachineSignature::Builder msig(zone, return_count, param_count); in GetCallDescriptor() local
36 msig.AddReturn(MachineType::Int32()); in GetCallDescriptor()
44 msig.AddParam(MachineType::Int32()); in GetCallDescriptor()
59 msig.Build(), // machine_sig in GetCallDescriptor()
Dtest-run-native-calls.cc175 CallDescriptor* Create(Zone* zone, MachineSignature* msig) { in Create() argument
179 LocationSignature::Builder locations(zone, msig->return_count(), in Create()
180 msig->parameter_count()); in Create()
184 locations.AddReturn(rets.Next(msig->GetReturn(i))); in Create()
188 const int parameter_count = static_cast<int>(msig->parameter_count()); in Create()
190 locations.AddParam(params.Next(msig->GetParam(i))); in Create()
203 msig, // machine_sig in Create()
274 MachineSignature* msig = in WrapWithCFunction() local
276 int param_count = static_cast<int>(msig->parameter_count()); in WrapWithCFunction()
302 CallDescriptor* cdesc = Linkage::GetSimplifiedCDescriptor(&zone, msig); in WrapWithCFunction()
[all …]
Dc-signature.h72 static CSignature* FromMachine(Zone* zone, MachineSignature* msig) { in FOREACH_CTYPE_MACHINE_TYPE_MAPPING()
73 return reinterpret_cast<CSignature*>(msig); in FOREACH_CTYPE_MACHINE_TYPE_MAPPING()