• No results found

The Retargetability Model of GCC

N/A
N/A
Protected

Academic year: 2022

Share "The Retargetability Model of GCC"

Copied!
49
0
0

Loading.... (view fulltext now)

Full text

(1)

Workshop on Essential Abstractions in GCC

The Retargetability Model of GCC

GCC Resource Center

(www.cse.iitb.ac.in/grc)

Department of Computer Science and Engineering, Indian Institute of Technology, Bombay

2 July 2012

(2)

2 July 2012 Retargetability Model: Outline 1/18

Outline

• A Recap

• Generating the code generators

• Using the generator code generators

(3)

Part 1

A Recap

(4)

2 July 2012 Retargetability Model: A Recap 2/18

Retargetability Mechanism of GCC

Language Specific

Code

Language and Machine Independent Generic Code

Machine Dependent

Generator Code

Machine Descriptions Compiler Generation Framework

Input Language Target Name

Parser Gimplifier Tree SSA

Optimizer Expander Optimizer Recognizer Selected Copied

Copied

Generated

Generated

Generated Compiler

Development Time

Build Time

Use Time

(5)

2 July 2012 Retargetability Model: A Recap 2/18

Retargetability Mechanism of GCC

Language Specific

Code

Language and Machine Independent Generic Code

Machine Dependent

Generator Code

Machine Descriptions Compiler Generation Framework

Input Language Target Name

Parser Gimplifier Tree SSA

Optimizer Expander Optimizer Recognizer Selected Copied

Copied

Generated

Generated

Generated Compiler

Development Time

Build Time

Use Time

GIMPLE→IR-RTL +

IR-RTL→ ASM

Essential Abstractions in GCC GCC Resource Center, IIT Bombay

(6)

2 July 2012 Retargetability Model: A Recap 2/18

Retargetability Mechanism of GCC

Language Specific

Code

Language and Machine Independent Generic Code

Machine Dependent

Generator Code

Machine Descriptions Compiler Generation Framework

Input Language Target Name

Parser Gimplifier Tree SSA

Optimizer Expander Optimizer Recognizer Selected Copied

Copied

Generated

Generated

Generated Compiler

Development Time

Build Time

Use Time

GIMPLE→PN + PN→IR-RTL

+ IR-RTL→ ASM

GIMPLE→IR-RTL +

IR-RTL→ ASM

(7)

2 July 2012 Retargetability Model: A Recap 2/18

Retargetability Mechanism of GCC

Language Specific

Code

Language and Machine Independent Generic Code

Machine Dependent

Generator Code

Machine Descriptions Compiler Generation Framework

Input Language Target Name

Parser Gimplifier Tree SSA

Optimizer Expander Optimizer Recognizer Selected Copied

Copied

Generated

Generated

Generated Compiler

Development Time

Build Time

Use Time

GIMPLE→PN + PN→IR-RTL

+ IR-RTL→ ASM

GIMPLE→IR-RTL +

IR-RTL→ ASM

Essential Abstractions in GCC GCC Resource Center, IIT Bombay

(8)

2 July 2012 Retargetability Model: A Recap 2/18

Retargetability Mechanism of GCC

Language Specific

Code

Language and Machine Independent Generic Code

Machine Dependent

Generator Code

Machine Descriptions Compiler Generation Framework

Input Language Target Name

Parser Gimplifier Tree SSA

Optimizer Expander Optimizer Recognizer Selected Copied

Copied

Generated

Generated

Generated Compiler

Development Time

Build Time

Use Time

GIMPLE→PN + PN→IR-RTL

+ IR-RTL→ ASM

GIMPLE→IR-RTL +

IR-RTL→ ASM

(9)

2 July 2012 Retargetability Model: A Recap 3/18

Plugin Structure in cc1

toplev main

front end

pass manager

pass 1

pass 2

. . .

pass expand

. . .

pass n

double arrow represents control flow whereas single arrow represents pointer or index

