What is meant by semantic analysis

Semantic analysis is the task of ensuring that the declarations and statements of a program are semantically correct, i.e, that their meaning is clear and consistent with the way in which control structures and data types are supposed to be used.  Semantic analysis typically involves: 

  •  Type checking – Data types are used in a manner that is consistent with their definition (i. e., only with compatible data types, only with operations that are defined for them, etc.) 
  • Label Checking – Labels references in a program must exist. 
  •  Flow control checks – control structures must be used in their proper fashion (no GOTOs into a FORTRAN DO statement, no breaks outside a loop or switch statement, etc.) 

Leave a Reply