Monday, August 27, 2007

High performance Objective-C I: a Postscript interpreter

A key component of the metaobject product suite is EGOS, which includes as a central ingredient a custom Postscript Level 3 compatible interpreter. The project was started in part as a hedge against the chance of Apple dropping DisplayPostscript, in part because our Postscript virtualization technique was hitting limits, and in part because it would make getting Objective-C objects out of the interpreter much easier.

At its core, Postscript is a stack-oriented, dynamically typed and highly polymorphic interpreted programming language. So implementing Postscript with Objective-C objects is actually not just convenient when you want to get Objective-C objects out, it is also a good match for the semantics of the language.

So all is good, right? Well, we also need to make sure that performance is competitive, otherwise there really isn't much of a point. How do we find out if performance is competitive? Fortunately, we have the gold standard handily available: Adobe's interpreter was not just used in NeXT's DisplayPostscript, but is also available as the PS Normalizer on Mac OS X . So let's test performance with a little Postscript program:

  %!
  usertime
  0 1 1000000 { 4 mul pop } bind for
  usertime exch sub dup ==
  20 20 moveto /Times-Roman 24 selectfont
  100 string cvs show ( ms) show
  showpage
The program times a loop that multiplies some numbers one million times. It exercises a good deal of the basic execution machinery in the Postscript language: stack manipulation, procedure invocation, array access (a procedure is just an array with the executable bit set), looping and arithmetic. The loop is timed with the usertime command, which returns CPU time used in milliseconds.

This test clocks in at 513 ms (513 ns per iteration) in Preview, which isn't too shabby.

1. The problem

As proof of concept, let's code up some Objective-C equivalent of what the Postscript interpreter has to do in this loop. That should give us a good lower bound for the time taken (lower bound because there will be additional interpretation overhead, and Postscript semantics are slightly more complicated). We need a stack, some number objects and a bit of arithmetic. Easy:
 id startcounter=[NSNumber numberWithInt:0];
 id endcounter=[NSNumber numberWithInt:1000000];
 id counter=startcounter;
 id four=[NSNumber numberWithInt:4];
 while ( [counter intValue] < [endcounter intValue] ) {
  int intResult;
  id result;
  [stack addObject:counter];
  [stack addObject:four];
  intResult = [[stack lastObject] intValue] * [[stack objectAtIndex:[stack count]-2] intValue];
  result=[NSNumber numberWithInt:intResult];
  [stack removeLastObject];
  [stack removeLastObject];
  [stack addObject:result];
  [stack removeLastObject];
  counter=[NSNumber numberWithInt:[counter intValue]+1];
 }
 
Sadly, this takes 4.8 µs per iteration, so our 'lower' bound is almost 10 times slower than our target, and that's without accounting for interpretation. Clearly not good enough. What if we get rid of all that silly stack manipulation code and use a plain C loop?
  id b=[NSNumber numberWithInt:4];
  for (i=0;i < 10000000;i++) {
  id a=[NSNumber numberWithInt:i];
  id c=[NSNumber numberWithInt:[a intValue] * [b intValue]];
 }

2. Mutable State

Objective-C is an imperative object oriented language, meaning objects can change state. However, we have treated numbers as immutable value objects, requiring them to be recreated from scratch. Allocating objects tends to be around 25x more costly than an Objective-C message send, so what if we don't allocate new integer objects, but instead reuse an existing one and just change its value? It turns out we can't use NSNumber for this as it doesn't allow its value to be set, so we need a (trivial) wrapper class for a single integer.
 
   id b=[MPWInteger numberWithInt:4];
   id a=[MPWInteger numberWithInt:0];
   id c=[MPWInteger numberWithInt:0];
   for (i=0;i <10000000;i++) {
  [a setIntValue:i];
  [c setIntValue:[a intValue] * [b intValue]];
  }

That's more like it: 50ns per iteration is 100x better than our first attempt and also 10x better than the target we're aiming for. So taking advantage of mutable state makes our basic plan possible, at least in principle. Of course, we now have to reintroduce the stack and add interpretation.

3. Save the planet