code for pass 2 code for pass 1

recognizer code

expander code

optab table langhook

. . .

code for language 1

code for language 2

code for language n

Essential Abstractions in GCC GCC Resource Center, IIT Bombay

(10)

2 July 2012 Retargetability Model: A Recap 3/18

Plugin Structure in cc1

toplev main

front end

pass manager

pass 1

pass 2

. . .

pass expand

. . .

pass n

code for pass 2 code for pass 1

recognizer code

expander code

optab table langhook

. . .

code for language 1

code for language 2

code for language n

insn data generated code for machine 1

MD 1 MD 2 MD n

(11)

2 July 2012 Retargetability Model: A Recap 3/18

Plugin Structure in cc1

toplev main

front end

pass manager

pass 1

pass 2

. . .

pass expand

. . .

pass n

code for pass 2 code for pass 1

recognizer code

expander code

optab table langhook

. . .

code for language 1

code for language 2

code for language n

insn data generated code for machine 2

MD 1 MD 2 MD n

Essential Abstractions in GCC GCC Resource Center, IIT Bombay

(12)

2 July 2012 Retargetability Model: A Recap 3/18

Plugin Structure in cc1

toplev main

front end

pass manager

pass 1

pass 2

. . .

pass expand

. . .

pass n

code for pass 2 code for pass 1

recognizer code

expander code

optab table langhook

. . .

code for language 1

code for language 2

code for language n

insn data generated code for machine n

MD 1 MD 2 MD n

(13)

2 July 2012 Retargetability Model: A Recap 4/18

What is “Generated”?

• Info about instructions supported by chosen target, e.g.

Listingdata structures (e.g. instruction pattern lists)

Indexingdata structures, since diff. targets give diff. lists.

• C functions thatgenerateRTL internal representation

• Any useful “attributes”, e.g.

Semantic groupings: arithmetic, logical, I/O etc.

Processor unit usage groups for pipeline utilisation

Essential Abstractions in GCC GCC Resource Center, IIT Bombay

(14)

2 July 2012 Retargetability Model: A Recap 5/18

Information Supplied by Machine Descriptions

• The target instructions – as ASM strings

• A description of the semantics of each

• A description of the features of each like

Data size limits

One of the operands must be a register

Implicit operands

Register restrictions

Information supplied in define insnas

The target instruction ASM string

A description of it’s semantics RTL Template

Operand data size limits predicates

Register restrictions constraints

(15)

Part 2

Generating the Code Generators

(16)

2 July 2012 Retargetability Model: Generating the Code Generators 6/18

Using Target Specific RTL as IR

GIMPLE ASSIGN (set (<dest>) (<src>))

(17)

2 July 2012 Retargetability Model: Generating the Code Generators 6/18

Using Target Specific RTL as IR

GIMPLE ASSIGN "movsi" (set (<dest>) (<src>)) Standard Pattern Name

Essential Abstractions in GCC GCC Resource Center, IIT Bombay

(18)

2 July 2012 Retargetability Model: Generating the Code Generators 6/18

Using Target Specific RTL as IR

GIMPLE ASSIGN "movsi" (set (<dest>) (<src>)) Standard Pattern Name

Separate CGF code and MD

GIMPLE ASSIGN "movsi" "movsi" (set (<dest>) (<src>))

(19)

2 July 2012 Retargetability Model: Generating the Code Generators 6/18

Using Target Specific RTL as IR

GIMPLE ASSIGN "movsi" (set (<dest>) (<src>)) Standard Pattern Name

Separate CGF code and MD

GIMPLE ASSIGN "movsi" "movsi" (set (<dest>) (<src>)) Implement

GIMPLE ASSIGN "movsi" "movsi" (set (<dest>) (<src>))

Unnecessary in CGF;

hard code Implement in MD

Essential Abstractions in GCC GCC Resource Center, IIT Bombay

(20)

