summaryrefslogtreecommitdiffstats
path: root/spec/rtems/basedefs/if/obfuscate-variable.yml
blob: bf644b42ab316024f1072f2a7b06d474a8907c51 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
SPDX-License-Identifier: CC-BY-SA-4.0 OR BSD-2-Clause
brief: |
  Obfuscates the variable so that the compiler cannot perform optimizations
  based on the variable value.
copyrights:
- Copyright (C) 2016, 2018 embedded brains GmbH & Co. KG
definition:
  default:
    attributes: null
    body: |
      (void) ( ${.:/params[0]/name} )
    params: []
    return: null
  variants:
  - definition:
      attributes: null
      body: |
        ${/compiler/if/asm:/name}( "" : "+r" ( ${.:/params[0]/name} ) )
      params: []
      return: null
    enabled-by:
    - defined(${/compiler/if/gnuc:/name})
description: |
  The variable must be simple enough to fit into a register.
enabled-by: true
index-entries: []
interface-type: macro
links:
- role: interface-placement
  uid: header
- role: interface-ingroup
  uid: group
name: RTEMS_OBFUSCATE_VARIABLE
notes: null
params:
- description: |
    is the variable to obfuscate.
  dir: null
  name: _var
return: null
type: interface