/external/v8/test/cctest/compiler/ |
c-signature.h | 94 size_t param_count = 5; local 95 if (p5 == MachineType::None()) param_count--; 96 if (p4 == MachineType::None()) param_count--; 97 if (p3 == MachineType::None()) param_count--; 98 if (p2 == MachineType::None()) param_count--; 99 if (p1 == MachineType::None()) param_count--; 100 for (size_t i = 0; i < param_count; i++) { 105 return new (zone) CSignature(return_count, param_count, buffer);
|
test-multiple-return.cc | 27 int param_count) { 28 MachineSignature::Builder msig(zone, return_count, param_count); 29 LocationSignature::Builder locations(zone, return_count, param_count); 42 CHECK(param_count <= config->num_allocatable_general_registers()); 43 for (int i = 0; i < param_count; i++) {
|
function-tester.h | 38 FunctionTester(Graph* graph, int param_count) 40 function(NewFunction(BuildFunction(param_count).c_str())), 195 static Handle<JSFunction> ForMachineGraph(Graph* graph, int param_count) { 198 FunctionTester f(graph, param_count); 207 std::string BuildFunction(int param_count) { 209 if (param_count > 0) { 212 while (param_count-- > 0) {
|
test-run-native-calls.cc | 248 explicit Int32Signature(int param_count) 249 : MachineSignature(1, param_count, kIntTypes) { 250 CHECK(param_count <= kMaxParamCount); 276 int param_count = static_cast<int>(msig->parameter_count()); local 280 Node* start = b.graph()->NewNode(b.common()->Start(param_count + 3)); 285 Node** args = zone.NewArray<Node*>(param_count + 3); 288 for (int i = 0; i < param_count; i++) { 297 b.graph()->NewNode(b.common()->Call(desc), param_count + 3, args); 322 explicit Sig(int param_count) 323 : MachineSignature(1, param_count, MachTypes()) [all...] |
graph-builder-tester.h | 293 int param_count = static_cast<int>(parameter_count()); local 294 for (int i = 0; i < param_count; ++i) {
|
/external/v8/src/compiler/ |
raw-machine-assembler.cc | 28 int param_count = static_cast<int>(parameter_count()); local 30 graph->SetStart(graph->NewNode(common_.Start(param_count + 1))); 125 int param_count = local 127 int input_count = param_count + 1; 131 for (int i = 0; i < param_count; i++) { 142 int param_count = local 144 int input_count = param_count + 2; 148 for (int i = 0; i < param_count; i++) { 206 int param_count = local 208 int input_count = param_count + 1 [all...] |
/external/v8/src/ |
frames-inl.h | 161 int param_count = ComputeParametersCount(); local 162 DCHECK(-1 <= index && index < param_count); 163 int parameter_offset = (param_count - index - 1) * kPointerSize;
|
interface-descriptors.h | 106 int param_count() const { return function_type_->Arity(); } function in class:v8::internal::CallInterfaceDescriptorData 154 int GetParameterCount() const { return data()->param_count(); } 169 DCHECK(index < data()->param_count());
|
code-stubs-hydrogen.cc | 143 int param_count = GetParameterCount(); local 153 for (int i = 0; i < param_count; ++i) { 174 Add<HConstant>(param_count - register_param_count - 1); [all...] |
deoptimizer.cc | 1658 int param_count = descriptor.GetRegisterParameterCount(); local [all...] |
/external/mesa3d/src/gallium/drivers/radeonsi/ |
radeonsi_shader.c | 468 unsigned param_count = 0; local 510 target = V_008DFC_SQ_EXP_PARAM + param_count; 511 shader->output[i].param_offset = param_count; 512 param_count++; 519 target = V_008DFC_SQ_EXP_PARAM + param_count; 520 shader->output[i].param_offset = param_count; 521 param_count++;
|
/external/v8/src/arm64/ |
code-stubs-arm64.cc | 106 int param_count = descriptor.GetRegisterParameterCount(); local 110 DCHECK((param_count == 0) || 111 x0.Is(descriptor.GetRegisterParameter(param_count - 1))); 115 for (int i = 0; i < param_count; ++i) { 120 __ CallExternalReference(miss, param_count); 1718 Register param_count = x7; local 2011 Register param_count = x13; local 2140 Register param_count = x13; local [all...] |
/external/vulkan-validation-layers/ |
vk-layer-generate.py | 142 param_count = 'NONE' # track params that give array sizes 148 param_count = p.name 154 if is_ptr and 'const' in p.ty and param_count != 'NONE': 155 array_len = "[%s]" % param_count 164 if 'NONE' != param_count: 165 struct_name = "%s[%s]" % (struct_name, param_count) [all...] |
/art/compiler/dex/quick/ |
dex_file_method_inliner.h | 317 uint8_t param_count; member in struct:art::DexFileMethodInliner::ProtoDef
|
dex_file_method_inliner.cc | [all...] |
/hardware/libhardware/include/hardware/ |
keymaster_defs.h | 568 inline void keymaster_free_param_values(keymaster_key_param_t* param, size_t param_count) { 569 while (param_count > 0) { 570 param_count--;
|
/external/v8/src/full-codegen/ |
full-codegen.cc | 489 int param_count = callable.descriptor().GetRegisterParameterCount(); local 490 DCHECK_EQ(args->length(), param_count); 492 if (param_count > 0) { 493 int last = param_count - 1; [all...] |
/external/v8/src/wasm/ |
ast-decoder.cc | 186 int param_count = static_cast<int>(sig->parameter_count()); local 196 start = builder_->Start(param_count + 1); 198 for (int i = 0; i < param_count; i++) { [all...] |
/external/v8/src/parsing/ |
parser-base.h | 798 int param_count, FunctionLiteral::ArityRestriction arity_restriction, [all...] |
/external/v8/src/mips/ |
code-stubs-mips.cc | 114 int param_count = descriptor.GetRegisterParameterCount(); local 118 DCHECK(param_count == 0 || 119 a0.is(descriptor.GetRegisterParameter(param_count - 1))); 121 __ Subu(sp, sp, Operand(param_count * kPointerSize)); 122 for (int i = 0; i < param_count; ++i) { 125 MemOperand(sp, (param_count - 1 - i) * kPointerSize)); 127 __ CallExternalReference(miss, param_count); [all...] |
/external/v8/src/mips64/ |
code-stubs-mips64.cc | 113 int param_count = descriptor.GetRegisterParameterCount(); local 117 DCHECK((param_count == 0) || 118 a0.is(descriptor.GetRegisterParameter(param_count - 1))); 120 __ Dsubu(sp, sp, Operand(param_count * kPointerSize)); 121 for (int i = 0; i < param_count; ++i) { 124 MemOperand(sp, (param_count - 1 - i) * kPointerSize)); 126 __ CallExternalReference(miss, param_count); [all...] |
/external/v8/src/arm/ |
code-stubs-arm.cc | 115 int param_count = descriptor.GetRegisterParameterCount(); local 119 DCHECK(param_count == 0 || 120 r0.is(descriptor.GetRegisterParameter(param_count - 1))); 122 for (int i = 0; i < param_count; ++i) { 125 __ CallExternalReference(miss, param_count); [all...] |
/external/v8/src/ia32/ |
code-stubs-ia32.cc | 109 int param_count = descriptor.GetRegisterParameterCount(); local 113 DCHECK(param_count == 0 || 114 eax.is(descriptor.GetRegisterParameter(param_count - 1))); 116 for (int i = 0; i < param_count; ++i) { 119 __ CallExternalReference(miss, param_count); [all...] |
/external/v8/src/ppc/ |
code-stubs-ppc.cc | 110 int param_count = descriptor.GetRegisterParameterCount(); local 114 DCHECK(param_count == 0 || 115 r3.is(descriptor.GetRegisterParameter(param_count - 1))); 117 for (int i = 0; i < param_count; ++i) { 120 __ CallExternalReference(miss, param_count); [all...] |
/external/v8/src/x64/ |
code-stubs-x64.cc | 100 int param_count = descriptor.GetRegisterParameterCount(); local 104 DCHECK(param_count == 0 || 105 rax.is(descriptor.GetRegisterParameter(param_count - 1))); 107 for (int i = 0; i < param_count; ++i) { 110 __ CallExternalReference(miss, param_count); [all...] |