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

Side by Side Diff: openssl/crypto/ripemd/asm/rmd-586.pl

Issue 9254031: Upgrade chrome's OpenSSL to same version Android ships with. (Closed) Base URL: http://src.chromium.org/svn/trunk/deps/third_party/openssl/
Patch Set: '' Created 8 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « openssl/crypto/ripemd/Makefile ('k') | openssl/crypto/ripemd/ripemd.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 #!/usr/local/bin/perl 1 #!/usr/local/bin/perl
2 2
3 # Normal is the 3 # Normal is the
4 # ripemd160_block_asm_data_order(RIPEMD160_CTX *c, ULONG *X,int blocks); 4 # ripemd160_block_asm_data_order(RIPEMD160_CTX *c, ULONG *X,int blocks);
5 5
6 $normal=0; 6 $normal=0;
7 7
8 push(@INC,"perlasm","../../perlasm"); 8 $0 =~ m/(.*[\/\\])[^\/\\]+$/; $dir=$1;
9 push(@INC,"${dir}","${dir}../../perlasm");
9 require "x86asm.pl"; 10 require "x86asm.pl";
10 11
11 &asm_init($ARGV[0],$0); 12 &asm_init($ARGV[0],$0);
12 13
13 $A="ecx"; 14 $A="ecx";
14 $B="esi"; 15 $B="esi";
15 $C="edi"; 16 $C="edi";
16 $D="ebx"; 17 $D="ebx";
17 $E="ebp"; 18 $E="ebp";
18 $tmp1="eax"; 19 $tmp1="eax";
(...skipping 562 matching lines...) Expand 10 before | Expand all | Expand 10 after
581 &stack_pop(16+5+6); 582 &stack_pop(16+5+6);
582 583
583 &pop("ebx"); 584 &pop("ebx");
584 &pop("ebp"); 585 &pop("ebp");
585 &pop("edi"); 586 &pop("edi");
586 &pop("esi"); 587 &pop("esi");
587 &ret(); 588 &ret();
588 &function_end_B($name); 589 &function_end_B($name);
589 } 590 }
590 591
OLDNEW
« no previous file with comments | « openssl/crypto/ripemd/Makefile ('k') | openssl/crypto/ripemd/ripemd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698