Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(75)

Delta Between Two Patch Sets: doc/asm.html

Issue 160200044: [dev.power64] code review 160200044: build: merge default into dev.power64 (Closed)
Left Patch Set: diff -r be0c14f62257b42485019e9e1db23cf40d2e249f https://code.google.com/p/go Created 10 years, 4 months ago
Right Patch Set: diff -r be0c14f62257b42485019e9e1db23cf40d2e249f https://code.google.com/p/go Created 10 years, 4 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « api/next.txt ('k') | doc/cmd.html » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(Both sides are equal)
1 <!--{ 1 <!--{
2 "Title": "A Quick Guide to Go's Assembler", 2 "Title": "A Quick Guide to Go's Assembler",
3 "Path": "/doc/asm" 3 "Path": "/doc/asm"
4 }--> 4 }-->
5 5
6 <h2 id="introduction">A Quick Guide to Go's Assembler</h2> 6 <h2 id="introduction">A Quick Guide to Go's Assembler</h2>
7 7
8 <p> 8 <p>
9 This document is a quick outline of the unusual form of assembly language used b y the <code>gc</code> 9 This document is a quick outline of the unusual form of assembly language used b y the <code>gc</code>
10 suite of Go compilers (<code>6g</code>, <code>8g</code>, etc.). 10 suite of Go compilers (<code>6g</code>, <code>8g</code>, etc.).
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 MOVL 4(SP), BX 437 MOVL 4(SP), BX
438 MOVL 8(SP), AX 438 MOVL 8(SP), AX
439 // MOVQ (%EAX), %MM0 439 // MOVQ (%EAX), %MM0
440 BYTE $0x0f; BYTE $0x6f; BYTE $0x00 440 BYTE $0x0f; BYTE $0x6f; BYTE $0x00
441 // MOVQ %MM0, 0(%EBX) 441 // MOVQ %MM0, 0(%EBX)
442 BYTE $0x0f; BYTE $0x7f; BYTE $0x03 442 BYTE $0x0f; BYTE $0x7f; BYTE $0x03
443 // EMMS 443 // EMMS
444 BYTE $0x0F; BYTE $0x77 444 BYTE $0x0F; BYTE $0x77
445 RET 445 RET
446 </pre> 446 </pre>
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b