2 July 2012 Retargetability Model: Generating the Code Generators 7/18

Retargetability ⇒ Multiple MD vs. One CGF!

GIMPLE ASSIGN "movsi"

CGF

"movsi",(set (<dest>) (<src>)) MD 1

"movsi",(set (<dest>) (<src>)) MD n

CGF needs:

An interfaceimmune to MD authoring variations

(21)

2 July 2012 Retargetability Model: Generating the Code Generators 7/18

Retargetability ⇒ Multiple MD vs. One CGF!

GIMPLE ASSIGN "movsi"

CGF

"movsi",(set (<dest>) (<src>)) MD 1

"movsi",(set (<dest>) (<src>)) MD n

How ?

CGF needs:

An interfaceimmune to MD authoring variations

Essential Abstractions in GCC GCC Resource Center, IIT Bombay

(22)

2 July 2012 Retargetability Model: Generating the Code Generators 7/18

Retargetability ⇒ Multiple MD vs. One CGF!

GIMPLE ASSIGN "movsi"

CGF

"movsi",(set (<dest>) (<src>)) MD 1

"movsi",(set (<dest>) (<src>)) MD n

How ?

Basic Approach: Tabulate GIMPLE – RTL

struct optab table [] struct insn data []

CGF needs:

An interfaceimmune to MD authoring variations

(23)

2 July 2012 Retargetability Model: Generating the Code Generators 8/18

MD Information Data Structures Two principal data structures

• struct optab– Interface to CGF

• struct insn data– All information about a pattern

Array of each pattern read

Some patterns are SPNs

Each pattern is accessed using the generated index

Supporting data structures

• enum insn code: Index of patterns available in the given MD

Note

Data structures are named in the CGF, but populated at build time.

Generating target specific code = populating these data structures.

Essential Abstractions in GCC GCC Resource Center, IIT Bombay

(24)

2 July 2012 Retargetability Model: Generating the Code Generators 9/18

Operation Table

• One optabfor every standard pattern name struct optab_d

{

enum rtx_code code;

char libcall_suffix;

const char *libcall_basename;

void (*libcall_gen)(struct optab_d *, const char *name, char enum machine_mode);

struct optab_handlers handlers[NUM_MACHINE_MODES];

};

typedef struct optab_d * optab;

(25)

2 July 2012 Retargetability Model: Generating the Code Generators 10/18

Instruction Data

• One entry for every pattern defined in .md file

• struct insn data d

Name

Information about assembly code generation

◦ Single string

◦ Multiple string

◦ Function returning the required string

◦ No assembly code

A gen function (as generated in insn-emit.c)

Output format (1=single, 2=multi, 3=function, 0=none).

Essential Abstractions in GCC GCC Resource Center, IIT Bombay

(26)

2 July 2012 Retargetability Model: Generating the Code Generators 11/18

Assume movsi is supported but movsf is not supported. . .

optab table

. . . .

OTI mov

mov optab

$(SOURCE D)/gcc/optabs.h

$(SOURCE D)/gcc/optabs.c

(27)

2 July 2012 Retargetability Model: Generating the Code Generators 11/18

Assume movsi is supported but movsf is not supported. . .

optab table

. . . .

OTI mov

mov optab

handler

$(SOURCE D)/gcc/optabs.h

$(SOURCE D)/gcc/optabs.c

Essential Abstractions in GCC GCC Resource Center, IIT Bombay

(28)

2 July 2012 Retargetability Model: Generating the Code Generators 11/18

Assume movsi is supported but movsf is not supported. . .

optab table

. . . .

OTI mov

mov optab

handler

SI insn code

CODE FOR Nothing SF insn code

CODE FOR Nothing

$(SOURCE D)/gcc/optabs.h

$(SOURCE D)/gcc/optabs.c

(29)

2 July 2012 Retargetability Model: Generating the Code Generators 11/18

Assume movsi is supported but movsf is not supported. . .

