Home
last modified time | relevance | path

Searched refs:return_location (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/wasm/
Dwasm-debug.cc121 ReturnLocation return_location) { in FindNewPC() argument
148 if (return_location == kAfterBreakpoint) { in FindNewPC()
155 DCHECK_EQ(kAfterWasmCall, return_location); in FindNewPC()
487 void FloodWithBreakpoints(WasmFrame* frame, ReturnLocation return_location) { in FloodWithBreakpoints() argument
496 UpdateReturnAddress(frame, new_code, return_location); in FloodWithBreakpoints()
508 ReturnLocation return_location = kAfterBreakpoint; in PrepareStep() local
516 return_location = kAfterWasmCall; in PrepareStep()
519 FloodWithBreakpoints(frame, return_location); in PrepareStep()
764 ReturnLocation return_location = kAfterBreakpoint; in UpdateReturnAddresses() local
766 it.Advance(), return_location = kAfterWasmCall) { in UpdateReturnAddresses()
[all …]
/external/v8/src/codegen/arm64/
Dmacro-assembler-arm64.cc1983 Label return_location; in StoreReturnAddressAndCall() local
1984 Adr(x17, &return_location); in StoreReturnAddressAndCall()
2001 Bind(&return_location); in StoreReturnAddressAndCall()
3391 void TurboAssembler::StoreReturnAddressInWasmExitFrame(Label* return_location) { in StoreReturnAddressInWasmExitFrame() argument
3394 Adr(x17, return_location); in StoreReturnAddressInWasmExitFrame()
Dmacro-assembler-arm64.h1366 void StoreReturnAddressInWasmExitFrame(Label* return_location);
/external/v8/src/compiler/backend/arm64/
Dcode-generator-arm64.cc833 Label return_location; in AssembleArchInstruction() local
836 __ StoreReturnAddressInWasmExitFrame(&return_location); in AssembleArchInstruction()
846 __ Bind(&return_location); in AssembleArchInstruction()
/external/v8/src/compiler/backend/x64/
Dcode-generator-x64.cc1027 Label return_location; in AssembleArchInstruction() local
1030 __ leaq(kScratchRegister, Operand(&return_location, 0)); in AssembleArchInstruction()
1041 __ bind(&return_location); in AssembleArchInstruction()
/external/v8/src/compiler/backend/s390/
Dcode-generator-s390.cc1523 Label return_location; in AssembleArchInstruction() local
1527 __ larl(r0, &return_location); in AssembleArchInstruction()
1537 __ bind(&return_location); in AssembleArchInstruction()
/external/v8/src/compiler/backend/ia32/
Dcode-generator-ia32.cc852 Label return_location; in AssembleArchInstruction() local
861 __ add(scratch, Immediate::CodeRelativeOffset(&return_location)); in AssembleArchInstruction()
873 __ bind(&return_location); in AssembleArchInstruction()