Class: OrigenTesters::ATP::Flow
- Inherits:
-
Object
- Object
- OrigenTesters::ATP::Flow
- Defined in:
- lib/origen_testers/atp/flow.rb
Overview
Implements the main user API for building and interacting with an abstract test program
Constant Summary collapse
- CONDITION_KEYS =
{ if_enabled: :if_enabled, if_enable: :if_enabled, enabled: :if_enabled, enable_flag: :if_enabled, enable: :if_enabled, unless_enabled: :unless_enabled, not_enabled: :unless_enabled, disabled: :unless_enabled, disable: :unless_enabled, unless_enable: :unless_enabled, if_failed: :if_failed, unless_passed: :if_failed, failed: :if_failed, if_passed: :if_passed, unless_failed: :if_passed, passed: :if_passed, if_any_failed: :if_any_failed, unless_all_passed: :if_any_failed, if_all_failed: :if_all_failed, unless_any_passed: :if_all_failed, if_any_passed: :if_any_passed, unless_all_failed: :if_any_passed, if_all_passed: :if_all_passed, unless_any_failed: :if_all_passed, if_ran: :if_ran, if_executed: :if_ran, unless_ran: :unless_ran, unless_executed: :unless_ran, job: :if_job, jobs: :if_job, if_job: :if_job, if_jobs: :if_job, unless_job: :unless_job, unless_jobs: :unless_job, if_flag: :if_flag, unless_flag: :unless_flag, whenever: :whenever, whenever_all: :whenever_all, whenever_any: :whenever_any, group: :group, if_any_site_failed: :if_any_sites_failed, if_any_sites_failed: :if_any_sites_failed, unless_all_sites_passed: :if_any_sites_failed, if_all_sites_failed: :if_all_sites_failed, unless_any_sites_passed: :if_all_sites_failed, unless_any_site_passed: :if_all_sites_failed, if_any_site_passed: :if_any_sites_passed, if_any_sites_passed: :if_any_sites_passed, unless_all_sites_failed: :if_any_sites_passed, if_all_sites_passed: :if_all_sites_passed, unless_any_sites_failed: :if_all_sites_passed, unless_any_site_failed: :if_all_sites_passed }
- CONDITION_NODE_TYPES =
CONDITION_KEYS.values.uniq
- RELATIONAL_OPERATORS =
[:eq, :ne, :lt, :le, :gt, :ge]
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#program ⇒ Object
readonly
Returns the value of attribute program.
Instance Method Summary collapse
- #add_auxiliary_flow(name, options = {}) ⇒ Object
- #add_flag(flag, options = {}) ⇒ Object
-
#add_global_flag(*flags) ⇒ Object
Indicate the that given flags should keep state between units prevent them from being in the initialization block these flags will be the user’s responsibility to initialize.
-
#ast(options = {}) ⇒ Object
Returns a processed/optimized AST, this is the one that should be used to build and represent the given test flow.
- #bin(number, options = {}) ⇒ Object
-
#context_changed?(options) ⇒ Boolean
Returns true if the test context generated from the supplied options + existing condition wrappers, is different from that which was applied to the previous test.
- #continue(options = {}) ⇒ Object
- #cz(instance, cz_setup, options = {}) ⇒ Object (also: #characterize)
-
#describe_bin(number, description, options = {}) ⇒ Object
Record a description for a bin number.
-
#describe_soft_bin(number, description, options = {}) ⇒ Object
(also: #describe_softbin)
Record a description for a softbin number.
-
#disable(var, options = {}) ⇒ Object
Disable a flow control variable.
-
#enable(var, options = {}) ⇒ Object
Enable a flow control variable.
-
#group(name, options = {}, &block) ⇒ Object
Group all tests generated within the given block.
- #ids(options = {}) ⇒ Object
-
#initialize(program, name = nil, options = {}) ⇒ Flow
constructor
A new instance of Flow.
- #inspect ⇒ Object
-
#log(message, options = {}) ⇒ Object
Append a log message line to the flow.
- #loop(*args, &block) ⇒ Object
- #marshal_dump ⇒ Object private
- #marshal_load(array) ⇒ Object private
- #pass(number, options = {}) ⇒ Object
-
#raw ⇒ Object
Returns the raw AST.
-
#render(str, options = {}) ⇒ Object
Insert explicitly rendered content in to the flow.
-
#run(options = {}) ⇒ Object
Execute the given flow in the console.
- #set(var, val, options = {}) ⇒ Object
- #set_flag(flag, options = {}) ⇒ Object
- #sub_flow(flow_node, options = {}) ⇒ Object
-
#sub_test(instance, options = {}) ⇒ Object
Equivalent to calling test, but returns a sub_test node instead of adding it to the flow.
-
#test(instance, options = {}) ⇒ Object
Add a test line to the flow.
- #unset_flag(flag, options = {}) ⇒ Object
-
#volatile(*flags) ⇒ Object
Indicate the that given flags should be considered volatile (can change at any time), which will prevent them from been touched by the optimization algorithms.
- #whenever(*expressions, &block) ⇒ Object
Constructor Details
#initialize(program, name = nil, options = {}) ⇒ Flow
Returns a new instance of Flow.
85 86 87 88 89 90 91 92 93 94 95 |
# File 'lib/origen_testers/atp/flow.rb', line 85 def initialize(program, name = nil, = {}) name, = nil, name if name.is_a?(Hash) @source_file = [] @source_line_number = [] @description = [] @program = program @name = name () do @pipeline = [n1(:flow, n1(:name, name))] end end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
5 6 7 |
# File 'lib/origen_testers/atp/flow.rb', line 5 def name @name end |
#program ⇒ Object (readonly)
Returns the value of attribute program.
5 6 7 |
# File 'lib/origen_testers/atp/flow.rb', line 5 def program @program end |
Instance Method Details
#add_auxiliary_flow(name, options = {}) ⇒ Object
482 483 484 485 486 487 488 489 490 491 492 493 494 495 |
# File 'lib/origen_testers/atp/flow.rb', line 482 def add_auxiliary_flow(name, = {}) if tester.smt8? if name.to_s != [:path].split('.').last.to_s fail "Auxiliary flow path does not end in '#{name}'. The path instead is '#{[:path]}'. Please update the path to align with the provided name." end () do apply_conditions() do n2(:auxiliary_flow, n1(:name, name), n1(:path, [:path])) end end else fail 'Auxiliary flow API is only usable in SMT8.' end end |
#add_flag(flag, options = {}) ⇒ Object
573 574 575 576 577 578 579 |
# File 'lib/origen_testers/atp/flow.rb', line 573 def add_flag(flag, = {}) () do apply_conditions() do add_flag_node(flag) end end end |
#add_global_flag(*flags) ⇒ Object
Indicate the that given flags should keep state between units prevent them from being in the initialization block these flags will be the user’s responsibility to initialize
226 227 228 229 230 |
# File 'lib/origen_testers/atp/flow.rb', line 226 def add_global_flag(*flags) = flags.pop if flags.last.is_a?(Hash) flags = flags.flatten @pipeline[0] = add_global_flag_to_node(@pipeline[0], flags) end |
#ast(options = {}) ⇒ Object
Returns a processed/optimized AST, this is the one that should be used to build and represent the given test flow
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 |
# File 'lib/origen_testers/atp/flow.rb', line 123 def ast( = {}) = { apply_relationships: true, # Supply a unique ID to append to all IDs unique_id: nil, # Set to :smt, or :igxl optimization: :runner, # When true, will remove set_result nodes in an on_fail branch which contains a continue implement_continue: true, # When false, this will not optimize the use of a flag by nesting a dependent test within # the parent test's on_fail branch if the on_fail contains a continue optimize_flags_when_continue: true, # These options are not intended for application use, but provide the ability to # turn off certain processors during test cases add_ids: true, optimize_flags: true, one_flag_per_test: true, include_sub_flows: true }.merge() ############################################################################### ## Common pre-processing and validation ############################################################################### ast = Processors::PreCleaner.new.run(raw) Validators::DuplicateIDs.new(self).run(ast) Validators::MissingIDs.new(self).run(ast) Validators::Jobs.new(self).run(ast) Validators::Flags.new(self).run(ast) # Ensure everything has an ID, this helps later if condition nodes need to be generated ast = Processors::AddIDs.new.run(ast) if [:add_ids] ast = Processors::FlowID.new.run(ast, [:unique_id]) if [:unique_id] ast = Processors::SubFlowRemover.new.run(ast) unless [:include_sub_flows] ############################################################################### ## Optimization for a C-like flow target, e.g. V93K ############################################################################### if [:optimization] == :smt || [:optimization] == :runner # This applies all the relationships by setting flags in the referenced test and # changing all if_passed/failed type nodes to if_flag type nodes ast = Processors::Relationship.new.run(ast) if [:apply_relationships] ast = Processors::Condition.new.run(ast) unless [:optimization] == :runner ast = Processors::ContinueImplementer.new.run(ast) if [:implement_continue] end if [:optimize_flags] ast = Processors::FlagOptimizer.new.run(ast, optimize_when_continue: [:optimize_flags_when_continue]) end ast = Processors::AdjacentIfCombiner.new.run(ast) ############################################################################### ## Optimization for a row-based target, e.g. UltraFLEX ############################################################################### elsif [:optimization] == :igxl # Un-nest everything embedded in else nodes ast = Processors::ElseRemover.new.run(ast) # Un-nest everything embedded in on_pass/fail nodes except for binning and # flag setting ast = Processors::OnPassFailRemover.new.run(ast) # This applies all the relationships by setting flags in the referenced test and # changing all if_passed/failed type nodes to if_flag type nodes ast = Processors::Relationship.new.run(ast) if [:apply_relationships] ast = Processors::Condition.new.run(ast) ast = Processors::ApplyPostGroupActions.new.run(ast) ast = Processors::OneFlagPerTest.new.run(ast) if [:one_flag_per_test] ast = Processors::RedundantConditionRemover.new.run(ast) ############################################################################### ## Not currently used, more of a test case ############################################################################### elsif [:optimization] == :flat # Un-nest everything embedded in else nodes ast = Processors::ElseRemover.new.run(ast) # Un-nest everything embedded in on_pass/fail nodes except for binning and # flag setting ast = Processors::OnPassFailRemover.new.run(ast) ast = Processors::Condition.new.run(ast) ast = Processors::Flattener.new.run(ast) ############################################################################### ## Default Optimization ############################################################################### else ast = Processors::Condition.new.run(ast) end ############################################################################### ## Common cleanup ############################################################################### # Removes any empty on_pass and on_fail branches ast = Processors::EmptyBranchRemover.new.run(ast) ast end |
#bin(number, options = {}) ⇒ Object
497 498 499 500 501 502 503 504 505 506 507 508 509 510 |
# File 'lib/origen_testers/atp/flow.rb', line 497 def bin(number, = {}) if number.is_a?(Hash) fail 'The bin number must be passed as the first argument' end [:bin_description] ||= .delete(:description) () do apply_conditions() do [:type] ||= :fail [:bin] = number [:softbin] ||= [:soft_bin] || [:sbin] set_result([:type], ) end end end |
#context_changed?(options) ⇒ Boolean
Returns true if the test context generated from the supplied options + existing condition wrappers, is different from that which was applied to the previous test.
614 615 616 617 |
# File 'lib/origen_testers/atp/flow.rb', line 614 def context_changed?() [:_dont_delete_conditions_] = true last_conditions != clean_conditions(open_conditions + [extract_conditions()]) end |
#continue(options = {}) ⇒ Object
598 599 600 601 602 603 604 |
# File 'lib/origen_testers/atp/flow.rb', line 598 def continue( = {}) () do apply_conditions() do n0(:continue) end end end |
#cz(instance, cz_setup, options = {}) ⇒ Object Also known as: characterize
520 521 522 523 524 525 526 527 |
# File 'lib/origen_testers/atp/flow.rb', line 520 def cz(instance, cz_setup, = {}) () do apply_conditions() do node = n1(:cz, cz_setup) append_to(node) { test(instance, ) } end end end |
#describe_bin(number, description, options = {}) ⇒ Object
Record a description for a bin number
233 234 235 |
# File 'lib/origen_testers/atp/flow.rb', line 233 def describe_bin(number, description, = {}) @pipeline[0] = add_bin_description(@pipeline[0], number, description, type: :hard) end |
#describe_soft_bin(number, description, options = {}) ⇒ Object Also known as: describe_softbin
Record a description for a softbin number
238 239 240 |
# File 'lib/origen_testers/atp/flow.rb', line 238 def describe_soft_bin(number, description, = {}) @pipeline[0] = add_bin_description(@pipeline[0], number, description, type: :soft) end |
#disable(var, options = {}) ⇒ Object
Disable a flow control variable
549 550 551 552 553 554 555 |
# File 'lib/origen_testers/atp/flow.rb', line 549 def disable(var, = {}) () do apply_conditions() do n1(:disable, var) end end end |
#enable(var, options = {}) ⇒ Object
Enable a flow control variable
540 541 542 543 544 545 546 |
# File 'lib/origen_testers/atp/flow.rb', line 540 def enable(var, = {}) () do apply_conditions() do n1(:enable, var) end end end |
#group(name, options = {}, &block) ⇒ Object
Group all tests generated within the given block
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 |
# File 'lib/origen_testers/atp/flow.rb', line 250 def group(name, = {}, &block) # The idiomatic way of creating a group in SMT8 is a sub-flow if tester.try(:smt8?) () do apply_conditions() do parent, sub_flow = *::Flow._sub_flow(name, , &block) path = sub_flow.output_file.relative_path_from(Origen.file_handler.output_directory) ast = sub_flow.atp.raw name, *children = *ast nodes = [name] nodes << id([:id]) if [:id] nodes << n1(:path, path.to_s) nodes += children ast = ast.updated :sub_flow, nodes, file: .delete(:source_file) || source_file, line_number: .delete(:source_line_number) || source_line_number, description: .delete(:description) || description ast end end else () do apply_conditions() do children = [n1(:name, name)] children << n1(:bypass, [:bypass]) if [:bypass] if [:comment] || [:description] || [:desc] children << n1(:comment, [:comment] || [:description] || [:desc]) end children << id([:id]) if [:id] children << on_fail([:on_fail]) if [:on_fail] children << on_pass([:on_pass]) if [:on_pass] g = n(:group, children) append_to(g) { yield } end end end end |
#ids(options = {}) ⇒ Object
697 698 699 |
# File 'lib/origen_testers/atp/flow.rb', line 697 def ids( = {}) OrigenTesters::ATP::AST::Extractor.new.process(raw, [:id]).map { |node| node.to_a[0] } end |
#inspect ⇒ Object
693 694 695 |
# File 'lib/origen_testers/atp/flow.rb', line 693 def inspect "<OrigenTesters::ATP::Flow:#{object_id} #{name}>" end |
#log(message, options = {}) ⇒ Object
Append a log message line to the flow
531 532 533 534 535 536 537 |
# File 'lib/origen_testers/atp/flow.rb', line 531 def log(, = {}) () do apply_conditions() do n1(:log, .to_s) end end end |
#loop(*args, &block) ⇒ Object
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 |
# File 'lib/origen_testers/atp/flow.rb', line 628 def loop(*args, &block) unless args[0].keys.include?(:from) && args[0].keys.include?(:to) fail 'Loop must specify :from, :to' end # assume 1 if :step not provided unless args[0].keys.include?(:step) args[0][:step] = 1 end # assume 1 if :test_num_inc not provided unless args[0].keys.include?(:test_num_inc) args[0][:test_num_inc] = 1 end # Add node for set of flag to be used for loop unless args[0][:var].nil? unless tester.smt8? set(args[0][:var], 0) end end () do apply_conditions() do # always pass 5-element array to loop node to simplify downstream parser # element, 'var', will be nil if not specified by loop call params = [args[0][:from], args[0][:to], args[0][:step], args[0][:var], args[0][:test_num_inc]] node = n(:loop, params) node = append_to(node) { block.call } node end end end |
#marshal_dump ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
98 99 100 |
# File 'lib/origen_testers/atp/flow.rb', line 98 def marshal_dump [@name, @program, Processors::Marshal.new.process(raw)] end |
#marshal_load(array) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
103 104 105 106 |
# File 'lib/origen_testers/atp/flow.rb', line 103 def marshal_load(array) @name, @program, raw = array @pipeline = [raw] end |
#pass(number, options = {}) ⇒ Object
512 513 514 515 516 517 518 |
# File 'lib/origen_testers/atp/flow.rb', line 512 def pass(number, = {}) if number.is_a?(Hash) fail 'The bin number must be passed as the first argument' end [:type] = :pass bin(number, ) end |
#raw ⇒ Object
Returns the raw AST
109 110 111 112 113 114 115 116 117 118 119 |
# File 'lib/origen_testers/atp/flow.rb', line 109 def raw n = nil @pipeline.reverse_each do |node| if n n = node.updated(nil, node.children + [n]) else n = node end end n end |
#render(str, options = {}) ⇒ Object
Insert explicitly rendered content in to the flow
590 591 592 593 594 595 596 |
# File 'lib/origen_testers/atp/flow.rb', line 590 def render(str, = {}) () do apply_conditions() do n1(:render, str) end end end |
#run(options = {}) ⇒ Object
Execute the given flow in the console
607 608 609 610 |
# File 'lib/origen_testers/atp/flow.rb', line 607 def run( = {}) Formatters::Datalog.run_and_format(ast, ) nil end |
#set(var, val, options = {}) ⇒ Object
581 582 583 584 585 586 587 |
# File 'lib/origen_testers/atp/flow.rb', line 581 def set(var, val, = {}) () do apply_conditions() do n2(:set, var, val) end end end |
#set_flag(flag, options = {}) ⇒ Object
557 558 559 560 561 562 563 |
# File 'lib/origen_testers/atp/flow.rb', line 557 def set_flag(flag, = {}) () do apply_conditions() do set_flag_node(flag) end end end |
#sub_flow(flow_node, options = {}) ⇒ Object
470 471 472 473 474 475 476 477 478 479 480 |
# File 'lib/origen_testers/atp/flow.rb', line 470 def sub_flow(flow_node, = {}) name, *children = *flow_node if [:path] children = [name] + [n1(:path, [:path])] + children else children = [name] + children end apply_conditions() do flow_node.updated(:sub_flow, children) end end |
#sub_test(instance, options = {}) ⇒ Object
Equivalent to calling test, but returns a sub_test node instead of adding it to the flow.
This is a helper to create sub_tests for inclusion in a top-level test node.
465 466 467 468 |
# File 'lib/origen_testers/atp/flow.rb', line 465 def sub_test(instance, = {}) temp = append_to(n0(:temp)) { test(instance, ) } temp.children.first.updated(:sub_test, nil) end |
#test(instance, options = {}) ⇒ Object
Add a test line to the flow
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 |
# File 'lib/origen_testers/atp/flow.rb', line 297 def test(instance, = {}) () do apply_conditions() do if [:on_fail].is_a?(Proc) before_on_fail = .delete(:on_fail) end if [:on_pass].is_a?(Proc) before_on_pass = .delete(:on_pass) end # Allows any continue, bin, or soft bin argument passed in at the options top-level to be assumed # to be the action to take if the test fails if b = .delete(:bin) [:on_fail] ||= {} [:on_fail][:bin] = b end if b = .delete(:bin_description) [:on_fail] ||= {} [:on_fail][:bin_description] = b end if b = .delete(:bin_attrs) [:on_fail] ||= {} [:on_fail][:bin_attrs] = b end if b = .delete(:softbin) || b = .delete(:sbin) || b = .delete(:soft_bin) [:on_fail] ||= {} [:on_fail][:softbin] = b end if b = .delete(:softbin_description) || .delete(:sbin_description) || .delete(:soft_bin_description) [:on_fail] ||= {} [:on_fail][:softbin_description] = b end if .delete(:continue) [:on_fail] ||= {} [:on_fail][:continue] = true end if .key?(:delayed) [:on_fail] ||= {} [:on_fail][:delayed] = .delete(:delayed) end if f = .delete(:flag_pass) [:on_pass] ||= {} [:on_pass][:set_flag] = f end if f = .delete(:flag_fail) [:on_fail] ||= {} [:on_fail][:set_flag] = f end children = [n1(:object, instance)] name = ([:name] || [:tname] || [:test_name]) unless name # Starting in Ruby3 type Symbol responds to name unless instance.is_a?(Symbol) [:name, :tname, :test_name].each do |m| name ||= instance.respond_to?(m) ? instance.send(m) : nil end end end children << n1(:name, name) if name num = ([:number] || [:num] || [:tnum] || [:test_number]) unless num [:number, :num, :tnum, :test_number].each do |m| num ||= instance.respond_to?(m) ? instance.send(m) : nil end end children << number(num) if num children << id([:id]) if [:id] if levels = [:level] || [:levels] levels = [levels] unless levels.is_a?(Array) levels.each do |l| children << level(l[:name], l[:value], l[:unit] || l[:units]) end end lims = [:limit] || [:limits] if lims || [:lo] || [:low] || [:hi] || [:high] if lims == :none || lims == 'none' children << n0(:nolimits) else lims = Array(lims) unless lims.is_a?(Array) if lo = [:lo] || [:low] lims << { value: lo, rule: :gte } end if hi = [:hi] || [:high] lims << { value: hi, rule: :lte } end lims.each do |l| if l.is_a?(Hash) children << n(:limit, [l[:value], l[:rule], l[:unit] || l[:units], l[:selector]]) end end end end if pins = [:pin] || [:pins] pins = [pins] unless pins.is_a?(Array) pins.each do |p| if p.is_a?(Hash) children << pin(p[:name]) else children << pin(p) end end end if pats = [:pattern] || [:patterns] pats = [pats] unless pats.is_a?(Array) pats.each do |p| if p.is_a?(Hash) children << pattern(p[:name], p[:path]) else children << pattern(p) end end end if [:meta] attrs = [] [:meta].each { |k, v| attrs << attribute(k, v) } children << n(:meta, attrs) end if [:test_text] children << n(:test_text, [[:test_text]]) end if subs = [:sub_test] || [:sub_tests] subs = [subs] unless subs.is_a?(Array) subs.each do |s| children << s.updated(:sub_test, nil) end end if before_on_fail on_fail_node = on_fail(before_on_fail) if [:on_fail] on_fail_node = on_fail_node.updated(nil, on_fail_node.children + on_fail([:on_fail]).children) end children << on_fail_node else children << on_fail([:on_fail]) if [:on_fail] end if before_on_pass on_pass_node = on_pass(before_on_pass) if [:on_pass] on_pass_node = on_pass_node.updated(nil, on_pass_node.children + on_pass([:on_pass]).children) end children << on_pass_node else children << on_pass([:on_pass]) if [:on_pass] end children << priority([:priority]) if [:priority] save_conditions n(:test, children) end end end |
#unset_flag(flag, options = {}) ⇒ Object
565 566 567 568 569 570 571 |
# File 'lib/origen_testers/atp/flow.rb', line 565 def unset_flag(flag, = {}) () do apply_conditions() do unset_flag_node(flag) end end end |
#volatile(*flags) ⇒ Object
Indicate the that given flags should be considered volatile (can change at any time), which will prevent them from been touched by the optimization algorithms
217 218 219 220 221 |
# File 'lib/origen_testers/atp/flow.rb', line 217 def volatile(*flags) = flags.pop if flags.last.is_a?(Hash) flags = flags.flatten @pipeline[0] = add_volatile_flags(@pipeline[0], flags) end |
#whenever(*expressions, &block) ⇒ Object
619 620 621 622 623 624 625 626 |
# File 'lib/origen_testers/atp/flow.rb', line 619 def whenever(*expressions, &block) if expressions.last.is_a?(Hash) = expressions.pop else = {} end flow_control_method(:whenever, expressions, , &block) end |