optab table

. . . .

OTI mov

mov optab

handler

SI insn code

CODE FOR Nothing SF insn code

CODE FOR Nothing

$(SOURCE D)/gcc/optabs.h

$(SOURCE D)/gcc/optabs.c $(BUILD)/gcc/insn-output.c insn data

. . . . 1280

"movsi"

. . .

gen movsi . . .

Essential Abstractions in GCC GCC Resource Center, IIT Bombay

(30)

2 July 2012 Retargetability Model: Generating the Code Generators 11/18

Assume movsi is supported but movsf is not supported. . .

optab table

. . . .

OTI mov

mov optab

handler

SI insn code

CODE FOR Nothing SF insn code

CODE FOR Nothing

$(SOURCE D)/gcc/optabs.h

$(SOURCE D)/gcc/optabs.c $(BUILD)/gcc/insn-output.c insn data

. . . . 1280

"movsi"

. . .

gen movsi . . .

$BUILD/gcc/insn-codes.h CODE FOR movsi=1280

CODE FOR movsf=CODE FOR nothing

(31)

2 July 2012 Retargetability Model: Generating the Code Generators 11/18

Assume movsi is supported but movsf is not supported. . .

optab table

. . . .

OTI mov

mov optab

handler

SI insn code

CODE FOR Nothing SF insn code

CODE FOR Nothing

$(SOURCE D)/gcc/optabs.h

$(SOURCE D)/gcc/optabs.c $(BUILD)/gcc/insn-output.c insn data

. . . . 1280

"movsi"

. . .

gen movsi . . .

$BUILD/gcc/insn-codes.h CODE FOR movsi=1280

CODE FOR movsf=CODE FOR nothing

$BUILD/gcc/insn-opinit.c ...

Essential Abstractions in GCC GCC Resource Center, IIT Bombay

(32)

2 July 2012 Retargetability Model: Generating the Code Generators 11/18

Assume movsi is supported but movsf is not supported. . .

optab table

. . . .

OTI mov

mov optab

handler

SI insn code

CODE FOR Nothing SF insn code

CODE FOR Nothing

$(SOURCE D)/gcc/optabs.h

$(SOURCE D)/gcc/optabs.c $(BUILD)/gcc/insn-output.c insn data

. . . . 1280

"movsi"

. . .

gen movsi . . .

$BUILD/gcc/insn-codes.h CODE FOR movsi=1280

CODE FOR movsf=CODE FOR nothing

$BUILD/gcc/insn-opinit.c ...

(33)

2 July 2012 Retargetability Model: Generating the Code Generators 11/18

Assume movsi is supported but movsf is not supported. . .

optab table

. . . .

OTI mov

mov optab

handler

SI insn code CODE FOR movsi SF insn code

CODE FOR nothing

$(SOURCE D)/gcc/optabs.h

$(SOURCE D)/gcc/optabs.c $(BUILD)/gcc/insn-output.c insn data

. . . . 1280

"movsi"

. . .

gen movsi . . .

$BUILD/gcc/insn-codes.h CODE FOR movsi=1280

CODE FOR movsf=CODE FOR nothing

$BUILD/gcc/insn-opinit.c ...

Runtime initialization of data structure using func- tionset optab handler

Essential Abstractions in GCC GCC Resource Center, IIT Bombay

(34)

2 July 2012 Retargetability Model: Generating the Code Generators 11/18

Assume movsi is supported but movsf is not supported. . .

optab table

. . . .

OTI mov

mov optab

handler

SI insn code CODE FOR movsi SF insn code

CODE FOR nothing

$(SOURCE D)/gcc/optabs.h

$(SOURCE D)/gcc/optabs.c $(BUILD)/gcc/insn-output.c insn data

. . . . 1280

"movsi"

. . .

gen movsi . . .

$BUILD/gcc/insn-codes.h CODE FOR movsi=1280

CODE FOR movsf=CODE FOR nothing

