- LLVM Essentials
- Suyog Sarda Mayur Pandey
- 195字
- 2021-07-30 09:55:51
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "The LLVM Pass Manager
uses the explicitly mentioned dependency information."
A block of code is set as follows:
int add(int a) { return globvar + a; }
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
Value *StartVal = Builder.getInt32(1); Value *Res = createLoop(Builder, List, VL, StartVal, Arg2); Builder.CreateRet(Res);
Any command-line input or output is written as follows:
$ clang -emit-llvm -c -S add.c $ cat add.ll
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "Clicking the Next button moves you to the next screen."
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
- C++ Primer習(xí)題集(第5版)
- 零基礎(chǔ)學(xué)Visual C++第3版
- Game Programming Using Qt Beginner's Guide
- Oracle從新手到高手
- Android開發(fā)精要
- 數(shù)據(jù)庫系統(tǒng)原理及MySQL應(yīng)用教程
- 面向STEM的Scratch創(chuàng)新課程
- 基于差分進(jìn)化的優(yōu)化方法及應(yīng)用
- 零基礎(chǔ)學(xué)Java程序設(shè)計
- 正則表達(dá)式經(jīng)典實例(第2版)
- Mastering KnockoutJS
- Unity 5 for Android Essentials
- Webpack實戰(zhàn):入門、進(jìn)階與調(diào)優(yōu)
- 軟件項目管理實用教程
- Android Game Programming by Example