<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic I wonder if you don't have in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981389#M99813</link>
    <description>&lt;P&gt;I wonder if you don't have the Fortran debug support loaded for some reason. When you view the Locals list of variables, are the types displayed as Fortran types or C types?&lt;/P&gt;</description>
    <pubDate>Thu, 22 Aug 2013 12:56:24 GMT</pubDate>
    <dc:creator>Steven_L_Intel1</dc:creator>
    <dc:date>2013-08-22T12:56:24Z</dc:date>
    <item>
      <title>Cannot bind expression to breakpoint.</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981388#M99812</link>
      <description>&lt;P&gt;After upgrading to Intel FORTRAN 2013 and Visual Studio 2012 I cannot set breakpoints the same way that I used to.&lt;/P&gt;
&lt;P&gt;I frequently want to set a conditional breakpoint where the condition is something like ‘A(I) .EQ. 0’. When I try it now I get the error message “Cannot bind expression to breakpoint”. I’ve also noticed that I cannot watch variables that are defined in a module without including the module name. For example, I used to be able to watch a variable named VAR and now I have to use MODULE_NAME::VAR in the watch window.&lt;/P&gt;
&lt;P&gt;Are these issues related? And is there a compiler setting that will restore the previous operation?&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2013 02:29:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981388#M99812</guid>
      <dc:creator>tsimm3</dc:creator>
      <dc:date>2013-08-22T02:29:10Z</dc:date>
    </item>
    <item>
      <title>I wonder if you don't have</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981389#M99813</link>
      <description>&lt;P&gt;I wonder if you don't have the Fortran debug support loaded for some reason. When you view the Locals list of variables, are the types displayed as Fortran types or C types?&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2013 12:56:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981389#M99813</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2013-08-22T12:56:24Z</dc:date>
    </item>
    <item>
      <title>They are displayed as Fortran</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981390#M99814</link>
      <description>&lt;P&gt;They are displayed as Fortran. INTEGER(4), CHARACTER(80), etc.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2013 14:01:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981390#M99814</guid>
      <dc:creator>tsimm3</dc:creator>
      <dc:date>2013-08-22T14:01:42Z</dc:date>
    </item>
    <item>
      <title>When you say "used to", what</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981391#M99815</link>
      <description>&lt;P&gt;When you say "used to", what were you using before?&lt;/P&gt;
&lt;P&gt;The problem with using A(I) in an expression is that the debugger wants to convert that to an address at the time you set the breakpoint. It doesn't re-evaluate A(I) after each statement.&lt;/P&gt;
&lt;P&gt;As for module variables, if you use the variable then you should be able to see it directly in the debugger. It works when I try it. Perhaps you can provide an example showing where it doesn't?&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2013 14:10:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981391#M99815</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2013-08-22T14:10:40Z</dc:date>
    </item>
    <item>
      <title>I've discovered that I only</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981392#M99816</link>
      <description>&lt;P&gt;I've discovered that I only have the problem setting the conditional breakpoint using data that has been dynamically allocated. Here is a sample that shows the problem.&lt;/P&gt;
&lt;P&gt;module mod1&lt;BR /&gt; integer :: i, x=5&lt;BR /&gt; integer, allocatable :: a(:), b(:)&lt;BR /&gt;end module&lt;BR /&gt; &lt;BR /&gt;program test&lt;BR /&gt;use mod1&lt;BR /&gt;implicit none&lt;/P&gt;
&lt;P&gt;allocate(a(100))&lt;BR /&gt;allocate(b(100))&lt;/P&gt;
&lt;P&gt;do i = 1, 100&lt;BR /&gt; a(i) = i**2&lt;BR /&gt; b(i) = a(i) + 1&lt;BR /&gt;enddo&lt;/P&gt;
&lt;P&gt;end&lt;/P&gt;
&lt;P&gt;I attached a screenshot of the code window, the error message and the watch window.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2013 14:29:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981392#M99816</guid>
      <dc:creator>tsimm3</dc:creator>
      <dc:date>2013-08-22T14:29:06Z</dc:date>
    </item>
    <item>
      <title>I have set conditional</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981393#M99817</link>
      <description>&lt;P&gt;I have set conditional breakpoints in this manner for several years using compilers going back to CVF at least. In recent years I’ve been using Intel Fortran compilers. I believe I’ve used versions 9 and 11 without experiencing this problem, although the process of setting conditional breakpoints does seem to change with each version.&lt;/P&gt;
