/third_party/vixl/examples/aarch64/ |
H A D | swap-int32.cc | 42 // This call to Claim is not 16-byte aligned and would have failed in GenerateSwapInt32() 44 __ Claim(8); in GenerateSwapInt32()
|
H A D | swap4.cc | 37 __ Claim(16); in GenerateSwap4()
|
/third_party/vixl/benchmarks/aarch64/ |
H A D | bench-utils.cc | 124 // Claim space to use for load and stores. in GeneratePrologue() 129 __ Claim((4 * kQRegSize) + (16 * GetRandomBits(3))); in GeneratePrologue() 239 __ Claim(Operand(claim)); in GenerateOperandSequence() 241 __ Claim(Operand(32)); in GenerateOperandSequence()
|
/third_party/node/deps/v8/src/builtins/arm64/ |
H A D | builtins-arm64.cc | 120 __ Claim(slot_count); in Generate_JSBuiltinsConstructStubHelper() 323 __ Claim(x10); in Generate_JSConstructStubGeneric() 516 // Claim slots for arguments and receiver (rounded up to a multiple of two). in Generate_ResumeGeneratorTrampoline() 519 __ Claim(x11); in Generate_ResumeGeneratorTrampoline() 886 // Claim enough space for the arguments and the function, including an in Generate_JSEntryTrampolineHelper() 902 __ Claim(slots_to_claim); in Generate_JSEntryTrampolineHelper() 1685 __ Claim(slots_to_claim); in GenerateInterpreterPushArgs() 2398 // Claim space we need. If argc (without receiver) is even, slots_to_claim = in Generate_PrepareForCopyingVarargs() 2411 __ Claim(slots_to_claim); in Generate_PrepareForCopyingVarargs() 2718 __ Claim(slots_to_clai in Generate_PushBoundArguments() [all...] |
/third_party/node/deps/v8/src/compiler/backend/arm64/ |
H A D | code-generator-arm64.cc | 620 tasm->Claim(stack_slot_delta); in AdjustStackPointerForTailCall() 792 // selector has already performed a Claim to reserve space on the stack. in AssembleArchInstruction() 1497 __ Claim(count); in AssembleArchInstruction() 3141 __ Claim(required_slots); in AssembleArchInstruction() 3155 __ Claim(required_slots - 1); in AssembleArchInstruction() 3165 __ Claim(required_slots); in AssembleArchInstruction() 3179 __ Claim(required_slots + extra_slots); in AssembleArchInstruction() 3193 __ Claim(required_slots); in AssembleArchInstruction() 3209 __ Claim(returns); in AssembleArchInstruction()
|
/third_party/node/deps/v8/src/regexp/arm64/ |
H A D | regexp-macro-assembler-arm64.cc | 838 __ Claim(kNumberOfStackLocals * kWRegPerXReg); in GetCode() 888 __ Claim(num_wreg_to_allocate, kWRegSize); in GetCode() 1469 __ Claim(xreg_to_claim); in CallCheckStackGuardState()
|
/third_party/vixl/test/aarch64/ |
H A D | test-assembler-aarch64.cc | 5145 __ Claim(Operand(0)); 5147 __ Claim(Operand(xzr)); 7908 __ Claim(32); 7973 __ Claim(32); 8047 __ Claim(32); 8102 __ Claim(32); 8119 __ Claim(8); 8181 __ Claim(2 * list_1_size); 8208 __ Claim(2 * list_d_1_size); 8378 // * Claim <clai [all...] |
/third_party/node/deps/v8/src/codegen/arm64/ |
H A D | macro-assembler-arm64-inl.h | 1244 void TurboAssembler::Claim(int64_t count, uint64_t unit_size) { in Claim() function in v8::internal::TurboAssembler 1262 void TurboAssembler::Claim(const Register& count, uint64_t unit_size) { in Claim() function in v8::internal::TurboAssembler
|
H A D | macro-assembler-arm64.h | 738 // Claim or drop stack space. 740 // On Windows, Claim will write a value every 4k, as is required by the stack 748 inline void Claim(int64_t count, uint64_t unit_size = kXRegSize); 749 inline void Claim(const Register& count, uint64_t unit_size = kXRegSize);
|
H A D | macro-assembler-arm64.cc | 2356 Claim(slots_to_claim); in InvokePrologue() 2760 Claim(slots_to_claim, kXRegSize); in TruncateDoubleToI()
|
/third_party/node/deps/v8/src/wasm/baseline/arm64/ |
H A D | liftoff-assembler-arm64.h | 374 // decrementing the SP; consult {TurboAssembler::Claim}. in PatchPrepareStackFrame() 375 Claim(frame_size, 1); in PatchPrepareStackFrame() 3184 Claim(total_size, 1); in emit_i8x16_bitmask() 3256 Claim(size, 1); in emit_i8x16_bitmask() 3304 asm_->Claim(RoundUp(param_slots, 2));
|
/third_party/vixl/src/aarch64/ |
H A D | macro-assembler-aarch64.cc | 2454 void MacroAssembler::Claim(const Operand& size) { in Emit() function in vixl::aarch64::MacroAssembler
|
H A D | macro-assembler-aarch64.h | 1081 // Claim or drop stack space without actually accessing memory. 1086 void Claim(const Operand& size);
|
/third_party/vixl/test/aarch32/ |
H A D | test-assembler-aarch32.cc | 2756 __ Claim(0); in TEST() 2760 __ Claim(32); in TEST()
|
/third_party/vixl/src/aarch32/ |
H A D | macro-assembler-aarch32.h | 952 // Claim memory on the stack. in MacroAssembler() 953 // Note that the Claim, Drop, and Peek helpers below ensure that offsets used in MacroAssembler() 956 // Claim(3) in MacroAssembler() 957 // Claim(1) in MacroAssembler() 960 // Claim(3) -> sp = sp - 4 in MacroAssembler() 961 // Claim(1) -> sp = sp - 4 in MacroAssembler() 964 void Claim(int32_t size) { in MacroAssembler() function in vixl::aarch32::MacroAssembler
|