Compiler(7)
-
[Compiler] 코드 최적화
Compiler miro.com
2023.06.17 -
[Compiler] 코드 생성
Compiler miro.com
2023.06.17 -
[Compiler] 의미 분석 & 중간 코드 생성
Compiler miro.com
2023.06.17 -
[Compiler] Bison 실습하기
Compiler miro.com GitHub - meyerd/flex-bison-example: A simple example demonstrating a calculator written with flex/bison A simple example demonstrating a calculator written with flex/bison - GitHub - meyerd/flex-bison-example: A simple example demonstrating a calculator written with flex/bison github.com 예제 준비 완료! 출처 : https://github.com/meyerd/flex-bison-example
2023.06.02 -
[Compiler] Yacc, Bison
Compiler miro.com
2023.06.02 -
[Compiler] 수식 번역 예
Compiler miro.com 1. 수식 번역 예 A = B * C + D와 같은 C 프로그래밍 언어의 할당문은 다음과 같은 어셈브리어 인스트럭션으로 번역된다. 그리고 실제 컴퓨터에서 어떻게 동작할지 표현해 보았다. 2. 컴파일러 vs 인터프리터
2023.03.09 -
[Compiler] 컴파일러 구조
Compiler miro.com 1. 컴파일러 가. 컴파일러란? 컴파일(Compile)은 주어진 language로 작성된 컴퓨터 프로그램을 다른 언어의 동등한 프로그램으로 변환하는 프로세스입니다. 일반적으로 컴파일러는 C 또는 Java와 같은 고급 언어를 CPU가 이해할 수 있는, 즉 어셈블리어와 같은 기계 언어로 변환합니다. 출처 : https://developer.mozilla.org/ko/docs/Glossary/Compile 나. 컴파일러 구조 2. 주요 용어 BNF : Backus–Naur form 약칭 BNF는 문맥 자유 문법을 나타내기 위해 만들어진 표기법이다. 출처 :https://ko.wikipedia.org/wiki/배커스-나우르_표기법 출처 : http://www.kwangsiklee..
2023.03.08