/external/v8/src/compiler/ |
D | linkage.cc | 376 int stack_slot = i - register_parameter_count - stack_parameter_count; in GetStubCallDescriptor() local 378 stack_slot, MachineType::AnyTagged())); in GetStubCallDescriptor() 429 int stack_slot = i - register_parameter_count - stack_parameter_count; in GetBytecodeDispatchCallDescriptor() local 431 stack_slot, MachineType::AnyTagged())); in GetBytecodeDispatchCallDescriptor()
|
D | int64-lowering.cc | 609 Node* stack_slot = graph()->NewNode( in LowerNode() local 616 stack_slot, in LowerNode() 625 stack_slot, in LowerNode() 631 graph()->NewNode(machine()->Load(MachineType::Float64()), stack_slot, in LowerNode() 644 Node* stack_slot = graph()->NewNode( in LowerNode() local 650 stack_slot, graph()->NewNode(common()->Int32Constant(0)), input, in LowerNode() 654 machine()->Load(MachineType::Int32()), stack_slot, in LowerNode() 660 machine()->Load(MachineType::Int32()), stack_slot, in LowerNode()
|
D | wasm-compiler.cc | 1865 Node* stack_slot = in BuildCFuncInstruction() local 1870 SetEffect(graph()->NewNode(store_op, stack_slot, mcgraph()->Int32Constant(0), in BuildCFuncInstruction() 1876 SetEffect(graph()->NewNode(store_op, stack_slot, in BuildCFuncInstruction() 1883 BuildCCall(&sig, function, stack_slot); in BuildCFuncInstruction() 1886 stack_slot, mcgraph()->Int32Constant(0), in BuildCFuncInstruction() 1920 Node* stack_slot = in BuildIntToFloatConversionInstruction() local 1924 SetEffect(graph()->NewNode(store_op, stack_slot, mcgraph()->Int32Constant(0), in BuildIntToFloatConversionInstruction() 1929 BuildCCall(&sig, function, stack_slot); in BuildIntToFloatConversionInstruction() 1931 stack_slot, mcgraph()->Int32Constant(0), in BuildIntToFloatConversionInstruction() 1967 Node* stack_slot = in BuildCcallConvertFloat() local [all …]
|
D | simd-scalar-lowering.cc | 670 Node* stack_slot = in BuildF64Trunc() local 675 graph()->NewNode(store_op, stack_slot, mcgraph_->Int32Constant(0), in BuildF64Trunc() 680 args[1] = stack_slot; in BuildF64Trunc() 689 stack_slot, mcgraph_->Int32Constant(0), call, in BuildF64Trunc()
|
/external/v8/src/ppc/ |
D | simulator-ppc.cc | 4135 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(new_sp); in PushAddress() local 4136 *stack_slot = address; in PushAddress() 4144 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp); in PopAddress() local 4145 uintptr_t address = *stack_slot; in PopAddress()
|
/external/v8/tools/ |
D | grokdump.py | 1108 stack_slot = heap.stack_map.get(line_address) 1110 if stack_slot: 3117 stack_slot = self.heap.stack_map.get(line_address) 3119 if stack_slot:
|
/external/v8/src/arm64/ |
D | simulator-arm64.cc | 258 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(new_sp); in PushAddress() local 259 memcpy(stack_slot, &address, kPointerSize); in PushAddress() 267 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp); in PopAddress() local 268 uintptr_t address = *stack_slot; in PopAddress()
|
/external/v8/src/arm/ |
D | simulator-arm.cc | 5875 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(new_sp); in PushAddress() local 5876 *stack_slot = address; in PushAddress() 5884 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp); in PopAddress() local 5885 uintptr_t address = *stack_slot; in PopAddress()
|
/external/v8/src/mips/ |
D | simulator-mips.cc | 7097 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(new_sp); in PushAddress() local 7098 *stack_slot = address; in PushAddress() 7106 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp); in PopAddress() local 7107 uintptr_t address = *stack_slot; in PopAddress()
|
/external/v8/src/mips64/ |
D | simulator-mips64.cc | 7463 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(new_sp); in PushAddress() local 7464 *stack_slot = address; in PushAddress() 7472 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp); in PopAddress() local 7473 uintptr_t address = *stack_slot; in PopAddress()
|
/external/v8/src/s390/ |
D | simulator-s390.cc | 2617 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(new_sp); in PushAddress() local 2618 *stack_slot = address; in PushAddress() 2625 uintptr_t* stack_slot = reinterpret_cast<uintptr_t*>(current_sp); in PopAddress() local 2626 uintptr_t address = *stack_slot; in PopAddress()
|