$BUILD/gcc/insn-opinit.c ...

Runtime initialization of data structure using func- tionset optab handler

(35)

2 July 2012 Retargetability Model: Generating the Code Generators 12/18

GCC Generation Phase – Revisited

Generator Generated Information Description

from MD genopinit insn-opinit.c

void

init all optabs (void);

Operations Table Initialiser

gencodes insn-codes.h

enum insn code

= {...

CODE FOR movsi = 1280,

...}

Index of patterns

genooutput insn-output.c

struct insn data [CODE].genfun = /* fn ptr */

All insn data e.g. gen function

genemit insn-emit.c

rtx

gen rtx movsi (/* args */) {/* body */}

RTL emission functions

Essential Abstractions in GCC GCC Resource Center, IIT Bombay

(36)

2 July 2012 Retargetability Model: Generating the Code Generators 13/18

Explicit Calls to gen<SPN> functions

• In some cases, an entry is not made ininsn datatable for some SPNs.

• genfunctions for such SPNs are explicitly called.

• These are mostly related to

Function calls

Setting up of activation records

Non-local jumps

etc. (i.e. deeper study is required on this aspect)

(37)

2 July 2012 Retargetability Model: Generating the Code Generators 14/18

Handling C Code in define expand

(define_expand "movsi"

[( set (op0) (op1))]

""

"{ /* C CODE OF DEFINE EXPAND */ }")

rtx