&lt;P&gt;I can exam variables from a module if they are used in the subroutine that I’m currently debugging, but have to use the module name to examine them if they are not used locally. I believe that in the past I could examine any variable in the module as long as the module was used by the subroutine.&lt;/P&gt;
&lt;P&gt;I tried to post a message showing that the problem only occurs when I use dynamically allocated arrays, but I was told it was being reviewed before it could be posted. Possibly because I attached a file. Here is source code that demonstrates the problem when trying to set a conditional breakpoint 'a(i) .gt. 100'.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;module mod1&lt;/P&gt;
&lt;P&gt;&amp;nbsp; integer :: i, x=5&lt;/P&gt;
&lt;P&gt;&amp;nbsp; integer, allocatable :: a(:), b(:)&lt;/P&gt;
&lt;P&gt;end module&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;program test&lt;/P&gt;
&lt;P&gt;use mod1&lt;/P&gt;
&lt;P&gt;implicit none&lt;/P&gt;
&lt;P&gt;allocate(a(100))&lt;/P&gt;
&lt;P&gt;allocate(b(100))&lt;/P&gt;
&lt;P&gt;do i = 1, 100&lt;/P&gt;
&lt;P&gt;&amp;nbsp; a(i) = i**2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; !can’t set a breakpoint conditional on a(i) .gt. 100&lt;/P&gt;
&lt;P&gt;&amp;nbsp; b(i) = a(i) + 1&lt;/P&gt;
&lt;P&gt;enddo&lt;/P&gt;
&lt;P&gt;&amp;nbsp;end&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2013 15:03:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981393#M99817</guid>
      <dc:creator>tsimm3</dc:creator>
      <dc:date>2013-08-22T15:03:00Z</dc:date>
    </item>
    <item>
      <title>If you read Steve's statement</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981394#M99818</link>
      <description>&lt;P&gt;If you read Steve's statement: &lt;EM&gt;The problem with using A(I) in an expression is that the debugger wants to convert that to an address at the time you set the breakpoint. It doesn't re-evaluate A(I) after each statement.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;You will see why you do not get the results you want.&lt;/P&gt;
&lt;P&gt;This may be a good time to make a request for expression evaluation to be specifiable (programmers choice) as either a) at time of setting, or b) on each trip through code.&lt;/P&gt;
&lt;P&gt;I can see a case for either.&lt;/P&gt;
&lt;P&gt;Jim Dempsey&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2013 15:22:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981394#M99818</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2013-08-22T15:22:20Z</dc:date>
    </item>
    <item>
      <title>This is probably not under</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981395#M99819</link>
      <description>&lt;P&gt;This is probably not under our control. VS6 (used with CVF) was quite a bit different from VS2002 and later. In current versions of Visual Studio, you can set "data breakpoints" with conditions, but the thing you're watching has to be a fixed address. Here is what the dialog looks like:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="capture.png"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/10152i9B95786BFBEB63F7/image-size/large?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="capture.png" alt="capture.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;For things like this, Microsoft doesn't give us control to add additional breakpoint types - all we can do is evaluate the expression passed to us and return an address when you establish the breakpoint.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2013 15:31:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981395#M99819</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2013-08-22T15:31:00Z</dc:date>
    </item>
    <item>
      <title>That is the dialog box for a</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981396#M99820</link>
      <description>&lt;P&gt;That is the dialog box for a new breakpoint. I have used it, with inconsistent results, to break when a value changes.&lt;/P&gt;
&lt;P&gt;To set a breakpoint when an array element takes on a certain value I use the Breakpoint Condition dialog box. I'm trying to attach a screenshot.&lt;/P&gt;
&lt;P&gt;I realize the inconsistent behavior over the years could be caused by Visual Studio. I have found that it's easier to get information here than from Microsoft, so I was hoping it was a compiler issue.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2013 15:51:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981396#M99820</guid>
      <dc:creator>tsimm3</dc:creator>
      <dc:date>2013-08-22T15:51:07Z</dc:date>
    </item>
    <item>
      <title>Ah - now that you showed some</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981397#M99821</link>
      <description>&lt;P&gt;Ah - now that you showed some source I see...&amp;nbsp; The real problem is the use of the allocatable array. If it isn't an allocatable array, you can do this. I'll ask the developers if this can be resolved.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2013 16:32:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981397#M99821</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2013-08-22T16:32:29Z</dc:date>
    </item>
    <item>
      <title>Yes, that's right. Here is</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981398#M99822</link>
      <description>&lt;P&gt;Yes, that's right. Here is simpler code that demonstrates the problem. I can set a conditional break 'c(i) .gt. 100' but cannot set 'b(i) .gt. 100'&lt;/P&gt;
