• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
      • Abnf
      • Vwsim
      • Isar
      • Wp-gen
      • Dimacs-reader
      • Pfcs
      • Legacy-defrstobj
      • C
        • Syntax-for-tools
          • Formalized-subset
          • Mapping-to-language-definition
          • Input-files
          • Compilation-database
          • Printer
          • Output-files
          • Abstract-syntax-operations
            • Expr-priority
            • Expr-priority-<=
            • Combine-dirabsdeclor-into-dirabsdeclor
            • Declor/dirdeclor-rename
            • Check-decl-spec-list-all-typespec/stoclass
            • Binop-expected-priorities
            • Expr->priority
              • Transunit-at-path
              • Declor/dirdeclor->ident
              • Declor/dirdeclor-has-params-p
              • Check-expr-binary
              • Apply-post-inc/dec-ops
              • Check-spec/qual-list-all-typespec
              • Apply-pre-inc/dec-ops
              • Check-decl-spec-list-all-typespec
              • Expr-to-asg-expr-list
              • Check-expr-mul
              • Expr-unary/postfix/primary-p
              • Transunit-ensemble-paths
              • Check-struni-spec-no-members
              • Expr-postfix/primary-p
              • Dirabsdeclor-declor?-nil-p
              • Check-enum-spec-no-list
              • Expr-zerop
              • Expr-priority->=
              • Decl-spec-list-to-stor-spec-list
              • Spec/qual-list-to-type-spec-list
              • Expr-priority->
              • Expr-priority-<
              • Declor-spec-list-filter-out-linkage-specs
              • Decl-spec-list-to-type-spec-list
              • Ident-list-map-expr-ident
              • Binop->priority
              • Stringlit-list->prefix?-list
              • Declor-spec-list-make-static
              • Binop-strictp
              • Check-expr-iconst
              • Init-declor->ident
              • Check-expr-ident
              • Dirabsdeclor-to-dirdeclor
              • Dirabsdeclor-option-to-dirdeclor
              • Dirdeclor-has-params-p
              • Absdeclor-to-declor
              • Dirdeclor-rename
              • Declor-rename
              • Declor-has-params-p
              • Dirdeclor->ident
              • Declor->ident
            • Implementation-environments
            • Abstract-syntax
            • Concrete-syntax
            • Disambiguation
            • Validation
            • Gcc-builtins
            • Preprocessing
            • Parsing
          • Atc
          • Transformation-tools
          • Language
          • Representation
          • Insertion-sort
          • Pack
        • Proof-checker-array
        • Soft
        • Farray
        • Rp-rewriter
        • Instant-runoff-voting
        • Imp-language
        • Sidekick
        • Ethereum
        • Leftist-trees
        • Java
        • Riscv
        • Taspi
        • Bitcoin
        • Zcash
        • Des
        • X86isa
        • Sha-2
        • Yul
        • Proof-checker-itp13
        • Regex
        • ACL2-programming-language
        • Json
        • Jfkr
        • Equational
        • Cryptography
        • Axe
        • Poseidon
        • Where-do-i-place-my-book
        • Aleo
        • Bigmems
        • Builtins
        • Execloader
        • Solidity
        • Paco
        • Concurrent-programs
        • Bls12-377-curves
      • Debugging
      • Community
      • Std
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Abstract-syntax-operations

    Expr->priority

    Priorities of expressions.

    Signature
    (expr->priority expr) → priority
    Arguments
    expr — Guard (exprp expr).
    Returns
    priority — Type (expr-priorityp priority).

    Each expression in the abstract syntax has an associated priority (see expr-priority), straightforwardly according to the grammar.

    An ambiguous sizeof has the same priority as an unambiguous one. An ambiguous _Alignof (and keyword variants) has the same priority as an unambiguous one. An ambiguous cast/call expression is given the higher priority of the two possibilities, i.e. the priority of a postfix expression. Ambiguous cast/binary expressions are given the higher priority of the two possibilities, i.e. the priority of a cast expression.

    Definitions and Theorems

    Function: expr->priority

    (defun expr->priority (expr)
      (declare (xargs :guard (exprp expr)))
      (expr-case expr
                 :ident (expr-priority-primary)
                 :const (expr-priority-primary)
                 :string (expr-priority-primary)
                 :paren (expr-priority-primary)
                 :gensel (expr-priority-primary)
                 :arrsub (expr-priority-postfix)
                 :funcall (expr-priority-postfix)
                 :member (expr-priority-postfix)
                 :memberp (expr-priority-postfix)
                 :complit (expr-priority-postfix)
                 :unary (expr-priority-unary)
                 :label-addr (expr-priority-unary)
                 :sizeof (expr-priority-unary)
                 :sizeof-ambig (expr-priority-unary)
                 :alignof (expr-priority-unary)
                 :alignof-ambig (expr-priority-unary)
                 :cast (expr-priority-cast)
                 :binary (binop->priority expr.op)
                 :cond (expr-priority-cond)
                 :comma (expr-priority-expr)
                 :cast/call-ambig (expr-priority-postfix)
                 :cast/mul-ambig (expr-priority-cast)
                 :cast/add-ambig (expr-priority-cast)
                 :cast/sub-ambig (expr-priority-cast)
                 :cast/and-ambig (expr-priority-cast)
                 :cast/logand-ambig (expr-priority-cast)
                 :stmt (expr-priority-primary)
                 :tycompat (expr-priority-primary)
                 :offsetof (expr-priority-primary)
                 :va-arg (expr-priority-primary)
                 :extension (expr-priority-primary)))

    Theorem: expr-priorityp-of-expr->priority

    (defthm expr-priorityp-of-expr->priority
      (b* ((priority (expr->priority expr)))
        (expr-priorityp priority))
      :rule-classes :rewrite)

    Theorem: expr->priority-of-expr-fix-expr

    (defthm expr->priority-of-expr-fix-expr
      (equal (expr->priority (expr-fix expr))
             (expr->priority expr)))

    Theorem: expr->priority-expr-equiv-congruence-on-expr

    (defthm expr->priority-expr-equiv-congruence-on-expr
      (implies (expr-equiv expr expr-equiv)
               (equal (expr->priority expr)
                      (expr->priority expr-equiv)))
      :rule-classes :congruence)