BLRS (pair of capabilities)

Branch with Link to sealed capability Register with possible switch to Restricted calls a subroutine at an address in the source register, sealing and setting C30 to PCC+4. The PE may switch to Restricted based on the Executive permission in PCC.

313029282726252423222120191817161514131211109876543210
11000010110Cm101001Cn00000
opc<1>opc<0>

BLRS C29, <Cn>, <Cm>

integer n = UInt(Cn); integer m = UInt(Cm); BranchType branch_type = BranchType_INDCALL;

Assembler Symbols

<Cn>

Is the capability name of the first source register, encoded in the "Cn" field.

<Cm>

Is the capability name of the second source register, encoded in the "Cm" field.

Operation

CheckCapabilitiesEnabled(); Capability sealed_target = C[n]; Capability sealed_data = C[m]; if !IsInRestricted() && !CapCheckPermissions(sealed_target, CAP_PERM_EXECUTIVE) then sealed_target = CapWithTagClear(sealed_target); Capability target; if CapIsTagSet(sealed_target) && CapIsTagSet(sealed_data) && CapIsSealed(sealed_target) && CapIsSealed(sealed_data) && UInt(CapGetObjectType(sealed_target)) > CAP_MAX_FIXED_SEAL_TYPE && CapGetObjectType(sealed_target) == CapGetObjectType(sealed_data) && CapCheckPermissions(sealed_target, CAP_PERM_BRANCH_SEALED_PAIR) && CapCheckPermissions(sealed_data, CAP_PERM_BRANCH_SEALED_PAIR) && CapCheckPermissions(sealed_target, CAP_PERM_EXECUTE) && !CapCheckPermissions(sealed_data, CAP_PERM_EXECUTE) then target = CapUnseal(sealed_target); C[29] = CapUnseal(sealed_data); else target = CapWithTagClear(sealed_target); C[29] = sealed_data; integer linkoffset = 4; Capability link; if IsInC64() then linkoffset = linkoffset + 1; link = CapAdd(PCC[], linkoffset); if CCTLR[].SBL == '1' then link = CapSetObjectType(link, CAP_SEAL_TYPE_RB); C[30] = link; BranchXToCapability(target, branch_type);


Internal version only: isa v32.13, AdvSIMD v29.04, pseudocode morello-2022-01_rc2, capabilities morello-2022-01_rc2 ; Build timestamp: 2022-01-11T11:23

Copyright © 2010-2022 Arm Limited or its affiliates. All rights reserved. This document is Non-Confidential.