Unix Technical Forum

SEO

vBulletin Search Engine Optimization


Go Back   Unix Technical Forum > Database Server Software > PostgreSQL > pgsql Hackers

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 04-11-2008, 07:53 AM
Rocco Altier
 
Posts: n/a
Default Re: Some platform-specific MemSet research

I wanted to chime in that I also see this speedup from using XLC 6.0
(IBM's cc), even in 32bit mode. I have tested on AIX 5.2 and 5.1.

I think this would be good to include in the regular release.

Not sure how many people are running older versions of AIX that would
want a new version of postgres.

-rocco



> -----Original Message-----
> From: pgsql-hackers-owner@postgresql.org
> [mailtogsql-hackers-owner@postgresql.org] On Behalf Of Bruce Momjian
> Sent: Wednesday, February 01, 2006 12:11 PM
> To: Seneca Cunningham
> Cc: Martijn van Oosterhout; pgsql-hackers@postgresql.org
> Subject: Re: [HACKERS] Some platform-specific MemSet research
>
>
>
> My guess is that there is some really fast assembler for
> memory copy on
> AIX, and only libc memset() has it. If you want, we can make
> MEMSET_LOOP_LIMIT in c.h a configure value, and allow template/aix to
> set it to zero, causing memset() to be always used.
>
> Are you prepared to make this optimization decision for all AIX users
> using gcc, or only for certain versions?
>
> --------------------------------------------------------------
> -------------
>
> Seneca Cunningham wrote:
> > Martijn van Oosterhout wrote:
> > > On Tue, Jan 24, 2006 at 05:24:28PM -0500, Seneca Cunningham wrote:
> > >
> > >>After reading the post on -patches proposing that MemSet

> be changed to
> > >>use long instead of int32 on the grounds that a pair of

> x86-64 linux
> > >>boxes took less time to execute the long code 64*10^6

> times[1], I took a
> > >>look at how the testcode performed on AIX with gcc.

> While the switch to
> > >>long did result in a minor performance improvement, dropping the
> > >>MemSetLoop in favour of the native memset resulted in the

> tests taking
> > >>~25% the time as the MemSetLoop-like int loop. The 32-bit

> linux system I
> > >>ran the expanded tests on showed that for the buffer size

> range that
> > >>postgres can use the looping MemSet instead of memset

> (size <= 1024
> > >>bytes), MemSet generally had better performance.
> > >
> > >
> > > Could you please check the asm output to see what's going

> on. We've had
> > > tests like these produce odd results in the past because

> the compiler
> > > optimised away stuff that didn't have any effect. Since

> every memset
> > > after the first is a no-op, you want to make sure it's

> still actually
> > > doing the work...

> >
> > Well, on both linux and AIX, all 30 of the 64000000 iterations loops
> > from the source exist (10 int, 10 long, 10 memset). According to my
> > understanding of the assembler, memset itself is only

> called for values
> > >= 64 bytes on both platforms and the memset is called in

> each iteration.
> >
> > The assembler for the 64 byte loops, with prepended line

> number, first
> > loop MemSetLoop int-variant, second loop memset, third loop

> MemSetLoop
> > long-variant:
> >
> > 64-bit AIX:
> >
> > 419 addi 3,1,112
> > 420 li 4,0
> > 421 bl .gettimeofday
> > 422 nop
> > 423 lis 10,0x3d0
> > 424 cmpld 6,26,16
> > 425 li 11,0
> > 426 ori 10,10,36864
> > 427 L..41:
> > 428 bge 6,L..42
> > 429 mr 9,26
> > 430 li 0,0
> > 431 L..44:
> > 432 stw 0,0(9)
> > 433 addi 9,9,4
> > 434 cmpld 7,16,9
> > 435 bgt 7,L..44
> > 436 L..42:
> > 437 addi 0,11,1
> > 438 extsw 11,0
> > 439 cmpw 7,11,10
> > 440 bne+ 7,L..41
> > 441 li 4,0
> > 442 mr 3,22
> > 443 lis 25,0x3d0
> > 444 li 28,0
> > 445 bl .gettimeofday
> > 446 nop
> > 447 li 4,64
> > 448 addi 5,1,112
> > 449 ld 3,LC..9(2)
> > 450 mr 6,22
> > 451 ori 25,25,36864
> > 452 bl .print_time
> > 453 addi 3,1,112
> > 454 li 4,0
> > 455 bl .gettimeofday
> > 456 nop
> > 457 L..46:
> > 458 mr 3,26
> > 459 li 4,0
> > 460 li 5,64
> > 461 bl .memset
> > 462 nop
> > 463 addi 0,28,1
> > 464 extsw 28,0
> > 465 cmpw 7,28,25
> > 466 bne+ 7,L..46
> > 467 li 4,0
> > 468 mr 3,22
> > 469 bl .gettimeofday
> > 470 nop
> > 471 li 4,64
> > 472 addi 5,1,112
> > 473 ld 3,LC..11(2)
> > 474 mr 6,22
> > 475 bl .print_time
> > 476 addi 3,1,112
> > 477 li 4,0
> > 478 bl .gettimeofday
> > 479 nop
> > 480 lis 10,0x3d0
> > 481 cmpld 6,26,16
> > 482 li 11,0
> > 483 ori 10,10,36864
> > 484 L..48:
> > 485 bge 6,L..49
> > 486 mr 9,26
> > 487 li 0,0
> > 488 L..51:
> > 489 std 0,0(9)
> > 490 addi 9,9,8
> > 491 cmpld 7,9,16
> > 492 blt 7,L..51
> > 493 L..49:
> > 494 addi 0,11,1
> > 495 extsw 11,0
> > 496 cmpw 7,11,10
> > 497 bne+ 7,L..48
> > 498 li 4,0
> > 499 mr 3,22
> > 500 bl .gettimeofday
> > 501 nop
> > 502 li 4,64
> > 503 addi 5,1,112
> > 504 ld 3,LC..13(2)
> > 505 mr 6,22
> > 506 bl .print_time
> >
> >
> > 32-bit Linux:
> >
> > 387 popl %ecx
> > 388 popl %edi
> > 389 pushl $0
> > 390 leal -20(%ebp), %edx
> > 391 pushl %edx
> > 392 call gettimeofday
> > 393 xorl %edx, %edx
> > 394 addl $16, %esp
> > 395 .L41:
> > 396 movl -4160(%ebp), %eax
> > 397 cmpl %eax, -4144(%ebp)
> > 398 jae .L42
> > 399 movl -4144(%ebp), %eax
> > 400 .L44:
> > 401 movl $0, (%eax)
> > 402 addl $4, %eax
> > 403 cmpl %eax, -4160(%ebp)
> > 404 ja .L44
> > 405 .L42:
> > 406 incl %edx
> > 407 cmpl $64000000, %edx
> > 408 jne .L41
> > 409 subl $8, %esp
> > 410 pushl $0
> > 411 leal -28(%ebp), %edx
> > 412 pushl %edx
> > 413 call gettimeofday
> > 414 leal -28(%ebp), %eax
> > 415 movl %eax, (%esp)
> > 416 leal -20(%ebp), %ecx
> > 417 movl $64, %edx
> > 418 movl $.LC5, %eax
> > 419 call print_time
> > 420 popl %eax
> > 421 popl %edx
> > 422 pushl $0
> > 423 leal -20(%ebp), %edx
> > 424 pushl %edx
> > 425 call gettimeofday
> > 426 xorl %edi, %edi
> > 427 addl $16, %esp
> > 428 .L46:
> > 429 pushl %eax
> > 430 pushl $64
> > 431 pushl $0
> > 432 movl -4144(%ebp), %ecx
> > 433 pushl %ecx
> > 434 call memset
> > 435 incl %edi
> > 436 addl $16, %esp
> > 437 cmpl $64000000, %edi
> > 438 jne .L46
> > 439 subl $8, %esp
> > 440 pushl $0
> > 441 leal -28(%ebp), %eax
> > 442 pushl %eax
> > 443 call gettimeofday
> > 444 leal -28(%ebp), %edx
> > 445 movl %edx, (%esp)
> > 446 leal -20(%ebp), %ecx
> > 447 movl $64, %edx
> > 448 movl $.LC6, %eax
> > 449 call print_time
> > 450 popl %eax
> > 451 popl %edx
> > 452 pushl $0
> > 453 leal -20(%ebp), %eax
> > 454 pushl %eax
> > 455 call gettimeofday
> > 456 xorl %edx, %edx
> > 457 addl $16, %esp
> > 458 .L48:
> > 459 movl -4160(%ebp), %eax
> > 460 cmpl %eax, -4144(%ebp)
> > 461 jae .L49
> > 462 movl -4144(%ebp), %eax
> > 463 .L51:
> > 464 movl $0, (%eax)
> > 465 addl $4, %eax
> > 466 cmpl -4160(%ebp), %eax
> > 467 jb .L51
> > 468 .L49:
> > 469 incl %edx
> > 470 cmpl $64000000, %edx
> > 471 jne .L48
> > 472 subl $8, %esp
> > 473 pushl $0
> > 474 leal -28(%ebp), %edx
> > 475 pushl %edx
> > 476 call gettimeofday
> > 477 leal -28(%ebp), %eax
> > 478 movl %eax, (%esp)
> > 479 leal -20(%ebp), %ecx
> > 480 movl $64, %edx
> > 481 movl $.LC7, %eax
> > 482 call print_time
> >
> > --
> > Seneca Cunningham
> > scunning@ca.afilias.info
> >
> > ---------------------------(end of

> broadcast)---------------------------
> > TIP 5: don't forget to increase your free space map settings
> >

>
> --
> Bruce Momjian | http://candle.pha.pa.us
> pgman@candle.pha.pa.us | (610) 359-1001
> + If your life is a hard drive, | 13 Roberts Road
> + Christ can be your backup. | Newtown Square,
> Pennsylvania 19073
>
> ---------------------------(end of
> broadcast)---------------------------
> TIP 9: In versions below 8.0, the planner will ignore your desire to
> choose an index scan if your joining column's datatypes do not
> match
>


---------------------------(end of broadcast)---------------------------
TIP 6: explain analyze is your friend

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 04-11-2008, 07:53 AM
Bruce Momjian
 
Posts: n/a
Default Re: Some platform-specific MemSet research

Rocco Altier wrote:
> I wanted to chime in that I also see this speedup from using XLC 6.0
> (IBM's cc), even in 32bit mode. I have tested on AIX 5.2 and 5.1.
>
> I think this would be good to include in the regular release.
>
> Not sure how many people are running older versions of AIX that would
> want a new version of postgres.
>


OK, perfect. I will work on making it platform-specific and report
back.

---------------------------------------------------------------------------


> -rocco
>
>
>
> > -----Original Message-----
> > From: pgsql-hackers-owner@postgresql.org
> > [mailtogsql-hackers-owner@postgresql.org] On Behalf Of Bruce Momjian
> > Sent: Wednesday, February 01, 2006 12:11 PM
> > To: Seneca Cunningham
> > Cc: Martijn van Oosterhout; pgsql-hackers@postgresql.org
> > Subject: Re: [HACKERS] Some platform-specific MemSet research
> >
> >
> >
> > My guess is that there is some really fast assembler for
> > memory copy on
> > AIX, and only libc memset() has it. If you want, we can make
> > MEMSET_LOOP_LIMIT in c.h a configure value, and allow template/aix to
> > set it to zero, causing memset() to be always used.
> >
> > Are you prepared to make this optimization decision for all AIX users
> > using gcc, or only for certain versions?
> >
> > --------------------------------------------------------------
> > -------------
> >
> > Seneca Cunningham wrote:
> > > Martijn van Oosterhout wrote:
> > > > On Tue, Jan 24, 2006 at 05:24:28PM -0500, Seneca Cunningham wrote:
> > > >
> > > >>After reading the post on -patches proposing that MemSet

> > be changed to
> > > >>use long instead of int32 on the grounds that a pair of

> > x86-64 linux
> > > >>boxes took less time to execute the long code 64*10^6

> > times[1], I took a
> > > >>look at how the testcode performed on AIX with gcc.

> > While the switch to
> > > >>long did result in a minor performance improvement, dropping the
> > > >>MemSetLoop in favour of the native memset resulted in the

> > tests taking
> > > >>~25% the time as the MemSetLoop-like int loop. The 32-bit

> > linux system I
> > > >>ran the expanded tests on showed that for the buffer size

> > range that
> > > >>postgres can use the looping MemSet instead of memset

> > (size <= 1024
> > > >>bytes), MemSet generally had better performance.
> > > >
> > > >
> > > > Could you please check the asm output to see what's going

> > on. We've had
> > > > tests like these produce odd results in the past because

> > the compiler
> > > > optimised away stuff that didn't have any effect. Since

> > every memset
> > > > after the first is a no-op, you want to make sure it's

> > still actually
> > > > doing the work...
> > >
> > > Well, on both linux and AIX, all 30 of the 64000000 iterations loops
> > > from the source exist (10 int, 10 long, 10 memset). According to my
> > > understanding of the assembler, memset itself is only

> > called for values
> > > >= 64 bytes on both platforms and the memset is called in

> > each iteration.
> > >
> > > The assembler for the 64 byte loops, with prepended line

> > number, first
> > > loop MemSetLoop int-variant, second loop memset, third loop

> > MemSetLoop
> > > long-variant:
> > >
> > > 64-bit AIX:
> > >
> > > 419 addi 3,1,112
> > > 420 li 4,0
> > > 421 bl .gettimeofday
> > > 422 nop
> > > 423 lis 10,0x3d0
> > > 424 cmpld 6,26,16
> > > 425 li 11,0
> > > 426 ori 10,10,36864
> > > 427 L..41:
> > > 428 bge 6,L..42
> > > 429 mr 9,26
> > > 430 li 0,0
> > > 431 L..44:
> > > 432 stw 0,0(9)
> > > 433 addi 9,9,4
> > > 434 cmpld 7,16,9
> > > 435 bgt 7,L..44
> > > 436 L..42:
> > > 437 addi 0,11,1
> > > 438 extsw 11,0
> > > 439 cmpw 7,11,10
> > > 440 bne+ 7,L..41
> > > 441 li 4,0
> > > 442 mr 3,22
> > > 443 lis 25,0x3d0
> > > 444 li 28,0
> > > 445 bl .gettimeofday
> > > 446 nop
> > > 447 li 4,64
> > > 448 addi 5,1,112
> > > 449 ld 3,LC..9(2)
> > > 450 mr 6,22
> > > 451 ori 25,25,36864
> > > 452 bl .print_time
> > > 453 addi 3,1,112
> > > 454 li 4,0
> > > 455 bl .gettimeofday
> > > 456 nop
> > > 457 L..46:
> > > 458 mr 3,26
> > > 459 li 4,0
> > > 460 li 5,64
> > > 461 bl .memset
> > > 462 nop
> > > 463 addi 0,28,1
> > > 464 extsw 28,0
> > > 465 cmpw 7,28,25
> > > 466 bne+ 7,L..46
> > > 467 li 4,0
> > > 468 mr 3,22
> > > 469 bl .gettimeofday
> > > 470 nop
> > > 471 li 4,64
> > > 472 addi 5,1,112
> > > 473 ld 3,LC..11(2)
> > > 474 mr 6,22
> > > 475 bl .print_time
> > > 476 addi 3,1,112
> > > 477 li 4,0
> > > 478 bl .gettimeofday
> > > 479 nop
> > > 480 lis 10,0x3d0
> > > 481 cmpld 6,26,16
> > > 482 li 11,0
> > > 483 ori 10,10,36864
> > > 484 L..48:
> > > 485 bge 6,L..49
> > > 486 mr 9,26
> > > 487 li 0,0
> > > 488 L..51:
> > > 489 std 0,0(9)
> > > 490 addi 9,9,8
> > > 491 cmpld 7,9,16
> > > 492 blt 7,L..51
> > > 493 L..49:
> > > 494 addi 0,11,1
> > > 495 extsw 11,0
> > > 496 cmpw 7,11,10
> > > 497 bne+ 7,L..48
> > > 498 li 4,0
> > > 499 mr 3,22
> > > 500 bl .gettimeofday
> > > 501 nop
> > > 502 li 4,64
> > > 503 addi 5,1,112
> > > 504 ld 3,LC..13(2)
> > > 505 mr 6,22
> > > 506 bl .print_time
> > >
> > >
> > > 32-bit Linux:
> > >
> > > 387 popl %ecx
> > > 388 popl %edi
> > > 389 pushl $0
> > > 390 leal -20(%ebp), %edx
> > > 391 pushl %edx
> > > 392 call gettimeofday
> > > 393 xorl %edx, %edx
> > > 394 addl $16, %esp
> > > 395 .L41:
> > > 396 movl -4160(%ebp), %eax
> > > 397 cmpl %eax, -4144(%ebp)
> > > 398 jae .L42
> > > 399 movl -4144(%ebp), %eax
> > > 400 .L44:
> > > 401 movl $0, (%eax)
> > > 402 addl $4, %eax
> > > 403 cmpl %eax, -4160(%ebp)
> > > 404 ja .L44
> > > 405 .L42:
> > > 406 incl %edx
> > > 407 cmpl $64000000, %edx
> > > 408 jne .L41
> > > 409 subl $8, %esp
> > > 410 pushl $0
> > > 411 leal -28(%ebp), %edx
> > > 412 pushl %edx
> > > 413 call gettimeofday
> > > 414 leal -28(%ebp), %eax
> > > 415 movl %eax, (%esp)
> > > 416 leal -20(%ebp), %ecx
> > > 417 movl $64, %edx
> > > 418 movl $.LC5, %eax
> > > 419 call print_time
> > > 420 popl %eax
> > > 421 popl %edx
> > > 422 pushl $0
> > > 423 leal -20(%ebp), %edx
> > > 424 pushl %edx
> > > 425 call gettimeofday
> > > 426 xorl %edi, %edi
> > > 427 addl $16, %esp
> > > 428 .L46:
> > > 429 pushl %eax
> > > 430 pushl $64
> > > 431 pushl $0
> > > 432 movl -4144(%ebp), %ecx
> > > 433 pushl %ecx
> > > 434 call memset
> > > 435 incl %edi
> > > 436 addl $16, %esp
> > > 437 cmpl $64000000, %edi
> > > 438 jne .L46
> > > 439 subl $8, %esp
> > > 440 pushl $0
> > > 441 leal -28(%ebp), %eax
> > > 442 pushl %eax
> > > 443 call gettimeofday
> > > 444 leal -28(%ebp), %edx
> > > 445 movl %edx, (%esp)
> > > 446 leal -20(%ebp), %ecx
> > > 447 movl $64, %edx
> > > 448 movl $.LC6, %eax
> > > 449 call print_time
> > > 450 popl %eax
> > > 451 popl %edx
> > > 452 pushl $0
> > > 453 leal -20(%ebp), %eax
> > > 454 pushl %eax
> > > 455 call gettimeofday
> > > 456 xorl %edx, %edx
> > > 457 addl $16, %esp
> > > 458 .L48:
> > > 459 movl -4160(%ebp), %eax
> > > 460 cmpl %eax, -4144(%ebp)
> > > 461 jae .L49
> > > 462 movl -4144(%ebp), %eax
> > > 463 .L51:
> > > 464 movl $0, (%eax)
> > > 465 addl $4, %eax
> > > 466 cmpl -4160(%ebp), %eax
> > > 467 jb .L51
> > > 468 .L49:
> > > 469 incl %edx
> > > 470 cmpl $64000000, %edx
> > > 471 jne .L48
> > > 472 subl $8, %esp
> > > 473 pushl $0
> > > 474 leal -28(%ebp), %edx
> > > 475 pushl %edx
> > > 476 call gettimeofday
> > > 477 leal -28(%ebp), %eax
> > > 478 movl %eax, (%esp)
> > > 479 leal -20(%ebp), %ecx
> > > 480 movl $64, %edx
> > > 481 movl $.LC7, %eax
> > > 482 call print_time
> > >
> > > --
> > > Seneca Cunningham
> > > scunning@ca.afilias.info
> > >
> > > ---------------------------(end of

> > broadcast)---------------------------
> > > TIP 5: don't forget to increase your free space map settings
> > >

> >
> > --
> > Bruce Momjian | http://candle.pha.pa.us
> > pgman@candle.pha.pa.us | (610) 359-1001
> > + If your life is a hard drive, | 13 Roberts Road
> > + Christ can be your backup. | Newtown Square,
> > Pennsylvania 19073
> >
> > ---------------------------(end of
> > broadcast)---------------------------
> > TIP 9: In versions below 8.0, the planner will ignore your desire to
> > choose an index scan if your joining column's datatypes do not
> > match
> >

>
> ---------------------------(end of broadcast)---------------------------
> TIP 6: explain analyze is your friend
>


--
Bruce Momjian | http://candle.pha.pa.us
pgman@candle.pha.pa.us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073

---------------------------(end of broadcast)---------------------------
TIP 5: don't forget to increase your free space map settings

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 02:14 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
UnixAdminTalk.com

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799