Alas, it turns out that the interpreter really does need fresh instances. While it will discard them quickly in most cases, it sometimes stores them away meaning we can't statically reuse objects the way we did above.

Instead, we need to figure out a way to recycle temporary objects so we can reuse them without spending a lot of time. The common way to do this is to keep a pool of objects from which requests for new MPWInteger instances are satisfied. However, due to the unpredictable nature of the interpreted code, we cannot use the explicit checkin/checkout policy such pools usually require.

Instead we make the pool a circular buffer and use the retain count to verify that an object can be reused. When we get to a position in the pool that has an object, we can reuse that object if the retain count is one, meaning that only the pool has a valid reference. If the retain count of the object is greater than one, someone other than the pool is holding on to the object and it cannot be reused (yet), so we need to get another instance.

This logic is encapsulated in the class MPWObjectCache, which can be used very similarly to a class (factory object) in creating new instances.

 MPWObjectCache* intCache=[[MPWObjectCache alloc] initWithCapacity:20 
        class:[MPWInteger class]];
 id b=[MPWInteger integer:5];
 for (i=0;i < 1000000;i++) {
  id a=GETOBJECT(intCache);
  id d=GETOBJECT(intCache);
  [a setIntValue:i];
  [d setIntValue:[a intValue] * [b intValue]];

This code runs in 100ns per iteration,  so we now have a solution that gives us new or safely recycled objects quickly enough to build on with the confidence the end result will perform acceptably.

4.  Results

Running the Postscript test program from the start of this post in PostView yields a result of 260ns per iteration, meaning that our Objective-C Postscript interpreter is almost twice as fast as Adobe's, at least on this particular workload.  While I wouldn't generalize this isolated result to say that EGOS is a faster interpreter, it clearly shows that it is at least competitive, which was the goal of the exercise.
The fact that it took a measly 20 KLOC illustrates the leverage Objective-C provides:  Ghostscript weighs in at around 250+ KLOC (without drivers).
5.  Conclusion
One of the things I've always liked about Objective-C is that it lets you have your cake and eat it, too:  great expressiveness to solve your problem effectively is always coupled with the ability to get down and dirty and get really great performance, without losing the structure of the original solution.
The most important factor to watch out for in terms of performance tends to be object allocation.  Controlling this factor with a transparent object-cache allowed us to get an overall performance improvement of around 10-20x in the case of a Postscript interpreter, taking performance from unacceptably slow up to and beyond the industry standard.
Of course, this isn't the only factor and Postscript interpretation not the only application.  Stay tuned!

Labels: , ,

46 Comments:

Blogger Richard Stacpoole said...

Thank you for a very interesting post.

Is there some code available for your object cache?

If not could you expand on the implementation of the object cache?

Do you have a favourite resource for programming techniques to effectively use the runtime? I feel I am missing out on performance and effectiveness because I have never had a runtime to program to and do not yet know how to use it well.

September 1, 2007 6:59 AM  
Blogger Marcel Weiher said...

The code is available as part of MPWFoundation, downloadable from the site. See my next post for more details.

September 1, 2007 11:58 AM  
Anonymous Anonymous said...

I found this site using [url=http://google.com]google.com[/url] And i want to thank you for your work. You have done really very good site. Great work, great site! Thank you!

Sorry for offtopic

November 10, 2009 2:23 PM  
Anonymous Anonymous said...

Hello
generic rimonabant
Acomplia is considered as a first selective CB1 receptor to be approved by the proper authority.
[url=http://eriecyam.org/]order acomplia online[/url]
Acomplia in medical terms is known as Rimonabant or the most common name of acomplia is Rimonabant.
http://eriecyam.org/ - acomplia overnight
Acomplia will surely be the suitable drug for you if you are suffering from bad appetite or some thing like that.

November 21, 2009 5:57 AM  
Anonymous Anonymous said...

Could not find a suitable section so I written here, how to become a moderator for your forum, that need for this?

November 23, 2009 10:42 PM  
Anonymous Anonymous said...

[size=72][color=red][url=http://www.go4you.net/go.php?sid=24]ENTER ON SOFTWARE PORTAL[/url][/color][/size]

[size=46][color=red][url=http://www.go4you.net/go.php?sid=24]DOWNLOAD SOFT![/url][/color][/size]

[img]http://www.istockphoto.com/file_thumbview_approve/4762671/2/istockphoto_4762671-software-box.jpg[/img]

[size=46][color=red][url=http://www.go4you.net/go.php?sid=24]OEM SOFTWARE[/url][/color][/size]

[size=72][color=red][url=http://www.go4you.net/go.php?sid=24]DOWNLOAD SOFTWARE[/url][/color][/size]

[size=72][b]Buy LemcropleLep soft on [/b][/size]
[size=72][b]Download LemcropleLep software programm on Mac OS[/b][/size]
[size=72][b]Buy LemcropleLep software on PC[/b][/size]

http://www.google.com/

November 25, 2009 1:39 AM  
Anonymous Anonymous said...

[size=72][color=red][url=http://www.go4you.net/go.php?sid=23]WEB SEARCH ENGINE![/url][/color][/size]

[size=48][color=red][url=http://www.go4you.net/go.php?sid=23]That? What? When?[/url][/color][/size]

[img]http://www.seo-sacramento.com/images/search-engine-optimisation.gif[/img]

[size=72][color=red][url=http://www.go4you.net/go.php?sid=23]WEB SEARCH ENGINE![/url][/color][/size]

[size=48][b][/b][/size]
[size=48][b][/b][/size]
[size=48][b][/b][/size]



[url=http://ubajdaabrame.yoyohost.com/blog-395-how.html]how to cook up crack[/url]
[url=http://katadasimone.freehostia.com/]how to hack membership - blog 1[/url]
[url=http://numanholostj.freehostia.com/184-how-to-write-letters-to-celebrities.html]how to write a genogram story[/url]
[url=http://salimafinov4.freehostia.com/]how to spell izrael - blog 1[/url]
[url=http://saalimaoznob.freehostia.com/wiki-how-to-paint-comic-on-canvas.html]how to run auto on hho[/url]
[url=http://olivijakorni.freehostia.com/]how to write cost analysis sample - blog 1[/url]
[url=http://lindapodruzh.freehostia.com/]how to cite a a handout - blog 1[/url]
[url=http://tatianastras.freehostia.com/how-to-write-china-in-chinease.html]how to write china in chinease[/url]
[url=http://ilhamkolobro.freehostia.com/wiki-what-is-fusion-art.html]how to cook stuffed mushrooms[/url]
[url=http://julianagogol.freehostia.com/wiki-20.html]how to draw black canary[/url]
[url=http://ridvanborovi.freehostia.com/wiki-how-to-tie-head-wrap.html]how to tie head wrap[/url]
[url=http://ioanntuljako.freehostia.com/http://ioanntuljako.freehostia.com/?wp=how to cook a rump roast-services&page=431]Services[/url]
[url=http://bozhenajadov.freehostia.com/blog-31-how.html]how to write for idiots[/url]
[url=http://ridapirozhko.freehostia.com/wiki-94.html]how to write a bootloader[/url]
[url=http://nadzhvadudin.freehostia.com/wiki-how-to-tie-an-oblong-scarf.html]corinthians what is love[/url]
[url=http://mahafishkov1.freehostia.com/map.xml]map[/url]
[url=http://dzhabirzhari.freehostia.com/]how to hack the game host - blog 1[/url]
[url=http://oskarmurzin4.freehostia.com/]how to write professional business letters - blog 1[/url]
[url=http://astratatarni.freehostia.com/]how to write an article review - blog 1[/url]
[url=http://simeonletugi.freehostia.com/]how to draw manga comic books - blog 1[/url]
[url=http://mijasvinolup.freehostia.com/]how to paint a basement wall - blog 1[/url]
[url=http://lukjancherno.freehostia.com/rrxx-how.html]salary history how to write[/url]
[url=http://jadvigaevtih.freehostia.com/how-to-paint-a-tub-surround.html]how to paint a tub surround[/url]
[url=http://salemkashiri.freehostia.com/blog-100-what.html]what is life of lcd tv[/url]
[url=http://jamhaushak31.freehostia.com/http://jamhaushak31.freehostia.com/]how to hack internet bank accounts[/url]
[url=http://alinajavorov.freehostia.com/]how to run charity golf tournaments - blog 1[/url]

November 26, 2009 10:06 AM  
Anonymous Anonymous said...

A prescription dosed 4 times a day can mean every 6 hours, 4 times a day before each meal and at bedtime, 4 times a day after each meal and at bedtime, or 4 times a day trying to equally space the doses during the patients waking hours (eg. 7AM-12Noon-5PM-10PM). Usually if it is critical to the drug that it be dosed by some specific regimen such as every 6 hours or before a meal or after a meal those instructions should have been included in the prescription or explained to the patient when the medication was received. If you have any specific questions about your prescription you should talk them over with your doctor to make sure you understand what he/she intended.

December 15, 2009 4:29 AM  
Anonymous Anonymous said...

ringtone creator 2.3 keygen
stream down 3.3 crack
chicken invader 2 crack
dosprn keygen
xenon 2 pro crack
digital performer 4.5 crack
conquests crack
mercedes benz world racing crack
personal firewall 2005 keygen
6 keygen serial wingate




yahoo family feud crack
zero assumption recovery serial crack
windows registry repair pro 2 crack
kingmaker crack neverwinter
pdf2word v1 6 crack
adobe lm service crack
animation shop 3 crack
print shop 20 crack
msdn password crack
cucusoft crack 5.07
high mp3 wav wma ogg converter crack
converter keygen speed v3.0.4 video
j bots plus 2004 crack
final fantasy 7 crack pc
plus digital media crack
icon packager 2.50 crack
ibadmin 4 crack
cinema craft encoder crack 2.70
blazing tools perfect keylogger 1.62 crack
catan registration crack

December 23, 2009 4:32 PM  
Anonymous Anonymous said...

What do you think ? Do I look hot ?

You can see my pics here.

[url=http://sexscreener.org/p/random/1992]My Profile[/url]

December 26, 2009 6:37 AM  
Anonymous Anonymous said...

Don't you love me

You can find my pics here

[url=http://sexscreener.org/p/random/1992]My Profile[/url]

December 26, 2009 1:22 PM  
Anonymous Anonymous said...

miley cyrus nude miley cyrus nude miley cyrus nude

December 28, 2009 5:44 AM  
Anonymous Anonymous said...

die Glänzende Phrase und ist termingemäß levitra online viagra [url=http//t7-isis.org]viagra online bestellen forum[/url]

December 30, 2009 6:09 PM  
Anonymous Anonymous said...

Your blog keeps getting better and better! Your older articles are not as good as newer ones you have a lot more creativity and originality now keep it up!

January 6, 2010 11:18 AM  
Anonymous Anonymous said...

miley cyrus nude [url=http://www.ipetitions.com/petition/mileycyrus]miley cyrus nude[/url] paris hilton nude [url=http://www.ipetitions.com/petition/parishilt]paris hilton nude[/url] kim kardashian nude [url=http://www.ipetitions.com/petition/kimkardashian45]kim kardashian nude[/url] kim kardashian nude [url=http://www.ipetitions.com/petition/celebst]kim kardashian nude[/url]

January 6, 2010 12:00 PM  
Anonymous Anonymous said...

[url=http://platinconne.freehostia.com/map.html]free movies download[/url] parampampam!

January 6, 2010 1:12 PM  
Anonymous Anonymous said...

Sory, delete plz[url=http://datingonline.totalh.com].[/url] :(

January 17, 2010 11:36 PM  
Anonymous Anonymous said...

Hello,
I just registered and wanted to pop in and introduce myself to the people. Let me just say that it is a great forum that you have here.

Here are some other web sites and blogs that might be of interest to you.

[url=http://skintoday.info]skintoday.info[/url] - skintoday.info
[url=http://skintoday.info]skincareblog.info[/url] - skincareblog.info
[url=http://skintoday.info]skinsmart.info[/url] - skinsmart.info
[url=http://skintoday.info]skincareshop.info[/url] - skincareshop.info

skin care products and tips and tricks

January 19, 2010 11:31 PM  
Anonymous Anonymous said...

Please contact us sufficiently in. Cash advance canada quick loan payday loans - finance consulting online.

January 21, 2010 8:32 AM  
Anonymous Anonymous said...

unlock iphone 3g [url=http://unlockiphone22.com]unlock iphone 3g[/url] unlock iphone 3g unlock iphone 3g

January 22, 2010 9:18 AM  
Anonymous Anonymous said...

дом 2 за камерой фото интим
индивидуалки калининграда
училка мулатка выезд
личные домашние интим фото
зрелые женщины ищут интим за деньги в казани
индивидуалки м новые черемушки
семеновская интим
проститутки м бабушкинская

January 25, 2010 2:35 PM  
Anonymous Anonymous said...

offending deans agmcilip realization emrshow interactives melbourne veritable drastic monies vertex
servimundos melifermuly

January 25, 2010 9:01 PM  
Anonymous Anonymous said...

усинск проститутки
самара лесби
интим в мурманске
пермь знакомства
интим города альметьевска
трансы в челябинске
семейная пара на приеме у госпожи
лесби танцы
молоденькие лесби

January 27, 2010 2:34 PM  
Anonymous Anonymous said...

[url=http://vegasonlines.net/harrahs-cherokee-casino.html]descarga casino prestige [/url]
[url=http://vegasonlines.net/casino-henderson-nevada.html]jeu casino 2 [/url]
[url=http://vegasonlines.net/book-casino.html]tropicana vegas casino [/url]
[url=http://vegasonlines.net/eagle-pass-casino.html]bono casino virtual gratis [/url]
[url=http://vegasonlines.net/peppermill-casino.html]casino strip poker [/url]
[url=http://vegasonlines.net/coeur-d-alene-casino.html]casino grand gulfport ms [/url]
[url=http://vegasonlines.net/treasure-island-casino-sale.html]casino coruna [/url]
[url=http://vegasonlines.net/boulder-station-casino.html]casino consultant [/url]
[url=http://vegasonlines.net/casino-indianapolis.html]juegos de casino para jugar en linea [/url]
[url=http://vegasonlines.net/rainbow-casino-restaurant-wendover.html]logo maquina casino [/url]
[url=http://vegasonlines.net/thunder-valley-casino-disgruntled-employees.html]best casino bonus [/url]
[url=http://vegasonlines.net/ip-casino-biloxi.html]casino game hoyle online [/url]
[url=http://vegasonlines.net/no-deposit-casino-codes.html]bonus casino cirrus code [/url]
[url=http://vegasonlines.net/casino-funchal.html]ocio juego casino [/url]
[url=http://vegasonlines.net/casino-in-macau.html]madrid terraza casino [/url]
bajar juegos de casinos
[b]casino curitiba brasil[/b]
nevada casino
casinos online poker
[b]vegas casino online[/b]
regla casino keno
[u]casino sin descarga gratis completo[/u]
online casino add your link
on line casino bonus
[b]juego casino on line[/b]
descargar juego de casinos
hollywood casino louisiana

January 28, 2010 12:55 PM  
Anonymous Anonymous said...

ups sorry delete plz [url=http://duhum.com].[/url]

January 29, 2010 7:38 AM  
Anonymous Anonymous said...

[url=http://tinyurl.com/y9qxher][img]http://i069.radikal.ru/1001/35/75e72b218708.jpg[/img][/url]



Related keywords:
order Tramadol tamoxifen online
Tramadol affect on stomach
Tramadol and nausea
Tramadol mailorder
picture of Tramadol pill
Tramadol online no prior next day
Tramadol mailorder
Tramadol for feline
[url=http://www.zazzle.com/AlexanderBlack]buy Tramadol online cod no prescription [/url]
[url=http://seobraincenter.ru]http://seobraincenter.ru[/url]
nextday Tramadol
Tramadol Tramadol
buy Tramadol free fedex shipping
cheap Tramadol without perscription
Tramadol otc
saturday delivery cod Tramadol
Tramadol alternatives

January 30, 2010 6:02 PM  
Anonymous Anonymous said...

The writer of www.metaobject.com has written a superior article. I got your point and there is nothing to argue about. It is like the following universal truth that you can not disagree with: Nothing sounds more fun than the sound of a primary school at break time. I will be back.

February 1, 2010 5:24 PM  
Anonymous Anonymous said...

[url=http://tinyurl.com/y9qxher][img]http://i069.radikal.ru/1001/35/75e72b218708.jpg[/img][/url]



Related keywords:
Tramadol er
Tramadol with next day delivery
picture of Tramadol pill
Tramadol online purchase saturday delivery
buy deine nachricht online site Tramadol
buy online Tramadol
bay Tramadol
Tramadol dosage for canines
[url=http://www.zazzle.com/AlexanderBlack]Tramadol cTramadol [/url]
[url=http://seobraincenter.ru]http://seobraincenter.ru[/url]
buy cheap online Tramadol
Tramadol experience
buy online Tramadol prescriptions
Tramadol overnight delivery fed ex
is Tramadol tested for in urinalysis
buy prescription Tramadol
sat delivery for Tramadol

February 2, 2010 3:53 PM  
Anonymous Anonymous said...

[url=http://tinyurl.com/getvpn][b]Click here to get VPN service![/b][/url]

[b]Anonymous surfing[/b]
Using our service you'll be fully anonymous in the Internet. Hide your IP address, and nobody will know that strange visitor from Germany ( Great Britain, Estonia and so ), is you.

[b]Full access to network[/b]
You can use any services, access any sites and use any software with us. BitTorrent, Skype, Facebook, MySpace, Twitter, Pocker .. we have no restrictions.

[b]Traffic protection[/b]
Don't worry, from this moment all you data will be protected using 256 bit Blowfish encryption algorithm. Nobody can access your internet data.

[b]Wide variety of countries[/b]
You can choose one of over twenty high speed servers located in different parts of the world, from South America coast to islands in Indian Ocean.

Related keywords:
anonymous surfing review
proxy server vpn
anonymous secure surfing
proxy vpn
anonymous vpn free
internet explorer vpn
vpn dial up
ssl vpn
Traffic protection
anonymous surfing freeware
anonymous surfing software
vtunnel
anonymous surfing vpn
best anonymous browser
surf the web anonymous
best anonymous surfing
anonymizer anonymous surfing review
firefox anonymous surfing
Virtual Private Networks
Free Vpn Client Software
anonymous surfing software
[url=http://dasbmw.ru] anonymous surfing software[/url]
[url=http://seobraincenter.ru] anonymous proxy[/url]

February 4, 2010 4:16 AM  
Anonymous Anonymous said...

Oecumenical confederating and seduce facts [url=http://onlineviagrapill.com]buy viagra[/url]. Our stringent online insensate pharmaceutics [url=http://ambiendrug.com]ambien[/url].

February 4, 2010 5:45 AM  
Anonymous Anonymous said...

cialis duration of effectiveness
cialis from canada
cialis and zoloft interactions
which is better cialis or levitra
ingredient in cialis
cialis naion
difference between cialis and levitra
u 222 cialis
cialis generic online
boeing regence cialis

February 7, 2010 7:21 AM  
Anonymous Anonymous said...

[url=http://tinyurl.com/getvpn][b]Click here to get VPN service![/b][/url]

[b]Anonymous surfing[/b]
Using our service you'll be fully anonymous in the Internet. Hide your IP address, and nobody will know that strange visitor from Germany ( Great Britain, Estonia and so ), is you.

[b]Full access to network[/b]
You can use any services, access any sites and use any software with us. BitTorrent, Skype, Facebook, MySpace, Twitter, Pocker .. we have no restrictions.

[b]Traffic protection[/b]
Don't worry, from this moment all you data will be protected using 256 bit Blowfish encryption algorithm. Nobody can access your internet data.

[b]Wide variety of countries[/b]
You can choose one of over twenty high speed servers located in different parts of the world, from South America coast to islands in Indian Ocean.

Related keywords:
anonymous surfing review
proxy server vpn
anonymous secure surfing
proxy vpn
anonymous vpn free
internet explorer vpn
vpn dial up
ssl vpn
Traffic protection
anonymous surfing freeware
anonymous surfing software
vtunnel
anonymous surfing vpn
best anonymous browser
surf the web anonymous
best anonymous surfing
anonymizer anonymous surfing review
firefox anonymous surfing
Virtual Private Networks
Free Vpn Client Software
anonymous surfing software
[url=http://dasbmw.ru] anonymous surfing software[/url]
[url=http://seobraincenter.ru] anonymous proxy[/url]
[url=http://carlwebster.com/members/Alexander-Pwnz.aspx]Buy Cheap Zoloft[/url]

February 11, 2010 2:23 PM  
Anonymous Anonymous said...

Genial fill someone in on and this enter helped me alot in my college assignement. Gratefulness you for your information.

February 13, 2010 12:52 AM  
Anonymous Anonymous said...

[url=http://www.soultracks.com/test/web/]Buy Cheap Viagra Without Prescription[/url]

February 13, 2010 6:04 PM  
Anonymous Anonymous said...

I am reading this article second time today, you have to be more careful with content leakers. If I will fount it again I will send you a link

February 19, 2010 9:35 AM  
Anonymous Anonymous said...

http://hokovi.justfree.com http://tahaqiqeon.freeweb7.com http://degefaxu.freehostia.com
бесплатно порно ролики скачать
http://mowuxa.justfree.com http://cuquvisu.freehostia.com http://tahaqiqeon.freeweb7.com
заняться сексом
Download best sex here

February 21, 2010 2:14 PM  
Anonymous Anonymous said...

http://markonzo.edu notalone http://blog.bakililar.az/zoviraxer/ http://profiles.friendster.com/lexapro#moreabout accure beautify http://riderx.info/members/amaryl-side-effects-amaryl-tabs.aspx http://profiles.friendster.com/cleocin#moreabout osfm kickers

February 24, 2010 4:56 AM  
Anonymous Anonymous said...

http://pqupone.freehostingz.com http://gerexaka.x10hosting.com/putana/ http://dajuximu.freehostia.com
порно минет сперма
http://mimikan.x10hosting.com/ http://gahesoom.x10hosting.com/putana/ http://cijefuse.freehostia.com
фотографии порно лесбиянок
Download best sex here

February 24, 2010 9:53 PM  
Anonymous Anonymous said...

free japanese personals [url=http://loveepicentre.com/]ukpersonals[/url] larry and anna dating http://loveepicentre.com/ dating website

February 25, 2010 10:20 AM  
Anonymous Anonymous said...

http://www.thisnext.com/by/donegirl/ http://napisa.justfree.com http://rezisi.freehostingz.com
лучшая попка интернета
http://xoneon.freeweb7.com http://bixsex.x10hosting.com/ http://rigeon.freeweb7.com
гей знакомство москва
Download best sex here

February 27, 2010 7:02 PM  
Anonymous Anonymous said...

http://kakacu.yoyohost.com http://fewion.freeweb7.com http://cakagube.freehostia.com
домашние порно ролики скачать
http://jirefa.freehostingz.com http://boposohe.freehostia.com http://www.thisnext.com/by/sukahanx/
знакомства picred
Download best sex here

March 2, 2010 6:36 AM  
Anonymous Anonymous said...

adults search
adult pic bbs
bleeding pussy sex
black sex free
forever baby adult
sexy grils bums for smacking
all russian sex free
private secure adult media

March 5, 2010 3:51 PM  
Anonymous Anonymous said...

http://xokunpi.co.cc/znakomka/ http://hamezu.d0m.us http://wequro.co.cc
эротика без порно
http://gumonuga.strefa.pl http://finafate.freehostia.com http://talejwo.d0m.us
голая сапчак
Download best sex here

March 6, 2010 8:20 PM  
Anonymous Anonymous said...

http://mejagesaon.freeweb7.com http://heqice.justfree.com http://hexebufi.strefa.pl
часная порно галерея
http://haxedoge.freehostia.com http://giwuwigo.freehostia.com http://gujucule.freehostia.com
секс уральск
Download best sex here

March 10, 2010 2:17 AM  
Anonymous Anonymous said...

[url=http://seghan.ru/go.php?sid=35][img]http://s003.radikal.ru/i203/1001/17/1008f12c7936.jpg[/img][/url]












[url=http://membres.multimania.fr/dnnuctg/]buy us cigarettes [/url]
order bidi cigarettes buy gold coast cigarettes buy sonoma cigarettes online
[url=http://utenti.multimania.it/peexcal/]buy cigarett [/url]
buying tax free cigarettes titan cigarette buy buying cigarettes in cyprus
[url=http://utenti.multimania.it/haisjzu/]order cheap cigarettes [/url]
cigarettes by mail order cost of buying cigarettes buying duty free cigarettes
[url=http://utenti.multimania.it/pxioeei/]order electric cigarette [/url]
buy soft pack cigarettes buy cigarette online uk mail order cigarettes seneca
[url=http://utenti.multimania.it/xbftjof/]buy herbal cigarettes in [/url]
were to buy charter menthol cigarettes buy cigarettes without id buy lucky strike cigarettes
[url=http://utenti.multimania.it/faoozxa/]e cigarette buy [/url]
buy cigarettes in south buy clove cigarette buy cigarette to resell
[url=http://members.multimania.nl/weljgzi/]buy cheap cigarette where [/url]
canadian mail order brides cigarettes buy honeyrose cigarettes buying european cigarettes online

March 10, 2010 3:13 AM  
Anonymous Anonymous said...

[b][url=http://pohudey.in]ХУДЕЙ БЕЗ ПРОБЛЕМ!![/url][/b]
[url=http://pohudey.in][img]http://harizzzma.com/dieta1.jpg[/img][/url]







безопасный способ похудеть
спайки кишечника диета
антицеллюлитный массаж петербург
спа похудеть за 3 дня
диета после инфаркта миокарда
кровь диета
как мужчинам избавится от целлюлита
похудение в твери
магазин товаров для похудения
дисбактериоз диета
диета похудеть на 10 кило
убрать живот очень быстро
похудение щек
какие травы способствуют похудению
гипоаллергенная диета для детей
похудеть с помощью трав
правильное питание для кожи
похудение с помощью массажа
диета для похудения бедер
как похудеть на 7 кг за неделю
бег убрать живот
антицеллюлитные средства отзывы
американская диета
французская диета
похудение галина
таблица совместимости продуктов раздельного питания
таблица калорийности продуктов по борменталю
лишний вес у ребенка
сельдерей для похудения отзывы
кнопка для похудения
как похудеть в руках
диета 4б
упражнения для похудения боков
свекольный сок для похудения
похудение с помощью 25 кадра
бег похудение
борменталь диета
баллон для похудения
квашенная капуста диета
очищение организма похудение
рецепты приготовления диетических блюд
мотивация похудеть
йога для похудения бесплатно видео
диета 9 диабет
таблица прибавки веса при беременности
быстро похудеть с помощью диеты
диета чтобы набрать вес
от бега можно похудеть
курсы антицеллюлитного массажа
японское средство для похудения
вибротренажеры для похудения
климакс диета
питание диеты
патент персональная методика похудения
похудеть с помощью глистов
сайков диета
магия похудения
обруч убирает живот
диета на месяц
тренажер убрать живот
похудение звезд
диета после инфаркта
результаты похудения фото
гречневая каша для похудения
способы похудения для подростка
похудеть на диете миркина
метод похудения доктора борменталя
диета 5 дней 7 кг
капсулы для быстрого похудения
диета нарушение обмена веществ
как похудеть за 3 месяца
четырехдневная диета
формула похудения
похудение на 15 кг
способы экстренного похудения
как сесть на диету
форум кремлевской диеты
здоровое раздельное питание

[url=http://lengbadlipank.freehostia.com]как похудеть[/url]

March 10, 2010 10:46 AM  

Post a Comment

<< Home