gen_movsi (rtx operand0, rtx operand1) {

...

{

/* C CODE OF DEFINE EXPAND */

}

emit_insn (gen_rtx_ SET (VOIDmode, operand0, operand1) ...

}

Essential Abstractions in GCC GCC Resource Center, IIT Bombay

(38)

Part 3

Using the Code Generators

(39)

2 July 2012 Retargetability Model: Using the Code Generators 15/18

cc1 Control Flow: GIMPLE to RTL Expansion (pass expand)

gimple_expand_cfg

expand_gimple_basic_block(bb) expand_gimple_cond(stmt) expand_gimple_stmt(stmt)

expand_gimple_stmt_1 (stmt) expand_expr_real_2

expand_expr /* Operands */

expand_expr_real optab_for_tree_code

expand_binop /* Now we have rtx for operands */

expand_binop_directly

/* The plugin for a machine */

code=optab_handler(binoptab,mode) GEN_FCN

emit_insn

Essential Abstractions in GCC GCC Resource Center, IIT Bombay

(40)

2 July 2012 Retargetability Model: Using the Code Generators 16/18

RTL Generation

expand_binop_directly

... /* Various cases of expansion */

/* One case: integer mode move */

icode = mov_optab->handler[SImode].insn_code if (icode != CODE_FOR_nothing) {

... /* preparatory code */

emit_insn (GEN_FCN(icode)(dest,src));

}

(41)

2 July 2012 Retargetability Model: Using the Code Generators 16/18

RTL Generation

expand_binop_directly

... /* Various cases of expansion */

/* One case: integer mode move */

icode = mov_optab->handler[SImode].insn_code if (icode != CODE_FOR_nothing) {

... /* preparatory code */

emit_insn (GEN_FCN(icode)(dest,src));

}

Seek index

Essential Abstractions in GCC GCC Resource Center, IIT Bombay

(42)

2 July 2012 Retargetability Model: Using the Code Generators 16/18

RTL Generation

expand_binop_directly

... /* Various cases of expansion */

/* One case: integer mode move */

icode = mov_optab->handler[SImode].insn_code if (icode != CODE_FOR_nothing) {

... /* preparatory code */

emit_insn (GEN_FCN(icode)(dest,src));

}

insn-codes.h enum insn code

= {...

CODE FOR movsi = 1280,

...}

(43)

2 July 2012 Retargetability Model: Using the Code Generators 16/18

RTL Generation

expand_binop_directly

... /* Various cases of expansion */

/* One case: integer mode move */

icode = mov_optab->handler[SImode].insn_code if (icode != CODE_FOR_nothing) {

... /* preparatory code */

emit_insn (GEN_FCN(icode)(dest,src));

}

insn-codes.h enum insn code

= {...

CODE FOR movsi = 1280,

...}

Got index into insn data

Essential Abstractions in GCC GCC Resource Center, IIT Bombay

(44)

2 July 2012 Retargetability Model: Using the Code Generators 16/18

RTL Generation

expand_binop_directly

... /* Various cases of expansion */

/* One case: integer mode move */

icode = mov_optab->handler[SImode].insn_code if (icode != CODE_FOR_nothing) {

... /* preparatory code */

emit_insn (GEN_FCN(icode)(dest,src));

}

#define GEN FCN(code) insn data[code].genfun Useicode (= 1280)

(45)

2 July 2012 Retargetability Model: Using the Code Generators 16/18

RTL Generation

expand_binop_directly

... /* Various cases of expansion */

/* One case: integer mode move */

icode = mov_optab->handler[SImode].insn_code if (icode != CODE_FOR_nothing) {

... /* preparatory code */

emit_insn (GEN_FCN(icode)(dest,src));

}

#define GEN FCN(code) insn data[code].genfun insn-output.c

insn data[1280].genfun

= gen movsi

Essential Abstractions in GCC GCC Resource Center, IIT Bombay

(46)

2 July 2012 Retargetability Model: Using the Code Generators 16/18

RTL Generation

expand_binop_directly

... /* Various cases of expansion */

/* One case: integer mode move */

icode = mov_optab->handler[SImode].insn_code if (icode != CODE_FOR_nothing) {

... /* preparatory code */

emit_insn (GEN_FCN(icode)(dest,src));

}

#define GEN FCN(code) insn data[code].genfun Execute: gen movsi (dest,src)

(47)

2 July 2012 Retargetability Model: Using the Code Generators 17/18

RTL to ASM Conversion

• Simple pattern matching of IR RTLs and the patterns present in all named, un-named, standard, non-standard patterns defined usingdefine insn.

• A DFA (deterministic finite automaton) is constructed and the first match is used.

Essential Abstractions in GCC GCC Resource Center, IIT Bombay

(48)

Part 4

Conclusions

(49)

2 July 2012 Retargetability Model: Conclusions 18/18

A Comparison with Davidson Fraser Model

• Retargetability in Davidson Fraser Model

Manually rewriting expander and recognizer

Simple enough for machines of 1984 era

• Retargetability in GCC

Automatic construction possible by separating machine specific details in carefully designed data structures

List insns as they appear in the chosen MD

Index them

Supply index to the CGF

Essential Abstractions in GCC GCC Resource Center, IIT Bombay

References

Related documents

2 July 2011 Intro to Machine Descriptions: Essential Constructs in Machine Descriptions 6/21. The GCC

For a fast flow and context sensitive pointer analysis, we can reduce the number of computations done at a program point.. This can be done in following

Essential Abstractions in GCC GCC Resource Center, IIT Bombay.. 1 July 2013 Retargetability Model: Generating the Code Generators 13/18. Explicit Calls to

Parameter 1 Return Address Caller’s FPR (Control Link).

Essential Abstractions in GCC GCC Resource Center, IIT Bombay.. • Create directories ${BUILD D} and in a tree not rooted at ${SOURCE D}... • Change the directory to ${BUILD D}

Essential Abstractions in GCC GCC Resource Center, IIT Bombay.. July 2010 Spim MD Levels 0,1: Retargeting GCC to Spim: A Recap 13/39. Building a Cross-Compiler

◮ Explain essential abstractions related to generation of a compiler The machine descriptions and their influence on compilation. •

Explaining the essential abstractions in GCC to ensure a quick ramp up into GCC Internals. Lectures, demonstrations, and practicals (experiements