&lt;P&gt;program test&lt;/P&gt;
&lt;P&gt;implicit none&lt;/P&gt;
&lt;P&gt;integer i, x&lt;BR /&gt;integer, allocatable :: a(:), b(:)&lt;BR /&gt;integer c(100)&lt;/P&gt;
&lt;P&gt;allocate(a(100))&lt;BR /&gt;allocate(b(100))&lt;BR /&gt;do i = 1, 100&lt;BR /&gt; a(i) = i**2&lt;BR /&gt; b(i) = a(i)&lt;BR /&gt; c(i) = a(i)&lt;BR /&gt; continue &amp;nbsp; &amp;nbsp; &amp;nbsp; !setting breakpoints on this line&lt;BR /&gt;enddo&lt;/P&gt;
&lt;P&gt;end&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2013 16:45:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981398#M99822</guid>
      <dc:creator>tsimm3</dc:creator>
      <dc:date>2013-08-22T16:45:18Z</dc:date>
    </item>
    <item>
      <title>Yes, I have an even simpler</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981399#M99823</link>
      <description>&lt;P&gt;Yes, I have an even simpler program that shows this difference. I'll comment that again we have an example where a test program would have saved a lot of time and effort - simply describing what you think is the problem often leads us astray. Issue ID is DPD200247390.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2013 17:27:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981399#M99823</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2013-08-22T17:27:00Z</dc:date>
    </item>
    <item>
      <title>Thanks. I'll remind you that</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981400#M99824</link>
      <description>&lt;P&gt;Thanks. I'll remind you that I sent the sample code early this morning in the early stage of our communication. For some reason when I submitted it I received a message that it was being reviewed before it could be posted. I'm not sure when it appeared on the forum. Perhaps you didn't see it immediately.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2013 18:51:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981400#M99824</guid>
      <dc:creator>tsimm3</dc:creator>
      <dc:date>2013-08-22T18:51:53Z</dc:date>
    </item>
    <item>
      <title>I never saw the code at all -</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981401#M99825</link>
      <description>&lt;P&gt;I never saw the code at all - sorry for the confusion.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2013 20:39:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981401#M99825</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2013-08-22T20:39:51Z</dc:date>
    </item>
    <item>
      <title>No problem. I didn't realize</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981402#M99826</link>
      <description>&lt;P&gt;No problem. I didn't realize it was related to allocatable arrays until I developed the sample code.&amp;nbsp;Next time I'll try to have sample code ready when I post the original question.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2013 20:55:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981402#M99826</guid>
      <dc:creator>tsimm3</dc:creator>
      <dc:date>2013-08-22T20:55:35Z</dc:date>
    </item>
    <item>
      <title>Steve - has this been fixed</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981403#M99827</link>
      <description>&lt;P&gt;Steve - has this been fixed in some version?&lt;BR /&gt;
	&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Nov 2014 15:35:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981403#M99827</guid>
      <dc:creator>dajum</dc:creator>
      <dc:date>2014-11-06T15:35:14Z</dc:date>
    </item>
    <item>
      <title>No - I have pinged the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981404#M99828</link>
      <description>&lt;P&gt;No - I have pinged the developer and asked for status.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Nov 2014 16:09:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981404#M99828</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2014-11-06T16:09:45Z</dc:date>
    </item>
    <item>
      <title>The developers now tell me</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981405#M99829</link>
      <description>&lt;P&gt;The developers now tell me that the Microsoft debugger interface has limitations that prevent us from resolving this issue. They will take it up with Microsoft but don't expect any solution to appear this year.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2016 15:34:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Cannot-bind-expression-to-breakpoint/m-p/981405#M99829</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2016-03-10T15:34:15Z</dc:date>
    </item>
  </channel>
</rss>

