Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(185)

Side by Side Diff: fusl/arch/mips/crt_arch.h

Issue 1689833004: [fusl] Update fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: remove stray space Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fusl/arch/mips/bits/syscall.h ('k') | fusl/arch/mips/reloc.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 __asm__( 1 __asm__(
2 ".set push\n" 2 ".set push\n"
3 ".set noreorder\n" 3 ".set noreorder\n"
4 ".text \n" 4 ".text \n"
5 ".global _" START "\n" 5 ".global _" START "\n"
6 ".global " START "\n" 6 ".global " START "\n"
7 ".global " START "_data\n"
8 ".type _" START ", @function\n" 7 ".type _" START ", @function\n"
9 ".type " START ", @function\n" 8 ".type " START ", @function\n"
10 ".type " START "_data, @function\n"
11 "_" START ":\n" 9 "_" START ":\n"
12 "" START ":\n" 10 "" START ":\n"
13 " bal 1f \n" 11 " bal 1f \n"
14 " move $fp, $0 \n" 12 " move $fp, $0 \n"
15 "" START "_data: \n" 13 "» .gpword . \n"
16 "» .gpword " START "_data \n"
17 " .gpword " START "_c \n" 14 " .gpword " START "_c \n"
18 ".weak _DYNAMIC \n" 15 ".weak _DYNAMIC \n"
19 ".hidden _DYNAMIC \n" 16 ".hidden _DYNAMIC \n"
20 " .gpword _DYNAMIC \n" 17 " .gpword _DYNAMIC \n"
21 "1: lw $gp, 0($ra) \n" 18 "1: lw $gp, 0($ra) \n"
22 " subu $gp, $ra, $gp \n" 19 " subu $gp, $ra, $gp \n"
23 " move $4, $sp \n" 20 " move $4, $sp \n"
24 " lw $5, 8($ra) \n" 21 " lw $5, 8($ra) \n"
25 " addu $5, $5, $gp \n" 22 " addu $5, $5, $gp \n"
26 " lw $25, 4($ra) \n" 23 " lw $25, 4($ra) \n"
27 " addu $25, $25, $gp \n" 24 " addu $25, $25, $gp \n"
28 " and $sp, $sp, -8 \n" 25 " and $sp, $sp, -8 \n"
29 " jalr $25 \n" 26 " jalr $25 \n"
30 " subu $sp, $sp, 16 \n" 27 " subu $sp, $sp, 16 \n"
31 ".set pop \n" 28 ".set pop \n"
32 ); 29 );
OLDNEW
« no previous file with comments | « fusl/arch/mips/bits/syscall.h ('k') | fusl/arch/mips/reloc.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698