[163] | 1 | /* -*- c++ -*- |
---|
| 2 | * |
---|
[238] | 3 | * GIET_VM_LGPL_HEADER_BEGIN |
---|
[163] | 4 | * |
---|
| 5 | * This file is part of SoCLib, GNU LGPLv2.1. |
---|
| 6 | * |
---|
| 7 | * SoCLib is free software; you can redistribute it and/or modify it |
---|
| 8 | * under the terms of the GNU Lesser General Public License as published |
---|
| 9 | * by the Free Software Foundation; version 2.1 of the License. |
---|
| 10 | * |
---|
| 11 | * SoCLib is distributed in the hope that it will be useful, but |
---|
| 12 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
| 14 | * Lesser General Public License for more details. |
---|
| 15 | * |
---|
| 16 | * You should have received a copy of the GNU Lesser General Public |
---|
| 17 | * License along with SoCLib; if not, write to the Free Software |
---|
| 18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
---|
| 19 | * 02110-1301 USA |
---|
| 20 | * |
---|
[238] | 21 | * GIET_VM_LGPL_HEADER_END |
---|
[163] | 22 | * |
---|
| 23 | * Copyright (c) UPMC, Lip6, SoC |
---|
| 24 | * Mohamed Lamine Karaoui <Mohamed.Karaoui@lip6.fr>, 2012 |
---|
| 25 | */ |
---|
| 26 | |
---|
| 27 | #include <algorithm> |
---|
| 28 | #include <string.h> |
---|
| 29 | #include <cassert> |
---|
| 30 | #include <cstring> |
---|
| 31 | #include <stdexcept> |
---|
| 32 | |
---|
| 33 | #include <iostream> |
---|
| 34 | #include <sstream> |
---|
| 35 | #include <iomanip> |
---|
| 36 | |
---|
| 37 | #include "pseg.h" |
---|
| 38 | #include "exception.h" |
---|
| 39 | |
---|
| 40 | |
---|
| 41 | /* |
---|
| 42 | * VSeg |
---|
| 43 | */ |
---|
| 44 | |
---|
[238] | 45 | ////////////////////////////////////// |
---|
[163] | 46 | const std::string & VSeg::name() const |
---|
| 47 | { |
---|
| 48 | return m_name; |
---|
| 49 | } |
---|
| 50 | |
---|
[238] | 51 | ////////////////////////////////////// |
---|
[163] | 52 | const std::string & VSeg::file() const |
---|
| 53 | { |
---|
| 54 | return m_file; |
---|
| 55 | } |
---|
| 56 | |
---|
[238] | 57 | /////////////////////////// |
---|
[163] | 58 | uintptr_t VSeg::vma() const |
---|
| 59 | { |
---|
| 60 | return m_vma; |
---|
| 61 | } |
---|
| 62 | |
---|
[238] | 63 | ///////////////////////// |
---|
| 64 | paddr_t VSeg::lma() const |
---|
[163] | 65 | { |
---|
| 66 | return m_lma; |
---|
| 67 | } |
---|
| 68 | |
---|
[238] | 69 | /////////////////////////// |
---|
[210] | 70 | size_t VSeg::length() const |
---|
[163] | 71 | { |
---|
| 72 | return m_length; |
---|
| 73 | } |
---|
| 74 | |
---|
[238] | 75 | ///////////////////////// |
---|
[210] | 76 | size_t VSeg::type() const |
---|
| 77 | { |
---|
| 78 | return m_type; |
---|
| 79 | } |
---|
| 80 | |
---|
[238] | 81 | ///////////////////////////////////////// |
---|
[163] | 82 | void VSeg::print( std::ostream &o ) const |
---|
| 83 | { |
---|
| 84 | o << std::hex << std::noshowbase |
---|
| 85 | << "<Virtual segment from(vaddr): 0x" |
---|
| 86 | << std::setw (8) << std::setfill('0') |
---|
| 87 | << m_vma << ", to(paddr) 0x" |
---|
[238] | 88 | << std::setw (16) << std::setfill('0') |
---|
[163] | 89 | << m_lma << ", size: 0x" |
---|
| 90 | << std::setw (8) << std::setfill('0') |
---|
| 91 | << m_length << ",ident: " |
---|
| 92 | << (m_ident ? "yes" : "no") << ", in(file): " |
---|
| 93 | << m_file << ", name: " << m_name << ">"; |
---|
| 94 | } |
---|
| 95 | |
---|
[238] | 96 | ///////////// |
---|
[163] | 97 | VSeg::~VSeg() |
---|
| 98 | { |
---|
| 99 | } |
---|
| 100 | |
---|
[238] | 101 | ///////////////////////////////////////// |
---|
[163] | 102 | VSeg & VSeg::operator=( const VSeg &ref ) |
---|
| 103 | { |
---|
| 104 | if ( &ref == this ) |
---|
| 105 | return *this; |
---|
| 106 | |
---|
| 107 | m_name = ref.m_name, |
---|
| 108 | m_file = ref.m_file; |
---|
| 109 | m_vma = ref.m_vma; |
---|
| 110 | m_lma = ref.m_lma; |
---|
| 111 | m_length = ref.m_length; |
---|
| 112 | m_ident = ref.m_ident; |
---|
| 113 | return *this; |
---|
| 114 | } |
---|
| 115 | |
---|
[238] | 116 | //////////// |
---|
[163] | 117 | VSeg::VSeg() |
---|
| 118 | : m_name("No Name"), |
---|
| 119 | m_file("Empty section"), |
---|
| 120 | m_vma(0), |
---|
| 121 | m_length(0), |
---|
| 122 | m_loadable(false), |
---|
| 123 | m_ident(0) |
---|
| 124 | { |
---|
| 125 | } |
---|
| 126 | |
---|
[238] | 127 | //////////////////////////////////// |
---|
| 128 | VSeg::VSeg(std::string& binaryName, |
---|
| 129 | std::string& name, |
---|
| 130 | uintptr_t vma, |
---|
| 131 | size_t length, |
---|
| 132 | bool loadable, |
---|
| 133 | bool ident) |
---|
[163] | 134 | : m_name(name), |
---|
| 135 | m_file(binaryName), |
---|
| 136 | m_vma(vma), |
---|
| 137 | m_length(length), |
---|
| 138 | m_loadable(loadable), |
---|
| 139 | m_ident(ident) |
---|
| 140 | { |
---|
| 141 | } |
---|
| 142 | |
---|
[238] | 143 | ///////////////////////////// |
---|
[163] | 144 | VSeg::VSeg( const VSeg &ref ) |
---|
| 145 | : m_name("To be copied"), |
---|
| 146 | m_file("Empty"), |
---|
| 147 | m_vma(0), |
---|
| 148 | m_length(0), |
---|
| 149 | m_loadable(false), |
---|
| 150 | m_ident(0) |
---|
| 151 | { |
---|
| 152 | (*this) = ref; |
---|
| 153 | } |
---|
| 154 | |
---|
| 155 | |
---|
| 156 | /* |
---|
| 157 | * PSeg |
---|
| 158 | */ |
---|
[238] | 159 | |
---|
| 160 | ///////////////////////// |
---|
| 161 | paddr_t PSeg::lma() const |
---|
[163] | 162 | { |
---|
| 163 | return m_lma; |
---|
| 164 | } |
---|
| 165 | |
---|
[238] | 166 | /////////////////////////// |
---|
| 167 | paddr_t PSeg::limit() const |
---|
[163] | 168 | { |
---|
| 169 | return m_limit; |
---|
| 170 | } |
---|
| 171 | |
---|
[238] | 172 | ///////////////////////////// |
---|
| 173 | paddr_t PSeg::length() const |
---|
[163] | 174 | { |
---|
| 175 | return m_length; |
---|
| 176 | } |
---|
| 177 | |
---|
[238] | 178 | ///////////////////////// |
---|
[210] | 179 | size_t PSeg::type() const |
---|
| 180 | { |
---|
| 181 | return m_type; |
---|
| 182 | } |
---|
| 183 | |
---|
[238] | 184 | ///////////////////////////// |
---|
| 185 | paddr_t PSeg::nextLma() const |
---|
[163] | 186 | { |
---|
| 187 | return m_nextLma; |
---|
| 188 | } |
---|
| 189 | |
---|
[238] | 190 | ////////////////////////////////////// |
---|
[163] | 191 | const std::string & PSeg::name() const |
---|
| 192 | { |
---|
| 193 | return m_name; |
---|
| 194 | } |
---|
| 195 | |
---|
[238] | 196 | //////////////////////// initialisation used[][] ??? (AG) |
---|
[163] | 197 | void PSeg::check() const |
---|
| 198 | { |
---|
[210] | 199 | |
---|
| 200 | if(this->m_type == PSEG_TYPE_PERI) |
---|
| 201 | return; |
---|
| 202 | |
---|
| 203 | std::vector<VSeg>::const_iterator it; |
---|
[238] | 204 | size_t size = m_vsegs.size(); |
---|
| 205 | paddr_t used[size][2]; // lma, lma+length |
---|
| 206 | size_t i,j,error=0; |
---|
[163] | 207 | |
---|
[238] | 208 | for(it = m_vsegs.begin(), i= 0 ; it < m_vsegs.end() ; it++, i++) |
---|
[163] | 209 | { |
---|
[238] | 210 | paddr_t it_limit = (*it).lma() + (*it).length(); |
---|
[163] | 211 | for(j=0; j< i; j++) |
---|
| 212 | { |
---|
[238] | 213 | if( used[j][0] == (*it).lma() ) //not the same lma , |
---|
[163] | 214 | { |
---|
| 215 | error = 1; |
---|
| 216 | std::cout << "ok \n"; |
---|
| 217 | } |
---|
[238] | 218 | if( used[j][1] == it_limit ) // and not the same limit |
---|
[163] | 219 | { |
---|
| 220 | error = 2; |
---|
| 221 | } |
---|
[238] | 222 | if( (used[j][0] < (*it).lma()) and ((*it).lma() < used[j][1]) ) // lma within |
---|
[163] | 223 | { |
---|
| 224 | error = 3; |
---|
| 225 | } |
---|
[238] | 226 | if( ((used[j][0] < it_limit) and (it_limit < used[j][1] )) ) // limit no within |
---|
[163] | 227 | { |
---|
| 228 | error = 4; |
---|
[210] | 229 | std::cout << "base: " << std::hex << (*it).lma() << std::endl; |
---|
[163] | 230 | std::cout << "limit: " << std::hex << it_limit << std::endl; |
---|
| 231 | std::cout << "used[j][0]: " << std::hex << used[j][0] << std::endl; |
---|
| 232 | std::cout << "used[j][1]: " << std::hex << used[j][1] << std::endl; |
---|
| 233 | } |
---|
| 234 | if(error) |
---|
| 235 | { |
---|
| 236 | std::ostringstream err; |
---|
| 237 | err << " Error" << error << " ,ovelapping Buffers:" << std::endl |
---|
| 238 | << *it << std::endl << m_vsegs[j] << std::endl; |
---|
[173] | 239 | throw exception::RunTimeError( err.str().c_str() ); |
---|
[163] | 240 | } |
---|
| 241 | |
---|
| 242 | } |
---|
| 243 | used[i][0] = (*it).lma(); |
---|
| 244 | used[i][1] = it_limit; |
---|
| 245 | } |
---|
| 246 | } |
---|
| 247 | |
---|
[238] | 248 | ////////////////////////////////////// |
---|
[163] | 249 | void PSeg::setName(std::string& name ) |
---|
| 250 | { |
---|
| 251 | m_name = name; |
---|
| 252 | } |
---|
| 253 | |
---|
[238] | 254 | ///////////////////////////////////////////////////////// |
---|
| 255 | paddr_t PSeg::align( paddr_t toAlign, unsigned alignPow2) |
---|
[163] | 256 | { |
---|
[238] | 257 | return ((toAlign + (1 << alignPow2) - 1 ) >> alignPow2) << alignPow2; |
---|
[163] | 258 | } |
---|
| 259 | |
---|
[238] | 260 | ////////////////////////////////////////// |
---|
| 261 | paddr_t PSeg::pageAlign( paddr_t toAlign ) |
---|
[163] | 262 | { |
---|
| 263 | size_t pgs = pageSize(); |
---|
| 264 | size_t pageSizePow2 = __builtin_ctz(pgs); |
---|
| 265 | |
---|
[238] | 266 | return align(toAlign, pageSizePow2); |
---|
[163] | 267 | } |
---|
| 268 | |
---|
[238] | 269 | //////////////////////////////// |
---|
| 270 | void PSeg::setLma( paddr_t lma ) |
---|
[163] | 271 | { |
---|
| 272 | m_lma = lma; |
---|
| 273 | |
---|
[238] | 274 | m_nextLma = pageAlign(lma); |
---|
[163] | 275 | |
---|
| 276 | m_pageLimit = pageAlign(m_lma+m_length); |
---|
| 277 | |
---|
| 278 | m_limit = (m_lma + m_length); |
---|
| 279 | } |
---|
| 280 | |
---|
[238] | 281 | ///////////////////////////////////// |
---|
| 282 | void PSeg::setLength( paddr_t length ) |
---|
[163] | 283 | { |
---|
| 284 | m_length = length; |
---|
| 285 | |
---|
| 286 | m_pageLimit = pageAlign(m_lma+m_length); |
---|
| 287 | |
---|
| 288 | m_limit = (m_lma + m_length); |
---|
| 289 | } |
---|
| 290 | |
---|
[238] | 291 | //////////////////////////// |
---|
[163] | 292 | void PSeg::add( VSeg& vseg ) |
---|
| 293 | { |
---|
| 294 | vseg.m_lma = m_nextLma; |
---|
[238] | 295 | // incNextLma(vseg.length()); //for the next vseg |
---|
[163] | 296 | m_vsegs.push_back(vseg); |
---|
| 297 | } |
---|
| 298 | |
---|
[238] | 299 | ///////////////////////////////// |
---|
[163] | 300 | void PSeg::addIdent( VSeg& vseg ) |
---|
| 301 | { |
---|
| 302 | vseg.m_lma = vseg.m_vma; |
---|
| 303 | m_vsegs.push_back(vseg); |
---|
| 304 | } |
---|
| 305 | |
---|
[238] | 306 | ///////////////////////////////////////// |
---|
| 307 | void PSeg::setNextLma( paddr_t nextLma) |
---|
[163] | 308 | { |
---|
| 309 | m_nextLma = nextLma; |
---|
| 310 | confNextLma(); |
---|
| 311 | } |
---|
| 312 | |
---|
[238] | 313 | ////////////////////////////////// |
---|
| 314 | void PSeg::incNextLma( size_t inc) |
---|
[163] | 315 | { |
---|
[238] | 316 | m_nextLma += inc; |
---|
[163] | 317 | confNextLma(); |
---|
| 318 | } |
---|
| 319 | |
---|
[238] | 320 | //////////////////////// |
---|
[163] | 321 | void PSeg::confNextLma() |
---|
| 322 | { |
---|
| 323 | if(m_nextLma > m_limit) |
---|
| 324 | { |
---|
| 325 | std::cerr << "Erreur pseg overflow... nextLma: " |
---|
| 326 | << std::hex << m_nextLma << ", limit: " |
---|
| 327 | << m_limit << std::endl; |
---|
| 328 | exit(1); |
---|
| 329 | } |
---|
| 330 | |
---|
| 331 | m_nextLma = pageAlign( m_nextLma ); |
---|
| 332 | |
---|
| 333 | if(m_nextLma > m_pageLimit) |
---|
| 334 | { |
---|
| 335 | std::cerr << "Erreur pseg page overflow... nextLma: " |
---|
| 336 | << std::hex << m_nextLma << ", limit: " |
---|
| 337 | << m_pageLimit << std::endl; |
---|
| 338 | exit(1); |
---|
| 339 | } |
---|
| 340 | } |
---|
| 341 | |
---|
[238] | 342 | ///////////////////////////////// |
---|
[163] | 343 | void PSeg::setPageSize(size_t pg) |
---|
| 344 | { |
---|
| 345 | if( pg == 0) |
---|
| 346 | { |
---|
| 347 | std::cerr << "PageSize must be positive" << std::endl; |
---|
| 348 | return; |
---|
| 349 | } |
---|
| 350 | pageSize() = pg; |
---|
| 351 | } |
---|
| 352 | |
---|
[238] | 353 | //////////////////////// |
---|
[163] | 354 | size_t& PSeg::pageSize() |
---|
| 355 | { |
---|
| 356 | static size_t m_pageSize; |
---|
| 357 | return m_pageSize; |
---|
| 358 | } |
---|
| 359 | |
---|
[238] | 360 | ///////////////////////////////////////// |
---|
[163] | 361 | PSeg & PSeg::operator=( const PSeg &ref ) |
---|
| 362 | { |
---|
| 363 | if ( &ref == this ) |
---|
| 364 | return *this; |
---|
| 365 | |
---|
| 366 | m_name = ref.m_name; |
---|
| 367 | m_length = ref.m_length; |
---|
| 368 | m_limit = ref.m_limit; |
---|
| 369 | m_pageLimit = ref.m_pageLimit; |
---|
| 370 | m_lma = ref.m_lma; |
---|
| 371 | m_nextLma = ref.m_nextLma; |
---|
| 372 | m_vsegs = ref.m_vsegs; |
---|
[227] | 373 | m_type = ref.m_type; |
---|
[163] | 374 | |
---|
| 375 | return *this; |
---|
| 376 | } |
---|
| 377 | |
---|
[238] | 378 | ////////////////////////////////////////// |
---|
[163] | 379 | void PSeg::print( std::ostream &o ) const |
---|
| 380 | { |
---|
| 381 | o << "<Physical segment " |
---|
| 382 | << std::showbase << m_name |
---|
| 383 | << ", from: " << std::hex |
---|
| 384 | << m_lma << " to " << m_limit |
---|
| 385 | << ", size : " << m_length |
---|
| 386 | << ", filled to: " << m_nextLma |
---|
[227] | 387 | << ", type : " << m_type |
---|
[163] | 388 | << ", containing: "<< std::endl; |
---|
| 389 | std::vector<VSeg>::const_iterator it; |
---|
| 390 | for(it = m_vsegs.begin(); it < m_vsegs.end(); it++) |
---|
| 391 | o << " " << *it << std::endl; |
---|
| 392 | |
---|
| 393 | o << ">"; |
---|
| 394 | } |
---|
| 395 | |
---|
[238] | 396 | //////////////////////////////////// |
---|
[163] | 397 | PSeg::PSeg( const std::string &name, |
---|
[238] | 398 | paddr_t lma, |
---|
| 399 | paddr_t length, |
---|
| 400 | size_t type) |
---|
[163] | 401 | { |
---|
| 402 | m_name = name; |
---|
| 403 | m_length = length; |
---|
[210] | 404 | m_type = type; |
---|
[163] | 405 | |
---|
| 406 | setLma(lma); |
---|
| 407 | } |
---|
| 408 | |
---|
[238] | 409 | //////////////////////////////////// |
---|
[163] | 410 | PSeg::PSeg( const std::string &name): |
---|
| 411 | m_lma(0), |
---|
| 412 | m_length(0), |
---|
| 413 | m_nextLma(0), |
---|
| 414 | m_limit(0) |
---|
| 415 | { |
---|
| 416 | m_name = name; |
---|
| 417 | } |
---|
| 418 | |
---|
[238] | 419 | //////////////////////// |
---|
| 420 | PSeg::PSeg( paddr_t lma): |
---|
[163] | 421 | m_name("No name"), |
---|
| 422 | m_lma(0), |
---|
| 423 | m_length(0), |
---|
| 424 | m_nextLma(0), |
---|
| 425 | m_limit(0) |
---|
| 426 | { |
---|
| 427 | setLma(lma); |
---|
| 428 | } |
---|
| 429 | |
---|
[238] | 430 | //////////// |
---|
[163] | 431 | PSeg::PSeg() |
---|
| 432 | : |
---|
| 433 | m_name("Empty section"), |
---|
| 434 | m_lma(0), |
---|
| 435 | m_length(0), |
---|
| 436 | m_nextLma(0), |
---|
| 437 | m_limit(0) |
---|
| 438 | { |
---|
| 439 | } |
---|
| 440 | |
---|
[238] | 441 | ///////////////////////////// |
---|
[163] | 442 | PSeg::PSeg( const PSeg &ref ) |
---|
| 443 | : m_name("To be copied"), |
---|
| 444 | m_lma(0), |
---|
| 445 | m_length(0), |
---|
| 446 | m_nextLma(0), |
---|
| 447 | m_limit(0) |
---|
| 448 | { |
---|
| 449 | (*this) = ref; |
---|
| 450 | } |
---|
| 451 | |
---|
| 452 | PSeg::~PSeg() |
---|
| 453 | { |
---|
| 454 | } |
---|
| 455 | |
---|
| 456 | |
---|
| 457 | |
---|
| 458 | // Local Variables: |
---|
| 459 | // tab-width: 4 |
---|
| 460 | // c-basic-offset: 4 |
---|
| 461 | // c-file-offsets:((innamespace . 0)(inline-open . 0)) |
---|
| 462 | // indent-tabs-mode: nil |
---|
| 463 | // End: |
---|
| 464 | |
---|
| 465 | // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=4:softtabstop=4 |
---|
| 466 | |
---|