blob: 3fce45677c2466365585ed8de0b5af1864d224a7 [file] [log] [blame]
Nick Kledzik77595fc2008-02-26 20:26:43 +00001//===-LTOCodeGenerator.cpp - LLVM Link Time Optimizer ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Link Time Optimization library. This library is
11// intended to be used by linker to optimize code at link time.
12//
13//===----------------------------------------------------------------------===//
14
Nick Kledzikef194ed2008-02-27 22:25:36 +000015#include "LTOModule.h"
16#include "LTOCodeGenerator.h"
Nick Kledzik77595fc2008-02-26 20:26:43 +000017#include "llvm/Constants.h"
18#include "llvm/DerivedTypes.h"
Nick Lewycky8189d402009-06-17 06:52:10 +000019#include "llvm/Linker.h"
Owen Anderson0e7a5462009-07-02 00:31:14 +000020#include "llvm/LLVMContext.h"
Nick Lewycky8189d402009-06-17 06:52:10 +000021#include "llvm/Module.h"
Nick Lewycky8189d402009-06-17 06:52:10 +000022#include "llvm/PassManager.h"
23#include "llvm/ADT/StringExtras.h"
Viktor Kutuzov51cdac02009-11-17 18:48:27 +000024#include "llvm/ADT/Triple.h"
Nick Lewycky8189d402009-06-17 06:52:10 +000025#include "llvm/Analysis/Passes.h"
Nick Kledzik77595fc2008-02-26 20:26:43 +000026#include "llvm/Bitcode/ReaderWriter.h"
Chris Lattner5ef31a02010-03-12 18:44:54 +000027#include "llvm/MC/MCAsmInfo.h"
28#include "llvm/MC/MCContext.h"
Evan Chengab8be962011-06-29 01:14:12 +000029#include "llvm/MC/SubtargetFeature.h"
Chris Lattner5ef31a02010-03-12 18:44:54 +000030#include "llvm/Target/Mangler.h"
Chris Lattner5ef31a02010-03-12 18:44:54 +000031#include "llvm/Target/TargetOptions.h"
32#include "llvm/Target/TargetData.h"
33#include "llvm/Target/TargetMachine.h"
Evan Cheng0e6a0522011-07-18 20:57:22 +000034#include "llvm/Target/TargetRegisterInfo.h"
Chris Lattner5ef31a02010-03-12 18:44:54 +000035#include "llvm/Target/TargetRegistry.h"
36#include "llvm/Target/TargetSelect.h"
Nick Kledzik920ae982008-07-08 21:14:10 +000037#include "llvm/Support/CommandLine.h"
David Greene71847812009-07-14 20:18:05 +000038#include "llvm/Support/FormattedStream.h"
Nick Kledzik77595fc2008-02-26 20:26:43 +000039#include "llvm/Support/MemoryBuffer.h"
Chris Lattner817a01f2011-05-22 00:20:07 +000040#include "llvm/Support/PassManagerBuilder.h"
Daniel Dunbar006a0342009-06-03 21:06:14 +000041#include "llvm/Support/SystemUtils.h"
Dan Gohman9f36c4e2010-10-07 20:48:46 +000042#include "llvm/Support/ToolOutputFile.h"
Michael J. Spencer3cc52ea2010-11-29 18:47:54 +000043#include "llvm/Support/Host.h"
44#include "llvm/Support/Program.h"
45#include "llvm/Support/Signals.h"
Michael J. Spencerf2f516f2010-12-09 18:06:07 +000046#include "llvm/Support/system_error.h"
Nick Kledzik77595fc2008-02-26 20:26:43 +000047#include "llvm/Config/config.h"
Nick Lewycky8189d402009-06-17 06:52:10 +000048#include <cstdlib>
Nick Kledzik77595fc2008-02-26 20:26:43 +000049#include <unistd.h>
Nick Kledzik77595fc2008-02-26 20:26:43 +000050#include <fcntl.h>
51
52
53using namespace llvm;
54
Nick Kledzik920ae982008-07-08 21:14:10 +000055static cl::opt<bool> DisableInline("disable-inlining",
56 cl::desc("Do not run the inliner pass"));
Nick Kledzik77595fc2008-02-26 20:26:43 +000057
58
59const char* LTOCodeGenerator::getVersionString()
60{
61#ifdef LLVM_VERSION_INFO
62 return PACKAGE_NAME " version " PACKAGE_VERSION ", " LLVM_VERSION_INFO;
63#else
64 return PACKAGE_NAME " version " PACKAGE_VERSION;
65#endif
66}
67
68
Owen Anderson0e7a5462009-07-02 00:31:14 +000069LTOCodeGenerator::LTOCodeGenerator()
70 : _context(getGlobalContext()),
Owen Anderson8b477ed2009-07-01 16:58:40 +000071 _linker("LinkTimeOptimizer", "ld-temp.o", _context), _target(NULL),
Nick Kledzik77595fc2008-02-26 20:26:43 +000072 _emitDwarfDebugInfo(false), _scopeRestrictionsDone(false),
Nick Kledzikef194ed2008-02-27 22:25:36 +000073 _codeModel(LTO_CODEGEN_PIC_MODEL_DYNAMIC),
Rafael Espindolae9efea12011-02-24 21:04:06 +000074 _nativeObjectFile(NULL)
Nick Kledzik77595fc2008-02-26 20:26:43 +000075{
Nick Lewyckyd42b58b2009-07-26 22:16:39 +000076 InitializeAllTargets();
Evan Cheng1abf2cb2011-07-14 23:50:31 +000077 InitializeAllMCAsmInfos();
Evan Cheng0e6a0522011-07-18 20:57:22 +000078 InitializeAllMCRegisterInfos();
Cameron Zwarichbf843e62011-07-11 22:19:51 +000079 InitializeAllMCSubtargetInfos();
Nick Lewyckyd42b58b2009-07-26 22:16:39 +000080 InitializeAllAsmPrinters();
Nick Kledzik77595fc2008-02-26 20:26:43 +000081}
82
83LTOCodeGenerator::~LTOCodeGenerator()
84{
Nick Kledzikef194ed2008-02-27 22:25:36 +000085 delete _target;
86 delete _nativeObjectFile;
Nick Kledzik77595fc2008-02-26 20:26:43 +000087}
88
89
90
91bool LTOCodeGenerator::addModule(LTOModule* mod, std::string& errMsg)
92{
Rafael Espindolaf19d7a72011-03-18 19:51:00 +000093
94 if(mod->getLLVVMModule()->MaterializeAllPermanently(&errMsg))
95 return true;
96
Rafael Espindola38c4e532011-03-02 04:14:42 +000097 bool ret = _linker.LinkInModule(mod->getLLVVMModule(), &errMsg);
98
99 const std::vector<const char*> &undefs = mod->getAsmUndefinedRefs();
100 for (int i = 0, e = undefs.size(); i != e; ++i)
101 _asmUndefinedRefs[undefs[i]] = 1;
102
103 return ret;
Nick Kledzik77595fc2008-02-26 20:26:43 +0000104}
105
106
107bool LTOCodeGenerator::setDebugInfo(lto_debug_model debug, std::string& errMsg)
108{
109 switch (debug) {
110 case LTO_DEBUG_MODEL_NONE:
111 _emitDwarfDebugInfo = false;
112 return false;
113
114 case LTO_DEBUG_MODEL_DWARF:
115 _emitDwarfDebugInfo = true;
116 return false;
117 }
118 errMsg = "unknown debug format";
119 return true;
120}
121
122
123bool LTOCodeGenerator::setCodePICModel(lto_codegen_model model,
Evan Cheng855a1682009-06-26 06:57:16 +0000124 std::string& errMsg)
Nick Kledzik77595fc2008-02-26 20:26:43 +0000125{
126 switch (model) {
127 case LTO_CODEGEN_PIC_MODEL_STATIC:
128 case LTO_CODEGEN_PIC_MODEL_DYNAMIC:
129 case LTO_CODEGEN_PIC_MODEL_DYNAMIC_NO_PIC:
130 _codeModel = model;
131 return false;
132 }
133 errMsg = "unknown pic model";
134 return true;
135}
136
Rafael Espindola2d643ef2010-08-11 00:15:13 +0000137void LTOCodeGenerator::setCpu(const char* mCpu)
138{
139 _mCpu = mCpu;
140}
141
Nick Kledzik77595fc2008-02-26 20:26:43 +0000142void LTOCodeGenerator::addMustPreserveSymbol(const char* sym)
143{
144 _mustPreserveSymbols[sym] = 1;
145}
146
147
Chris Lattnerb515d752009-08-23 07:49:08 +0000148bool LTOCodeGenerator::writeMergedModules(const char *path,
149 std::string &errMsg) {
150 if (determineTarget(errMsg))
151 return true;
Nick Kledzik77595fc2008-02-26 20:26:43 +0000152
Chris Lattnerb515d752009-08-23 07:49:08 +0000153 // mark which symbols can not be internalized
154 applyScopeRestrictions();
Nick Kledzik77595fc2008-02-26 20:26:43 +0000155
Chris Lattnerb515d752009-08-23 07:49:08 +0000156 // create output file
157 std::string ErrInfo;
Dan Gohmanf2914012010-08-20 16:59:15 +0000158 tool_output_file Out(path, ErrInfo,
159 raw_fd_ostream::F_Binary);
Chris Lattnerb515d752009-08-23 07:49:08 +0000160 if (!ErrInfo.empty()) {
161 errMsg = "could not open bitcode file for writing: ";
162 errMsg += path;
163 return true;
164 }
Nick Kledzik77595fc2008-02-26 20:26:43 +0000165
Chris Lattnerb515d752009-08-23 07:49:08 +0000166 // write bitcode to it
Dan Gohmand4c45432010-09-01 14:20:41 +0000167 WriteBitcodeToFile(_linker.getModule(), Out.os());
168 Out.os().close();
Dan Gohman4b7416b2010-05-27 20:19:47 +0000169
Dan Gohmand4c45432010-09-01 14:20:41 +0000170 if (Out.os().has_error()) {
Chris Lattnerb515d752009-08-23 07:49:08 +0000171 errMsg = "could not write bitcode file: ";
172 errMsg += path;
Dan Gohmand4c45432010-09-01 14:20:41 +0000173 Out.os().clear_error();
Chris Lattnerb515d752009-08-23 07:49:08 +0000174 return true;
175 }
176
Dan Gohmanf2914012010-08-20 16:59:15 +0000177 Out.keep();
Chris Lattnerb515d752009-08-23 07:49:08 +0000178 return false;
Nick Kledzik77595fc2008-02-26 20:26:43 +0000179}
180
181
Rafael Espindola6421a882011-03-22 20:57:13 +0000182bool LTOCodeGenerator::compile_to_file(const char** name, std::string& errMsg)
183{
184 // make unique temp .o file to put generated object file
185 sys::PathWithStatus uniqueObjPath("lto-llvm.o");
186 if ( uniqueObjPath.createTemporaryFileOnDisk(false, &errMsg) ) {
187 uniqueObjPath.eraseFromDisk();
188 return true;
189 }
190 sys::RemoveFileOnSignal(uniqueObjPath);
191
192 // generate object file
193 bool genResult = false;
194 tool_output_file objFile(uniqueObjPath.c_str(), errMsg);
195 if (!errMsg.empty())
196 return NULL;
197 genResult = this->generateObjectFile(objFile.os(), errMsg);
198 objFile.os().close();
199 if (objFile.os().has_error()) {
200 objFile.os().clear_error();
201 return true;
202 }
203 objFile.keep();
204 if ( genResult ) {
205 uniqueObjPath.eraseFromDisk();
206 return true;
207 }
208
209 _nativeObjectPath = uniqueObjPath.str();
210 *name = _nativeObjectPath.c_str();
211 return false;
212}
213
Nick Kledzikef194ed2008-02-27 22:25:36 +0000214const void* LTOCodeGenerator::compile(size_t* length, std::string& errMsg)
Nick Kledzik77595fc2008-02-26 20:26:43 +0000215{
Rafael Espindola6421a882011-03-22 20:57:13 +0000216 const char *name;
217 if (compile_to_file(&name, errMsg))
218 return NULL;
Nick Kledzik77595fc2008-02-26 20:26:43 +0000219
Rafael Espindola6421a882011-03-22 20:57:13 +0000220 // remove old buffer if compile() called twice
221 delete _nativeObjectFile;
Nick Kledzikef194ed2008-02-27 22:25:36 +0000222
Rafael Espindola6421a882011-03-22 20:57:13 +0000223 // read .o file into memory buffer
224 OwningPtr<MemoryBuffer> BuffPtr;
225 if (error_code ec = MemoryBuffer::getFile(name, BuffPtr, -1, false)) {
226 errMsg = ec.message();
227 return NULL;
228 }
229 _nativeObjectFile = BuffPtr.take();
Rafael Espindolae9efea12011-02-24 21:04:06 +0000230
Rafael Espindola6421a882011-03-22 20:57:13 +0000231 // remove temp files
232 sys::Path(_nativeObjectPath).eraseFromDisk();
Rafael Espindolae9efea12011-02-24 21:04:06 +0000233
Rafael Espindola6421a882011-03-22 20:57:13 +0000234 // return buffer, unless error
235 if ( _nativeObjectFile == NULL )
236 return NULL;
237 *length = _nativeObjectFile->getBufferSize();
238 return _nativeObjectFile->getBufferStart();
Nick Kledzik77595fc2008-02-26 20:26:43 +0000239}
240
Nick Kledzik77595fc2008-02-26 20:26:43 +0000241bool LTOCodeGenerator::determineTarget(std::string& errMsg)
242{
243 if ( _target == NULL ) {
Daniel Dunbar3c2d4bf2009-08-03 04:03:51 +0000244 std::string Triple = _linker.getModule()->getTargetTriple();
245 if (Triple.empty())
246 Triple = sys::getHostTriple();
247
Nick Kledzik77595fc2008-02-26 20:26:43 +0000248 // create target machine from info for merged modules
Daniel Dunbar4bd03ab2009-08-03 04:20:57 +0000249 const Target *march = TargetRegistry::lookupTarget(Triple, errMsg);
Nick Kledzik77595fc2008-02-26 20:26:43 +0000250 if ( march == NULL )
251 return true;
Bill Wendling604a8182008-06-18 06:35:30 +0000252
Nick Kledzikf5a1c35f12009-06-03 22:52:12 +0000253 // The relocation model is actually a static member of TargetMachine
254 // and needs to be set before the TargetMachine is instantiated.
255 switch( _codeModel ) {
256 case LTO_CODEGEN_PIC_MODEL_STATIC:
257 TargetMachine::setRelocationModel(Reloc::Static);
258 break;
259 case LTO_CODEGEN_PIC_MODEL_DYNAMIC:
260 TargetMachine::setRelocationModel(Reloc::PIC_);
261 break;
262 case LTO_CODEGEN_PIC_MODEL_DYNAMIC_NO_PIC:
263 TargetMachine::setRelocationModel(Reloc::DynamicNoPIC);
264 break;
265 }
266
Bill Wendling604a8182008-06-18 06:35:30 +0000267 // construct LTModule, hand over ownership of module and target
Bill Wendling81043ee2010-05-11 00:30:02 +0000268 SubtargetFeatures Features;
Evan Cheng276365d2011-06-30 01:53:36 +0000269 Features.getDefaultSubtargetFeatures(llvm::Triple(Triple));
Bill Wendling81043ee2010-05-11 00:30:02 +0000270 std::string FeatureStr = Features.getString();
Evan Cheng276365d2011-06-30 01:53:36 +0000271 _target = march->createTargetMachine(Triple, _mCpu, FeatureStr);
Nick Kledzik77595fc2008-02-26 20:26:43 +0000272 }
273 return false;
274}
275
Rafael Espindola38c4e532011-03-02 04:14:42 +0000276void LTOCodeGenerator::applyRestriction(GlobalValue &GV,
277 std::vector<const char*> &mustPreserveList,
278 SmallPtrSet<GlobalValue*, 8> &asmUsed,
279 Mangler &mangler) {
280 SmallString<64> Buffer;
281 mangler.getNameWithPrefix(Buffer, &GV, false);
282
283 if (GV.isDeclaration())
284 return;
285 if (_mustPreserveSymbols.count(Buffer))
286 mustPreserveList.push_back(GV.getName().data());
287 if (_asmUndefinedRefs.count(Buffer))
288 asmUsed.insert(&GV);
289}
290
291static void findUsedValues(GlobalVariable *LLVMUsed,
292 SmallPtrSet<GlobalValue*, 8> &UsedValues) {
293 if (LLVMUsed == 0) return;
294
295 ConstantArray *Inits = dyn_cast<ConstantArray>(LLVMUsed->getInitializer());
296 if (Inits == 0) return;
297
298 for (unsigned i = 0, e = Inits->getNumOperands(); i != e; ++i)
299 if (GlobalValue *GV =
300 dyn_cast<GlobalValue>(Inits->getOperand(i)->stripPointerCasts()))
301 UsedValues.insert(GV);
302}
303
Chris Lattner5ef31a02010-03-12 18:44:54 +0000304void LTOCodeGenerator::applyScopeRestrictions() {
305 if (_scopeRestrictionsDone) return;
306 Module *mergedModule = _linker.getModule();
Nick Kledzik77595fc2008-02-26 20:26:43 +0000307
Chris Lattner5ef31a02010-03-12 18:44:54 +0000308 // Start off with a verification pass.
309 PassManager passes;
310 passes.add(createVerifierPass());
Nick Kledzik77595fc2008-02-26 20:26:43 +0000311
Chris Lattner5ef31a02010-03-12 18:44:54 +0000312 // mark which symbols can not be internalized
Evan Cheng0e6a0522011-07-18 20:57:22 +0000313 MCContext Context(*_target->getMCAsmInfo(), *_target->getRegisterInfo(),
314 NULL);
Rafael Espindola38c4e532011-03-02 04:14:42 +0000315 Mangler mangler(Context, *_target->getTargetData());
316 std::vector<const char*> mustPreserveList;
317 SmallPtrSet<GlobalValue*, 8> asmUsed;
318
319 for (Module::iterator f = mergedModule->begin(),
320 e = mergedModule->end(); f != e; ++f)
321 applyRestriction(*f, mustPreserveList, asmUsed, mangler);
322 for (Module::global_iterator v = mergedModule->global_begin(),
323 e = mergedModule->global_end(); v != e; ++v)
324 applyRestriction(*v, mustPreserveList, asmUsed, mangler);
325 for (Module::alias_iterator a = mergedModule->alias_begin(),
326 e = mergedModule->alias_end(); a != e; ++a)
327 applyRestriction(*a, mustPreserveList, asmUsed, mangler);
328
329 GlobalVariable *LLVMCompilerUsed =
330 mergedModule->getGlobalVariable("llvm.compiler.used");
331 findUsedValues(LLVMCompilerUsed, asmUsed);
332 if (LLVMCompilerUsed)
333 LLVMCompilerUsed->eraseFromParent();
334
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000335 llvm::Type *i8PTy = llvm::Type::getInt8PtrTy(_context);
Rafael Espindola38c4e532011-03-02 04:14:42 +0000336 std::vector<Constant*> asmUsed2;
337 for (SmallPtrSet<GlobalValue*, 16>::const_iterator i = asmUsed.begin(),
338 e = asmUsed.end(); i !=e; ++i) {
339 GlobalValue *GV = *i;
340 Constant *c = ConstantExpr::getBitCast(GV, i8PTy);
341 asmUsed2.push_back(c);
Chris Lattner5ef31a02010-03-12 18:44:54 +0000342 }
Rafael Espindola38c4e532011-03-02 04:14:42 +0000343
344 llvm::ArrayType *ATy = llvm::ArrayType::get(i8PTy, asmUsed2.size());
345 LLVMCompilerUsed =
346 new llvm::GlobalVariable(*mergedModule, ATy, false,
347 llvm::GlobalValue::AppendingLinkage,
348 llvm::ConstantArray::get(ATy, asmUsed2),
349 "llvm.compiler.used");
350
351 LLVMCompilerUsed->setSection("llvm.metadata");
352
353 passes.add(createInternalizePass(mustPreserveList));
354
Chris Lattner5ef31a02010-03-12 18:44:54 +0000355 // apply scope restrictions
356 passes.run(*mergedModule);
357
358 _scopeRestrictionsDone = true;
Nick Kledzik77595fc2008-02-26 20:26:43 +0000359}
360
Nick Kledzik77595fc2008-02-26 20:26:43 +0000361/// Optimize merged modules using various IPO passes
Chris Lattner817a01f2011-05-22 00:20:07 +0000362bool LTOCodeGenerator::generateObjectFile(raw_ostream &out,
363 std::string &errMsg) {
Nick Lewyckyd42b58b2009-07-26 22:16:39 +0000364 if ( this->determineTarget(errMsg) )
Nick Kledzik77595fc2008-02-26 20:26:43 +0000365 return true;
366
367 // mark which symbols can not be internalized
368 this->applyScopeRestrictions();
369
370 Module* mergedModule = _linker.getModule();
371
Nick Kledzik920ae982008-07-08 21:14:10 +0000372 // if options were requested, set them
373 if ( !_codegenOptions.empty() )
374 cl::ParseCommandLineOptions(_codegenOptions.size(),
Dan Gohman43bc70e2010-04-17 17:44:03 +0000375 const_cast<char **>(&_codegenOptions[0]));
Devang Patela93ae712008-07-03 22:53:14 +0000376
Nick Kledzik77595fc2008-02-26 20:26:43 +0000377 // Instantiate the pass manager to organize the passes.
378 PassManager passes;
379
380 // Start off with a verification pass.
381 passes.add(createVerifierPass());
382
383 // Add an appropriate TargetData instance for this module...
384 passes.add(new TargetData(*_target->getTargetData()));
385
Chris Lattner817a01f2011-05-22 00:20:07 +0000386 PassManagerBuilder().populateLTOPassManager(passes, /*Internalize=*/ false,
387 !DisableInline);
Nick Kledzik77595fc2008-02-26 20:26:43 +0000388
389 // Make sure everything is still good.
390 passes.add(createVerifierPass());
391
Chris Lattner817a01f2011-05-22 00:20:07 +0000392 FunctionPassManager *codeGenPasses = new FunctionPassManager(mergedModule);
Nick Kledzik77595fc2008-02-26 20:26:43 +0000393
394 codeGenPasses->add(new TargetData(*_target->getTargetData()));
395
Dan Gohmand4c45432010-09-01 14:20:41 +0000396 formatted_raw_ostream Out(out);
397
398 if (_target->addPassesToEmitFile(*codeGenPasses, Out,
Rafael Espindolae9efea12011-02-24 21:04:06 +0000399 TargetMachine::CGFT_ObjectFile,
Chris Lattner5669e302010-02-03 05:55:08 +0000400 CodeGenOpt::Aggressive)) {
401 errMsg = "target file type not supported";
402 return true;
Nick Kledzik77595fc2008-02-26 20:26:43 +0000403 }
404
Nick Kledzik77595fc2008-02-26 20:26:43 +0000405 // Run our queue of passes all at once now, efficiently.
406 passes.run(*mergedModule);
407
408 // Run the code generator, and write assembly file
409 codeGenPasses->doInitialization();
Nick Kledzik77595fc2008-02-26 20:26:43 +0000410
Bill Wendling604a8182008-06-18 06:35:30 +0000411 for (Module::iterator
412 it = mergedModule->begin(), e = mergedModule->end(); it != e; ++it)
413 if (!it->isDeclaration())
414 codeGenPasses->run(*it);
415
416 codeGenPasses->doFinalization();
Rafael Espindolacd6c93e2011-02-20 16:27:25 +0000417 delete codeGenPasses;
Nick Lewyckyd42b58b2009-07-26 22:16:39 +0000418
Nick Kledzik77595fc2008-02-26 20:26:43 +0000419 return false; // success
420}
421
422
Nick Kledzik920ae982008-07-08 21:14:10 +0000423/// Optimize merged modules using various IPO passes
424void LTOCodeGenerator::setCodeGenDebugOptions(const char* options)
425{
Benjamin Kramerd4f19592010-01-11 18:03:24 +0000426 for (std::pair<StringRef, StringRef> o = getToken(options);
427 !o.first.empty(); o = getToken(o.second)) {
Nick Kledzik920ae982008-07-08 21:14:10 +0000428 // ParseCommandLineOptions() expects argv[0] to be program name.
429 // Lazily add that.
430 if ( _codegenOptions.empty() )
431 _codegenOptions.push_back("libLTO");
Benjamin Kramerd4f19592010-01-11 18:03:24 +0000432 _codegenOptions.push_back(strdup(o.first.str().c_str()));
Nick Kledzik920ae982008-07-08 21:14:10 +0000433 }
434}