/external/v8/src/ |
signature.h | 17 Signature(size_t return_count, size_t parameter_count, T* reps) 18 : return_count_(return_count), 22 size_t return_count() const { return return_count_; } function in class:v8::internal::Signature 38 Builder(Zone* zone, size_t return_count, size_t parameter_count) 39 : return_count_(return_count), 45 static_cast<int>(return_count + parameter_count))) {}
|
/external/v8/test/cctest/compiler/ |
test-multiple-return.cc | 26 CallDescriptor* GetCallDescriptor(Zone* zone, int return_count, 28 MachineSignature::Builder msig(zone, return_count, param_count); 29 LocationSignature::Builder locations(zone, return_count, param_count); 34 CHECK(return_count <= config->num_allocatable_general_registers()); 35 for (int i = 0; i < return_count; i++) {
|
c-signature.h | 50 CSignature(size_t return_count, size_t parameter_count, MachineType* reps) 51 : MachineSignature(return_count, parameter_count, reps) {} 84 size_t return_count = 0; local 87 return_count++; 103 CHECK_NE(MachineType::None(), buffer[return_count + i]); 105 return new (zone) CSignature(return_count, param_count, buffer);
|
test-run-native-calls.cc | 179 LocationSignature::Builder locations(zone, msig->return_count(), 182 const int return_count = static_cast<int>(locations.return_count_); local 183 for (int i = 0; i < return_count; i++) { [all...] |
/external/v8/src/compiler/ |
linkage.cc | 233 const size_t return_count = static_cast<size_t>(function->result_size); local 235 LocationSignature::Builder locations(zone, return_count, parameter_count); 236 MachineSignature::Builder types(zone, return_count, parameter_count); 245 for (size_t i = 0; i < return_count; i++) { 291 const size_t return_count = 0; local 294 LocationSignature::Builder locations(zone, return_count, parameter_count); 295 MachineSignature::Builder types(zone, return_count, parameter_count); 318 const size_t return_count = 1; local 325 LocationSignature::Builder locations(zone, return_count, parameter_count); 326 MachineSignature::Builder types(zone, return_count, parameter_count) [all...] |
wasm-linkage.cc | 198 MachineSignature::Builder msig(zone, fsig->return_count(), 200 LocationSignature::Builder locations(zone, fsig->return_count(), 225 const int return_count = static_cast<int>(locations.return_count_); local 226 for (int i = 0; i < return_count; i++) {
|
raw-machine-assembler.cc | 160 int return_count = static_cast<int>(descriptor->ReturnCount()); local 162 Node* centry = HeapConstant(CEntryStub(isolate(), return_count).GetCode()); 175 int return_count = static_cast<int>(descriptor->ReturnCount()); local 177 Node* centry = HeapConstant(CEntryStub(isolate(), return_count).GetCode()); 192 int return_count = static_cast<int>(descriptor->ReturnCount()); local 194 Node* centry = HeapConstant(CEntryStub(isolate(), return_count).GetCode()); 229 int return_count = static_cast<int>(desc->ReturnCount()); local 231 Node* centry = HeapConstant(CEntryStub(isolate(), return_count).GetCode()); 253 int return_count = static_cast<int>(desc->ReturnCount()); local 255 Node* centry = HeapConstant(CEntryStub(isolate(), return_count).GetCode()) [all...] |
linkage.h | 181 DCHECK(machine_sig->return_count() == location_sig->return_count()); 199 size_t ReturnCount() const { return machine_sig_->return_count(); } 323 size_t return_count = 1);
|
c-linkage.cc | 137 LocationSignature::Builder locations(zone, msig->return_count(), 144 for (size_t i = 0; i < msig->return_count(); i++) {
|
wasm-compiler.cc | 231 if (builder_->GetFunctionSignature()->return_count() > 0) { [all...] |
simplified-lowering.cc | 770 if (sig->return_count() > 0) { [all...] |
/external/autotest/client/common_lib/cros/graphite/ |
es_utils.py | 418 return_count = len(result['hits']['hits']) 420 if total_match > return_count and size != 1: 423 return_count, size)
|
/external/v8/src/wasm/ |
encoder.cc | 375 if (a->return_count() < b->return_count()) return -1; 376 if (a->return_count() > b->return_count()) return 1; 379 for (size_t r = 0; r < a->return_count(); r++) { 529 if (sig->return_count() > 0) {
|
ast-decoder.cc | 145 if (function_env_->sig->return_count() > 0) { 431 int count = static_cast<int>(function_env_->sig->return_count()); 553 sig->return_count() == 0 ? kAstStmt : sig->GetReturn(); 565 sig->return_count() == 0 ? kAstStmt : sig->GetReturn(); 608 int retcount = static_cast<int>(function_env_->sig->return_count()); [all...] |
wasm-module.cc | 37 if (function.sig->return_count() == 0) os << "v"; 38 for (size_t i = 0; i < function.sig->return_count(); i++) {
|
/external/v8/test/unittests/wasm/ |
module-decoder-unittest.cc | 258 EXPECT_EQ(0, result.val->signatures->at(0)->return_count()); 259 EXPECT_EQ(1, result.val->signatures->at(1)->return_count()); 260 EXPECT_EQ(1, result.val->signatures->at(2)->return_count()); 731 EXPECT_EQ(0, sig->return_count()); 744 EXPECT_EQ(1, sig->return_count()); 759 EXPECT_EQ(0, sig->return_count()); 778 EXPECT_EQ(1, sig->return_count()); 800 EXPECT_EQ(1, sig->return_count()); 867 EXPECT_EQ(0, function->sig->return_count());
|
/external/v8/test/unittests/compiler/ |
linkage-tail-call-unittest.cc | 28 locations->return_count() + locations->parameter_count()); 30 locations->return_count(), locations->parameter_count(), kMachineTypes);
|