LEFT | RIGHT |
(Both sides are equal) |
1 // Inferno's libkern/memmove-386.s | 1 // Inferno's libkern/memmove-386.s |
2 // http://code.google.com/p/inferno-os/source/browse/libkern/memmove-386.s | 2 // http://code.google.com/p/inferno-os/source/browse/libkern/memmove-386.s |
3 // | 3 // |
4 // Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved. | 4 // Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved. |
5 // Revisions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vita
nuova.com). All rights reserved. | 5 // Revisions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vita
nuova.com). All rights reserved. |
6 // Portions Copyright 2009 The Go Authors. All rights reserved. | 6 // Portions Copyright 2009 The Go Authors. All rights reserved. |
7 // | 7 // |
8 // Permission is hereby granted, free of charge, to any person obtaining a copy | 8 // Permission is hereby granted, free of charge, to any person obtaining a copy |
9 // of this software and associated documentation files (the "Software"), to deal | 9 // of this software and associated documentation files (the "Software"), to deal |
10 // in the Software without restriction, including without limitation the rights | 10 // in the Software without restriction, including without limitation the rights |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 MOVOU -16(SI)(BX*1), X7 | 167 MOVOU -16(SI)(BX*1), X7 |
168 MOVOU X0, (DI) | 168 MOVOU X0, (DI) |
169 MOVOU X1, 16(DI) | 169 MOVOU X1, 16(DI) |
170 MOVOU X2, 32(DI) | 170 MOVOU X2, 32(DI) |
171 MOVOU X3, 48(DI) | 171 MOVOU X3, 48(DI) |
172 MOVOU X4, -64(DI)(BX*1) | 172 MOVOU X4, -64(DI)(BX*1) |
173 MOVOU X5, -48(DI)(BX*1) | 173 MOVOU X5, -48(DI)(BX*1) |
174 MOVOU X6, -32(DI)(BX*1) | 174 MOVOU X6, -32(DI)(BX*1) |
175 MOVOU X7, -16(DI)(BX*1) | 175 MOVOU X7, -16(DI)(BX*1) |
176 RET | 176 RET |
LEFT | RIGHT |