]> code.delx.au - gnu-emacs/blob - lisp/progmodes/cc-engine.el
Fix CC Mode fontification problem apparent in test file decls-6.cc.
[gnu-emacs] / lisp / progmodes / cc-engine.el
1 ;;; cc-engine.el --- core syntax guessing engine for CC mode -*- coding: utf-8 -*-
2
3 ;; Copyright (C) 1985, 1987, 1992-2016 Free Software Foundation, Inc.
4
5 ;; Authors: 2001- Alan Mackenzie
6 ;; 1998- Martin Stjernholm
7 ;; 1992-1999 Barry A. Warsaw
8 ;; 1987 Dave Detlefs
9 ;; 1987 Stewart Clamen
10 ;; 1985 Richard M. Stallman
11 ;; Maintainer: bug-cc-mode@gnu.org
12 ;; Created: 22-Apr-1997 (split from cc-mode.el)
13 ;; Keywords: c languages
14 ;; Package: cc-mode
15
16 ;; This file is part of GNU Emacs.
17
18 ;; GNU Emacs is free software: you can redistribute it and/or modify
19 ;; it under the terms of the GNU General Public License as published by
20 ;; the Free Software Foundation, either version 3 of the License, or
21 ;; (at your option) any later version.
22
23 ;; GNU Emacs is distributed in the hope that it will be useful,
24 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
25 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 ;; GNU General Public License for more details.
27
28 ;; You should have received a copy of the GNU General Public License
29 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
30
31 ;;; Commentary:
32
33 ;; The functions which have docstring documentation can be considered
34 ;; part of an API which other packages can use in CC Mode buffers.
35 ;; Otoh, undocumented functions and functions with the documentation
36 ;; in comments are considered purely internal and can change semantics
37 ;; or even disappear in the future.
38 ;;
39 ;; (This policy applies to CC Mode as a whole, not just this file. It
40 ;; probably also applies to many other Emacs packages, but here it's
41 ;; clearly spelled out.)
42
43 ;; Hidden buffer changes
44 ;;
45 ;; Various functions in CC Mode use text properties for caching and
46 ;; syntactic markup purposes, and those of them that might modify such
47 ;; properties but still don't modify the buffer in a visible way are
48 ;; said to do "hidden buffer changes". They should be used within
49 ;; `c-save-buffer-state' or a similar function that saves and restores
50 ;; buffer modifiedness, disables buffer change hooks, etc.
51 ;;
52 ;; Interactive functions are assumed to not do hidden buffer changes,
53 ;; except in the specific parts of them that do real changes.
54 ;;
55 ;; Lineup functions are assumed to do hidden buffer changes. They
56 ;; must not do real changes, though.
57 ;;
58 ;; All other functions that do hidden buffer changes have that noted
59 ;; in their doc string or comment.
60 ;;
61 ;; The intention with this system is to avoid wrapping every leaf
62 ;; function that do hidden buffer changes inside
63 ;; `c-save-buffer-state'. It should be used as near the top of the
64 ;; interactive functions as possible.
65 ;;
66 ;; Functions called during font locking are allowed to do hidden
67 ;; buffer changes since the font-lock package run them in a context
68 ;; similar to `c-save-buffer-state' (in fact, that function is heavily
69 ;; inspired by `save-buffer-state' in the font-lock package).
70
71 ;; Use of text properties
72 ;;
73 ;; CC Mode uses several text properties internally to mark up various
74 ;; positions, e.g. to improve speed and to eliminate glitches in
75 ;; interactive refontification.
76 ;;
77 ;; Note: This doc is for internal use only. Other packages should not
78 ;; assume that these text properties are used as described here.
79 ;;
80 ;; 'category
81 ;; Used for "indirection". With its help, some other property can
82 ;; be cheaply and easily switched on or off everywhere it occurs.
83 ;;
84 ;; 'syntax-table
85 ;; Used to modify the syntax of some characters. It is used to
86 ;; mark the "<" and ">" of angle bracket parens with paren syntax, to
87 ;; "hide" obtrusive characters in preprocessor lines, and to mark C++
88 ;; raw strings to enable their fontification.
89 ;;
90 ;; This property is used on single characters and is therefore
91 ;; always treated as front and rear nonsticky (or start and end open
92 ;; in XEmacs vocabulary). It's therefore installed on
93 ;; `text-property-default-nonsticky' if that variable exists (Emacs
94 ;; >= 21).
95 ;;
96 ;; 'c-is-sws and 'c-in-sws
97 ;; Used by `c-forward-syntactic-ws' and `c-backward-syntactic-ws' to
98 ;; speed them up. See the comment blurb before `c-put-is-sws'
99 ;; below for further details.
100 ;;
101 ;; 'c-type
102 ;; This property is used on single characters to mark positions with
103 ;; special syntactic relevance of various sorts. Its primary use is
104 ;; to avoid glitches when multiline constructs are refontified
105 ;; interactively (on font lock decoration level 3). It's cleared in
106 ;; a region before it's fontified and is then put on relevant chars
107 ;; in that region as they are encountered during the fontification.
108 ;; The value specifies the kind of position:
109 ;;
110 ;; 'c-decl-arg-start
111 ;; Put on the last char of the token preceding each declaration
112 ;; inside a declaration style arglist (typically in a function
113 ;; prototype).
114 ;;
115 ;; 'c-decl-end
116 ;; Put on the last char of the token preceding a declaration.
117 ;; This is used in cases where declaration boundaries can't be
118 ;; recognized simply by looking for a token like ";" or "}".
119 ;; `c-type-decl-end-used' must be set if this is used (see also
120 ;; `c-find-decl-spots').
121 ;;
122 ;; 'c-<>-arg-sep
123 ;; Put on the commas that separate arguments in angle bracket
124 ;; arglists like C++ template arglists.
125 ;;
126 ;; 'c-decl-id-start and 'c-decl-type-start
127 ;; Put on the last char of the token preceding each declarator
128 ;; in the declarator list of a declaration. They are also used
129 ;; between the identifiers cases like enum declarations.
130 ;; 'c-decl-type-start is used when the declarators are types,
131 ;; 'c-decl-id-start otherwise.
132 ;;
133 ;; 'c-awk-NL-prop
134 ;; Used in AWK mode to mark the various kinds of newlines. See
135 ;; cc-awk.el.
136
137 ;;; Code:
138
139 (eval-when-compile
140 (let ((load-path
141 (if (and (boundp 'byte-compile-dest-file)
142 (stringp byte-compile-dest-file))
143 (cons (file-name-directory byte-compile-dest-file) load-path)
144 load-path)))
145 (load "cc-bytecomp" nil t)))
146
147 (cc-require 'cc-defs)
148 (cc-require-when-compile 'cc-langs)
149 (cc-require 'cc-vars)
150
151 (eval-when-compile (require 'cl))
152
153 \f
154 ;; Make declarations for all the `c-lang-defvar' variables in cc-langs.
155
156 (defmacro c-declare-lang-variables ()
157 `(progn
158 ,@(c--mapcan (lambda (init)
159 `(,(if (elt init 2)
160 `(defvar ,(car init) nil ,(elt init 2))
161 `(defvar ,(car init) nil))
162 (make-variable-buffer-local ',(car init))))
163 (cdr c-lang-variable-inits))))
164 (c-declare-lang-variables)
165
166 \f
167 ;;; Internal state variables.
168
169 ;; Internal state of hungry delete key feature
170 (defvar c-hungry-delete-key nil)
171 (make-variable-buffer-local 'c-hungry-delete-key)
172
173 ;; The electric flag (toggled by `c-toggle-electric-state').
174 ;; If t, electric actions (like automatic reindentation, and (if
175 ;; c-auto-newline is also set) auto newlining) will happen when an electric
176 ;; key like `{' is pressed (or an electric keyword like `else').
177 (defvar c-electric-flag t)
178 (make-variable-buffer-local 'c-electric-flag)
179
180 ;; Internal state of auto newline feature.
181 (defvar c-auto-newline nil)
182 (make-variable-buffer-local 'c-auto-newline)
183
184 ;; Included in the mode line to indicate the active submodes.
185 ;; (defvar c-submode-indicators nil)
186 ;; (make-variable-buffer-local 'c-submode-indicators)
187
188 (defun c-calculate-state (arg prevstate)
189 ;; Calculate the new state of PREVSTATE, t or nil, based on arg. If
190 ;; arg is nil or zero, toggle the state. If arg is negative, turn
191 ;; the state off, and if arg is positive, turn the state on
192 (if (or (not arg)
193 (zerop (setq arg (prefix-numeric-value arg))))
194 (not prevstate)
195 (> arg 0)))
196
197 \f
198 ;; Basic handling of preprocessor directives.
199
200 ;; This is a dynamically bound cache used together with
201 ;; `c-query-macro-start' and `c-query-and-set-macro-start'. It only
202 ;; works as long as point doesn't cross a macro boundary.
203 (defvar c-macro-start 'unknown)
204
205 (defsubst c-query-and-set-macro-start ()
206 (if (symbolp c-macro-start)
207 (setq c-macro-start (save-excursion
208 (c-save-buffer-state ()
209 (and (c-beginning-of-macro)
210 (point)))))
211 c-macro-start))
212
213 (defsubst c-query-macro-start ()
214 (if (symbolp c-macro-start)
215 (save-excursion
216 (c-save-buffer-state ()
217 (and (c-beginning-of-macro)
218 (point))))
219 c-macro-start))
220
221 ;; One element macro cache to cope with continual movement within very large
222 ;; CPP macros.
223 (defvar c-macro-cache nil)
224 (make-variable-buffer-local 'c-macro-cache)
225 ;; Nil or cons of the bounds of the most recent CPP form probed by
226 ;; `c-beginning-of-macro', `c-end-of-macro' or `c-syntactic-end-of-macro'.
227 ;; The cdr will be nil if we know only the start of the CPP form.
228 (defvar c-macro-cache-start-pos nil)
229 (make-variable-buffer-local 'c-macro-cache-start-pos)
230 ;; The starting position from where we determined `c-macro-cache'.
231 (defvar c-macro-cache-syntactic nil)
232 (make-variable-buffer-local 'c-macro-cache-syntactic)
233 ;; Either nil, or the syntactic end of the macro currently represented by
234 ;; `c-macro-cache'.
235 (defvar c-macro-cache-no-comment nil)
236 (make-variable-buffer-local 'c-macro-cache-no-comment)
237 ;; Either nil, or the last character of the macro currently represented by
238 ;; `c-macro-cache' which isn't in a comment. */
239
240 (defun c-invalidate-macro-cache (beg end)
241 ;; Called from a before-change function. If the change region is before or
242 ;; in the macro characterized by `c-macro-cache' etc., nullify it
243 ;; appropriately. BEG and END are the standard before-change-functions
244 ;; parameters. END isn't used.
245 (cond
246 ((null c-macro-cache))
247 ((< beg (car c-macro-cache))
248 (setq c-macro-cache nil
249 c-macro-cache-start-pos nil
250 c-macro-cache-syntactic nil
251 c-macro-cache-no-comment nil))
252 ((and (cdr c-macro-cache)
253 (< beg (cdr c-macro-cache)))
254 (setcdr c-macro-cache nil)
255 (setq c-macro-cache-start-pos beg
256 c-macro-cache-syntactic nil
257 c-macro-cache-no-comment nil))))
258
259 (defun c-macro-is-genuine-p ()
260 ;; Check that the ostensible CPP construct at point is a real one. In
261 ;; particular, if point is on the first line of a narrowed buffer, make sure
262 ;; that the "#" isn't, say, the second character of a "##" operator. Return
263 ;; t when the macro is real, nil otherwise.
264 (let ((here (point)))
265 (beginning-of-line)
266 (prog1
267 (if (and (eq (point) (point-min))
268 (/= (point) 1))
269 (save-restriction
270 (widen)
271 (beginning-of-line)
272 (and (looking-at c-anchored-cpp-prefix)
273 (eq (match-beginning 1) here)))
274 t)
275 (goto-char here))))
276
277 (defun c-beginning-of-macro (&optional lim)
278 "Go to the beginning of a preprocessor directive.
279 Leave point at the beginning of the directive and return t if in one,
280 otherwise return nil and leave point unchanged.
281
282 Note that this function might do hidden buffer changes. See the
283 comment at the start of cc-engine.el for more info."
284 (let ((here (point)))
285 (when c-opt-cpp-prefix
286 (if (and (car c-macro-cache)
287 (>= (point) (car c-macro-cache))
288 (or (and (cdr c-macro-cache)
289 (<= (point) (cdr c-macro-cache)))
290 (<= (point) c-macro-cache-start-pos)))
291 (unless (< (car c-macro-cache) (or lim (point-min)))
292 (progn (goto-char (max (or lim (point-min)) (car c-macro-cache)))
293 (setq c-macro-cache-start-pos
294 (max c-macro-cache-start-pos here))
295 t))
296 (setq c-macro-cache nil
297 c-macro-cache-start-pos nil
298 c-macro-cache-syntactic nil
299 c-macro-cache-no-comment nil)
300
301 (save-restriction
302 (if lim (narrow-to-region lim (point-max)))
303 (beginning-of-line)
304 (while (eq (char-before (1- (point))) ?\\)
305 (forward-line -1))
306 (back-to-indentation)
307 (if (and (<= (point) here)
308 (looking-at c-opt-cpp-start)
309 (c-macro-is-genuine-p))
310 (progn
311 (setq c-macro-cache (cons (point) nil)
312 c-macro-cache-start-pos here)
313 t)
314 (goto-char here)
315 nil))))))
316
317 (defun c-end-of-macro ()
318 "Go to the end of a preprocessor directive.
319 More accurately, move the point to the end of the closest following
320 line that doesn't end with a line continuation backslash - no check is
321 done that the point is inside a cpp directive to begin with.
322
323 Note that this function might do hidden buffer changes. See the
324 comment at the start of cc-engine.el for more info."
325 (if (and (cdr c-macro-cache)
326 (<= (point) (cdr c-macro-cache))
327 (>= (point) (car c-macro-cache)))
328 (goto-char (cdr c-macro-cache))
329 (unless (and (car c-macro-cache)
330 (<= (point) c-macro-cache-start-pos)
331 (>= (point) (car c-macro-cache)))
332 (setq c-macro-cache nil
333 c-macro-cache-start-pos nil
334 c-macro-cache-syntactic nil
335 c-macro-cache-no-comment nil))
336 (while (progn
337 (end-of-line)
338 (when (and (eq (char-before) ?\\)
339 (not (eobp)))
340 (forward-char)
341 t)))
342 (when (car c-macro-cache)
343 (setcdr c-macro-cache (point)))))
344
345 (defun c-syntactic-end-of-macro ()
346 ;; Go to the end of a CPP directive, or a "safe" pos just before.
347 ;;
348 ;; This is normally the end of the next non-escaped line. A "safe"
349 ;; position is one not within a string or comment. (The EOL on a line
350 ;; comment is NOT "safe").
351 ;;
352 ;; This function must only be called from the beginning of a CPP construct.
353 ;;
354 ;; Note that this function might do hidden buffer changes. See the comment
355 ;; at the start of cc-engine.el for more info.
356 (let* ((here (point))
357 (there (progn (c-end-of-macro) (point)))
358 s)
359 (if c-macro-cache-syntactic
360 (goto-char c-macro-cache-syntactic)
361 (setq s (parse-partial-sexp here there))
362 (while (and (or (nth 3 s) ; in a string
363 (nth 4 s)) ; in a comment (maybe at end of line comment)
364 (> there here)) ; No infinite loops, please.
365 (setq there (1- (nth 8 s)))
366 (setq s (parse-partial-sexp here there)))
367 (setq c-macro-cache-syntactic (point)))
368 (point)))
369
370 (defun c-no-comment-end-of-macro ()
371 ;; Go to the end of a CPP directive, or a pos just before which isn't in a
372 ;; comment. For this purpose, open strings are ignored.
373 ;;
374 ;; This function must only be called from the beginning of a CPP construct.
375 ;;
376 ;; Note that this function might do hidden buffer changes. See the comment
377 ;; at the start of cc-engine.el for more info.
378 (let* ((here (point))
379 (there (progn (c-end-of-macro) (point)))
380 s)
381 (if c-macro-cache-no-comment
382 (goto-char c-macro-cache-no-comment)
383 (setq s (parse-partial-sexp here there))
384 (while (and (nth 3 s) ; in a string
385 (> there here)) ; No infinite loops, please.
386 (setq here (1+ (nth 8 s)))
387 (setq s (parse-partial-sexp here there)))
388 (when (nth 4 s)
389 (goto-char (1- (nth 8 s))))
390 (setq c-macro-cache-no-comment (point)))
391 (point)))
392
393 (defun c-forward-over-cpp-define-id ()
394 ;; Assuming point is at the "#" that introduces a preprocessor
395 ;; directive, it's moved forward to the end of the identifier which is
396 ;; "#define"d (or whatever c-opt-cpp-macro-define specifies). Non-nil
397 ;; is returned in this case, in all other cases nil is returned and
398 ;; point isn't moved.
399 ;;
400 ;; This function might do hidden buffer changes.
401 (when (and c-opt-cpp-macro-define-id
402 (looking-at c-opt-cpp-macro-define-id))
403 (goto-char (match-end 0))))
404
405 (defun c-forward-to-cpp-define-body ()
406 ;; Assuming point is at the "#" that introduces a preprocessor
407 ;; directive, it's moved forward to the start of the definition body
408 ;; if it's a "#define" (or whatever c-opt-cpp-macro-define
409 ;; specifies). Non-nil is returned in this case, in all other cases
410 ;; nil is returned and point isn't moved.
411 ;;
412 ;; This function might do hidden buffer changes.
413 (when (and c-opt-cpp-macro-define-start
414 (looking-at c-opt-cpp-macro-define-start)
415 (not (= (match-end 0) (c-point 'eol))))
416 (goto-char (match-end 0))))
417
418 \f
419 ;;; Basic utility functions.
420
421 (defun c-delq-from-dotted-list (elt dlist)
422 ;; If ELT is a member of the (possibly dotted) list DLIST, remove all
423 ;; occurrences of it (except for any in the last cdr of DLIST).
424 ;;
425 ;; Call this as (setq DLIST (c-delq-from-dotted-list ELT DLIST)), as
426 ;; sometimes the original structure is changed, sometimes it's not.
427 ;;
428 ;; This function is needed in Emacs < 24.5, and possibly XEmacs, because
429 ;; `delq' throws an error in these versions when given a dotted list.
430 (let ((tail dlist) prev)
431 (while (consp tail)
432 (if (eq (car tail) elt)
433 (if prev
434 (setcdr prev (cdr tail))
435 (setq dlist (cdr dlist)))
436 (setq prev tail))
437 (setq tail (cdr tail)))
438 dlist))
439
440 (defun c-syntactic-content (from to paren-level)
441 ;; Return the given region as a string where all syntactic
442 ;; whitespace is removed or, where necessary, replaced with a single
443 ;; space. If PAREN-LEVEL is given then all parens in the region are
444 ;; collapsed to "()", "[]" etc.
445 ;;
446 ;; This function might do hidden buffer changes.
447
448 (save-excursion
449 (save-restriction
450 (narrow-to-region from to)
451 (goto-char from)
452 (let* ((parts (list nil)) (tail parts) pos in-paren)
453
454 (while (re-search-forward c-syntactic-ws-start to t)
455 (goto-char (setq pos (match-beginning 0)))
456 (c-forward-syntactic-ws)
457 (if (= (point) pos)
458 (forward-char)
459
460 (when paren-level
461 (save-excursion
462 (setq in-paren (= (car (parse-partial-sexp from pos 1)) 1)
463 pos (point))))
464
465 (if (and (> pos from)
466 (< (point) to)
467 (looking-at "\\w\\|\\s_")
468 (save-excursion
469 (goto-char (1- pos))
470 (looking-at "\\w\\|\\s_")))
471 (progn
472 (setcdr tail (list (buffer-substring-no-properties from pos)
473 " "))
474 (setq tail (cddr tail)))
475 (setcdr tail (list (buffer-substring-no-properties from pos)))
476 (setq tail (cdr tail)))
477
478 (when in-paren
479 (when (= (car (parse-partial-sexp pos to -1)) -1)
480 (setcdr tail (list (buffer-substring-no-properties
481 (1- (point)) (point))))
482 (setq tail (cdr tail))))
483
484 (setq from (point))))
485
486 (setcdr tail (list (buffer-substring-no-properties from to)))
487 (apply 'concat (cdr parts))))))
488
489 (defun c-shift-line-indentation (shift-amt)
490 ;; Shift the indentation of the current line with the specified
491 ;; amount (positive inwards). The buffer is modified only if
492 ;; SHIFT-AMT isn't equal to zero.
493 (let ((pos (- (point-max) (point)))
494 (c-macro-start c-macro-start)
495 tmp-char-inserted)
496 (if (zerop shift-amt)
497 nil
498 ;; If we're on an empty line inside a macro, we take the point
499 ;; to be at the current indentation and shift it to the
500 ;; appropriate column. This way we don't treat the extra
501 ;; whitespace out to the line continuation as indentation.
502 (when (and (c-query-and-set-macro-start)
503 (looking-at "[ \t]*\\\\$")
504 (save-excursion
505 (skip-chars-backward " \t")
506 (bolp)))
507 (insert ?x)
508 (backward-char)
509 (setq tmp-char-inserted t))
510 (unwind-protect
511 (let ((col (current-indentation)))
512 (delete-region (c-point 'bol) (c-point 'boi))
513 (beginning-of-line)
514 (indent-to (+ col shift-amt)))
515 (when tmp-char-inserted
516 (delete-char 1))))
517 ;; If initial point was within line's indentation and we're not on
518 ;; a line with a line continuation in a macro, position after the
519 ;; indentation. Else stay at same point in text.
520 (if (and (< (point) (c-point 'boi))
521 (not tmp-char-inserted))
522 (back-to-indentation)
523 (if (> (- (point-max) pos) (point))
524 (goto-char (- (point-max) pos))))))
525
526 (defsubst c-keyword-sym (keyword)
527 ;; Return non-nil if the string KEYWORD is a known keyword. More
528 ;; precisely, the value is the symbol for the keyword in
529 ;; `c-keywords-obarray'.
530 (intern-soft keyword c-keywords-obarray))
531
532 (defsubst c-keyword-member (keyword-sym lang-constant)
533 ;; Return non-nil if the symbol KEYWORD-SYM, as returned by
534 ;; `c-keyword-sym', is a member of LANG-CONSTANT, which is the name
535 ;; of a language constant that ends with "-kwds". If KEYWORD-SYM is
536 ;; nil then the result is nil.
537 (get keyword-sym lang-constant))
538
539 ;; String syntax chars, suitable for skip-syntax-(forward|backward).
540 (defconst c-string-syntax (if (memq 'gen-string-delim c-emacs-features)
541 "\"|"
542 "\""))
543
544 ;; Regexp matching string limit syntax.
545 (defconst c-string-limit-regexp (if (memq 'gen-string-delim c-emacs-features)
546 "\\s\"\\|\\s|"
547 "\\s\""))
548
549 ;; Regexp matching WS followed by string limit syntax.
550 (defconst c-ws*-string-limit-regexp
551 (concat "[ \t]*\\(" c-string-limit-regexp "\\)"))
552
553 ;; Holds formatted error strings for the few cases where parse errors
554 ;; are reported.
555 (defvar c-parsing-error nil)
556 (make-variable-buffer-local 'c-parsing-error)
557
558 (defun c-echo-parsing-error (&optional quiet)
559 (when (and c-report-syntactic-errors c-parsing-error (not quiet))
560 (c-benign-error "%s" c-parsing-error))
561 c-parsing-error)
562
563 ;; Faces given to comments and string literals. This is used in some
564 ;; situations to speed up recognition; it isn't mandatory that font
565 ;; locking is in use. This variable is extended with the face in
566 ;; `c-doc-face-name' when fontification is activated in cc-fonts.el.
567 (defvar c-literal-faces
568 (append '(font-lock-comment-face font-lock-string-face)
569 (when (facep 'font-lock-comment-delimiter-face)
570 ;; New in Emacs 22.
571 '(font-lock-comment-delimiter-face))))
572
573 (defsubst c-put-c-type-property (pos value)
574 ;; Put a c-type property with the given value at POS.
575 (c-put-char-property pos 'c-type value))
576
577 (defun c-clear-c-type-property (from to value)
578 ;; Remove all occurrences of the c-type property that has the given
579 ;; value in the region between FROM and TO. VALUE is assumed to not
580 ;; be nil.
581 ;;
582 ;; Note: This assumes that c-type is put on single chars only; it's
583 ;; very inefficient if matching properties cover large regions.
584 (save-excursion
585 (goto-char from)
586 (while (progn
587 (when (eq (get-text-property (point) 'c-type) value)
588 (c-clear-char-property (point) 'c-type))
589 (goto-char (c-next-single-property-change (point) 'c-type nil to))
590 (< (point) to)))))
591
592 \f
593 ;; Some debug tools to visualize various special positions. This
594 ;; debug code isn't as portable as the rest of CC Mode.
595
596 (cc-bytecomp-defun overlays-in)
597 (cc-bytecomp-defun overlay-get)
598 (cc-bytecomp-defun overlay-start)
599 (cc-bytecomp-defun overlay-end)
600 (cc-bytecomp-defun delete-overlay)
601 (cc-bytecomp-defun overlay-put)
602 (cc-bytecomp-defun make-overlay)
603
604 (defun c-debug-add-face (beg end face)
605 (c-save-buffer-state ((overlays (overlays-in beg end)) overlay)
606 (while overlays
607 (setq overlay (car overlays)
608 overlays (cdr overlays))
609 (when (eq (overlay-get overlay 'face) face)
610 (setq beg (min beg (overlay-start overlay))
611 end (max end (overlay-end overlay)))
612 (delete-overlay overlay)))
613 (overlay-put (make-overlay beg end) 'face face)))
614
615 (defun c-debug-remove-face (beg end face)
616 (c-save-buffer-state ((overlays (overlays-in beg end)) overlay
617 (ol-beg beg) (ol-end end))
618 (while overlays
619 (setq overlay (car overlays)
620 overlays (cdr overlays))
621 (when (eq (overlay-get overlay 'face) face)
622 (setq ol-beg (min ol-beg (overlay-start overlay))
623 ol-end (max ol-end (overlay-end overlay)))
624 (delete-overlay overlay)))
625 (when (< ol-beg beg)
626 (overlay-put (make-overlay ol-beg beg) 'face face))
627 (when (> ol-end end)
628 (overlay-put (make-overlay end ol-end) 'face face))))
629
630 \f
631 ;; `c-beginning-of-statement-1' and accompanying stuff.
632
633 ;; KLUDGE ALERT: c-maybe-labelp is used to pass information between
634 ;; c-crosses-statement-barrier-p and c-beginning-of-statement-1. A
635 ;; better way should be implemented, but this will at least shut up
636 ;; the byte compiler.
637 (defvar c-maybe-labelp)
638
639 ;; New awk-compatible version of c-beginning-of-statement-1, ACM 2002/6/22
640
641 ;; Macros used internally in c-beginning-of-statement-1 for the
642 ;; automaton actions.
643 (defmacro c-bos-push-state ()
644 '(setq stack (cons (cons state saved-pos)
645 stack)))
646 (defmacro c-bos-pop-state (&optional do-if-done)
647 `(if (setq state (car (car stack))
648 saved-pos (cdr (car stack))
649 stack (cdr stack))
650 t
651 ,do-if-done
652 (throw 'loop nil)))
653 (defmacro c-bos-pop-state-and-retry ()
654 '(throw 'loop (setq state (car (car stack))
655 saved-pos (cdr (car stack))
656 ;; Throw nil if stack is empty, else throw non-nil.
657 stack (cdr stack))))
658 (defmacro c-bos-save-pos ()
659 '(setq saved-pos (vector pos tok ptok pptok)))
660 (defmacro c-bos-restore-pos ()
661 '(unless (eq (elt saved-pos 0) start)
662 (setq pos (elt saved-pos 0)
663 tok (elt saved-pos 1)
664 ptok (elt saved-pos 2)
665 pptok (elt saved-pos 3))
666 (goto-char pos)
667 (setq sym nil)))
668 (defmacro c-bos-save-error-info (missing got)
669 `(setq saved-pos (vector pos ,missing ,got)))
670 (defmacro c-bos-report-error ()
671 '(unless noerror
672 (setq c-parsing-error
673 (format-message
674 "No matching `%s' found for `%s' on line %d"
675 (elt saved-pos 1)
676 (elt saved-pos 2)
677 (1+ (count-lines (point-min)
678 (c-point 'bol (elt saved-pos 0))))))))
679
680 (defun c-beginning-of-statement-1 (&optional lim ignore-labels
681 noerror comma-delim)
682 "Move to the start of the current statement or declaration, or to
683 the previous one if already at the beginning of one. Only
684 statements/declarations on the same level are considered, i.e. don't
685 move into or out of sexps (not even normal expression parentheses).
686
687 If point is already at the earliest statement within braces or parens,
688 this function doesn't move back into any whitespace preceding it; it
689 returns `same' in this case.
690
691 Stop at statement continuation tokens like \"else\", \"catch\",
692 \"finally\" and the \"while\" in \"do ... while\" if the start point
693 is within the continuation. If starting at such a token, move to the
694 corresponding statement start. If at the beginning of a statement,
695 move to the closest containing statement if there is any. This might
696 also stop at a continuation clause.
697
698 Labels are treated as part of the following statements if
699 IGNORE-LABELS is non-nil. (FIXME: Doesn't work if we stop at a known
700 statement start keyword.) Otherwise, each label is treated as a
701 separate statement.
702
703 Macros are ignored \(i.e. skipped over) unless point is within one, in
704 which case the content of the macro is treated as normal code. Aside
705 from any normal statement starts found in it, stop at the first token
706 of the content in the macro, i.e. the expression of an \"#if\" or the
707 start of the definition in a \"#define\". Also stop at start of
708 macros before leaving them.
709
710 Return:
711 `label' if stopped at a label or \"case...:\" or \"default:\";
712 `same' if stopped at the beginning of the current statement;
713 `up' if stepped to a containing statement;
714 `previous' if stepped to a preceding statement;
715 `beginning' if stepped from a statement continuation clause to
716 its start clause; or
717 `macro' if stepped to a macro start.
718 Note that `same' and not `label' is returned if stopped at the same
719 label without crossing the colon character.
720
721 LIM may be given to limit the search. If the search hits the limit,
722 point will be left at the closest following token, or at the start
723 position if that is less (`same' is returned in this case).
724
725 NOERROR turns off error logging to `c-parsing-error'.
726
727 Normally only `;' and virtual semicolons are considered to delimit
728 statements, but if COMMA-DELIM is non-nil then `,' is treated
729 as a delimiter too.
730
731 Note that this function might do hidden buffer changes. See the
732 comment at the start of cc-engine.el for more info."
733
734 ;; The bulk of this function is a pushdown automaton that looks at statement
735 ;; boundaries and the tokens (such as "while") in c-opt-block-stmt-key. Its
736 ;; purpose is to keep track of nested statements, ensuring that such
737 ;; statements are skipped over in their entirety (somewhat akin to what C-M-p
738 ;; does with nested braces/brackets/parentheses).
739 ;;
740 ;; Note: The position of a boundary is the following token.
741 ;;
742 ;; Beginning with the current token (the one following point), move back one
743 ;; sexp at a time (where a sexp is, more or less, either a token or the
744 ;; entire contents of a brace/bracket/paren pair). Each time a statement
745 ;; boundary is crossed or a "while"-like token is found, update the state of
746 ;; the PDA. Stop at the beginning of a statement when the stack (holding
747 ;; nested statement info) is empty and the position has been moved.
748 ;;
749 ;; The following variables constitute the PDA:
750 ;;
751 ;; sym: This is either the "while"-like token (e.g. 'for) we've just
752 ;; scanned back over, 'boundary if we've just gone back over a
753 ;; statement boundary, or nil otherwise.
754 ;; state: takes one of the values (nil else else-boundary while
755 ;; while-boundary catch catch-boundary).
756 ;; nil means "no "while"-like token yet scanned".
757 ;; 'else, for example, means "just gone back over an else".
758 ;; 'else-boundary means "just gone back over a statement boundary
759 ;; immediately after having gone back over an else".
760 ;; saved-pos: A vector of either saved positions (tok ptok pptok, etc.) or
761 ;; of error reporting information.
762 ;; stack: The stack onto which the PDA pushes its state. Each entry
763 ;; consists of a saved value of state and saved-pos. An entry is
764 ;; pushed when we move back over a "continuation" token (e.g. else)
765 ;; and popped when we encounter the corresponding opening token
766 ;; (e.g. if).
767 ;;
768 ;;
769 ;; The following diagram briefly outlines the PDA.
770 ;;
771 ;; Common state:
772 ;; "else": Push state, goto state `else'.
773 ;; "while": Push state, goto state `while'.
774 ;; "catch" or "finally": Push state, goto state `catch'.
775 ;; boundary: Pop state.
776 ;; other: Do nothing special.
777 ;;
778 ;; State `else':
779 ;; boundary: Goto state `else-boundary'.
780 ;; other: Error, pop state, retry token.
781 ;;
782 ;; State `else-boundary':
783 ;; "if": Pop state.
784 ;; boundary: Error, pop state.
785 ;; other: See common state.
786 ;;
787 ;; State `while':
788 ;; boundary: Save position, goto state `while-boundary'.
789 ;; other: Pop state, retry token.
790 ;;
791 ;; State `while-boundary':
792 ;; "do": Pop state.
793 ;; boundary: Restore position if it's not at start, pop state. [*see below]
794 ;; other: See common state.
795 ;;
796 ;; State `catch':
797 ;; boundary: Goto state `catch-boundary'.
798 ;; other: Error, pop state, retry token.
799 ;;
800 ;; State `catch-boundary':
801 ;; "try": Pop state.
802 ;; "catch": Goto state `catch'.
803 ;; boundary: Error, pop state.
804 ;; other: See common state.
805 ;;
806 ;; [*] In the `while-boundary' state, we had pushed a 'while state, and were
807 ;; searching for a "do" which would have opened a do-while. If we didn't
808 ;; find it, we discard the analysis done since the "while", go back to this
809 ;; token in the buffer and restart the scanning there, this time WITHOUT
810 ;; pushing the 'while state onto the stack.
811 ;;
812 ;; In addition to the above there is some special handling of labels
813 ;; and macros.
814
815 (let ((case-fold-search nil)
816 (start (point))
817 macro-start
818 (delims (if comma-delim '(?\; ?,) '(?\;)))
819 (c-stmt-delim-chars (if comma-delim
820 c-stmt-delim-chars-with-comma
821 c-stmt-delim-chars))
822 c-in-literal-cache c-maybe-labelp after-case:-pos saved
823 ;; Current position.
824 pos
825 ;; Position of last stmt boundary character (e.g. ;).
826 boundary-pos
827 ;; The position of the last sexp or bound that follows the
828 ;; first found colon, i.e. the start of the nonlabel part of
829 ;; the statement. It's `start' if a colon is found just after
830 ;; the start.
831 after-labels-pos
832 ;; Like `after-labels-pos', but the first such position inside
833 ;; a label, i.e. the start of the last label before the start
834 ;; of the nonlabel part of the statement.
835 last-label-pos
836 ;; The last position where a label is possible provided the
837 ;; statement started there. It's nil as long as no invalid
838 ;; label content has been found (according to
839 ;; `c-nonlabel-token-key'). It's `start' if no valid label
840 ;; content was found in the label. Note that we might still
841 ;; regard it a label if it starts with `c-label-kwds'.
842 label-good-pos
843 ;; Putative positions of the components of a bitfield declaration,
844 ;; e.g. "int foo : NUM_FOO_BITS ;"
845 bitfield-type-pos bitfield-id-pos bitfield-size-pos
846 ;; Symbol just scanned back over (e.g. 'while or 'boundary).
847 ;; See above.
848 sym
849 ;; Current state in the automaton. See above.
850 state
851 ;; Current saved positions. See above.
852 saved-pos
853 ;; Stack of conses (state . saved-pos).
854 stack
855 ;; Regexp which matches "for", "if", etc.
856 (cond-key (or c-opt-block-stmt-key
857 "\\<\\>")) ; Matches nothing.
858 ;; Return value.
859 (ret 'same)
860 ;; Positions of the last three sexps or bounds we've stopped at.
861 tok ptok pptok)
862
863 (save-restriction
864 (if lim (narrow-to-region lim (point-max)))
865
866 (if (save-excursion
867 (and (c-beginning-of-macro)
868 (/= (point) start)))
869 (setq macro-start (point)))
870
871 ;; Try to skip back over unary operator characters, to register
872 ;; that we've moved.
873 (while (progn
874 (setq pos (point))
875 (c-backward-syntactic-ws)
876 ;; Protect post-++/-- operators just before a virtual semicolon.
877 (and (not (c-at-vsemi-p))
878 (/= (skip-chars-backward "-+!*&~@`#") 0))))
879
880 ;; Skip back over any semicolon here. If it was a bare semicolon, we're
881 ;; done. Later on we ignore the boundaries for statements that don't
882 ;; contain any sexp. The only thing that is affected is that the error
883 ;; checking is a little less strict, and we really don't bother.
884 (if (and (memq (char-before) delims)
885 (progn (forward-char -1)
886 (setq saved (point))
887 (c-backward-syntactic-ws)
888 (or (memq (char-before) delims)
889 (memq (char-before) '(?: nil))
890 (eq (char-syntax (char-before)) ?\()
891 (c-at-vsemi-p))))
892 (setq ret 'previous
893 pos saved)
894
895 ;; Begin at start and not pos to detect macros if we stand
896 ;; directly after the #.
897 (goto-char start)
898 (if (looking-at "\\<\\|\\W")
899 ;; Record this as the first token if not starting inside it.
900 (setq tok start))
901
902 ;; The following while loop goes back one sexp (balanced parens,
903 ;; etc. with contents, or symbol or suchlike) each iteration. This
904 ;; movement is accomplished with a call to c-backward-sexp approx 170
905 ;; lines below.
906 ;;
907 ;; The loop is exited only by throwing nil to the (catch 'loop ...):
908 ;; 1. On reaching the start of a macro;
909 ;; 2. On having passed a stmt boundary with the PDA stack empty;
910 ;; 3. On reaching the start of an Objective C method def;
911 ;; 4. From macro `c-bos-pop-state'; when the stack is empty;
912 ;; 5. From macro `c-bos-pop-state-and-retry' when the stack is empty.
913 (while
914 (catch 'loop ;; Throw nil to break, non-nil to continue.
915 (cond
916 ;; Are we in a macro, just after the opening #?
917 ((save-excursion
918 (and macro-start ; Always NIL for AWK.
919 (progn (skip-chars-backward " \t")
920 (eq (char-before) ?#))
921 (progn (setq saved (1- (point)))
922 (beginning-of-line)
923 (not (eq (char-before (1- (point))) ?\\)))
924 (looking-at c-opt-cpp-start)
925 (progn (skip-chars-forward " \t")
926 (eq (point) saved))))
927 (goto-char saved)
928 (if (and (c-forward-to-cpp-define-body)
929 (progn (c-forward-syntactic-ws start)
930 (< (point) start)))
931 ;; Stop at the first token in the content of the macro.
932 (setq pos (point)
933 ignore-labels t) ; Avoid the label check on exit.
934 (setq pos saved
935 ret 'macro
936 ignore-labels t))
937 (throw 'loop nil)) ; 1. Start of macro.
938
939 ;; Do a round through the automaton if we've just passed a
940 ;; statement boundary or passed a "while"-like token.
941 ((or sym
942 (and (looking-at cond-key)
943 (setq sym (intern (match-string 1)))))
944
945 (when (and (< pos start) (null stack))
946 (throw 'loop nil)) ; 2. Statement boundary.
947
948 ;; The PDA state handling.
949 ;;
950 ;; Refer to the description of the PDA in the opening
951 ;; comments. In the following OR form, the first leaf
952 ;; attempts to handles one of the specific actions detailed
953 ;; (e.g., finding token "if" whilst in state `else-boundary').
954 ;; We drop through to the second leaf (which handles common
955 ;; state) if no specific handler is found in the first cond.
956 ;; If a parsing error is detected (e.g. an "else" with no
957 ;; preceding "if"), we throw to the enclosing catch.
958 ;;
959 ;; Note that the (eq state 'else) means
960 ;; "we've just passed an else", NOT "we're looking for an
961 ;; else".
962 (or (cond
963 ((eq state 'else)
964 (if (eq sym 'boundary)
965 (setq state 'else-boundary)
966 (c-bos-report-error)
967 (c-bos-pop-state-and-retry)))
968
969 ((eq state 'else-boundary)
970 (cond ((eq sym 'if)
971 (c-bos-pop-state (setq ret 'beginning)))
972 ((eq sym 'boundary)
973 (c-bos-report-error)
974 (c-bos-pop-state))))
975
976 ((eq state 'while)
977 (if (and (eq sym 'boundary)
978 ;; Since this can cause backtracking we do a
979 ;; little more careful analysis to avoid it:
980 ;; If there's a label in front of the while
981 ;; it can't be part of a do-while.
982 (not after-labels-pos))
983 (progn (c-bos-save-pos)
984 (setq state 'while-boundary))
985 (c-bos-pop-state-and-retry))) ; Can't be a do-while
986
987 ((eq state 'while-boundary)
988 (cond ((eq sym 'do)
989 (c-bos-pop-state (setq ret 'beginning)))
990 ((eq sym 'boundary) ; isn't a do-while
991 (c-bos-restore-pos) ; the position of the while
992 (c-bos-pop-state)))) ; no longer searching for do.
993
994 ((eq state 'catch)
995 (if (eq sym 'boundary)
996 (setq state 'catch-boundary)
997 (c-bos-report-error)
998 (c-bos-pop-state-and-retry)))
999
1000 ((eq state 'catch-boundary)
1001 (cond
1002 ((eq sym 'try)
1003 (c-bos-pop-state (setq ret 'beginning)))
1004 ((eq sym 'catch)
1005 (setq state 'catch))
1006 ((eq sym 'boundary)
1007 (c-bos-report-error)
1008 (c-bos-pop-state)))))
1009
1010 ;; This is state common. We get here when the previous
1011 ;; cond statement found no particular state handler.
1012 (cond ((eq sym 'boundary)
1013 ;; If we have a boundary at the start
1014 ;; position we push a frame to go to the
1015 ;; previous statement.
1016 (if (>= pos start)
1017 (c-bos-push-state)
1018 (c-bos-pop-state)))
1019 ((eq sym 'else)
1020 (c-bos-push-state)
1021 (c-bos-save-error-info 'if 'else)
1022 (setq state 'else))
1023 ((eq sym 'while)
1024 ;; Is this a real while, or a do-while?
1025 ;; The next `when' triggers unless we are SURE that
1026 ;; the `while' is not the tail end of a `do-while'.
1027 (when (or (not pptok)
1028 (memq (char-after pptok) delims)
1029 ;; The following kludge is to prevent
1030 ;; infinite recursion when called from
1031 ;; c-awk-after-if-for-while-condition-p,
1032 ;; or the like.
1033 (and (eq (point) start)
1034 (c-vsemi-status-unknown-p))
1035 (c-at-vsemi-p pptok))
1036 ;; Since this can cause backtracking we do a
1037 ;; little more careful analysis to avoid it: If
1038 ;; the while isn't followed by a (possibly
1039 ;; virtual) semicolon it can't be a do-while.
1040 (c-bos-push-state)
1041 (setq state 'while)))
1042 ((memq sym '(catch finally))
1043 (c-bos-push-state)
1044 (c-bos-save-error-info 'try sym)
1045 (setq state 'catch))))
1046
1047 (when c-maybe-labelp
1048 ;; We're either past a statement boundary or at the
1049 ;; start of a statement, so throw away any label data
1050 ;; for the previous one.
1051 (setq after-labels-pos nil
1052 last-label-pos nil
1053 c-maybe-labelp nil))))
1054
1055 ;; Step to the previous sexp, but not if we crossed a
1056 ;; boundary, since that doesn't consume an sexp.
1057 (if (eq sym 'boundary)
1058 (setq ret 'previous)
1059
1060 ;; HERE IS THE SINGLE PLACE INSIDE THE PDA LOOP WHERE WE MOVE
1061 ;; BACKWARDS THROUGH THE SOURCE.
1062
1063 (c-backward-syntactic-ws)
1064 (let ((before-sws-pos (point))
1065 ;; The end position of the area to search for statement
1066 ;; barriers in this round.
1067 (maybe-after-boundary-pos pos))
1068
1069 ;; Go back over exactly one logical sexp, taking proper
1070 ;; account of macros and escaped EOLs.
1071 (while
1072 (progn
1073 (unless (c-safe (c-backward-sexp) t)
1074 ;; Give up if we hit an unbalanced block. Since the
1075 ;; stack won't be empty the code below will report a
1076 ;; suitable error.
1077 (throw 'loop nil))
1078 (cond
1079 ;; Have we moved into a macro?
1080 ((and (not macro-start)
1081 (c-beginning-of-macro))
1082 ;; Have we crossed a statement boundary? If not,
1083 ;; keep going back until we find one or a "real" sexp.
1084 (and
1085 (save-excursion
1086 (c-end-of-macro)
1087 (not (c-crosses-statement-barrier-p
1088 (point) maybe-after-boundary-pos)))
1089 (setq maybe-after-boundary-pos (point))))
1090 ;; Have we just gone back over an escaped NL? This
1091 ;; doesn't count as a sexp.
1092 ((looking-at "\\\\$")))))
1093
1094 ;; Have we crossed a statement boundary?
1095 (setq boundary-pos
1096 (cond
1097 ;; Are we at a macro beginning?
1098 ((and (not macro-start)
1099 c-opt-cpp-prefix
1100 (looking-at c-opt-cpp-prefix))
1101 (save-excursion
1102 (c-end-of-macro)
1103 (c-crosses-statement-barrier-p
1104 (point) maybe-after-boundary-pos)))
1105 ;; Just gone back over a brace block?
1106 ((and
1107 (eq (char-after) ?{)
1108 (not (c-looking-at-inexpr-block lim nil t))
1109 (save-excursion
1110 (c-backward-token-2 1 t nil)
1111 (not (looking-at "=\\([^=]\\|$\\)"))))
1112 (save-excursion
1113 (c-forward-sexp) (point)))
1114 ;; Just gone back over some paren block?
1115 ((looking-at "\\s(")
1116 (save-excursion
1117 (goto-char (1+ (c-down-list-backward
1118 before-sws-pos)))
1119 (c-crosses-statement-barrier-p
1120 (point) maybe-after-boundary-pos)))
1121 ;; Just gone back over an ordinary symbol of some sort?
1122 (t (c-crosses-statement-barrier-p
1123 (point) maybe-after-boundary-pos))))
1124
1125 (when boundary-pos
1126 (setq pptok ptok
1127 ptok tok
1128 tok boundary-pos
1129 sym 'boundary)
1130 ;; Like a C "continue". Analyze the next sexp.
1131 (throw 'loop t))))
1132
1133 ;; ObjC method def?
1134 (when (and c-opt-method-key
1135 (setq saved (c-in-method-def-p)))
1136 (setq pos saved
1137 ignore-labels t) ; Avoid the label check on exit.
1138 (throw 'loop nil)) ; 3. ObjC method def.
1139
1140 ;; Might we have a bitfield declaration, "<type> <id> : <size>"?
1141 (if c-has-bitfields
1142 (cond
1143 ;; The : <size> and <id> fields?
1144 ((and (numberp c-maybe-labelp)
1145 (not bitfield-size-pos)
1146 (save-excursion
1147 (goto-char (or tok start))
1148 (not (looking-at c-keywords-regexp)))
1149 (not (looking-at c-keywords-regexp))
1150 (not (c-punctuation-in (point) c-maybe-labelp)))
1151 (setq bitfield-size-pos (or tok start)
1152 bitfield-id-pos (point)))
1153 ;; The <type> field?
1154 ((and bitfield-id-pos
1155 (not bitfield-type-pos))
1156 (if (and (looking-at c-symbol-key) ; Can only be an integer type. :-)
1157 (not (looking-at c-not-primitive-type-keywords-regexp))
1158 (not (c-punctuation-in (point) tok)))
1159 (setq bitfield-type-pos (point))
1160 (setq bitfield-size-pos nil
1161 bitfield-id-pos nil)))))
1162
1163 ;; Handle labels.
1164 (unless (eq ignore-labels t)
1165 (when (numberp c-maybe-labelp)
1166 ;; `c-crosses-statement-barrier-p' has found a colon, so we
1167 ;; might be in a label now. Have we got a real label
1168 ;; (including a case label) or something like C++'s "public:"?
1169 ;; A case label might use an expression rather than a token.
1170 (setq after-case:-pos (or tok start))
1171 (if (or (looking-at c-nonlabel-token-key) ; e.g. "while" or "'a'"
1172 ;; Catch C++'s inheritance construct "class foo : bar".
1173 (save-excursion
1174 (and
1175 (c-safe (c-backward-sexp) t)
1176 (looking-at c-nonlabel-token-2-key))))
1177 (setq c-maybe-labelp nil)
1178 (if after-labels-pos ; Have we already encountered a label?
1179 (if (not last-label-pos)
1180 (setq last-label-pos (or tok start)))
1181 (setq after-labels-pos (or tok start)))
1182 (setq c-maybe-labelp t
1183 label-good-pos nil))) ; bogus "label"
1184
1185 (when (and (not label-good-pos) ; i.e. no invalid "label"'s yet
1186 ; been found.
1187 (looking-at c-nonlabel-token-key)) ; e.g. "while :"
1188 ;; We're in a potential label and it's the first
1189 ;; time we've found something that isn't allowed in
1190 ;; one.
1191 (setq label-good-pos (or tok start))))
1192
1193 ;; We've moved back by a sexp, so update the token positions.
1194 (setq sym nil
1195 pptok ptok
1196 ptok tok
1197 tok (point)
1198 pos tok) ; always non-nil
1199 ) ; end of (catch loop ....)
1200 ) ; end of sexp-at-a-time (while ....)
1201
1202 ;; If the stack isn't empty there might be errors to report.
1203 (while stack
1204 (if (and (vectorp saved-pos) (eq (length saved-pos) 3))
1205 (c-bos-report-error))
1206 (setq saved-pos (cdr (car stack))
1207 stack (cdr stack)))
1208
1209 (when (and (eq ret 'same)
1210 (not (memq sym '(boundary ignore nil))))
1211 ;; Need to investigate closer whether we've crossed
1212 ;; between a substatement and its containing statement.
1213 (if (setq saved
1214 (cond ((and (looking-at c-block-stmt-1-2-key)
1215 (eq (char-after ptok) ?\())
1216 pptok)
1217 ((looking-at c-block-stmt-1-key)
1218 ptok)
1219 (t pptok)))
1220 (cond ((> start saved) (setq pos saved))
1221 ((= start saved) (setq ret 'up)))))
1222
1223 (when (and (not ignore-labels)
1224 (eq c-maybe-labelp t)
1225 (not (eq ret 'beginning))
1226 after-labels-pos
1227 (not bitfield-type-pos) ; Bitfields take precedence over labels.
1228 (or (not label-good-pos)
1229 (<= label-good-pos pos)
1230 (progn
1231 (goto-char (if (and last-label-pos
1232 (< last-label-pos start))
1233 last-label-pos
1234 pos))
1235 (looking-at c-label-kwds-regexp))))
1236 ;; We're in a label. Maybe we should step to the statement
1237 ;; after it.
1238 (if (< after-labels-pos start)
1239 (setq pos after-labels-pos)
1240 (setq ret 'label)
1241 (if (and last-label-pos (< last-label-pos start))
1242 ;; Might have jumped over several labels. Go to the last one.
1243 (setq pos last-label-pos)))))
1244
1245 ;; Have we got "case <expression>:"?
1246 (goto-char pos)
1247 (when (and after-case:-pos
1248 (not (eq ret 'beginning))
1249 (looking-at c-case-kwds-regexp))
1250 (if (< after-case:-pos start)
1251 (setq pos after-case:-pos))
1252 (if (eq ret 'same)
1253 (setq ret 'label)))
1254
1255 ;; Skip over the unary operators that can start the statement.
1256 (while (progn
1257 (c-backward-syntactic-ws)
1258 ;; protect AWK post-inc/decrement operators, etc.
1259 (and (not (c-at-vsemi-p (point)))
1260 (/= (skip-chars-backward "-+!*&~@`#") 0)))
1261 (setq pos (point)))
1262 (goto-char pos)
1263 ret)))
1264
1265 (defun c-punctuation-in (from to)
1266 "Return non-nil if there is a non-comment non-macro punctuation character
1267 between FROM and TO. FROM must not be in a string or comment. The returned
1268 value is the position of the first such character."
1269 (save-excursion
1270 (goto-char from)
1271 (let ((pos (point)))
1272 (while (progn (skip-chars-forward c-symbol-chars to)
1273 (c-forward-syntactic-ws to)
1274 (> (point) pos))
1275 (setq pos (point))))
1276 (and (< (point) to) (point))))
1277
1278 (defun c-crosses-statement-barrier-p (from to)
1279 "Return non-nil if buffer positions FROM to TO cross one or more
1280 statement or declaration boundaries. The returned value is actually
1281 the position of the earliest boundary char. FROM must not be within
1282 a string or comment.
1283
1284 The variable `c-maybe-labelp' is set to the position of the first `:' that
1285 might start a label (i.e. not part of `::' and not preceded by `?'). If a
1286 single `?' is found, then `c-maybe-labelp' is cleared.
1287
1288 For AWK, a statement which is terminated by an EOL (not a ; or a }) is
1289 regarded as having a \"virtual semicolon\" immediately after the last token on
1290 the line. If this virtual semicolon is _at_ from, the function recognizes it.
1291
1292 Note that this function might do hidden buffer changes. See the
1293 comment at the start of cc-engine.el for more info."
1294 (let* ((skip-chars
1295 ;; If the current language has CPP macros, insert # into skip-chars.
1296 (if c-opt-cpp-symbol
1297 (concat (substring c-stmt-delim-chars 0 1) ; "^"
1298 c-opt-cpp-symbol ; usually "#"
1299 (substring c-stmt-delim-chars 1)) ; e.g. ";{}?:"
1300 c-stmt-delim-chars))
1301 (non-skip-list
1302 (append (substring skip-chars 1) nil)) ; e.g. (?# ?\; ?{ ?} ?? ?:)
1303 lit-range vsemi-pos)
1304 (save-restriction
1305 (widen)
1306 (save-excursion
1307 (catch 'done
1308 (goto-char from)
1309 (while (progn (skip-chars-forward
1310 skip-chars
1311 (min to (c-point 'bonl)))
1312 (< (point) to))
1313 (cond
1314 ;; Virtual semicolon?
1315 ((and (bolp)
1316 (save-excursion
1317 (progn
1318 (if (setq lit-range (c-literal-limits from)) ; Have we landed in a string/comment?
1319 (goto-char (car lit-range)))
1320 (c-backward-syntactic-ws) ; ? put a limit here, maybe?
1321 (setq vsemi-pos (point))
1322 (c-at-vsemi-p))))
1323 (throw 'done vsemi-pos))
1324 ;; In a string/comment?
1325 ((setq lit-range (c-literal-limits from))
1326 (goto-char (cdr lit-range)))
1327 ((eq (char-after) ?:)
1328 (forward-char)
1329 (if (and (eq (char-after) ?:)
1330 (< (point) to))
1331 ;; Ignore scope operators.
1332 (forward-char)
1333 (setq c-maybe-labelp (1- (point)))))
1334 ((eq (char-after) ??)
1335 ;; A question mark. Can't be a label, so stop
1336 ;; looking for more : and ?.
1337 (setq c-maybe-labelp nil
1338 skip-chars (substring c-stmt-delim-chars 0 -2)))
1339 ;; At a CPP construct or a "#" or "##" operator?
1340 ((and c-opt-cpp-symbol (looking-at c-opt-cpp-symbol))
1341 (if (save-excursion
1342 (skip-chars-backward " \t")
1343 (and (bolp)
1344 (or (bobp)
1345 (not (eq (char-before (1- (point))) ?\\)))))
1346 (c-end-of-macro)
1347 (skip-chars-forward c-opt-cpp-symbol)))
1348 ((memq (char-after) non-skip-list)
1349 (throw 'done (point)))))
1350 ;; In trailing space after an as yet undetected virtual semicolon?
1351 (c-backward-syntactic-ws from)
1352 (when (and (bolp) (not (bobp))) ; Can happen in AWK Mode with an
1353 ; unterminated string/regexp.
1354 (backward-char))
1355 (if (and (< (point) to)
1356 (c-at-vsemi-p))
1357 (point)
1358 nil))))))
1359
1360 (defun c-at-statement-start-p ()
1361 "Return non-nil if the point is at the first token in a statement
1362 or somewhere in the syntactic whitespace before it.
1363
1364 A \"statement\" here is not restricted to those inside code blocks.
1365 Any kind of declaration-like construct that occur outside function
1366 bodies is also considered a \"statement\".
1367
1368 Note that this function might do hidden buffer changes. See the
1369 comment at the start of cc-engine.el for more info."
1370
1371 (save-excursion
1372 (let ((end (point))
1373 c-maybe-labelp)
1374 (c-syntactic-skip-backward (substring c-stmt-delim-chars 1) nil t)
1375 (or (bobp)
1376 (eq (char-before) ?})
1377 (and (eq (char-before) ?{)
1378 (not (and c-special-brace-lists
1379 (progn (backward-char)
1380 (c-looking-at-special-brace-list)))))
1381 (c-crosses-statement-barrier-p (point) end)))))
1382
1383 (defun c-at-expression-start-p ()
1384 "Return non-nil if the point is at the first token in an expression or
1385 statement, or somewhere in the syntactic whitespace before it.
1386
1387 An \"expression\" here is a bit different from the normal language
1388 grammar sense: It's any sequence of expression tokens except commas,
1389 unless they are enclosed inside parentheses of some kind. Also, an
1390 expression never continues past an enclosing parenthesis, but it might
1391 contain parenthesis pairs of any sort except braces.
1392
1393 Since expressions never cross statement boundaries, this function also
1394 recognizes statement beginnings, just like `c-at-statement-start-p'.
1395
1396 Note that this function might do hidden buffer changes. See the
1397 comment at the start of cc-engine.el for more info."
1398
1399 (save-excursion
1400 (let ((end (point))
1401 (c-stmt-delim-chars c-stmt-delim-chars-with-comma)
1402 c-maybe-labelp)
1403 (c-syntactic-skip-backward (substring c-stmt-delim-chars 1) nil t)
1404 (or (bobp)
1405 (memq (char-before) '(?{ ?}))
1406 (save-excursion (backward-char)
1407 (looking-at "\\s("))
1408 (c-crosses-statement-barrier-p (point) end)))))
1409
1410 \f
1411 ;; A set of functions that covers various idiosyncrasies in
1412 ;; implementations of `forward-comment'.
1413
1414 ;; Note: Some emacsen considers incorrectly that any line comment
1415 ;; ending with a backslash continues to the next line. I can't think
1416 ;; of any way to work around that in a reliable way without changing
1417 ;; the buffer, though. Suggestions welcome. ;) (No, temporarily
1418 ;; changing the syntax for backslash doesn't work since we must treat
1419 ;; escapes in string literals correctly.)
1420
1421 (defun c-forward-single-comment ()
1422 "Move forward past whitespace and the closest following comment, if any.
1423 Return t if a comment was found, nil otherwise. In either case, the
1424 point is moved past the following whitespace. Line continuations,
1425 i.e. a backslashes followed by line breaks, are treated as whitespace.
1426 The line breaks that end line comments are considered to be the
1427 comment enders, so the point will be put on the beginning of the next
1428 line if it moved past a line comment.
1429
1430 This function does not do any hidden buffer changes."
1431
1432 (let ((start (point)))
1433 (when (looking-at "\\([ \t\n\r\f\v]\\|\\\\[\n\r]\\)+")
1434 (goto-char (match-end 0)))
1435
1436 (when (forward-comment 1)
1437 (if (eobp)
1438 ;; Some emacsen (e.g. XEmacs 21) return t when moving
1439 ;; forwards at eob.
1440 nil
1441
1442 ;; Emacs includes the ending newline in a b-style (c++)
1443 ;; comment, but XEmacs doesn't. We depend on the Emacs
1444 ;; behavior (which also is symmetric).
1445 (if (and (eolp) (elt (parse-partial-sexp start (point)) 7))
1446 (condition-case nil (forward-char 1)))
1447
1448 t))))
1449
1450 (defsubst c-forward-comments ()
1451 "Move forward past all following whitespace and comments.
1452 Line continuations, i.e. a backslashes followed by line breaks, are
1453 treated as whitespace.
1454
1455 Note that this function might do hidden buffer changes. See the
1456 comment at the start of cc-engine.el for more info."
1457
1458 (while (or
1459 ;; If forward-comment in at least XEmacs 21 is given a large
1460 ;; positive value, it'll loop all the way through if it hits
1461 ;; eob.
1462 (and (forward-comment 5)
1463 ;; Some emacsen (e.g. XEmacs 21) return t when moving
1464 ;; forwards at eob.
1465 (not (eobp)))
1466
1467 (when (looking-at "\\\\[\n\r]")
1468 (forward-char 2)
1469 t))))
1470
1471 (defun c-backward-single-comment ()
1472 "Move backward past whitespace and the closest preceding comment, if any.
1473 Return t if a comment was found, nil otherwise. In either case, the
1474 point is moved past the preceding whitespace. Line continuations,
1475 i.e. a backslashes followed by line breaks, are treated as whitespace.
1476 The line breaks that end line comments are considered to be the
1477 comment enders, so the point cannot be at the end of the same line to
1478 move over a line comment.
1479
1480 This function does not do any hidden buffer changes."
1481
1482 (let ((start (point)))
1483 ;; When we got newline terminated comments, forward-comment in all
1484 ;; supported emacsen so far will stop at eol of each line not
1485 ;; ending with a comment when moving backwards. This corrects for
1486 ;; that, and at the same time handles line continuations.
1487 (while (progn
1488 (skip-chars-backward " \t\n\r\f\v")
1489 (and (looking-at "[\n\r]")
1490 (eq (char-before) ?\\)))
1491 (backward-char))
1492
1493 (if (bobp)
1494 ;; Some emacsen (e.g. Emacs 19.34) return t when moving
1495 ;; backwards at bob.
1496 nil
1497
1498 ;; Leave point after the closest following newline if we've
1499 ;; backed up over any above, since forward-comment won't move
1500 ;; backward over a line comment if point is at the end of the
1501 ;; same line.
1502 (re-search-forward "\\=\\s *[\n\r]" start t)
1503
1504 (if (if (forward-comment -1)
1505 (if (eolp)
1506 ;; If forward-comment above succeeded and we're at eol
1507 ;; then the newline we moved over above didn't end a
1508 ;; line comment, so we give it another go.
1509 (forward-comment -1)
1510 t))
1511
1512 ;; Emacs <= 20 and XEmacs move back over the closer of a
1513 ;; block comment that lacks an opener.
1514 (if (looking-at "\\*/")
1515 (progn (forward-char 2) nil)
1516 t)))))
1517
1518 (defsubst c-backward-comments ()
1519 "Move backward past all preceding whitespace and comments.
1520 Line continuations, i.e. a backslashes followed by line breaks, are
1521 treated as whitespace. The line breaks that end line comments are
1522 considered to be the comment enders, so the point cannot be at the end
1523 of the same line to move over a line comment. Unlike
1524 c-backward-syntactic-ws, this function doesn't move back over
1525 preprocessor directives.
1526
1527 Note that this function might do hidden buffer changes. See the
1528 comment at the start of cc-engine.el for more info."
1529
1530 (let ((start (point)))
1531 (while (and
1532 ;; `forward-comment' in some emacsen (e.g. XEmacs 21.4)
1533 ;; return t when moving backwards at bob.
1534 (not (bobp))
1535
1536 (if (let (moved-comment)
1537 (while
1538 (and (not (setq moved-comment (forward-comment -1)))
1539 ;; Cope specifically with ^M^J here -
1540 ;; forward-comment sometimes gets stuck after ^Ms,
1541 ;; sometimes after ^M^J.
1542 (or
1543 (when (eq (char-before) ?\r)
1544 (backward-char)
1545 t)
1546 (when (and (eq (char-before) ?\n)
1547 (eq (char-before (1- (point))) ?\r))
1548 (backward-char 2)
1549 t))))
1550 moved-comment)
1551 (if (looking-at "\\*/")
1552 ;; Emacs <= 20 and XEmacs move back over the
1553 ;; closer of a block comment that lacks an opener.
1554 (progn (forward-char 2) nil)
1555 t)
1556
1557 ;; XEmacs treats line continuations as whitespace but
1558 ;; only in the backward direction, which seems a bit
1559 ;; odd. Anyway, this is necessary for Emacs.
1560 (when (and (looking-at "[\n\r]")
1561 (eq (char-before) ?\\)
1562 (< (point) start))
1563 (backward-char)
1564 t))))))
1565
1566 \f
1567 ;; Tools for skipping over syntactic whitespace.
1568
1569 ;; The following functions use text properties to cache searches over
1570 ;; large regions of syntactic whitespace. It works as follows:
1571 ;;
1572 ;; o If a syntactic whitespace region contains anything but simple
1573 ;; whitespace (i.e. space, tab and line breaks), the text property
1574 ;; `c-in-sws' is put over it. At places where we have stopped
1575 ;; within that region there's also a `c-is-sws' text property.
1576 ;; That since there typically are nested whitespace inside that
1577 ;; must be handled separately, e.g. whitespace inside a comment or
1578 ;; cpp directive. Thus, from one point with `c-is-sws' it's safe
1579 ;; to jump to another point with that property within the same
1580 ;; `c-in-sws' region. It can be likened to a ladder where
1581 ;; `c-in-sws' marks the bars and `c-is-sws' the rungs.
1582 ;;
1583 ;; o The `c-is-sws' property is put on the simple whitespace chars at
1584 ;; a "rung position" and also maybe on the first following char.
1585 ;; As many characters as can be conveniently found in this range
1586 ;; are marked, but no assumption can be made that the whole range
1587 ;; is marked (it could be clobbered by later changes, for
1588 ;; instance).
1589 ;;
1590 ;; Note that some part of the beginning of a sequence of simple
1591 ;; whitespace might be part of the end of a preceding line comment
1592 ;; or cpp directive and must not be considered part of the "rung".
1593 ;; Such whitespace is some amount of horizontal whitespace followed
1594 ;; by a newline. In the case of cpp directives it could also be
1595 ;; two newlines with horizontal whitespace between them.
1596 ;;
1597 ;; The reason to include the first following char is to cope with
1598 ;; "rung positions" that don't have any ordinary whitespace. If
1599 ;; `c-is-sws' is put on a token character it does not have
1600 ;; `c-in-sws' set simultaneously. That's the only case when that
1601 ;; can occur, and the reason for not extending the `c-in-sws'
1602 ;; region to cover it is that the `c-in-sws' region could then be
1603 ;; accidentally merged with a following one if the token is only
1604 ;; one character long.
1605 ;;
1606 ;; o On buffer changes the `c-in-sws' and `c-is-sws' properties are
1607 ;; removed in the changed region. If the change was inside
1608 ;; syntactic whitespace that means that the "ladder" is broken, but
1609 ;; a later call to `c-forward-sws' or `c-backward-sws' will use the
1610 ;; parts on either side and use an ordinary search only to "repair"
1611 ;; the gap.
1612 ;;
1613 ;; Special care needs to be taken if a region is removed: If there
1614 ;; are `c-in-sws' on both sides of it which do not connect inside
1615 ;; the region then they can't be joined. If e.g. a marked macro is
1616 ;; broken, syntactic whitespace inside the new text might be
1617 ;; marked. If those marks would become connected with the old
1618 ;; `c-in-sws' range around the macro then we could get a ladder
1619 ;; with one end outside the macro and the other at some whitespace
1620 ;; within it.
1621 ;;
1622 ;; The main motivation for this system is to increase the speed in
1623 ;; skipping over the large whitespace regions that can occur at the
1624 ;; top level in e.g. header files that contain a lot of comments and
1625 ;; cpp directives. For small comments inside code it's probably
1626 ;; slower than using `forward-comment' straightforwardly, but speed is
1627 ;; not a significant factor there anyway.
1628
1629 ; (defface c-debug-is-sws-face
1630 ; '((t (:background "GreenYellow")))
1631 ; "Debug face to mark the `c-is-sws' property.")
1632 ; (defface c-debug-in-sws-face
1633 ; '((t (:underline t)))
1634 ; "Debug face to mark the `c-in-sws' property.")
1635
1636 ; (defun c-debug-put-sws-faces ()
1637 ; ;; Put the sws debug faces on all the `c-is-sws' and `c-in-sws'
1638 ; ;; properties in the buffer.
1639 ; (interactive)
1640 ; (save-excursion
1641 ; (c-save-buffer-state (in-face)
1642 ; (goto-char (point-min))
1643 ; (setq in-face (if (get-text-property (point) 'c-is-sws)
1644 ; (point)))
1645 ; (while (progn
1646 ; (goto-char (next-single-property-change
1647 ; (point) 'c-is-sws nil (point-max)))
1648 ; (if in-face
1649 ; (progn
1650 ; (c-debug-add-face in-face (point) 'c-debug-is-sws-face)
1651 ; (setq in-face nil))
1652 ; (setq in-face (point)))
1653 ; (not (eobp))))
1654 ; (goto-char (point-min))
1655 ; (setq in-face (if (get-text-property (point) 'c-in-sws)
1656 ; (point)))
1657 ; (while (progn
1658 ; (goto-char (next-single-property-change
1659 ; (point) 'c-in-sws nil (point-max)))
1660 ; (if in-face
1661 ; (progn
1662 ; (c-debug-add-face in-face (point) 'c-debug-in-sws-face)
1663 ; (setq in-face nil))
1664 ; (setq in-face (point)))
1665 ; (not (eobp)))))))
1666
1667 (defmacro c-debug-sws-msg (&rest args)
1668 ;;`(message ,@args)
1669 )
1670
1671 (defmacro c-put-is-sws (beg end)
1672 ;; This macro does a hidden buffer change.
1673 `(let ((beg ,beg) (end ,end))
1674 (put-text-property beg end 'c-is-sws t)
1675 ,@(when (facep 'c-debug-is-sws-face)
1676 `((c-debug-add-face beg end 'c-debug-is-sws-face)))))
1677
1678 (defmacro c-put-in-sws (beg end)
1679 ;; This macro does a hidden buffer change.
1680 `(let ((beg ,beg) (end ,end))
1681 (put-text-property beg end 'c-in-sws t)
1682 ,@(when (facep 'c-debug-is-sws-face)
1683 `((c-debug-add-face beg end 'c-debug-in-sws-face)))))
1684
1685 (defmacro c-remove-is-sws (beg end)
1686 ;; This macro does a hidden buffer change.
1687 `(let ((beg ,beg) (end ,end))
1688 (remove-text-properties beg end '(c-is-sws nil))
1689 ,@(when (facep 'c-debug-is-sws-face)
1690 `((c-debug-remove-face beg end 'c-debug-is-sws-face)))))
1691
1692 (defmacro c-remove-in-sws (beg end)
1693 ;; This macro does a hidden buffer change.
1694 `(let ((beg ,beg) (end ,end))
1695 (remove-text-properties beg end '(c-in-sws nil))
1696 ,@(when (facep 'c-debug-is-sws-face)
1697 `((c-debug-remove-face beg end 'c-debug-in-sws-face)))))
1698
1699 (defmacro c-remove-is-and-in-sws (beg end)
1700 ;; This macro does a hidden buffer change.
1701 `(let ((beg ,beg) (end ,end))
1702 (remove-text-properties beg end '(c-is-sws nil c-in-sws nil))
1703 ,@(when (facep 'c-debug-is-sws-face)
1704 `((c-debug-remove-face beg end 'c-debug-is-sws-face)
1705 (c-debug-remove-face beg end 'c-debug-in-sws-face)))))
1706
1707 (defsubst c-invalidate-sws-region-after (beg end)
1708 ;; Called from `after-change-functions'. Note that if
1709 ;; `c-forward-sws' or `c-backward-sws' are used outside
1710 ;; `c-save-buffer-state' or similar then this will remove the cache
1711 ;; properties right after they're added.
1712 ;;
1713 ;; This function does hidden buffer changes.
1714
1715 (save-excursion
1716 ;; Adjust the end to remove the properties in any following simple
1717 ;; ws up to and including the next line break, if there is any
1718 ;; after the changed region. This is necessary e.g. when a rung
1719 ;; marked empty line is converted to a line comment by inserting
1720 ;; "//" before the line break. In that case the line break would
1721 ;; keep the rung mark which could make a later `c-backward-sws'
1722 ;; move into the line comment instead of over it.
1723 (goto-char end)
1724 (skip-chars-forward " \t\f\v")
1725 (when (and (eolp) (not (eobp)))
1726 (setq end (1+ (point)))))
1727
1728 (when (and (= beg end)
1729 (get-text-property beg 'c-in-sws)
1730 (> beg (point-min))
1731 (get-text-property (1- beg) 'c-in-sws))
1732 ;; Ensure that an `c-in-sws' range gets broken. Note that it isn't
1733 ;; safe to keep a range that was continuous before the change. E.g:
1734 ;;
1735 ;; #define foo
1736 ;; \
1737 ;; bar
1738 ;;
1739 ;; There can be a "ladder" between "#" and "b". Now, if the newline
1740 ;; after "foo" is removed then "bar" will become part of the cpp
1741 ;; directive instead of a syntactically relevant token. In that
1742 ;; case there's no longer syntactic ws from "#" to "b".
1743 (setq beg (1- beg)))
1744
1745 (c-debug-sws-msg "c-invalidate-sws-region-after [%s..%s]" beg end)
1746 (c-remove-is-and-in-sws beg end))
1747
1748 (defun c-forward-sws ()
1749 ;; Used by `c-forward-syntactic-ws' to implement the unbounded search.
1750 ;;
1751 ;; This function might do hidden buffer changes.
1752
1753 (let (;; `rung-pos' is set to a position as early as possible in the
1754 ;; unmarked part of the simple ws region.
1755 (rung-pos (point)) next-rung-pos rung-end-pos last-put-in-sws-pos
1756 rung-is-marked next-rung-is-marked simple-ws-end
1757 ;; `safe-start' is set when it's safe to cache the start position.
1758 ;; It's not set if we've initially skipped over comments and line
1759 ;; continuations since we might have gone out through the end of a
1760 ;; macro then. This provision makes `c-forward-sws' not populate the
1761 ;; cache in the majority of cases, but otoh is `c-backward-sws' by far
1762 ;; more common.
1763 safe-start)
1764
1765 ;; Skip simple ws and do a quick check on the following character to see
1766 ;; if it's anything that can't start syntactic ws, so we can bail out
1767 ;; early in the majority of cases when there just are a few ws chars.
1768 (skip-chars-forward " \t\n\r\f\v")
1769 (when (or (looking-at c-syntactic-ws-start)
1770 (and c-opt-cpp-prefix
1771 (looking-at c-noise-macro-name-re)))
1772
1773 (setq rung-end-pos (min (1+ (point)) (point-max)))
1774 (if (setq rung-is-marked (text-property-any rung-pos rung-end-pos
1775 'c-is-sws t))
1776 ;; Find the last rung position to avoid setting properties in all
1777 ;; the cases when the marked rung is complete.
1778 ;; (`next-single-property-change' is certain to move at least one
1779 ;; step forward.)
1780 (setq rung-pos (1- (c-next-single-property-change
1781 rung-is-marked 'c-is-sws nil rung-end-pos)))
1782 ;; Got no marked rung here. Since the simple ws might have started
1783 ;; inside a line comment or cpp directive we must set `rung-pos' as
1784 ;; high as possible.
1785 (setq rung-pos (point)))
1786
1787 (with-silent-modifications
1788 (while
1789 (progn
1790 ;; In the following while form, we move over a "ladder" and
1791 ;; following simple WS each time round the loop, appending the WS
1792 ;; onto the ladder, joining adjacent ladders, and terminating when
1793 ;; there is no more WS or we reach EOB.
1794 (while
1795 (when (and rung-is-marked
1796 (get-text-property (point) 'c-in-sws))
1797
1798 ;; The following search is the main reason that `c-in-sws'
1799 ;; and `c-is-sws' aren't combined to one property.
1800 (goto-char (c-next-single-property-change
1801 (point) 'c-in-sws nil (point-max)))
1802 (unless (get-text-property (point) 'c-is-sws)
1803 ;; If the `c-in-sws' region extended past the last
1804 ;; `c-is-sws' char we have to go back a bit.
1805 (or (get-text-property (1- (point)) 'c-is-sws)
1806 (goto-char (previous-single-property-change
1807 (point) 'c-is-sws)))
1808 (backward-char))
1809
1810 (c-debug-sws-msg
1811 "c-forward-sws cached move %s -> %s (max %s)"
1812 rung-pos (point) (point-max))
1813
1814 (setq rung-pos (point))
1815 (and (> (skip-chars-forward " \t\n\r\f\v") 0)
1816 (not (eobp))))
1817
1818 ;; We'll loop here if there is simple ws after the last rung.
1819 ;; That means that there's been some change in it and it's
1820 ;; possible that we've stepped into another ladder, so extend
1821 ;; the previous one to join with it if there is one, and try to
1822 ;; use the cache again.
1823 (c-debug-sws-msg
1824 "c-forward-sws extending rung with [%s..%s] (max %s)"
1825 (1+ rung-pos) (1+ (point)) (point-max))
1826 (unless (get-text-property (point) 'c-is-sws)
1827 ;; Remove any `c-in-sws' property from the last char of
1828 ;; the rung before we mark it with `c-is-sws', so that we
1829 ;; won't connect with the remains of a broken "ladder".
1830 (c-remove-in-sws (point) (1+ (point))))
1831 (c-put-is-sws (1+ rung-pos)
1832 (1+ (point)))
1833 (c-put-in-sws rung-pos
1834 (setq rung-pos (point)
1835 last-put-in-sws-pos rung-pos)))
1836
1837 ;; Now move over any comments (x)or a CPP construct.
1838 (setq simple-ws-end (point))
1839 (c-forward-comments)
1840
1841 (cond
1842 ((/= (point) simple-ws-end)
1843 ;; Skipped over comments. Don't cache at eob in case the buffer
1844 ;; is narrowed.
1845 (not (eobp)))
1846
1847 ((save-excursion
1848 (and c-opt-cpp-prefix
1849 (looking-at c-opt-cpp-start)
1850 (progn (skip-chars-backward " \t")
1851 (bolp))
1852 (or (bobp)
1853 (progn (backward-char)
1854 (not (eq (char-before) ?\\))))))
1855 ;; Skip a preprocessor directive.
1856 (end-of-line)
1857 (while (and (eq (char-before) ?\\)
1858 (= (forward-line 1) 0))
1859 (end-of-line))
1860 (forward-line 1)
1861 (setq safe-start t)
1862 ;; Don't cache at eob in case the buffer is narrowed.
1863 (not (eobp)))
1864
1865 ((and c-opt-cpp-prefix
1866 (looking-at c-noise-macro-name-re))
1867 ;; Skip over a noise macro.
1868 (goto-char (match-end 1))
1869 (setq safe-start t)
1870 (not (eobp)))))
1871
1872 ;; We've searched over a piece of non-white syntactic ws. See if this
1873 ;; can be cached.
1874 (setq next-rung-pos (point))
1875 (skip-chars-forward " \t\n\r\f\v")
1876 (setq rung-end-pos (min (1+ (point)) (point-max)))
1877
1878 (if (or
1879 ;; Cache if we haven't skipped comments only, and if we started
1880 ;; either from a marked rung or from a completely uncached
1881 ;; position.
1882 (and safe-start
1883 (or rung-is-marked
1884 (not (get-text-property simple-ws-end 'c-in-sws))))
1885
1886 ;; See if there's a marked rung in the encountered simple ws. If
1887 ;; so then we can cache, unless `safe-start' is nil. Even then
1888 ;; we need to do this to check if the cache can be used for the
1889 ;; next step.
1890 (and (setq next-rung-is-marked
1891 (text-property-any next-rung-pos rung-end-pos
1892 'c-is-sws t))
1893 safe-start))
1894
1895 (progn
1896 (c-debug-sws-msg
1897 "c-forward-sws caching [%s..%s] - [%s..%s] (max %s)"
1898 rung-pos (1+ simple-ws-end) next-rung-pos rung-end-pos
1899 (point-max))
1900
1901 ;; Remove the properties for any nested ws that might be cached.
1902 ;; Only necessary for `c-is-sws' since `c-in-sws' will be set
1903 ;; anyway.
1904 (c-remove-is-sws (1+ simple-ws-end) next-rung-pos)
1905 (unless (and rung-is-marked (= rung-pos simple-ws-end))
1906 (c-put-is-sws rung-pos
1907 (1+ simple-ws-end))
1908 (setq rung-is-marked t))
1909 (c-put-in-sws rung-pos
1910 (setq rung-pos (point)
1911 last-put-in-sws-pos rung-pos))
1912 (unless (get-text-property (1- rung-end-pos) 'c-is-sws)
1913 ;; Remove any `c-in-sws' property from the last char of
1914 ;; the rung before we mark it with `c-is-sws', so that we
1915 ;; won't connect with the remains of a broken "ladder".
1916 (c-remove-in-sws (1- rung-end-pos) rung-end-pos))
1917 (c-put-is-sws next-rung-pos
1918 rung-end-pos))
1919
1920 (c-debug-sws-msg
1921 "c-forward-sws not caching [%s..%s] - [%s..%s] (max %s)"
1922 rung-pos (1+ simple-ws-end) next-rung-pos rung-end-pos
1923 (point-max))
1924
1925 ;; Set `rung-pos' for the next rung. It's the same thing here as
1926 ;; initially, except that the rung position is set as early as
1927 ;; possible since we can't be in the ending ws of a line comment or
1928 ;; cpp directive now.
1929 (if (setq rung-is-marked next-rung-is-marked)
1930 (setq rung-pos (1- (c-next-single-property-change
1931 rung-is-marked 'c-is-sws nil rung-end-pos)))
1932 (setq rung-pos next-rung-pos))
1933 (setq safe-start t)))
1934
1935 ;; Make sure that the newly marked `c-in-sws' region doesn't connect to
1936 ;; another one after the point (which might occur when editing inside a
1937 ;; comment or macro).
1938 (when (eq last-put-in-sws-pos (point))
1939 (cond ((< last-put-in-sws-pos (point-max))
1940 (c-debug-sws-msg
1941 "c-forward-sws clearing at %s for cache separation"
1942 last-put-in-sws-pos)
1943 (c-remove-in-sws last-put-in-sws-pos
1944 (1+ last-put-in-sws-pos)))
1945 (t
1946 ;; If at eob we have to clear the last character before the end
1947 ;; instead since the buffer might be narrowed and there might
1948 ;; be a `c-in-sws' after (point-max). In this case it's
1949 ;; necessary to clear both properties.
1950 (c-debug-sws-msg
1951 "c-forward-sws clearing thoroughly at %s for cache separation"
1952 (1- last-put-in-sws-pos))
1953 (c-remove-is-and-in-sws (1- last-put-in-sws-pos)
1954 last-put-in-sws-pos))))
1955 ))))
1956
1957 (defun c-backward-sws ()
1958 ;; Used by `c-backward-syntactic-ws' to implement the unbounded search.
1959 ;;
1960 ;; This function might do hidden buffer changes.
1961
1962 (let (;; `rung-pos' is set to a position as late as possible in the unmarked
1963 ;; part of the simple ws region.
1964 (rung-pos (point)) next-rung-pos last-put-in-sws-pos
1965 rung-is-marked simple-ws-beg cmt-skip-pos)
1966
1967 ;; Skip simple horizontal ws and do a quick check on the preceding
1968 ;; character to see if it's anything that can't end syntactic ws, so we can
1969 ;; bail out early in the majority of cases when there just are a few ws
1970 ;; chars. Newlines are complicated in the backward direction, so we can't
1971 ;; skip over them.
1972 (skip-chars-backward " \t\f")
1973 (when (and (not (bobp))
1974 (save-excursion
1975 (backward-char)
1976 (or (looking-at c-syntactic-ws-end)
1977 (and c-opt-cpp-prefix
1978 (looking-at c-symbol-char-key)
1979 (progn (c-beginning-of-current-token)
1980 (looking-at c-noise-macro-name-re))))))
1981 ;; Try to find a rung position in the simple ws preceding point, so that
1982 ;; we can get a cache hit even if the last bit of the simple ws has
1983 ;; changed recently.
1984 (setq simple-ws-beg (point))
1985 (skip-chars-backward " \t\n\r\f\v")
1986 (if (setq rung-is-marked (text-property-any
1987 (point) (min (1+ rung-pos) (point-max))
1988 'c-is-sws t))
1989 ;; `rung-pos' will be the earliest marked position, which means that
1990 ;; there might be later unmarked parts in the simple ws region.
1991 ;; It's not worth the effort to fix that; the last part of the
1992 ;; simple ws is also typically edited often, so it could be wasted.
1993 (goto-char (setq rung-pos rung-is-marked))
1994 (goto-char simple-ws-beg))
1995
1996 (with-silent-modifications
1997 (while
1998 (progn
1999 ;; Each time round the next while form, we move back over a ladder
2000 ;; and append any simple WS preceding it, if possible joining with
2001 ;; the previous ladder.
2002 (while
2003 (when (and rung-is-marked
2004 (not (bobp))
2005 (get-text-property (1- (point)) 'c-in-sws))
2006
2007 ;; The following search is the main reason that `c-in-sws'
2008 ;; and `c-is-sws' aren't combined to one property.
2009 (goto-char (previous-single-property-change
2010 (point) 'c-in-sws nil (point-min)))
2011 (unless (get-text-property (point) 'c-is-sws)
2012 ;; If the `c-in-sws' region extended past the first
2013 ;; `c-is-sws' char we have to go forward a bit.
2014 (goto-char (c-next-single-property-change
2015 (point) 'c-is-sws)))
2016
2017 (c-debug-sws-msg
2018 "c-backward-sws cached move %s <- %s (min %s)"
2019 (point) rung-pos (point-min))
2020
2021 (setq rung-pos (point))
2022 (if (and (< (min (skip-chars-backward " \t\f\v")
2023 (progn
2024 (setq simple-ws-beg (point))
2025 (skip-chars-backward " \t\n\r\f\v")))
2026 0)
2027 (setq rung-is-marked
2028 (text-property-any (point) rung-pos
2029 'c-is-sws t)))
2030 t
2031 (goto-char simple-ws-beg)
2032 nil))
2033
2034 ;; We'll loop here if there is simple ws before the first rung.
2035 ;; That means that there's been some change in it and it's
2036 ;; possible that we've stepped into another ladder, so extend
2037 ;; the previous one to join with it if there is one, and try to
2038 ;; use the cache again.
2039 (c-debug-sws-msg
2040 "c-backward-sws extending rung with [%s..%s] (min %s)"
2041 rung-is-marked rung-pos (point-min))
2042 (unless (get-text-property (1- rung-pos) 'c-is-sws)
2043 ;; Remove any `c-in-sws' property from the last char of
2044 ;; the rung before we mark it with `c-is-sws', so that we
2045 ;; won't connect with the remains of a broken "ladder".
2046 (c-remove-in-sws (1- rung-pos) rung-pos))
2047 (c-put-is-sws rung-is-marked
2048 rung-pos)
2049 (c-put-in-sws rung-is-marked
2050 (1- rung-pos))
2051 (setq rung-pos rung-is-marked
2052 last-put-in-sws-pos rung-pos))
2053
2054 (c-backward-comments)
2055 (setq cmt-skip-pos (point))
2056
2057 (cond
2058 ((and c-opt-cpp-prefix
2059 (/= cmt-skip-pos simple-ws-beg)
2060 (c-beginning-of-macro))
2061 ;; Inside a cpp directive. See if it should be skipped over.
2062 (let ((cpp-beg (point)))
2063
2064 ;; Move back over all line continuations in the region skipped
2065 ;; over by `c-backward-comments'. If we go past it then we
2066 ;; started inside the cpp directive.
2067 (goto-char simple-ws-beg)
2068 (beginning-of-line)
2069 (while (and (> (point) cmt-skip-pos)
2070 (progn (backward-char)
2071 (eq (char-before) ?\\)))
2072 (beginning-of-line))
2073
2074 (if (< (point) cmt-skip-pos)
2075 ;; Don't move past the cpp directive if we began inside
2076 ;; it. Note that the position at the end of the last line
2077 ;; of the macro is also considered to be within it.
2078 (progn (goto-char cmt-skip-pos)
2079 nil)
2080
2081 ;; It's worthwhile to spend a little bit of effort on finding
2082 ;; the end of the macro, to get a good `simple-ws-beg'
2083 ;; position for the cache. Note that `c-backward-comments'
2084 ;; could have stepped over some comments before going into
2085 ;; the macro, and then `simple-ws-beg' must be kept on the
2086 ;; same side of those comments.
2087 (goto-char simple-ws-beg)
2088 (skip-chars-backward " \t\n\r\f\v")
2089 (if (eq (char-before) ?\\)
2090 (forward-char))
2091 (forward-line 1)
2092 (if (< (point) simple-ws-beg)
2093 ;; Might happen if comments after the macro were skipped
2094 ;; over.
2095 (setq simple-ws-beg (point)))
2096
2097 (goto-char cpp-beg)
2098 t)))
2099
2100 ((/= (save-excursion
2101 (skip-chars-forward " \t\n\r\f\v" simple-ws-beg)
2102 (setq next-rung-pos (point)))
2103 simple-ws-beg)
2104 ;; Skipped over comments. Must put point at the end of
2105 ;; the simple ws at point since we might be after a line
2106 ;; comment or cpp directive that's been partially
2107 ;; narrowed out, and we can't risk marking the simple ws
2108 ;; at the end of it.
2109 (goto-char next-rung-pos)
2110 t)
2111
2112 ((and c-opt-cpp-prefix
2113 (save-excursion
2114 (and (< (skip-syntax-backward "w_") 0)
2115 (progn (setq next-rung-pos (point))
2116 (looking-at c-noise-macro-name-re)))))
2117 ;; Skipped over a noise macro
2118 (goto-char next-rung-pos)
2119 t)))
2120
2121 ;; We've searched over a piece of non-white syntactic ws. See if this
2122 ;; can be cached.
2123 (setq next-rung-pos (point))
2124 (skip-chars-backward " \t\f\v")
2125
2126 (if (or
2127 ;; Cache if we started either from a marked rung or from a
2128 ;; completely uncached position.
2129 rung-is-marked
2130 (not (get-text-property (1- simple-ws-beg) 'c-in-sws))
2131
2132 ;; Cache if there's a marked rung in the encountered simple ws.
2133 (save-excursion
2134 (skip-chars-backward " \t\n\r\f\v")
2135 (text-property-any (point) (min (1+ next-rung-pos) (point-max))
2136 'c-is-sws t)))
2137
2138 (progn
2139 (c-debug-sws-msg
2140 "c-backward-sws caching [%s..%s] - [%s..%s] (min %s)"
2141 (point) (1+ next-rung-pos)
2142 simple-ws-beg (min (1+ rung-pos) (point-max))
2143 (point-min))
2144
2145 ;; Remove the properties for any nested ws that might be cached.
2146 ;; Only necessary for `c-is-sws' since `c-in-sws' will be set
2147 ;; anyway.
2148 (c-remove-is-sws (1+ next-rung-pos) simple-ws-beg)
2149 (unless (and rung-is-marked (= simple-ws-beg rung-pos))
2150 (let ((rung-end-pos (min (1+ rung-pos) (point-max))))
2151 (unless (get-text-property (1- rung-end-pos) 'c-is-sws)
2152 ;; Remove any `c-in-sws' property from the last char of
2153 ;; the rung before we mark it with `c-is-sws', so that we
2154 ;; won't connect with the remains of a broken "ladder".
2155 (c-remove-in-sws (1- rung-end-pos) rung-end-pos))
2156 (c-put-is-sws simple-ws-beg
2157 rung-end-pos)
2158 (setq rung-is-marked t)))
2159 (c-put-in-sws (setq simple-ws-beg (point)
2160 last-put-in-sws-pos simple-ws-beg)
2161 rung-pos)
2162 (c-put-is-sws (setq rung-pos simple-ws-beg)
2163 (1+ next-rung-pos)))
2164
2165 (c-debug-sws-msg
2166 "c-backward-sws not caching [%s..%s] - [%s..%s] (min %s)"
2167 (point) (1+ next-rung-pos)
2168 simple-ws-beg (min (1+ rung-pos) (point-max))
2169 (point-min))
2170 (setq rung-pos next-rung-pos
2171 simple-ws-beg (point))
2172 ))
2173
2174 ;; Make sure that the newly marked `c-in-sws' region doesn't connect to
2175 ;; another one before the point (which might occur when editing inside a
2176 ;; comment or macro).
2177 (when (eq last-put-in-sws-pos (point))
2178 (cond ((< (point-min) last-put-in-sws-pos)
2179 (c-debug-sws-msg
2180 "c-backward-sws clearing at %s for cache separation"
2181 (1- last-put-in-sws-pos))
2182 (c-remove-in-sws (1- last-put-in-sws-pos)
2183 last-put-in-sws-pos))
2184 ((> (point-min) 1)
2185 ;; If at bob and the buffer is narrowed, we have to clear the
2186 ;; character we're standing on instead since there might be a
2187 ;; `c-in-sws' before (point-min). In this case it's necessary
2188 ;; to clear both properties.
2189 (c-debug-sws-msg
2190 "c-backward-sws clearing thoroughly at %s for cache separation"
2191 last-put-in-sws-pos)
2192 (c-remove-is-and-in-sws last-put-in-sws-pos
2193 (1+ last-put-in-sws-pos)))))
2194 ))))
2195
2196 \f
2197 ;; Other whitespace tools
2198 (defun c-partial-ws-p (beg end)
2199 ;; Is the region (beg end) WS, and is there WS (or BOB/EOB) next to the
2200 ;; region? This is a "heuristic" function. .....
2201 ;;
2202 ;; The motivation for the second bit is to check whether removing this
2203 ;; region would coalesce two symbols.
2204 ;;
2205 ;; FIXME!!! This function doesn't check virtual semicolons in any way. Be
2206 ;; careful about using this function for, e.g. AWK. (2007/3/7)
2207 (save-excursion
2208 (let ((end+1 (min (1+ end) (point-max))))
2209 (or (progn (goto-char (max (point-min) (1- beg)))
2210 (c-skip-ws-forward end)
2211 (eq (point) end))
2212 (progn (goto-char beg)
2213 (c-skip-ws-forward end+1)
2214 (eq (point) end+1))))))
2215 \f
2216 ;; A system for finding noteworthy parens before the point.
2217
2218 (defconst c-state-cache-too-far 5000)
2219 ;; A maximum comfortable scanning distance, e.g. between
2220 ;; `c-state-cache-good-pos' and "HERE" (where we call c-parse-state). When
2221 ;; this distance is exceeded, we take "emergency measures", e.g. by clearing
2222 ;; the cache and starting again from point-min or a beginning of defun. This
2223 ;; value can be tuned for efficiency or set to a lower value for testing.
2224
2225 (defvar c-state-cache nil)
2226 (make-variable-buffer-local 'c-state-cache)
2227 ;; The state cache used by `c-parse-state' to cut down the amount of
2228 ;; searching. It's the result from some earlier `c-parse-state' call. See
2229 ;; `c-parse-state''s doc string for details of its structure.
2230 ;;
2231 ;; The use of the cached info is more effective if the next
2232 ;; `c-parse-state' call is on a line close by the one the cached state
2233 ;; was made at; the cache can actually slow down a little if the
2234 ;; cached state was made very far back in the buffer. The cache is
2235 ;; most effective if `c-parse-state' is used on each line while moving
2236 ;; forward.
2237
2238 (defvar c-state-cache-good-pos 1)
2239 (make-variable-buffer-local 'c-state-cache-good-pos)
2240 ;; This is a position where `c-state-cache' is known to be correct, or
2241 ;; nil (see below). It's a position inside one of the recorded unclosed
2242 ;; parens or the top level, but not further nested inside any literal or
2243 ;; subparen that is closed before the last recorded position.
2244 ;;
2245 ;; The exact position is chosen to try to be close to yet earlier than
2246 ;; the position where `c-state-cache' will be called next. Right now
2247 ;; the heuristic is to set it to the position after the last found
2248 ;; closing paren (of any type) before the line on which
2249 ;; `c-parse-state' was called. That is chosen primarily to work well
2250 ;; with refontification of the current line.
2251 ;;
2252 ;; 2009-07-28: When `c-state-point-min' and the last position where
2253 ;; `c-parse-state' or for which `c-invalidate-state-cache' was called, are
2254 ;; both in the same literal, there is no such "good position", and
2255 ;; c-state-cache-good-pos is then nil. This is the ONLY circumstance in which
2256 ;; it can be nil. In this case, `c-state-point-min-literal' will be non-nil.
2257 ;;
2258 ;; 2009-06-12: In a brace desert, c-state-cache-good-pos may also be in
2259 ;; the middle of the desert, as long as it is not within a brace pair
2260 ;; recorded in `c-state-cache' or a paren/bracket pair.
2261
2262 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2263 ;; We maintain a simple cache of positions which aren't in a literal, so as to
2264 ;; speed up testing for non-literality.
2265 (defconst c-state-nonlit-pos-interval 3000)
2266 ;; The approximate interval between entries in `c-state-nonlit-pos-cache'.
2267
2268 (defvar c-state-nonlit-pos-cache nil)
2269 (make-variable-buffer-local 'c-state-nonlit-pos-cache)
2270 ;; A list of buffer positions which are known not to be in a literal or a cpp
2271 ;; construct. This is ordered with higher positions at the front of the list.
2272 ;; Only those which are less than `c-state-nonlit-pos-cache-limit' are valid.
2273
2274 (defvar c-state-nonlit-pos-cache-limit 1)
2275 (make-variable-buffer-local 'c-state-nonlit-pos-cache-limit)
2276 ;; An upper limit on valid entries in `c-state-nonlit-pos-cache'. This is
2277 ;; reduced by buffer changes, and increased by invocations of
2278 ;; `c-state-literal-at'.
2279
2280 (defvar c-state-semi-nonlit-pos-cache nil)
2281 (make-variable-buffer-local 'c-state-semi-nonlit-pos-cache)
2282 ;; A list of buffer positions which are known not to be in a literal. This is
2283 ;; ordered with higher positions at the front of the list. Only those which
2284 ;; are less than `c-state-semi-nonlit-pos-cache-limit' are valid.
2285
2286 (defvar c-state-semi-nonlit-pos-cache-limit 1)
2287 (make-variable-buffer-local 'c-state-semi-nonlit-pos-cache-limit)
2288 ;; An upper limit on valid entries in `c-state-semi-nonlit-pos-cache'. This is
2289 ;; reduced by buffer changes, and increased by invocations of
2290 ;; `c-state-literal-at'. FIXME!!!
2291
2292 (defsubst c-state-pp-to-literal (from to &optional not-in-delimiter)
2293 ;; Do a parse-partial-sexp from FROM to TO, returning either
2294 ;; (STATE TYPE (BEG . END)) if TO is in a literal; or
2295 ;; (STATE) otherwise,
2296 ;; where STATE is the parsing state at TO, TYPE is the type of the literal
2297 ;; (one of 'c, 'c++, 'string) and (BEG . END) is the boundaries of the literal,
2298 ;; including the delimiters.
2299 ;;
2300 ;; Unless NOT-IN-DELIMITER is non-nil, when TO is inside a two-character
2301 ;; comment opener, this is recognized as being in a comment literal.
2302 ;;
2303 ;; Only elements 3 (in a string), 4 (in a comment), 5 (following a quote),
2304 ;; 7 (comment type) and 8 (start of comment/string) (and possibly 9) of
2305 ;; STATE are valid.
2306 (save-excursion
2307 (let ((s (parse-partial-sexp from to))
2308 ty co-st)
2309 (cond
2310 ((or (nth 3 s) (nth 4 s)) ; in a string or comment
2311 (setq ty (cond
2312 ((nth 3 s) 'string)
2313 ((nth 7 s) 'c++)
2314 (t 'c)))
2315 (parse-partial-sexp (point) (point-max)
2316 nil ; TARGETDEPTH
2317 nil ; STOPBEFORE
2318 s ; OLDSTATE
2319 'syntax-table) ; stop at end of literal
2320 `(,s ,ty (,(nth 8 s) . ,(point))))
2321
2322 ((and (not not-in-delimiter) ; inside a comment starter
2323 (not (bobp))
2324 (progn (backward-char)
2325 (and (not (looking-at "\\s!"))
2326 (looking-at c-comment-start-regexp))))
2327 (setq ty (if (looking-at c-block-comment-start-regexp) 'c 'c++)
2328 co-st (point))
2329 (forward-comment 1)
2330 `(,s ,ty (,co-st . ,(point))))
2331
2332 (t `(,s))))))
2333
2334 (defun c-state-safe-place (here)
2335 ;; Return a buffer position before HERE which is "safe", i.e. outside any
2336 ;; string, comment, or macro.
2337 ;;
2338 ;; NOTE: This function manipulates `c-state-nonlit-pos-cache'. This cache
2339 ;; MAY NOT contain any positions within macros, since macros are frequently
2340 ;; turned into comments by use of the `c-cpp-delimiter' category properties.
2341 ;; We cannot rely on this mechanism whilst determining a cache pos since
2342 ;; this function is also called from outwith `c-parse-state'.
2343 (save-restriction
2344 (widen)
2345 (save-excursion
2346 (let ((c c-state-nonlit-pos-cache)
2347 pos npos high-pos lit macro-beg macro-end)
2348 ;; Trim the cache to take account of buffer changes.
2349 (while (and c (> (car c) c-state-nonlit-pos-cache-limit))
2350 (setq c (cdr c)))
2351 (setq c-state-nonlit-pos-cache c)
2352
2353 (while (and c (> (car c) here))
2354 (setq high-pos (car c))
2355 (setq c (cdr c)))
2356 (setq pos (or (car c) (point-min)))
2357
2358 (unless high-pos
2359 (while
2360 ;; Add an element to `c-state-nonlit-pos-cache' each iteration.
2361 (and
2362 (setq npos
2363 (when (<= (+ pos c-state-nonlit-pos-interval) here)
2364 (+ pos c-state-nonlit-pos-interval)))
2365
2366 ;; Test for being in a literal. If so, go to after it.
2367 (progn
2368 (setq lit (car (cddr (c-state-pp-to-literal pos npos))))
2369 (or (null lit)
2370 (prog1 (<= (cdr lit) here)
2371 (setq npos (cdr lit)))))
2372
2373 ;; Test for being in a macro. If so, go to after it.
2374 (progn
2375 (goto-char npos)
2376 (setq macro-beg
2377 (and (c-beginning-of-macro) (/= (point) npos) (point)))
2378 (when macro-beg
2379 (c-syntactic-end-of-macro)
2380 (or (eobp) (forward-char))
2381 (setq macro-end (point)))
2382 (or (null macro-beg)
2383 (prog1 (<= macro-end here)
2384 (setq npos macro-end)))))
2385
2386 (setq pos npos)
2387 (setq c-state-nonlit-pos-cache (cons pos c-state-nonlit-pos-cache)))
2388 ;; Add one extra element above HERE so as to to avoid the previous
2389 ;; expensive calculation when the next call is close to the current
2390 ;; one. This is especially useful when inside a large macro.
2391 (when npos
2392 (setq c-state-nonlit-pos-cache
2393 (cons npos c-state-nonlit-pos-cache))))
2394
2395 (if (> pos c-state-nonlit-pos-cache-limit)
2396 (setq c-state-nonlit-pos-cache-limit pos))
2397 pos))))
2398
2399 (defun c-state-semi-safe-place (here)
2400 ;; Return a buffer position before HERE which is "safe", i.e. outside any
2401 ;; string or comment. It may be in a macro.
2402 (save-restriction
2403 (widen)
2404 (save-excursion
2405 (let ((c c-state-semi-nonlit-pos-cache)
2406 pos npos high-pos lit macro-beg macro-end)
2407 ;; Trim the cache to take account of buffer changes.
2408 (while (and c (> (car c) c-state-semi-nonlit-pos-cache-limit))
2409 (setq c (cdr c)))
2410 (setq c-state-semi-nonlit-pos-cache c)
2411
2412 (while (and c (> (car c) here))
2413 (setq high-pos (car c))
2414 (setq c (cdr c)))
2415 (setq pos (or (car c) (point-min)))
2416
2417 (unless high-pos
2418 (while
2419 ;; Add an element to `c-state-semi-nonlit-pos-cache' each iteration.
2420 (and
2421 (<= (setq npos (+ pos c-state-nonlit-pos-interval)) here)
2422
2423 ;; Test for being in a literal. If so, go to after it.
2424 (progn
2425 (setq lit (car (cddr (c-state-pp-to-literal pos npos))))
2426 (or (null lit)
2427 (prog1 (<= (cdr lit) here)
2428 (setq npos (cdr lit))))))
2429
2430 (setq pos npos)
2431 (setq c-state-semi-nonlit-pos-cache
2432 (cons pos c-state-semi-nonlit-pos-cache))))
2433
2434 (if (> pos c-state-semi-nonlit-pos-cache-limit)
2435 (setq c-state-semi-nonlit-pos-cache-limit pos))
2436 pos))))
2437
2438 (defun c-state-literal-at (here)
2439 ;; If position HERE is inside a literal, return (START . END), the
2440 ;; boundaries of the literal (which may be outside the accessible bit of the
2441 ;; buffer). Otherwise, return nil.
2442 ;;
2443 ;; This function is almost the same as `c-literal-limits'. Previously, it
2444 ;; differed in that it was a lower level function, and that it rigorously
2445 ;; followed the syntax from BOB. `c-literal-limits' is now (2011-12)
2446 ;; virtually identical to this function.
2447 (save-restriction
2448 (widen)
2449 (save-excursion
2450 (let ((pos (c-state-safe-place here)))
2451 (car (cddr (c-state-pp-to-literal pos here)))))))
2452
2453 (defsubst c-state-lit-beg (pos)
2454 ;; Return the start of the literal containing POS, or POS itself.
2455 (or (car (c-state-literal-at pos))
2456 pos))
2457
2458 (defsubst c-state-cache-non-literal-place (pos state)
2459 ;; Return a position outside of a string/comment/macro at or before POS.
2460 ;; STATE is the parse-partial-sexp state at POS.
2461 (let ((res (if (or (nth 3 state) ; in a string?
2462 (nth 4 state)) ; in a comment?
2463 (nth 8 state)
2464 pos)))
2465 (save-excursion
2466 (goto-char res)
2467 (if (c-beginning-of-macro)
2468 (point)
2469 res))))
2470
2471 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2472 ;; Stuff to do with point-min, and coping with any literal there.
2473 (defvar c-state-point-min 1)
2474 (make-variable-buffer-local 'c-state-point-min)
2475 ;; This is (point-min) when `c-state-cache' was last calculated. A change of
2476 ;; narrowing is likely to affect the parens that are visible before the point.
2477
2478 (defvar c-state-point-min-lit-type nil)
2479 (make-variable-buffer-local 'c-state-point-min-lit-type)
2480 (defvar c-state-point-min-lit-start nil)
2481 (make-variable-buffer-local 'c-state-point-min-lit-start)
2482 ;; These two variables define the literal, if any, containing point-min.
2483 ;; Their values are, respectively, 'string, c, or c++, and the start of the
2484 ;; literal. If there's no literal there, they're both nil.
2485
2486 (defvar c-state-min-scan-pos 1)
2487 (make-variable-buffer-local 'c-state-min-scan-pos)
2488 ;; This is the earliest buffer-pos from which scanning can be done. It is
2489 ;; either the end of the literal containing point-min, or point-min itself.
2490 ;; It becomes nil if the buffer is changed earlier than this point.
2491 (defun c-state-get-min-scan-pos ()
2492 ;; Return the lowest valid scanning pos. This will be the end of the
2493 ;; literal enclosing point-min, or point-min itself.
2494 (or c-state-min-scan-pos
2495 (save-restriction
2496 (save-excursion
2497 (widen)
2498 (goto-char c-state-point-min-lit-start)
2499 (if (eq c-state-point-min-lit-type 'string)
2500 (forward-sexp)
2501 (forward-comment 1))
2502 (setq c-state-min-scan-pos (point))))))
2503
2504 (defun c-state-mark-point-min-literal ()
2505 ;; Determine the properties of any literal containing POINT-MIN, setting the
2506 ;; variables `c-state-point-min-lit-type', `c-state-point-min-lit-start',
2507 ;; and `c-state-min-scan-pos' accordingly. The return value is meaningless.
2508 (let ((p-min (point-min))
2509 lit)
2510 (save-restriction
2511 (widen)
2512 (setq lit (c-state-literal-at p-min))
2513 (if lit
2514 (setq c-state-point-min-lit-type
2515 (save-excursion
2516 (goto-char (car lit))
2517 (cond
2518 ((looking-at c-block-comment-start-regexp) 'c)
2519 ((looking-at c-line-comment-starter) 'c++)
2520 (t 'string)))
2521 c-state-point-min-lit-start (car lit)
2522 c-state-min-scan-pos (cdr lit))
2523 (setq c-state-point-min-lit-type nil
2524 c-state-point-min-lit-start nil
2525 c-state-min-scan-pos p-min)))))
2526
2527
2528 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2529 ;; A variable which signals a brace dessert - helpful for reducing the number
2530 ;; of fruitless backward scans.
2531 (defvar c-state-brace-pair-desert nil)
2532 (make-variable-buffer-local 'c-state-brace-pair-desert)
2533 ;; Used only in `c-append-lower-brace-pair-to-state-cache'. It is set when
2534 ;; that defun has searched backwards for a brace pair and not found one. Its
2535 ;; value is either nil or a cons (PA . FROM), where PA is the position of the
2536 ;; enclosing opening paren/brace/bracket which bounds the backwards search (or
2537 ;; nil when at top level) and FROM is where the backward search started. It
2538 ;; is reset to nil in `c-invalidate-state-cache'.
2539
2540
2541 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2542 ;; Lowish level functions/macros which work directly on `c-state-cache', or a
2543 ;; list of like structure.
2544 (defmacro c-state-cache-top-lparen (&optional cache)
2545 ;; Return the address of the top left brace/bracket/paren recorded in CACHE
2546 ;; (default `c-state-cache') (or nil).
2547 (let ((cash (or cache 'c-state-cache)))
2548 `(if (consp (car ,cash))
2549 (caar ,cash)
2550 (car ,cash))))
2551
2552 (defmacro c-state-cache-top-paren (&optional cache)
2553 ;; Return the address of the latest brace/bracket/paren (whether left or
2554 ;; right) recorded in CACHE (default `c-state-cache') or nil.
2555 (let ((cash (or cache 'c-state-cache)))
2556 `(if (consp (car ,cash))
2557 (cdar ,cash)
2558 (car ,cash))))
2559
2560 (defmacro c-state-cache-after-top-paren (&optional cache)
2561 ;; Return the position just after the latest brace/bracket/paren (whether
2562 ;; left or right) recorded in CACHE (default `c-state-cache') or nil.
2563 (let ((cash (or cache 'c-state-cache)))
2564 `(if (consp (car ,cash))
2565 (cdar ,cash)
2566 (and (car ,cash)
2567 (1+ (car ,cash))))))
2568
2569 (defun c-get-cache-scan-pos (here)
2570 ;; From the state-cache, determine the buffer position from which we might
2571 ;; scan forward to HERE to update this cache. This position will be just
2572 ;; after a paren/brace/bracket recorded in the cache, if possible, otherwise
2573 ;; return the earliest position in the accessible region which isn't within
2574 ;; a literal. If the visible portion of the buffer is entirely within a
2575 ;; literal, return NIL.
2576 (let ((c c-state-cache) elt)
2577 ;(while (>= (or (c-state-cache-top-lparen c) 1) here)
2578 (while (and c
2579 (>= (c-state-cache-top-lparen c) here))
2580 (setq c (cdr c)))
2581
2582 (setq elt (car c))
2583 (cond
2584 ((consp elt)
2585 (if (> (cdr elt) here)
2586 (1+ (car elt))
2587 (cdr elt)))
2588 (elt (1+ elt))
2589 ((<= (c-state-get-min-scan-pos) here)
2590 (c-state-get-min-scan-pos))
2591 (t nil))))
2592
2593 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2594 ;; Variables which keep track of preprocessor constructs.
2595 (defvar c-state-old-cpp-beg-marker nil)
2596 (make-variable-buffer-local 'c-state-old-cpp-beg-marker)
2597 (defvar c-state-old-cpp-beg nil)
2598 (make-variable-buffer-local 'c-state-old-cpp-beg)
2599 (defvar c-state-old-cpp-end-marker nil)
2600 (make-variable-buffer-local 'c-state-old-cpp-end-marker)
2601 (defvar c-state-old-cpp-end nil)
2602 (make-variable-buffer-local 'c-state-old-cpp-end)
2603 ;; These are the limits of the macro containing point at the previous call of
2604 ;; `c-parse-state', or nil.
2605
2606 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2607 ;; Defuns which analyze the buffer, yet don't change `c-state-cache'.
2608 (defun c-get-fallback-scan-pos (here)
2609 ;; Return a start position for building `c-state-cache' from
2610 ;; scratch. This will be at the top level, 2 defuns back.
2611 (save-excursion
2612 ;; Go back 2 bods, but ignore any bogus positions returned by
2613 ;; beginning-of-defun (i.e. open paren in column zero).
2614 (goto-char here)
2615 (let ((cnt 2))
2616 (while (not (or (bobp) (zerop cnt)))
2617 (c-beginning-of-defun-1) ; Pure elisp BOD.
2618 (if (eq (char-after) ?\{)
2619 (setq cnt (1- cnt)))))
2620 (point)))
2621
2622 (defun c-state-balance-parens-backwards (here- here+ top)
2623 ;; Return the position of the opening paren/brace/bracket before HERE- which
2624 ;; matches the outermost close p/b/b between HERE+ and TOP. Except when
2625 ;; there's a macro, HERE- and HERE+ are the same. Like this:
2626 ;;
2627 ;; ............................................
2628 ;; | |
2629 ;; ( [ ( .........#macro.. ) ( ) ] )
2630 ;; ^ ^ ^ ^
2631 ;; | | | |
2632 ;; return HERE- HERE+ TOP
2633 ;;
2634 ;; If there aren't enough opening paren/brace/brackets, return the position
2635 ;; of the outermost one found, or HERE- if there are none. If there are no
2636 ;; closing p/b/bs between HERE+ and TOP, return HERE-. HERE-/+ and TOP
2637 ;; must not be inside literals. Only the accessible portion of the buffer
2638 ;; will be scanned.
2639
2640 ;; PART 1: scan from `here+' up to `top', accumulating ")"s which enclose
2641 ;; `here'. Go round the next loop each time we pass over such a ")". These
2642 ;; probably match "("s before `here-'.
2643 (let (pos pa ren+1 lonely-rens)
2644 (save-excursion
2645 (save-restriction
2646 (narrow-to-region (point-min) top) ; This can move point, sometimes.
2647 (setq pos here+)
2648 (c-safe
2649 (while
2650 (setq ren+1 (c-sc-scan-lists pos 1 1)) ; might signal
2651 (setq lonely-rens (cons ren+1 lonely-rens)
2652 pos ren+1)))))
2653
2654 ;; PART 2: Scan back before `here-' searching for the "("s
2655 ;; matching/mismatching the ")"s found above. We only need to direct the
2656 ;; caller to scan when we've encountered unmatched right parens.
2657 (setq pos here-)
2658 (when lonely-rens
2659 (c-safe
2660 (while
2661 (and lonely-rens ; actual values aren't used.
2662 (setq pa (c-sc-scan-lists pos -1 1)))
2663 (setq pos pa)
2664 (setq lonely-rens (cdr lonely-rens)))))
2665 pos))
2666
2667 (defun c-parse-state-get-strategy (here good-pos)
2668 ;; Determine the scanning strategy for adjusting `c-parse-state', attempting
2669 ;; to minimize the amount of scanning. HERE is the pertinent position in
2670 ;; the buffer, GOOD-POS is a position where `c-state-cache' (possibly with
2671 ;; its head trimmed) is known to be good, or nil if there is no such
2672 ;; position.
2673 ;;
2674 ;; The return value is a list, one of the following:
2675 ;;
2676 ;; o - ('forward START-POINT) - scan forward from START-POINT,
2677 ;; which is not less than the highest position in `c-state-cache' below HERE,
2678 ;; which is after GOOD-POS.
2679 ;; o - ('backward nil) - scan backwards (from HERE).
2680 ;; o - ('back-and-forward START-POINT) - like 'forward, but when HERE is earlier
2681 ;; than GOOD-POS.
2682 ;; o - ('BOD START-POINT) - scan forwards from START-POINT, which is at the
2683 ;; top level.
2684 ;; o - ('IN-LIT nil) - point is inside the literal containing point-min.
2685 (let ((cache-pos (c-get-cache-scan-pos here)) ; highest position below HERE in cache (or 1)
2686 BOD-pos ; position of 2nd BOD before HERE.
2687 strategy ; 'forward, 'backward, 'BOD, or 'IN-LIT.
2688 start-point
2689 how-far) ; putative scanning distance.
2690 (setq good-pos (or good-pos (c-state-get-min-scan-pos)))
2691 (cond
2692 ((< here (c-state-get-min-scan-pos))
2693 (setq strategy 'IN-LIT
2694 start-point nil
2695 cache-pos nil
2696 how-far 0))
2697 ((<= good-pos here)
2698 (setq strategy 'forward
2699 start-point (max good-pos cache-pos)
2700 how-far (- here start-point)))
2701 ((< (- good-pos here) (- here cache-pos)) ; FIXME!!! ; apply some sort of weighting.
2702 (setq strategy 'backward
2703 how-far (- good-pos here)))
2704 (t
2705 (setq strategy 'back-and-forward
2706 start-point cache-pos
2707 how-far (- here start-point))))
2708
2709 ;; Might we be better off starting from the top level, two defuns back,
2710 ;; instead? This heuristic no longer works well in C++, where
2711 ;; declarations inside namespace brace blocks are frequently placed at
2712 ;; column zero. (2015-11-10): Remove the condition on C++ Mode.
2713 (when (and (or (not (memq 'col-0-paren c-emacs-features))
2714 open-paren-in-column-0-is-defun-start)
2715 ;; (not (c-major-mode-is 'c++-mode))
2716 (> how-far c-state-cache-too-far))
2717 (setq BOD-pos (c-get-fallback-scan-pos here)) ; somewhat EXPENSIVE!!!
2718 (if (< (- here BOD-pos) how-far)
2719 (setq strategy 'BOD
2720 start-point BOD-pos)))
2721
2722 (list strategy start-point)))
2723
2724
2725 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2726 ;; Routines which change `c-state-cache' and associated values.
2727 (defun c-renarrow-state-cache ()
2728 ;; The region (more precisely, point-min) has changed since we
2729 ;; calculated `c-state-cache'. Amend `c-state-cache' accordingly.
2730 (if (< (point-min) c-state-point-min)
2731 ;; If point-min has MOVED BACKWARDS then we drop the state completely.
2732 ;; It would be possible to do a better job here and recalculate the top
2733 ;; only.
2734 (progn
2735 (c-state-mark-point-min-literal)
2736 (setq c-state-cache nil
2737 c-state-cache-good-pos c-state-min-scan-pos
2738 c-state-brace-pair-desert nil))
2739
2740 ;; point-min has MOVED FORWARD.
2741
2742 ;; Is the new point-min inside a (different) literal?
2743 (unless (and c-state-point-min-lit-start ; at prev. point-min
2744 (< (point-min) (c-state-get-min-scan-pos)))
2745 (c-state-mark-point-min-literal))
2746
2747 ;; Cut off a bit of the tail from `c-state-cache'.
2748 (let ((ptr (cons nil c-state-cache))
2749 pa)
2750 (while (and (setq pa (c-state-cache-top-lparen (cdr ptr)))
2751 (>= pa (point-min)))
2752 (setq ptr (cdr ptr)))
2753
2754 (when (consp ptr)
2755 (if (or (eq (cdr ptr) c-state-cache)
2756 (and (consp (cadr ptr))
2757 (> (cdr (cadr ptr)) (point-min)))) ; Our new point-min is
2758 ; inside a recorded
2759 ; brace pair.
2760 (setq c-state-cache nil
2761 c-state-cache-good-pos c-state-min-scan-pos)
2762 (setcdr ptr nil)
2763 (setq c-state-cache-good-pos (1+ (c-state-cache-top-lparen))))
2764 )))
2765
2766 (setq c-state-point-min (point-min)))
2767
2768 (defun c-append-lower-brace-pair-to-state-cache (from here &optional upper-lim)
2769 ;; If there is a brace pair preceding FROM in the buffer, at the same level
2770 ;; of nesting (not necessarily immediately preceding), push a cons onto
2771 ;; `c-state-cache' to represent it. FROM must not be inside a literal. If
2772 ;; UPPER-LIM is non-nil, we append the highest brace pair whose "}" is below
2773 ;; UPPER-LIM.
2774 ;;
2775 ;; Return non-nil when this has been done.
2776 ;;
2777 ;; The situation it copes with is this transformation:
2778 ;;
2779 ;; OLD: { (.) {...........}
2780 ;; ^ ^
2781 ;; FROM HERE
2782 ;;
2783 ;; NEW: { {....} (.) {.........
2784 ;; ^ ^ ^
2785 ;; LOWER BRACE PAIR HERE or HERE
2786 ;;
2787 ;; This routine should be fast. Since it can get called a LOT, we maintain
2788 ;; `c-state-brace-pair-desert', a small cache of "failures", such that we
2789 ;; reduce the time wasted in repeated fruitless searches in brace deserts.
2790 (save-excursion
2791 (save-restriction
2792 (let* (new-cons
2793 (cache-pos (c-state-cache-top-lparen)) ; might be nil.
2794 (macro-start-or-from
2795 (progn (goto-char from)
2796 (c-beginning-of-macro)
2797 (point)))
2798 (bra ; Position of "{".
2799 ;; Don't start scanning in the middle of a CPP construct unless
2800 ;; it contains HERE - these constructs, in Emacs, are "commented
2801 ;; out" with category properties.
2802 (if (eq (c-get-char-property macro-start-or-from 'category)
2803 'c-cpp-delimiter)
2804 macro-start-or-from
2805 from))
2806 ce) ; Position of "}"
2807 (or upper-lim (setq upper-lim from))
2808
2809 ;; If we're essentially repeating a fruitless search, just give up.
2810 (unless (and c-state-brace-pair-desert
2811 (eq cache-pos (car c-state-brace-pair-desert))
2812 (or (null (car c-state-brace-pair-desert))
2813 (> from (car c-state-brace-pair-desert)))
2814 (<= from (cdr c-state-brace-pair-desert)))
2815 ;; DESERT-LIM. Avoid repeated searching through the cached desert.
2816 (let ((desert-lim
2817 (and c-state-brace-pair-desert
2818 (eq cache-pos (car c-state-brace-pair-desert))
2819 (>= from (cdr c-state-brace-pair-desert))
2820 (cdr c-state-brace-pair-desert)))
2821 ;; CACHE-LIM. This limit will be necessary when an opening
2822 ;; paren at `cache-pos' has just had its matching close paren
2823 ;; inserted into the buffer. `cache-pos' continues to be a
2824 ;; search bound, even though the algorithm below would skip
2825 ;; over the new paren pair.
2826 (cache-lim (and cache-pos (< cache-pos from) cache-pos)))
2827 (narrow-to-region
2828 (cond
2829 ((and desert-lim cache-lim)
2830 (max desert-lim cache-lim))
2831 (desert-lim)
2832 (cache-lim)
2833 ((point-min)))
2834 ;; The top limit is EOB to ensure that `bra' is inside the
2835 ;; accessible part of the buffer at the next scan operation.
2836 (1+ (buffer-size))))
2837
2838 ;; In the next pair of nested loops, the inner one moves back past a
2839 ;; pair of (mis-)matching parens or brackets; the outer one moves
2840 ;; back over a sequence of unmatched close brace/paren/bracket each
2841 ;; time round.
2842 (while
2843 (progn
2844 (c-safe
2845 (while
2846 (and (setq ce (c-sc-scan-lists bra -1 -1)) ; back past )/]/}; might signal
2847 (setq bra (c-sc-scan-lists ce -1 1)) ; back past (/[/{; might signal
2848 (or (> bra here) ;(> ce here)
2849 (and
2850 (< ce here)
2851 (or (not (eq (char-after bra) ?\{))
2852 (and (goto-char bra)
2853 (c-beginning-of-macro)
2854 (< (point) macro-start-or-from))))))))
2855 (and ce (< ce bra)))
2856 (setq bra ce)) ; If we just backed over an unbalanced closing
2857 ; brace, ignore it.
2858
2859 (if (and ce (< ce here) (< bra ce) (eq (char-after bra) ?\{))
2860 ;; We've found the desired brace-pair.
2861 (progn
2862 (setq new-cons (cons bra (1+ ce)))
2863 (cond
2864 ((consp (car c-state-cache))
2865 (setcar c-state-cache new-cons))
2866 ((and (numberp (car c-state-cache)) ; probably never happens
2867 (< ce (car c-state-cache)))
2868 (setcdr c-state-cache
2869 (cons new-cons (cdr c-state-cache))))
2870 (t (setq c-state-cache (cons new-cons c-state-cache)))))
2871
2872 ;; We haven't found a brace pair. Record this in the cache.
2873 (setq c-state-brace-pair-desert
2874 (cons (if (and ce (< bra ce) (> ce here)) ; {..} straddling HERE?
2875 bra
2876 (point-min))
2877 (min here from)))))))))
2878
2879 (defsubst c-state-push-any-brace-pair (bra+1 macro-start-or-here)
2880 ;; If BRA+1 is nil, do nothing. Otherwise, BRA+1 is the buffer position
2881 ;; following a {, and that brace has a (mis-)matching } (or ]), and we
2882 ;; "push" "a" brace pair onto `c-state-cache'.
2883 ;;
2884 ;; Here "push" means overwrite the top element if it's itself a brace-pair,
2885 ;; otherwise push it normally.
2886 ;;
2887 ;; The brace pair we push is normally the one surrounding BRA+1, but if the
2888 ;; latter is inside a macro, not being a macro containing
2889 ;; MACRO-START-OR-HERE, we scan backwards through the buffer for a non-macro
2890 ;; base pair. This latter case is assumed to be rare.
2891 ;;
2892 ;; Note: POINT is not preserved in this routine.
2893 (if bra+1
2894 (if (or (> bra+1 macro-start-or-here)
2895 (progn (goto-char bra+1)
2896 (not (c-beginning-of-macro))))
2897 (setq c-state-cache
2898 (cons (cons (1- bra+1)
2899 (c-sc-scan-lists bra+1 1 1))
2900 (if (consp (car c-state-cache))
2901 (cdr c-state-cache)
2902 c-state-cache)))
2903 ;; N.B. This defsubst codes one method for the simple, normal case,
2904 ;; and a more sophisticated, slower way for the general case. Don't
2905 ;; eliminate this defsubst - it's a speed optimization.
2906 (c-append-lower-brace-pair-to-state-cache (1- bra+1) (point-max)))))
2907
2908 (defun c-append-to-state-cache (from here)
2909 ;; Scan the buffer from FROM to HERE, adding elements into `c-state-cache'
2910 ;; for braces etc. Return a candidate for `c-state-cache-good-pos'.
2911 ;;
2912 ;; FROM must be after the latest brace/paren/bracket in `c-state-cache', if
2913 ;; any. Typically, it is immediately after it. It must not be inside a
2914 ;; literal.
2915 (let ((here-bol (c-point 'bol here))
2916 (macro-start-or-here
2917 (save-excursion (goto-char here)
2918 (if (c-beginning-of-macro)
2919 (point)
2920 here)))
2921 pa+1 ; pos just after an opening PAren (or brace).
2922 (ren+1 from) ; usually a pos just after an closing paREN etc.
2923 ; Is actually the pos. to scan for a (/{/[ from,
2924 ; which sometimes is after a silly )/}/].
2925 paren+1 ; Pos after some opening or closing paren.
2926 paren+1s ; A list of `paren+1's; used to determine a
2927 ; good-pos.
2928 bra+1 ; just after L bra-ce.
2929 bra+1s ; list of OLD values of bra+1.
2930 mstart) ; start of a macro.
2931
2932 (save-excursion
2933 (save-restriction
2934 (narrow-to-region (point-min) here)
2935 ;; Each time round the following loop, we enter a successively deeper
2936 ;; level of brace/paren nesting. (Except sometimes we "continue at
2937 ;; the existing level".) `pa+1' is a pos inside an opening
2938 ;; brace/paren/bracket, usually just after it.
2939 (while
2940 (progn
2941 ;; Each time round the next loop moves forward over an opening then
2942 ;; a closing brace/bracket/paren. This loop is white hot, so it
2943 ;; plays ugly tricks to go fast. DON'T PUT ANYTHING INTO THIS
2944 ;; LOOP WHICH ISN'T ABSOLUTELY NECESSARY!!! It terminates when a
2945 ;; call of `scan-lists' signals an error, which happens when there
2946 ;; are no more b/b/p's to scan.
2947 (c-safe
2948 (while t
2949 (setq pa+1 (c-sc-scan-lists ren+1 1 -1) ; Into (/{/[; might signal
2950 paren+1s (cons pa+1 paren+1s))
2951 (setq ren+1 (c-sc-scan-lists pa+1 1 1)) ; Out of )/}/]; might signal
2952 (if (and (eq (char-before pa+1) ?{)) ; Check for a macro later.
2953 (setq bra+1 pa+1))
2954 (setcar paren+1s ren+1)))
2955
2956 (if (and pa+1 (> pa+1 ren+1))
2957 ;; We've just entered a deeper nesting level.
2958 (progn
2959 ;; Insert the brace pair (if present) and the single open
2960 ;; paren/brace/bracket into `c-state-cache' It cannot be
2961 ;; inside a macro, except one around point, because of what
2962 ;; `c-neutralize-syntax-in-CPP' has done.
2963 (c-state-push-any-brace-pair bra+1 macro-start-or-here)
2964 ;; Insert the opening brace/bracket/paren position.
2965 (setq c-state-cache (cons (1- pa+1) c-state-cache))
2966 ;; Clear admin stuff for the next more nested part of the scan.
2967 (setq ren+1 pa+1 pa+1 nil bra+1 nil bra+1s nil)
2968 t) ; Carry on the loop
2969
2970 ;; All open p/b/b's at this nesting level, if any, have probably
2971 ;; been closed by matching/mismatching ones. We're probably
2972 ;; finished - we just need to check for having found an
2973 ;; unmatched )/}/], which we ignore. Such a )/}/] can't be in a
2974 ;; macro, due the action of `c-neutralize-syntax-in-CPP'.
2975 (c-safe (setq ren+1 (c-sc-scan-lists ren+1 1 1)))))) ; acts as loop control.
2976
2977 ;; Record the final, innermost, brace-pair if there is one.
2978 (c-state-push-any-brace-pair bra+1 macro-start-or-here)
2979
2980 ;; Determine a good pos
2981 (while (and (setq paren+1 (car paren+1s))
2982 (> (if (> paren+1 macro-start-or-here)
2983 paren+1
2984 (goto-char paren+1)
2985 (setq mstart (and (c-beginning-of-macro)
2986 (point)))
2987 (or mstart paren+1))
2988 here-bol))
2989 (setq paren+1s (cdr paren+1s)))
2990 (cond
2991 ((and paren+1 mstart)
2992 (min paren+1 mstart))
2993 (paren+1)
2994 (t from))))))
2995
2996 (defun c-remove-stale-state-cache (start-point here pps-point)
2997 ;; Remove stale entries from the `c-cache-state', i.e. those which will
2998 ;; not be in it when it is amended for position HERE. This may involve
2999 ;; replacing a CONS element for a brace pair containing HERE with its car.
3000 ;; Additionally, the "outermost" open-brace entry before HERE will be
3001 ;; converted to a cons if the matching close-brace is below HERE.
3002 ;;
3003 ;; START-POINT is a "maximal" "safe position" - there must be no open
3004 ;; parens/braces/brackets between START-POINT and HERE.
3005 ;;
3006 ;; As a second thing, calculate the result of parse-partial-sexp at
3007 ;; PPS-POINT, w.r.t. START-POINT. The motivation here is that
3008 ;; `c-state-cache-good-pos' may become PPS-POINT, but the caller may need to
3009 ;; adjust it to get outside a string/comment. (Sorry about this! The code
3010 ;; needs to be FAST).
3011 ;;
3012 ;; Return a list (GOOD-POS SCAN-BACK-POS CONS-SEPARATED PPS-STATE), where
3013 ;; o - GOOD-POS is a position where the new value `c-state-cache' is known
3014 ;; to be good (we aim for this to be as high as possible);
3015 ;; o - SCAN-BACK-POS, if not nil, indicates there may be a brace pair
3016 ;; preceding POS which needs to be recorded in `c-state-cache'. It is a
3017 ;; position to scan backwards from. It is the position of the "{" of the
3018 ;; last element to be removed from `c-state-cache', when that elt is a
3019 ;; cons, otherwise nil.
3020 ;; o - CONS-SEPARATED is t when a cons element in `c-state-cache' has been
3021 ;; replaced by its car because HERE lies inside the brace pair represented
3022 ;; by the cons.
3023 ;; o - PPS-STATE is the parse-partial-sexp state at PPS-POINT.
3024 (save-excursion
3025 (save-restriction
3026 (narrow-to-region 1 (point-max))
3027 (let* ((in-macro-start ; start of macro containing HERE or nil.
3028 (save-excursion
3029 (goto-char here)
3030 (and (c-beginning-of-macro)
3031 (point))))
3032 (start-point-actual-macro-start ; Start of macro containing
3033 ; start-point or nil
3034 (and (< start-point here)
3035 (save-excursion
3036 (goto-char start-point)
3037 (and (c-beginning-of-macro)
3038 (point)))))
3039 (start-point-actual-macro-end ; End of this macro, (maybe
3040 ; HERE), or nil.
3041 (and start-point-actual-macro-start
3042 (save-excursion
3043 (goto-char start-point-actual-macro-start)
3044 (c-end-of-macro)
3045 (point))))
3046 pps-state ; Will be 9 or 10 elements long.
3047 pos
3048 upper-lim ; ,beyond which `c-state-cache' entries are removed
3049 scan-back-pos
3050 cons-separated
3051 pair-beg pps-point-state target-depth)
3052
3053 ;; Remove entries beyond HERE. Also remove any entries inside
3054 ;; a macro, unless HERE is in the same macro.
3055 (setq upper-lim
3056 (if (or (null c-state-old-cpp-beg)
3057 (and (> here c-state-old-cpp-beg)
3058 (< here c-state-old-cpp-end)))
3059 here
3060 (min here c-state-old-cpp-beg)))
3061 (while (and c-state-cache (>= (c-state-cache-top-lparen) upper-lim))
3062 (setq scan-back-pos (car-safe (car c-state-cache)))
3063 (setq c-state-cache (cdr c-state-cache)))
3064
3065 ;; If `upper-lim' is inside the last recorded brace pair, remove its
3066 ;; RBrace and indicate we'll need to search backwards for a previous
3067 ;; brace pair.
3068 (when (and c-state-cache
3069 (consp (car c-state-cache))
3070 (> (cdar c-state-cache) upper-lim))
3071 (setcar c-state-cache (caar c-state-cache))
3072 (setq scan-back-pos (car c-state-cache)
3073 cons-separated t))
3074
3075 ;; The next loop jumps forward out of a nested level of parens each
3076 ;; time round; the corresponding elements in `c-state-cache' are
3077 ;; removed. `pos' is just after the brace-pair or the open paren at
3078 ;; (car c-state-cache). There can be no open parens/braces/brackets
3079 ;; between `start-point'/`start-point-actual-macro-start' and HERE,
3080 ;; due to the interface spec to this function.
3081 (setq pos (if (and start-point-actual-macro-end
3082 (not (eq start-point-actual-macro-start
3083 in-macro-start)))
3084 (1+ start-point-actual-macro-end) ; get outside the macro as
3085 ; marked by a `category' text property.
3086 start-point))
3087 (goto-char pos)
3088 (while (and c-state-cache
3089 (or (numberp (car c-state-cache)) ; Have we a { at all?
3090 (cdr c-state-cache))
3091 (< (point) here))
3092 (cond
3093 ((null pps-state) ; first time through
3094 (setq target-depth -1))
3095 ((eq (car pps-state) target-depth) ; found closing ),},]
3096 (setq target-depth (1- (car pps-state))))
3097 ;; Do nothing when we've merely reached pps-point.
3098 )
3099
3100 ;; Scan!
3101 (setq pps-state
3102 (c-sc-parse-partial-sexp
3103 (point) (if (< (point) pps-point) pps-point here)
3104 target-depth
3105 nil pps-state))
3106
3107 (if (= (point) pps-point)
3108 (setq pps-point-state pps-state))
3109
3110 (when (eq (car pps-state) target-depth)
3111 (setq pos (point)) ; POS is now just after an R-paren/brace.
3112 (cond
3113 ((and (consp (car c-state-cache))
3114 (eq (point) (cdar c-state-cache)))
3115 ;; We've just moved out of the paren pair containing the brace-pair
3116 ;; at (car c-state-cache). `pair-beg' is where the open paren is,
3117 ;; and is potentially where the open brace of a cons in
3118 ;; c-state-cache will be.
3119 (setq pair-beg (car-safe (cdr c-state-cache))
3120 c-state-cache (cdr-safe (cdr c-state-cache)))) ; remove {}pair + containing Lparen.
3121 ((numberp (car c-state-cache))
3122 (setq pair-beg (car c-state-cache)
3123 c-state-cache (cdr c-state-cache))) ; remove this
3124 ; containing Lparen
3125 ((numberp (cadr c-state-cache))
3126 (setq pair-beg (cadr c-state-cache)
3127 c-state-cache (cddr c-state-cache))) ; Remove a paren pair
3128 ; together with enclosed brace pair.
3129 ;; (t nil) ; Ignore an unmated Rparen.
3130 )))
3131
3132 (if (< (point) pps-point)
3133 (setq pps-state (c-sc-parse-partial-sexp
3134 (point) pps-point
3135 nil nil ; TARGETDEPTH, STOPBEFORE
3136 pps-state)))
3137
3138 ;; If the last paren pair we moved out of was actually a brace pair,
3139 ;; insert it into `c-state-cache'.
3140 (when (and pair-beg (eq (char-after pair-beg) ?{))
3141 (if (consp (car-safe c-state-cache))
3142 (setq c-state-cache (cdr c-state-cache)))
3143 (setq c-state-cache (cons (cons pair-beg pos)
3144 c-state-cache)))
3145
3146 (list pos scan-back-pos cons-separated pps-state)))))
3147
3148 (defun c-remove-stale-state-cache-backwards (here)
3149 ;; Strip stale elements of `c-state-cache' by moving backwards through the
3150 ;; buffer, and inform the caller of the scenario detected.
3151 ;;
3152 ;; HERE is the position we're setting `c-state-cache' for.
3153 ;; CACHE-POS (a locally bound variable) is just after the latest recorded
3154 ;; position in `c-state-cache' before HERE, or a position at or near
3155 ;; point-min which isn't in a literal.
3156 ;;
3157 ;; This function must only be called only when (> `c-state-cache-good-pos'
3158 ;; HERE). Usually the gap between CACHE-POS and HERE is large. It is thus
3159 ;; optimized to eliminate (or minimize) scanning between these two
3160 ;; positions.
3161 ;;
3162 ;; Return a three element list (GOOD-POS SCAN-BACK-POS FWD-FLAG), where:
3163 ;; o - GOOD-POS is a "good position", where `c-state-cache' is valid, or
3164 ;; could become so after missing elements are inserted into
3165 ;; `c-state-cache'. This is JUST AFTER an opening or closing
3166 ;; brace/paren/bracket which is already in `c-state-cache' or just before
3167 ;; one otherwise. exceptionally (when there's no such b/p/b handy) the BOL
3168 ;; before `here''s line, or the start of the literal containing it.
3169 ;; o - SCAN-BACK-POS, if non-nil, indicates there may be a brace pair
3170 ;; preceding POS which isn't recorded in `c-state-cache'. It is a position
3171 ;; to scan backwards from.
3172 ;; o - FWD-FLAG, if non-nil, indicates there may be parens/braces between
3173 ;; POS and HERE which aren't recorded in `c-state-cache'.
3174 ;;
3175 ;; The comments in this defun use "paren" to mean parenthesis or square
3176 ;; bracket (as contrasted with a brace), and "(" and ")" likewise.
3177 ;;
3178 ;; . {..} (..) (..) ( .. { } ) (...) ( .... . ..)
3179 ;; | | | | | |
3180 ;; CP E here D C good
3181 (let ((cache-pos (c-get-cache-scan-pos here)) ; highest position below HERE in cache (or 1)
3182 (pos c-state-cache-good-pos)
3183 pa ren ; positions of "(" and ")"
3184 dropped-cons ; whether the last element dropped from `c-state-cache'
3185 ; was a cons (representing a brace-pair)
3186 good-pos ; see above.
3187 lit ; (START . END) of a literal containing some point.
3188 here-lit-start here-lit-end ; bounds of literal containing `here'
3189 ; or `here' itself.
3190 here- here+ ; start/end of macro around HERE, or HERE
3191 (here-bol (c-point 'bol here))
3192 (too-far-back (max (- here c-state-cache-too-far) (point-min))))
3193
3194 ;; Remove completely irrelevant entries from `c-state-cache'.
3195 (while (and c-state-cache
3196 (>= (setq pa (c-state-cache-top-lparen)) here))
3197 (setq dropped-cons (consp (car c-state-cache)))
3198 (setq c-state-cache (cdr c-state-cache))
3199 (setq pos pa))
3200 ;; At this stage, (>= pos here);
3201 ;; (< (c-state-cache-top-lparen) here) (or is nil).
3202
3203 (cond
3204 ((and (consp (car c-state-cache))
3205 (> (cdar c-state-cache) here))
3206 ;; CASE 1: The top of the cache is a brace pair which now encloses
3207 ;; `here'. As good-pos, return the address. of the "{". Since we've no
3208 ;; knowledge of what's inside these braces, we have no alternative but
3209 ;; to direct the caller to scan the buffer from the opening brace.
3210 (setq pos (caar c-state-cache))
3211 (setcar c-state-cache pos)
3212 (list (1+ pos) pos t)) ; return value. We've just converted a brace pair
3213 ; entry into a { entry, so the caller needs to
3214 ; search for a brace pair before the {.
3215
3216 ;; `here' might be inside a literal. Check for this.
3217 ((progn
3218 (setq lit (c-state-literal-at here)
3219 here-lit-start (or (car lit) here)
3220 here-lit-end (or (cdr lit) here))
3221 ;; Has `here' just "newly entered" a macro?
3222 (save-excursion
3223 (goto-char here-lit-start)
3224 (if (and (c-beginning-of-macro)
3225 (or (null c-state-old-cpp-beg)
3226 (not (= (point) c-state-old-cpp-beg))))
3227 (progn
3228 (setq here- (point))
3229 (c-end-of-macro)
3230 (setq here+ (point)))
3231 (setq here- here-lit-start
3232 here+ here-lit-end)))
3233
3234 ;; `here' might be nested inside any depth of parens (or brackets but
3235 ;; not braces). Scan backwards to find the outermost such opening
3236 ;; paren, if there is one. This will be the scan position to return.
3237 (save-restriction
3238 (narrow-to-region cache-pos (point-max))
3239 (setq pos (c-state-balance-parens-backwards here- here+ pos)))
3240 nil)) ; for the cond
3241
3242 ((< pos here-lit-start)
3243 ;; CASE 2: Address of outermost ( or [ which now encloses `here', but
3244 ;; didn't enclose the (previous) `c-state-cache-good-pos'. If there is
3245 ;; a brace pair preceding this, it will already be in `c-state-cache',
3246 ;; unless there was a brace pair after it, i.e. there'll only be one to
3247 ;; scan for if we've just deleted one.
3248 (list pos (and dropped-cons pos) t)) ; Return value.
3249
3250 ;; `here' isn't enclosed in a (previously unrecorded) bracket/paren.
3251 ;; Further forward scanning isn't needed, but we still need to find a
3252 ;; GOOD-POS. Step out of all enclosing "("s on HERE's line.
3253 ((progn
3254 (save-restriction
3255 (narrow-to-region here-bol (point-max))
3256 (setq pos here-lit-start)
3257 (c-safe (while (setq pa (c-sc-scan-lists pos -1 1))
3258 (setq pos pa)))) ; might signal
3259 nil)) ; for the cond
3260
3261 ((save-restriction
3262 (narrow-to-region too-far-back (point-max))
3263 (setq ren (c-safe (c-sc-scan-lists pos -1 -1))))
3264 ;; CASE 3: After a }/)/] before `here''s BOL.
3265 (list (1+ ren) (and dropped-cons pos) nil)) ; Return value
3266
3267 ((progn (setq good-pos (c-state-lit-beg (c-point 'bopl here-bol)))
3268 (>= cache-pos good-pos))
3269 ;; CASE 3.5: Just after an existing entry in `c-state-cache' on `here''s
3270 ;; line or the previous line.
3271 (list cache-pos nil nil))
3272
3273 (t
3274 ;; CASE 4; Best of a bad job: BOL before `here-bol', or beginning of
3275 ;; literal containing it.
3276 (list good-pos (and dropped-cons good-pos) nil)))))
3277
3278
3279 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3280 ;; Externally visible routines.
3281
3282 (defun c-state-cache-init ()
3283 (setq c-state-cache nil
3284 c-state-cache-good-pos 1
3285 c-state-nonlit-pos-cache nil
3286 c-state-nonlit-pos-cache-limit 1
3287 c-state-semi-nonlit-pos-cache nil
3288 c-state-semi-nonlit-pos-cache-limit 1
3289 c-state-brace-pair-desert nil
3290 c-state-point-min 1
3291 c-state-point-min-lit-type nil
3292 c-state-point-min-lit-start nil
3293 c-state-min-scan-pos 1
3294 c-state-old-cpp-beg nil
3295 c-state-old-cpp-end nil)
3296 (c-state-mark-point-min-literal))
3297
3298 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3299 ;; Debugging routines to dump `c-state-cache' in a "replayable" form.
3300 ;; (defmacro c-sc-de (elt) ; "c-state-cache-dump-element"
3301 ;; `(format ,(concat "(setq " (symbol-name elt) " %s) ") ,elt))
3302 ;; (defmacro c-sc-qde (elt) ; "c-state-cache-quote-dump-element"
3303 ;; `(format ,(concat "(setq " (symbol-name elt) " '%s) ") ,elt))
3304 ;; (defun c-state-dump ()
3305 ;; ;; For debugging.
3306 ;; ;(message
3307 ;; (concat
3308 ;; (c-sc-qde c-state-cache)
3309 ;; (c-sc-de c-state-cache-good-pos)
3310 ;; (c-sc-qde c-state-nonlit-pos-cache)
3311 ;; (c-sc-de c-state-nonlit-pos-cache-limit)
3312 ;; (c-sc-qde c-state-brace-pair-desert)
3313 ;; (c-sc-de c-state-point-min)
3314 ;; (c-sc-de c-state-point-min-lit-type)
3315 ;; (c-sc-de c-state-point-min-lit-start)
3316 ;; (c-sc-de c-state-min-scan-pos)
3317 ;; (c-sc-de c-state-old-cpp-beg)
3318 ;; (c-sc-de c-state-old-cpp-end)))
3319 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3320
3321 (defun c-invalidate-state-cache-1 (here)
3322 ;; Invalidate all info on `c-state-cache' that applies to the buffer at HERE
3323 ;; or higher and set `c-state-cache-good-pos' accordingly. The cache is
3324 ;; left in a consistent state.
3325 ;;
3326 ;; This is much like `c-whack-state-after', but it never changes a paren
3327 ;; pair element into an open paren element. Doing that would mean that the
3328 ;; new open paren wouldn't have the required preceding paren pair element.
3329 ;;
3330 ;; This function is called from c-before-change.
3331
3332 ;; The caches of non-literals:
3333 ;; Note that we use "<=" for the possibility of the second char of a two-char
3334 ;; comment opener being typed; this would invalidate any cache position at
3335 ;; HERE.
3336 (if (<= here c-state-nonlit-pos-cache-limit)
3337 (setq c-state-nonlit-pos-cache-limit (1- here)))
3338 (if (<= here c-state-semi-nonlit-pos-cache-limit)
3339 (setq c-state-semi-nonlit-pos-cache-limit (1- here)))
3340
3341 ;; `c-state-cache':
3342 ;; Case 1: if `here' is in a literal containing point-min, everything
3343 ;; becomes (or is already) nil.
3344 (if (or (null c-state-cache-good-pos)
3345 (< here (c-state-get-min-scan-pos)))
3346 (setq c-state-cache nil
3347 c-state-cache-good-pos nil
3348 c-state-min-scan-pos nil)
3349
3350 ;; Truncate `c-state-cache' and set `c-state-cache-good-pos' to a value
3351 ;; below `here'. To maintain its consistency, we may need to insert a new
3352 ;; brace pair.
3353 (let ((here-bol (c-point 'bol here))
3354 too-high-pa ; recorded {/(/[ next above or just below here, or nil.
3355 dropped-cons ; was the last removed element a brace pair?
3356 pa)
3357 ;; The easy bit - knock over-the-top bits off `c-state-cache'.
3358 (while (and c-state-cache
3359 (>= (setq pa (c-state-cache-top-paren)) here))
3360 (setq dropped-cons (consp (car c-state-cache))
3361 too-high-pa (c-state-cache-top-lparen)
3362 c-state-cache (cdr c-state-cache)))
3363
3364 ;; Do we need to add in an earlier brace pair, having lopped one off?
3365 (if (and dropped-cons
3366 (<= too-high-pa here))
3367 (c-append-lower-brace-pair-to-state-cache too-high-pa here here-bol))
3368 (setq c-state-cache-good-pos (or (c-state-cache-after-top-paren)
3369 (c-state-get-min-scan-pos)))))
3370
3371 ;; The brace-pair desert marker:
3372 (when (car c-state-brace-pair-desert)
3373 (if (< here (car c-state-brace-pair-desert))
3374 (setq c-state-brace-pair-desert nil)
3375 (if (< here (cdr c-state-brace-pair-desert))
3376 (setcdr c-state-brace-pair-desert here)))))
3377
3378 (defun c-parse-state-1 ()
3379 ;; Find and record all noteworthy parens between some good point earlier in
3380 ;; the file and point. That good point is at least the beginning of the
3381 ;; top-level construct we are in, or the beginning of the preceding
3382 ;; top-level construct if we aren't in one.
3383 ;;
3384 ;; The returned value is a list of the noteworthy parens with the last one
3385 ;; first. If an element in the list is an integer, it's the position of an
3386 ;; open paren (of any type) which has not been closed before the point. If
3387 ;; an element is a cons, it gives the position of a closed BRACE paren
3388 ;; pair[*]; the car is the start brace position and the cdr is the position
3389 ;; following the closing brace. Only the last closed brace paren pair
3390 ;; before each open paren and before the point is recorded, and thus the
3391 ;; state never contains two cons elements in succession. When a close brace
3392 ;; has no matching open brace (e.g., the matching brace is outside the
3393 ;; visible region), it is not represented in the returned value.
3394 ;;
3395 ;; [*] N.B. The close "brace" might be a mismatching close bracket or paren.
3396 ;; This defun explicitly treats mismatching parens/braces/brackets as
3397 ;; matching. It is the open brace which makes it a "brace" pair.
3398 ;;
3399 ;; If POINT is within a macro, open parens and brace pairs within
3400 ;; THIS macro MIGHT be recorded. This depends on whether their
3401 ;; syntactic properties have been suppressed by
3402 ;; `c-neutralize-syntax-in-CPP'. This might need fixing (2008-12-11).
3403 ;;
3404 ;; Currently no characters which are given paren syntax with the
3405 ;; syntax-table property are recorded, i.e. angle bracket arglist
3406 ;; parens are never present here. Note that this might change.
3407 ;;
3408 ;; BUG: This function doesn't cope entirely well with unbalanced
3409 ;; parens in macros. (2008-12-11: this has probably been resolved
3410 ;; by the function `c-neutralize-syntax-in-CPP'.) E.g. in the
3411 ;; following case the brace before the macro isn't balanced with the
3412 ;; one after it:
3413 ;;
3414 ;; {
3415 ;; #define X {
3416 ;; }
3417 ;;
3418 ;; Note to maintainers: this function DOES get called with point
3419 ;; within comments and strings, so don't assume it doesn't!
3420 ;;
3421 ;; This function might do hidden buffer changes.
3422 (let* ((here (point))
3423 (here-bopl (c-point 'bopl))
3424 strategy ; 'forward, 'backward etc..
3425 ;; Candidate positions to start scanning from:
3426 cache-pos ; highest position below HERE already existing in
3427 ; cache (or 1).
3428 good-pos
3429 start-point ; (when scanning forward) a place below HERE where there
3430 ; are no open parens/braces between it and HERE.
3431 bopl-state
3432 res
3433 cons-separated
3434 scan-backward-pos scan-forward-p) ; used for 'backward.
3435 ;; If POINT-MIN has changed, adjust the cache
3436 (unless (= (point-min) c-state-point-min)
3437 (c-renarrow-state-cache))
3438
3439 ;; Strategy?
3440 (setq res (c-parse-state-get-strategy here c-state-cache-good-pos)
3441 strategy (car res)
3442 start-point (cadr res))
3443
3444 (when (eq strategy 'BOD)
3445 (setq c-state-cache nil
3446 c-state-cache-good-pos start-point))
3447
3448 ;; SCAN!
3449 (cond
3450 ((memq strategy '(forward back-and-forward BOD))
3451 (setq res (c-remove-stale-state-cache start-point here here-bopl))
3452 (setq cache-pos (car res)
3453 scan-backward-pos (cadr res)
3454 cons-separated (car (cddr res))
3455 bopl-state (cadr (cddr res))) ; will be nil if (< here-bopl
3456 ; start-point)
3457 (if (and scan-backward-pos
3458 (or cons-separated (eq strategy 'forward))) ;scan-backward-pos
3459 (c-append-lower-brace-pair-to-state-cache scan-backward-pos here))
3460 (setq good-pos
3461 (c-append-to-state-cache cache-pos here))
3462 (setq c-state-cache-good-pos
3463 (if (and bopl-state
3464 (< good-pos (- here c-state-cache-too-far)))
3465 (c-state-cache-non-literal-place here-bopl bopl-state)
3466 good-pos)))
3467
3468 ((eq strategy 'backward)
3469 (setq res (c-remove-stale-state-cache-backwards here)
3470 good-pos (car res)
3471 scan-backward-pos (cadr res)
3472 scan-forward-p (car (cddr res)))
3473 (if scan-backward-pos
3474 (c-append-lower-brace-pair-to-state-cache scan-backward-pos here))
3475 (setq c-state-cache-good-pos
3476 (if scan-forward-p
3477 (c-append-to-state-cache good-pos here)
3478 good-pos)))
3479
3480 (t ; (eq strategy 'IN-LIT)
3481 (setq c-state-cache nil
3482 c-state-cache-good-pos nil))))
3483
3484 c-state-cache)
3485
3486 (defun c-invalidate-state-cache (here)
3487 ;; This is a wrapper over `c-invalidate-state-cache-1'.
3488 ;;
3489 ;; It suppresses the syntactic effect of the < and > (template) brackets and
3490 ;; of all parens in preprocessor constructs, except for any such construct
3491 ;; containing point. We can then call `c-invalidate-state-cache-1' without
3492 ;; worrying further about macros and template delimiters.
3493 (if (eval-when-compile (memq 'category-properties c-emacs-features))
3494 ;; Emacs
3495 (c-with-<->-as-parens-suppressed
3496 (if (and c-state-old-cpp-beg
3497 (< c-state-old-cpp-beg here))
3498 (c-with-all-but-one-cpps-commented-out
3499 c-state-old-cpp-beg
3500 c-state-old-cpp-end
3501 (c-invalidate-state-cache-1 here))
3502 (c-with-cpps-commented-out
3503 (c-invalidate-state-cache-1 here))))
3504 ;; XEmacs
3505 (c-invalidate-state-cache-1 here)))
3506
3507 (defmacro c-state-maybe-marker (place marker)
3508 ;; If PLACE is non-nil, return a marker marking it, otherwise nil.
3509 ;; We (re)use MARKER.
3510 `(and ,place
3511 (or ,marker (setq ,marker (make-marker)))
3512 (set-marker ,marker ,place)))
3513
3514 (defun c-parse-state ()
3515 ;; This is a wrapper over `c-parse-state-1'. See that function for a
3516 ;; description of the functionality and return value.
3517 ;;
3518 ;; It suppresses the syntactic effect of the < and > (template) brackets and
3519 ;; of all parens in preprocessor constructs, except for any such construct
3520 ;; containing point. We can then call `c-parse-state-1' without worrying
3521 ;; further about macros and template delimiters.
3522 (let (here-cpp-beg here-cpp-end)
3523 (save-excursion
3524 (when (c-beginning-of-macro)
3525 (setq here-cpp-beg (point))
3526 (unless
3527 (> (setq here-cpp-end (c-syntactic-end-of-macro))
3528 here-cpp-beg)
3529 (setq here-cpp-beg nil here-cpp-end nil))))
3530 ;; FIXME!!! Put in a `condition-case' here to protect the integrity of the
3531 ;; subsystem.
3532 (prog1
3533 (if (eval-when-compile (memq 'category-properties c-emacs-features))
3534 ;; Emacs
3535 (c-with-<->-as-parens-suppressed
3536 (if (and here-cpp-beg (> here-cpp-end here-cpp-beg))
3537 (c-with-all-but-one-cpps-commented-out
3538 here-cpp-beg here-cpp-end
3539 (c-parse-state-1))
3540 (c-with-cpps-commented-out
3541 (c-parse-state-1))))
3542 ;; XEmacs
3543 (c-parse-state-1))
3544 (setq c-state-old-cpp-beg
3545 (c-state-maybe-marker here-cpp-beg c-state-old-cpp-beg-marker)
3546 c-state-old-cpp-end
3547 (c-state-maybe-marker here-cpp-end c-state-old-cpp-end-marker)))))
3548
3549 ;; Debug tool to catch cache inconsistencies. This is called from
3550 ;; 000tests.el.
3551 (defvar c-debug-parse-state nil)
3552 (unless (fboundp 'c-real-parse-state)
3553 (fset 'c-real-parse-state (symbol-function 'c-parse-state)))
3554 (cc-bytecomp-defun c-real-parse-state)
3555
3556 (defvar c-parse-state-point nil)
3557 (defvar c-parse-state-state nil)
3558 (make-variable-buffer-local 'c-parse-state-state)
3559 (defun c-record-parse-state-state ()
3560 (setq c-parse-state-point (point))
3561 (when (markerp (cdr (assq 'c-state-old-cpp-beg c-parse-state-state)))
3562 (move-marker (cdr (assq 'c-state-old-cpp-beg c-parse-state-state)) nil)
3563 (move-marker (cdr (assq 'c-state-old-cpp-end c-parse-state-state)) nil))
3564 (setq c-parse-state-state
3565 (mapcar
3566 (lambda (arg)
3567 (let ((val (symbol-value arg)))
3568 (cons arg
3569 (cond ((consp val) (copy-tree val))
3570 ((markerp val) (copy-marker val))
3571 (t val)))))
3572 '(c-state-cache
3573 c-state-cache-good-pos
3574 c-state-nonlit-pos-cache
3575 c-state-nonlit-pos-cache-limit
3576 c-state-semi-nonlit-pos-cache
3577 c-state-semi-nonlit-pos-cache-limit
3578 c-state-brace-pair-desert
3579 c-state-point-min
3580 c-state-point-min-lit-type
3581 c-state-point-min-lit-start
3582 c-state-min-scan-pos
3583 c-state-old-cpp-beg
3584 c-state-old-cpp-end
3585 c-parse-state-point))))
3586 (defun c-replay-parse-state-state ()
3587 (message "%s"
3588 (concat "(setq "
3589 (mapconcat
3590 (lambda (arg)
3591 (format "%s %s%s" (car arg)
3592 (if (atom (cdr arg)) "" "'")
3593 (if (markerp (cdr arg))
3594 (format "(copy-marker %s)" (marker-position (cdr arg)))
3595 (cdr arg))))
3596 c-parse-state-state " ")
3597 ")")))
3598
3599 (defun c-debug-parse-state-double-cons (state)
3600 (let (state-car conses-not-ok)
3601 (while state
3602 (setq state-car (car state)
3603 state (cdr state))
3604 (if (and (consp state-car)
3605 (consp (car state)))
3606 (setq conses-not-ok t)))
3607 conses-not-ok))
3608
3609 (defun c-debug-parse-state ()
3610 (let ((here (point)) (min-point (point-min)) (res1 (c-real-parse-state)) res2)
3611 (let ((c-state-cache nil)
3612 (c-state-cache-good-pos 1)
3613 (c-state-nonlit-pos-cache nil)
3614 (c-state-nonlit-pos-cache-limit 1)
3615 (c-state-brace-pair-desert nil)
3616 (c-state-point-min 1)
3617 (c-state-point-min-lit-type nil)
3618 (c-state-point-min-lit-start nil)
3619 (c-state-min-scan-pos 1)
3620 (c-state-old-cpp-beg nil)
3621 (c-state-old-cpp-end nil))
3622 (setq res2 (c-real-parse-state)))
3623 (unless (equal res1 res2)
3624 ;; The cache can actually go further back due to the ad-hoc way
3625 ;; the first paren is found, so try to whack off a bit of its
3626 ;; start before complaining.
3627 ;; (save-excursion
3628 ;; (goto-char (or (c-least-enclosing-brace res2) (point)))
3629 ;; (c-beginning-of-defun-1)
3630 ;; (while (not (or (bobp) (eq (char-after) ?{)))
3631 ;; (c-beginning-of-defun-1))
3632 ;; (unless (equal (c-whack-state-before (point) res1) res2)
3633 ;; (message (concat "c-parse-state inconsistency at %s: "
3634 ;; "using cache: %s, from scratch: %s")
3635 ;; here res1 res2)))
3636 (message (concat "c-parse-state inconsistency at %s: "
3637 "using cache: %s, from scratch: %s. POINT-MIN: %s")
3638 here res1 res2 min-point)
3639 (message "Old state:")
3640 (c-replay-parse-state-state))
3641
3642 (when (c-debug-parse-state-double-cons res1)
3643 (message "c-parse-state INVALIDITY at %s: %s"
3644 here res1)
3645 (message "Old state:")
3646 (c-replay-parse-state-state))
3647
3648 (c-record-parse-state-state)
3649 res2 ; res1 correct a cascading series of errors ASAP
3650 ))
3651
3652 (defun c-toggle-parse-state-debug (&optional arg)
3653 (interactive "P")
3654 (setq c-debug-parse-state (c-calculate-state arg c-debug-parse-state))
3655 (fset 'c-parse-state (symbol-function (if c-debug-parse-state
3656 'c-debug-parse-state
3657 'c-real-parse-state)))
3658 (c-keep-region-active)
3659 (message "c-debug-parse-state %sabled"
3660 (if c-debug-parse-state "en" "dis")))
3661 (when c-debug-parse-state
3662 (c-toggle-parse-state-debug 1))
3663
3664 \f
3665 (defun c-whack-state-before (bufpos paren-state)
3666 ;; Whack off any state information from PAREN-STATE which lies
3667 ;; before BUFPOS. Not destructive on PAREN-STATE.
3668 (let* ((newstate (list nil))
3669 (ptr newstate)
3670 car)
3671 (while paren-state
3672 (setq car (car paren-state)
3673 paren-state (cdr paren-state))
3674 (if (< (if (consp car) (car car) car) bufpos)
3675 (setq paren-state nil)
3676 (setcdr ptr (list car))
3677 (setq ptr (cdr ptr))))
3678 (cdr newstate)))
3679
3680 (defun c-whack-state-after (bufpos paren-state)
3681 ;; Whack off any state information from PAREN-STATE which lies at or
3682 ;; after BUFPOS. Not destructive on PAREN-STATE.
3683 (catch 'done
3684 (while paren-state
3685 (let ((car (car paren-state)))
3686 (if (consp car)
3687 ;; just check the car, because in a balanced brace
3688 ;; expression, it must be impossible for the corresponding
3689 ;; close brace to be before point, but the open brace to
3690 ;; be after.
3691 (if (<= bufpos (car car))
3692 nil ; whack it off
3693 (if (< bufpos (cdr car))
3694 ;; its possible that the open brace is before
3695 ;; bufpos, but the close brace is after. In that
3696 ;; case, convert this to a non-cons element. The
3697 ;; rest of the state is before bufpos, so we're
3698 ;; done.
3699 (throw 'done (cons (car car) (cdr paren-state)))
3700 ;; we know that both the open and close braces are
3701 ;; before bufpos, so we also know that everything else
3702 ;; on state is before bufpos.
3703 (throw 'done paren-state)))
3704 (if (<= bufpos car)
3705 nil ; whack it off
3706 ;; it's before bufpos, so everything else should too.
3707 (throw 'done paren-state)))
3708 (setq paren-state (cdr paren-state)))
3709 nil)))
3710
3711 (defun c-most-enclosing-brace (paren-state &optional bufpos)
3712 ;; Return the bufpos of the innermost enclosing open paren before
3713 ;; bufpos, or nil if none was found.
3714 (let (enclosingp)
3715 (or bufpos (setq bufpos 134217727))
3716 (while paren-state
3717 (setq enclosingp (car paren-state)
3718 paren-state (cdr paren-state))
3719 (if (or (consp enclosingp)
3720 (>= enclosingp bufpos))
3721 (setq enclosingp nil)
3722 (setq paren-state nil)))
3723 enclosingp))
3724
3725 (defun c-least-enclosing-brace (paren-state)
3726 ;; Return the bufpos of the outermost enclosing open paren, or nil
3727 ;; if none was found.
3728 (let (pos elem)
3729 (while paren-state
3730 (setq elem (car paren-state)
3731 paren-state (cdr paren-state))
3732 (if (integerp elem)
3733 (setq pos elem)))
3734 pos))
3735
3736 (defun c-safe-position (bufpos paren-state)
3737 ;; Return the closest "safe" position recorded on PAREN-STATE that
3738 ;; is higher up than BUFPOS. Return nil if PAREN-STATE doesn't
3739 ;; contain any. Return nil if BUFPOS is nil, which is useful to
3740 ;; find the closest limit before a given limit that might be nil.
3741 ;;
3742 ;; A "safe" position is a position at or after a recorded open
3743 ;; paren, or after a recorded close paren. The returned position is
3744 ;; thus either the first position after a close brace, or the first
3745 ;; position after an enclosing paren, or at the enclosing paren in
3746 ;; case BUFPOS is immediately after it.
3747 (when bufpos
3748 (let (elem)
3749 (catch 'done
3750 (while paren-state
3751 (setq elem (car paren-state))
3752 (if (consp elem)
3753 (cond ((< (cdr elem) bufpos)
3754 (throw 'done (cdr elem)))
3755 ((< (car elem) bufpos)
3756 ;; See below.
3757 (throw 'done (min (1+ (car elem)) bufpos))))
3758 (if (< elem bufpos)
3759 ;; elem is the position at and not after the opening paren, so
3760 ;; we can go forward one more step unless it's equal to
3761 ;; bufpos. This is useful in some cases avoid an extra paren
3762 ;; level between the safe position and bufpos.
3763 (throw 'done (min (1+ elem) bufpos))))
3764 (setq paren-state (cdr paren-state)))))))
3765
3766 (defun c-beginning-of-syntax ()
3767 ;; This is used for `font-lock-beginning-of-syntax-function'. It
3768 ;; goes to the closest previous point that is known to be outside
3769 ;; any string literal or comment. `c-state-cache' is used if it has
3770 ;; a position in the vicinity.
3771 (let* ((paren-state c-state-cache)
3772 elem
3773
3774 (pos (catch 'done
3775 ;; Note: Similar code in `c-safe-position'. The
3776 ;; difference is that we accept a safe position at
3777 ;; the point and don't bother to go forward past open
3778 ;; parens.
3779 (while paren-state
3780 (setq elem (car paren-state))
3781 (if (consp elem)
3782 (cond ((<= (cdr elem) (point))
3783 (throw 'done (cdr elem)))
3784 ((<= (car elem) (point))
3785 (throw 'done (car elem))))
3786 (if (<= elem (point))
3787 (throw 'done elem)))
3788 (setq paren-state (cdr paren-state)))
3789 (point-min))))
3790
3791 (if (> pos (- (point) 4000))
3792 (goto-char pos)
3793 ;; The position is far back. Try `c-beginning-of-defun-1'
3794 ;; (although we can't be entirely sure it will go to a position
3795 ;; outside a comment or string in current emacsen). FIXME:
3796 ;; Consult `syntax-ppss' here.
3797 (c-beginning-of-defun-1)
3798 (if (< (point) pos)
3799 (goto-char pos)))))
3800
3801 \f
3802 ;; Tools for scanning identifiers and other tokens.
3803
3804 (defun c-on-identifier ()
3805 "Return non-nil if the point is on or directly after an identifier.
3806 Keywords are recognized and not considered identifiers. If an
3807 identifier is detected, the returned value is its starting position.
3808 If an identifier ends at the point and another begins at it \(can only
3809 happen in Pike) then the point for the preceding one is returned.
3810
3811 Note that this function might do hidden buffer changes. See the
3812 comment at the start of cc-engine.el for more info."
3813
3814 ;; FIXME: Shouldn't this function handle "operator" in C++?
3815
3816 (save-excursion
3817 (skip-syntax-backward "w_")
3818
3819 (or
3820
3821 ;; Check for a normal (non-keyword) identifier.
3822 (and (looking-at c-symbol-start)
3823 (not (looking-at c-keywords-regexp))
3824 (point))
3825
3826 (when (c-major-mode-is 'pike-mode)
3827 ;; Handle the `<operator> syntax in Pike.
3828 (let ((pos (point)))
3829 (skip-chars-backward "-!%&*+/<=>^|~[]()")
3830 (and (if (< (skip-chars-backward "`") 0)
3831 t
3832 (goto-char pos)
3833 (eq (char-after) ?\`))
3834 (looking-at c-symbol-key)
3835 (>= (match-end 0) pos)
3836 (point))))
3837
3838 ;; Handle the "operator +" syntax in C++.
3839 (when (and c-overloadable-operators-regexp
3840 (= (c-backward-token-2 0) 0))
3841
3842 (cond ((and (looking-at c-overloadable-operators-regexp)
3843 (or (not c-opt-op-identifier-prefix)
3844 (and (= (c-backward-token-2 1) 0)
3845 (looking-at c-opt-op-identifier-prefix))))
3846 (point))
3847
3848 ((save-excursion
3849 (and c-opt-op-identifier-prefix
3850 (looking-at c-opt-op-identifier-prefix)
3851 (= (c-forward-token-2 1) 0)
3852 (looking-at c-overloadable-operators-regexp)))
3853 (point))))
3854
3855 )))
3856
3857 (defsubst c-simple-skip-symbol-backward ()
3858 ;; If the point is at the end of a symbol then skip backward to the
3859 ;; beginning of it. Don't move otherwise. Return non-nil if point
3860 ;; moved.
3861 ;;
3862 ;; This function might do hidden buffer changes.
3863 (or (< (skip-syntax-backward "w_") 0)
3864 (and (c-major-mode-is 'pike-mode)
3865 ;; Handle the `<operator> syntax in Pike.
3866 (let ((pos (point)))
3867 (if (and (< (skip-chars-backward "-!%&*+/<=>^|~[]()") 0)
3868 (< (skip-chars-backward "`") 0)
3869 (looking-at c-symbol-key)
3870 (>= (match-end 0) pos))
3871 t
3872 (goto-char pos)
3873 nil)))))
3874
3875 (defun c-beginning-of-current-token (&optional back-limit)
3876 ;; Move to the beginning of the current token. Do not move if not
3877 ;; in the middle of one. BACK-LIMIT may be used to bound the
3878 ;; backward search; if given it's assumed to be at the boundary
3879 ;; between two tokens. Return non-nil if the point is moved, nil
3880 ;; otherwise.
3881 ;;
3882 ;; This function might do hidden buffer changes.
3883 (let ((start (point)))
3884 (if (looking-at "\\w\\|\\s_")
3885 (skip-syntax-backward "w_" back-limit)
3886 (when (< (skip-syntax-backward ".()" back-limit) 0)
3887 (while (let ((pos (or (and (looking-at c-nonsymbol-token-regexp)
3888 (match-end 0))
3889 ;; `c-nonsymbol-token-regexp' should always match
3890 ;; since we've skipped backward over punctuation
3891 ;; or paren syntax, but consume one char in case
3892 ;; it doesn't so that we don't leave point before
3893 ;; some earlier incorrect token.
3894 (1+ (point)))))
3895 (if (<= pos start)
3896 (goto-char pos))))))
3897 (< (point) start)))
3898
3899 (defun c-end-of-current-token (&optional back-limit)
3900 ;; Move to the end of the current token. Do not move if not in the
3901 ;; middle of one. BACK-LIMIT may be used to bound the backward
3902 ;; search; if given it's assumed to be at the boundary between two
3903 ;; tokens. Return non-nil if the point is moved, nil otherwise.
3904 ;;
3905 ;; This function might do hidden buffer changes.
3906 (let ((start (point)))
3907 (cond ((< (skip-syntax-backward "w_" (1- start)) 0)
3908 (skip-syntax-forward "w_"))
3909 ((< (skip-syntax-backward ".()" back-limit) 0)
3910 (while (progn
3911 (if (looking-at c-nonsymbol-token-regexp)
3912 (goto-char (match-end 0))
3913 ;; `c-nonsymbol-token-regexp' should always match since
3914 ;; we've skipped backward over punctuation or paren
3915 ;; syntax, but move forward in case it doesn't so that
3916 ;; we don't leave point earlier than we started with.
3917 (forward-char))
3918 (< (point) start)))))
3919 (> (point) start)))
3920
3921 (defconst c-jump-syntax-balanced
3922 (if (memq 'gen-string-delim c-emacs-features)
3923 "\\w\\|\\s_\\|\\s(\\|\\s)\\|\\s\"\\|\\s|"
3924 "\\w\\|\\s_\\|\\s(\\|\\s)\\|\\s\""))
3925
3926 (defconst c-jump-syntax-unbalanced
3927 (if (memq 'gen-string-delim c-emacs-features)
3928 "\\w\\|\\s_\\|\\s\"\\|\\s|"
3929 "\\w\\|\\s_\\|\\s\""))
3930
3931 (defun c-forward-token-2 (&optional count balanced limit)
3932 "Move forward by tokens.
3933 A token is defined as all symbols and identifiers which aren't
3934 syntactic whitespace \(note that multicharacter tokens like \"==\" are
3935 treated properly). Point is always either left at the beginning of a
3936 token or not moved at all. COUNT specifies the number of tokens to
3937 move; a negative COUNT moves in the opposite direction. A COUNT of 0
3938 moves to the next token beginning only if not already at one. If
3939 BALANCED is true, move over balanced parens, otherwise move into them.
3940 Also, if BALANCED is true, never move out of an enclosing paren.
3941
3942 LIMIT sets the limit for the movement and defaults to the point limit.
3943 The case when LIMIT is set in the middle of a token, comment or macro
3944 is handled correctly, i.e. the point won't be left there.
3945
3946 Return the number of tokens left to move \(positive or negative). If
3947 BALANCED is true, a move over a balanced paren counts as one. Note
3948 that if COUNT is 0 and no appropriate token beginning is found, 1 will
3949 be returned. Thus, a return value of 0 guarantees that point is at
3950 the requested position and a return value less \(without signs) than
3951 COUNT guarantees that point is at the beginning of some token.
3952
3953 Note that this function might do hidden buffer changes. See the
3954 comment at the start of cc-engine.el for more info."
3955
3956 (or count (setq count 1))
3957 (if (< count 0)
3958 (- (c-backward-token-2 (- count) balanced limit))
3959
3960 (let ((jump-syntax (if balanced
3961 c-jump-syntax-balanced
3962 c-jump-syntax-unbalanced))
3963 (last (point))
3964 (prev (point)))
3965
3966 (if (zerop count)
3967 ;; If count is zero we should jump if in the middle of a token.
3968 (c-end-of-current-token))
3969
3970 (save-restriction
3971 (if limit (narrow-to-region (point-min) limit))
3972 (if (/= (point)
3973 (progn (c-forward-syntactic-ws) (point)))
3974 ;; Skip whitespace. Count this as a move if we did in
3975 ;; fact move.
3976 (setq count (max (1- count) 0)))
3977
3978 (if (eobp)
3979 ;; Moved out of bounds. Make sure the returned count isn't zero.
3980 (progn
3981 (if (zerop count) (setq count 1))
3982 (goto-char last))
3983
3984 ;; Use `condition-case' to avoid having the limit tests
3985 ;; inside the loop.
3986 (condition-case nil
3987 (while (and
3988 (> count 0)
3989 (progn
3990 (setq last (point))
3991 (cond ((looking-at jump-syntax)
3992 (goto-char (scan-sexps (point) 1))
3993 t)
3994 ((looking-at c-nonsymbol-token-regexp)
3995 (goto-char (match-end 0))
3996 t)
3997 ;; `c-nonsymbol-token-regexp' above should always
3998 ;; match if there are correct tokens. Try to
3999 ;; widen to see if the limit was set in the
4000 ;; middle of one, else fall back to treating
4001 ;; the offending thing as a one character token.
4002 ((and limit
4003 (save-restriction
4004 (widen)
4005 (looking-at c-nonsymbol-token-regexp)))
4006 nil)
4007 (t
4008 (forward-char)
4009 t))))
4010 (c-forward-syntactic-ws)
4011 (setq prev last
4012 count (1- count)))
4013 (error (goto-char last)))
4014
4015 (when (eobp)
4016 (goto-char prev)
4017 (setq count (1+ count)))))
4018
4019 count)))
4020
4021 (defun c-backward-token-2 (&optional count balanced limit)
4022 "Move backward by tokens.
4023 See `c-forward-token-2' for details."
4024
4025 (or count (setq count 1))
4026 (if (< count 0)
4027 (- (c-forward-token-2 (- count) balanced limit))
4028
4029 (or limit (setq limit (point-min)))
4030 (let ((jump-syntax (if balanced
4031 c-jump-syntax-balanced
4032 c-jump-syntax-unbalanced))
4033 (last (point)))
4034
4035 (if (zerop count)
4036 ;; The count is zero so try to skip to the beginning of the
4037 ;; current token.
4038 (if (> (point)
4039 (progn (c-beginning-of-current-token) (point)))
4040 (if (< (point) limit)
4041 ;; The limit is inside the same token, so return 1.
4042 (setq count 1))
4043
4044 ;; We're not in the middle of a token. If there's
4045 ;; whitespace after the point then we must move backward,
4046 ;; so set count to 1 in that case.
4047 (and (looking-at c-syntactic-ws-start)
4048 ;; If we're looking at a '#' that might start a cpp
4049 ;; directive then we have to do a more elaborate check.
4050 (or (/= (char-after) ?#)
4051 (not c-opt-cpp-prefix)
4052 (save-excursion
4053 (and (= (point)
4054 (progn (beginning-of-line)
4055 (looking-at "[ \t]*")
4056 (match-end 0)))
4057 (or (bobp)
4058 (progn (backward-char)
4059 (not (eq (char-before) ?\\)))))))
4060 (setq count 1))))
4061
4062 ;; Use `condition-case' to avoid having to check for buffer
4063 ;; limits in `backward-char', `scan-sexps' and `goto-char' below.
4064 (condition-case nil
4065 (while (and
4066 (> count 0)
4067 (progn
4068 (c-backward-syntactic-ws)
4069 (backward-char)
4070 (if (looking-at jump-syntax)
4071 (goto-char (scan-sexps (1+ (point)) -1))
4072 ;; This can be very inefficient if there's a long
4073 ;; sequence of operator tokens without any separation.
4074 ;; That doesn't happen in practice, anyway.
4075 (c-beginning-of-current-token))
4076 (>= (point) limit)))
4077 (setq last (point)
4078 count (1- count)))
4079 (error (goto-char last)))
4080
4081 (if (< (point) limit)
4082 (goto-char last))
4083
4084 count)))
4085
4086 (defun c-forward-token-1 (&optional count balanced limit)
4087 "Like `c-forward-token-2' but doesn't treat multicharacter operator
4088 tokens like \"==\" as single tokens, i.e. all sequences of symbol
4089 characters are jumped over character by character. This function is
4090 for compatibility only; it's only a wrapper over `c-forward-token-2'."
4091 (let ((c-nonsymbol-token-regexp "\\s."))
4092 (c-forward-token-2 count balanced limit)))
4093
4094 (defun c-backward-token-1 (&optional count balanced limit)
4095 "Like `c-backward-token-2' but doesn't treat multicharacter operator
4096 tokens like \"==\" as single tokens, i.e. all sequences of symbol
4097 characters are jumped over character by character. This function is
4098 for compatibility only; it's only a wrapper over `c-backward-token-2'."
4099 (let ((c-nonsymbol-token-regexp "\\s."))
4100 (c-backward-token-2 count balanced limit)))
4101
4102 \f
4103 ;; Tools for doing searches restricted to syntactically relevant text.
4104
4105 (defun c-syntactic-re-search-forward (regexp &optional bound noerror
4106 paren-level not-inside-token
4107 lookbehind-submatch)
4108 "Like `re-search-forward', but only report matches that are found
4109 in syntactically significant text. I.e. matches in comments, macros
4110 or string literals are ignored. The start point is assumed to be
4111 outside any comment, macro or string literal, or else the content of
4112 that region is taken as syntactically significant text.
4113
4114 If PAREN-LEVEL is non-nil, an additional restriction is added to
4115 ignore matches in nested paren sexps. The search will also not go
4116 outside the current list sexp, which has the effect that if the point
4117 should be moved to BOUND when no match is found \(i.e. NOERROR is
4118 neither nil nor t), then it will be at the closing paren if the end of
4119 the current list sexp is encountered first.
4120
4121 If NOT-INSIDE-TOKEN is non-nil, matches in the middle of tokens are
4122 ignored. Things like multicharacter operators and special symbols
4123 \(e.g. \"`()\" in Pike) are handled but currently not floating point
4124 constants.
4125
4126 If LOOKBEHIND-SUBMATCH is non-nil, it's taken as a number of a
4127 subexpression in REGEXP. The end of that submatch is used as the
4128 position to check for syntactic significance. If LOOKBEHIND-SUBMATCH
4129 isn't used or if that subexpression didn't match then the start
4130 position of the whole match is used instead. The \"look behind\"
4131 subexpression is never tested before the starting position, so it
4132 might be a good idea to include \\=\\= as a match alternative in it.
4133
4134 Optimization note: Matches might be missed if the \"look behind\"
4135 subexpression can match the end of nonwhite syntactic whitespace,
4136 i.e. the end of comments or cpp directives. This since the function
4137 skips over such things before resuming the search. It's on the other
4138 hand not safe to assume that the \"look behind\" subexpression never
4139 matches syntactic whitespace.
4140
4141 Bug: Unbalanced parens inside cpp directives are currently not handled
4142 correctly \(i.e. they don't get ignored as they should) when
4143 PAREN-LEVEL is set.
4144
4145 Note that this function might do hidden buffer changes. See the
4146 comment at the start of cc-engine.el for more info."
4147
4148 (or bound (setq bound (point-max)))
4149 (if paren-level (setq paren-level -1))
4150
4151 ;;(message "c-syntactic-re-search-forward %s %s %S" (point) bound regexp)
4152
4153 (let ((start (point))
4154 tmp
4155 ;; Start position for the last search.
4156 search-pos
4157 ;; The `parse-partial-sexp' state between the start position
4158 ;; and the point.
4159 state
4160 ;; The current position after the last state update. The next
4161 ;; `parse-partial-sexp' continues from here.
4162 (state-pos (point))
4163 ;; The position at which to check the state and the state
4164 ;; there. This is separate from `state-pos' since we might
4165 ;; need to back up before doing the next search round.
4166 check-pos check-state
4167 ;; Last position known to end a token.
4168 (last-token-end-pos (point-min))
4169 ;; Set when a valid match is found.
4170 found)
4171
4172 (condition-case err
4173 (while
4174 (and
4175 (progn
4176 (setq search-pos (point))
4177 (re-search-forward regexp bound noerror))
4178
4179 (progn
4180 (setq state (parse-partial-sexp
4181 state-pos (match-beginning 0) paren-level nil state)
4182 state-pos (point))
4183 (if (setq check-pos (and lookbehind-submatch
4184 (or (not paren-level)
4185 (>= (car state) 0))
4186 (match-end lookbehind-submatch)))
4187 (setq check-state (parse-partial-sexp
4188 state-pos check-pos paren-level nil state))
4189 (setq check-pos state-pos
4190 check-state state))
4191
4192 ;; NOTE: If we got a look behind subexpression and get
4193 ;; an insignificant match in something that isn't
4194 ;; syntactic whitespace (i.e. strings or in nested
4195 ;; parentheses), then we can never skip more than a
4196 ;; single character from the match start position
4197 ;; (i.e. `state-pos' here) before continuing the
4198 ;; search. That since the look behind subexpression
4199 ;; might match the end of the insignificant region in
4200 ;; the next search.
4201
4202 (cond
4203 ((elt check-state 7)
4204 ;; Match inside a line comment. Skip to eol. Use
4205 ;; `re-search-forward' instead of `skip-chars-forward' to get
4206 ;; the right bound behavior.
4207 (re-search-forward "[\n\r]" bound noerror))
4208
4209 ((elt check-state 4)
4210 ;; Match inside a block comment. Skip to the '*/'.
4211 (search-forward "*/" bound noerror))
4212
4213 ((and (not (elt check-state 5))
4214 (eq (char-before check-pos) ?/)
4215 (not (c-get-char-property (1- check-pos) 'syntax-table))
4216 (memq (char-after check-pos) '(?/ ?*)))
4217 ;; Match in the middle of the opener of a block or line
4218 ;; comment.
4219 (if (= (char-after check-pos) ?/)
4220 (re-search-forward "[\n\r]" bound noerror)
4221 (search-forward "*/" bound noerror)))
4222
4223 ;; The last `parse-partial-sexp' above might have
4224 ;; stopped short of the real check position if the end
4225 ;; of the current sexp was encountered in paren-level
4226 ;; mode. The checks above are always false in that
4227 ;; case, and since they can do better skipping in
4228 ;; lookbehind-submatch mode, we do them before
4229 ;; checking the paren level.
4230
4231 ((and paren-level
4232 (/= (setq tmp (car check-state)) 0))
4233 ;; Check the paren level first since we're short of the
4234 ;; syntactic checking position if the end of the
4235 ;; current sexp was encountered by `parse-partial-sexp'.
4236 (if (> tmp 0)
4237
4238 ;; Inside a nested paren sexp.
4239 (if lookbehind-submatch
4240 ;; See the NOTE above.
4241 (progn (goto-char state-pos) t)
4242 ;; Skip out of the paren quickly.
4243 (setq state (parse-partial-sexp state-pos bound 0 nil state)
4244 state-pos (point)))
4245
4246 ;; Have exited the current paren sexp.
4247 (if noerror
4248 (progn
4249 ;; The last `parse-partial-sexp' call above
4250 ;; has left us just after the closing paren
4251 ;; in this case, so we can modify the bound
4252 ;; to leave the point at the right position
4253 ;; upon return.
4254 (setq bound (1- (point)))
4255 nil)
4256 (signal 'search-failed (list regexp)))))
4257
4258 ((setq tmp (elt check-state 3))
4259 ;; Match inside a string.
4260 (if (or lookbehind-submatch
4261 (not (integerp tmp)))
4262 ;; See the NOTE above.
4263 (progn (goto-char state-pos) t)
4264 ;; Skip to the end of the string before continuing.
4265 (let ((ender (make-string 1 tmp)) (continue t))
4266 (while (if (search-forward ender bound noerror)
4267 (progn
4268 (setq state (parse-partial-sexp
4269 state-pos (point) nil nil state)
4270 state-pos (point))
4271 (elt state 3))
4272 (setq continue nil)))
4273 continue)))
4274
4275 ((save-excursion
4276 (save-match-data
4277 (c-beginning-of-macro start)))
4278 ;; Match inside a macro. Skip to the end of it.
4279 (c-end-of-macro)
4280 (cond ((<= (point) bound) t)
4281 (noerror nil)
4282 (t (signal 'search-failed (list regexp)))))
4283
4284 ((and not-inside-token
4285 (or (< check-pos last-token-end-pos)
4286 (< check-pos
4287 (save-excursion
4288 (goto-char check-pos)
4289 (save-match-data
4290 (c-end-of-current-token last-token-end-pos))
4291 (setq last-token-end-pos (point))))))
4292 ;; Inside a token.
4293 (if lookbehind-submatch
4294 ;; See the NOTE above.
4295 (goto-char state-pos)
4296 (goto-char (min last-token-end-pos bound))))
4297
4298 (t
4299 ;; A real match.
4300 (setq found t)
4301 nil)))
4302
4303 ;; Should loop to search again, but take care to avoid
4304 ;; looping on the same spot.
4305 (or (/= search-pos (point))
4306 (if (= (point) bound)
4307 (if noerror
4308 nil
4309 (signal 'search-failed (list regexp)))
4310 (forward-char)
4311 t))))
4312
4313 (error
4314 (goto-char start)
4315 (signal (car err) (cdr err))))
4316
4317 ;;(message "c-syntactic-re-search-forward done %s" (or (match-end 0) (point)))
4318
4319 (if found
4320 (progn
4321 (goto-char (match-end 0))
4322 (match-end 0))
4323
4324 ;; Search failed. Set point as appropriate.
4325 (if (eq noerror t)
4326 (goto-char start)
4327 (goto-char bound))
4328 nil)))
4329
4330 (defvar safe-pos-list) ; bound in c-syntactic-skip-backward
4331
4332 (defsubst c-ssb-lit-begin ()
4333 ;; Return the start of the literal point is in, or nil.
4334 ;; We read and write the variables `safe-pos', `safe-pos-list', `state'
4335 ;; bound in the caller.
4336
4337 ;; Use `parse-partial-sexp' from a safe position down to the point to check
4338 ;; if it's outside comments and strings.
4339 (save-excursion
4340 (let ((pos (point)) safe-pos state)
4341 ;; Pick a safe position as close to the point as possible.
4342 ;;
4343 ;; FIXME: Consult `syntax-ppss' here if our cache doesn't give a good
4344 ;; position.
4345
4346 (while (and safe-pos-list
4347 (> (car safe-pos-list) (point)))
4348 (setq safe-pos-list (cdr safe-pos-list)))
4349 (unless (setq safe-pos (car-safe safe-pos-list))
4350 (setq safe-pos (max (or (c-safe-position
4351 (point) (c-parse-state))
4352 0)
4353 (point-min))
4354 safe-pos-list (list safe-pos)))
4355
4356 ;; Cache positions along the way to use if we have to back up more. We
4357 ;; cache every closing paren on the same level. If the paren cache is
4358 ;; relevant in this region then we're typically already on the same
4359 ;; level as the target position. Note that we might cache positions
4360 ;; after opening parens in case safe-pos is in a nested list. That's
4361 ;; both uncommon and harmless.
4362 (while (progn
4363 (setq state (parse-partial-sexp
4364 safe-pos pos 0))
4365 (< (point) pos))
4366 (setq safe-pos (point)
4367 safe-pos-list (cons safe-pos safe-pos-list)))
4368
4369 ;; If the state contains the start of the containing sexp we cache that
4370 ;; position too, so that parse-partial-sexp in the next run has a bigger
4371 ;; chance of starting at the same level as the target position and thus
4372 ;; will get more good safe positions into the list.
4373 (if (elt state 1)
4374 (setq safe-pos (1+ (elt state 1))
4375 safe-pos-list (cons safe-pos safe-pos-list)))
4376
4377 (if (or (elt state 3) (elt state 4))
4378 ;; Inside string or comment. Continue search at the
4379 ;; beginning of it.
4380 (elt state 8)))))
4381
4382 (defun c-syntactic-skip-backward (skip-chars &optional limit paren-level)
4383 "Like `skip-chars-backward' but only look at syntactically relevant chars,
4384 i.e. don't stop at positions inside syntactic whitespace or string
4385 literals. Preprocessor directives are also ignored, with the exception
4386 of the one that the point starts within, if any. If LIMIT is given,
4387 it's assumed to be at a syntactically relevant position.
4388
4389 If PAREN-LEVEL is non-nil, the function won't stop in nested paren
4390 sexps, and the search will also not go outside the current paren sexp.
4391 However, if LIMIT or the buffer limit is reached inside a nested paren
4392 then the point will be left at the limit.
4393
4394 Non-nil is returned if the point moved, nil otherwise.
4395
4396 Note that this function might do hidden buffer changes. See the
4397 comment at the start of cc-engine.el for more info."
4398
4399 (c-self-bind-state-cache
4400 (let ((start (point))
4401 state-2
4402 ;; A list of syntactically relevant positions in descending
4403 ;; order. It's used to avoid scanning repeatedly over
4404 ;; potentially large regions with `parse-partial-sexp' to verify
4405 ;; each position. Used in `c-ssb-lit-begin'
4406 safe-pos-list
4407 ;; The result from `c-beginning-of-macro' at the start position or the
4408 ;; start position itself if it isn't within a macro. Evaluated on
4409 ;; demand.
4410 start-macro-beg
4411 ;; The earliest position after the current one with the same paren
4412 ;; level. Used only when `paren-level' is set.
4413 lit-beg
4414 (paren-level-pos (point)))
4415
4416 (while
4417 (progn
4418 ;; The next loop "tries" to find the end point each time round,
4419 ;; loops when it hasn't succeeded.
4420 (while
4421 (and
4422 (let ((pos (point)))
4423 (while (and
4424 (< (skip-chars-backward skip-chars limit) 0)
4425 ;; Don't stop inside a literal.
4426 (when (setq lit-beg (c-ssb-lit-begin))
4427 (goto-char lit-beg)
4428 t)))
4429 (< (point) pos))
4430
4431 (let ((pos (point)) state-2 pps-end-pos)
4432
4433 (cond
4434 ((and paren-level
4435 (save-excursion
4436 (setq state-2 (parse-partial-sexp
4437 pos paren-level-pos -1)
4438 pps-end-pos (point))
4439 (/= (car state-2) 0)))
4440 ;; Not at the right level.
4441
4442 (if (and (< (car state-2) 0)
4443 ;; We stop above if we go out of a paren.
4444 ;; Now check whether it precedes or is
4445 ;; nested in the starting sexp.
4446 (save-excursion
4447 (setq state-2
4448 (parse-partial-sexp
4449 pps-end-pos paren-level-pos
4450 nil nil state-2))
4451 (< (car state-2) 0)))
4452
4453 ;; We've stopped short of the starting position
4454 ;; so the hit was inside a nested list. Go up
4455 ;; until we are at the right level.
4456 (condition-case nil
4457 (progn
4458 (goto-char (scan-lists pos -1
4459 (- (car state-2))))
4460 (setq paren-level-pos (point))
4461 (if (and limit (>= limit paren-level-pos))
4462 (progn
4463 (goto-char limit)
4464 nil)
4465 t))
4466 (error
4467 (goto-char (or limit (point-min)))
4468 nil))
4469
4470 ;; The hit was outside the list at the start
4471 ;; position. Go to the start of the list and exit.
4472 (goto-char (1+ (elt state-2 1)))
4473 nil))
4474
4475 ((c-beginning-of-macro limit)
4476 ;; Inside a macro.
4477 (if (< (point)
4478 (or start-macro-beg
4479 (setq start-macro-beg
4480 (save-excursion
4481 (goto-char start)
4482 (c-beginning-of-macro limit)
4483 (point)))))
4484 t
4485
4486 ;; It's inside the same macro we started in so it's
4487 ;; a relevant match.
4488 (goto-char pos)
4489 nil))))))
4490
4491 (> (point)
4492 (progn
4493 ;; Skip syntactic ws afterwards so that we don't stop at the
4494 ;; end of a comment if `skip-chars' is something like "^/".
4495 (c-backward-syntactic-ws)
4496 (point)))))
4497
4498 ;; We might want to extend this with more useful return values in
4499 ;; the future.
4500 (/= (point) start))))
4501
4502 ;; The following is an alternative implementation of
4503 ;; `c-syntactic-skip-backward' that uses backward movement to keep
4504 ;; track of the syntactic context. It turned out to be generally
4505 ;; slower than the one above which uses forward checks from earlier
4506 ;; safe positions.
4507 ;;
4508 ;;(defconst c-ssb-stop-re
4509 ;; ;; The regexp matching chars `c-syntactic-skip-backward' needs to
4510 ;; ;; stop at to avoid going into comments and literals.
4511 ;; (concat
4512 ;; ;; Match comment end syntax and string literal syntax. Also match
4513 ;; ;; '/' for block comment endings (not covered by comment end
4514 ;; ;; syntax).
4515 ;; "\\s>\\|/\\|\\s\""
4516 ;; (if (memq 'gen-string-delim c-emacs-features)
4517 ;; "\\|\\s|"
4518 ;; "")
4519 ;; (if (memq 'gen-comment-delim c-emacs-features)
4520 ;; "\\|\\s!"
4521 ;; "")))
4522 ;;
4523 ;;(defconst c-ssb-stop-paren-re
4524 ;; ;; Like `c-ssb-stop-re' but also stops at paren chars.
4525 ;; (concat c-ssb-stop-re "\\|\\s(\\|\\s)"))
4526 ;;
4527 ;;(defconst c-ssb-sexp-end-re
4528 ;; ;; Regexp matching the ending syntax of a complex sexp.
4529 ;; (concat c-string-limit-regexp "\\|\\s)"))
4530 ;;
4531 ;;(defun c-syntactic-skip-backward (skip-chars &optional limit paren-level)
4532 ;; "Like `skip-chars-backward' but only look at syntactically relevant chars,
4533 ;;i.e. don't stop at positions inside syntactic whitespace or string
4534 ;;literals. Preprocessor directives are also ignored. However, if the
4535 ;;point is within a comment, string literal or preprocessor directory to
4536 ;;begin with, its contents is treated as syntactically relevant chars.
4537 ;;If LIMIT is given, it limits the backward search and the point will be
4538 ;;left there if no earlier position is found.
4539 ;;
4540 ;;If PAREN-LEVEL is non-nil, the function won't stop in nested paren
4541 ;;sexps, and the search will also not go outside the current paren sexp.
4542 ;;However, if LIMIT or the buffer limit is reached inside a nested paren
4543 ;;then the point will be left at the limit.
4544 ;;
4545 ;;Non-nil is returned if the point moved, nil otherwise.
4546 ;;
4547 ;;Note that this function might do hidden buffer changes. See the
4548 ;;comment at the start of cc-engine.el for more info."
4549 ;;
4550 ;; (save-restriction
4551 ;; (when limit
4552 ;; (narrow-to-region limit (point-max)))
4553 ;;
4554 ;; (let ((start (point)))
4555 ;; (catch 'done
4556 ;; (while (let ((last-pos (point))
4557 ;; (stop-pos (progn
4558 ;; (skip-chars-backward skip-chars)
4559 ;; (point))))
4560 ;;
4561 ;; ;; Skip back over the same region as
4562 ;; ;; `skip-chars-backward' above, but keep to
4563 ;; ;; syntactically relevant positions.
4564 ;; (goto-char last-pos)
4565 ;; (while (and
4566 ;; ;; `re-search-backward' with a single char regexp
4567 ;; ;; should be fast.
4568 ;; (re-search-backward
4569 ;; (if paren-level c-ssb-stop-paren-re c-ssb-stop-re)
4570 ;; stop-pos 'move)
4571 ;;
4572 ;; (progn
4573 ;; (cond
4574 ;; ((looking-at "\\s(")
4575 ;; ;; `paren-level' is set and we've found the
4576 ;; ;; start of the containing paren.
4577 ;; (forward-char)
4578 ;; (throw 'done t))
4579 ;;
4580 ;; ((looking-at c-ssb-sexp-end-re)
4581 ;; ;; We're at the end of a string literal or paren
4582 ;; ;; sexp (if `paren-level' is set).
4583 ;; (forward-char)
4584 ;; (condition-case nil
4585 ;; (c-backward-sexp)
4586 ;; (error
4587 ;; (goto-char limit)
4588 ;; (throw 'done t))))
4589 ;;
4590 ;; (t
4591 ;; (forward-char)
4592 ;; ;; At the end of some syntactic ws or possibly
4593 ;; ;; after a plain '/' operator.
4594 ;; (let ((pos (point)))
4595 ;; (c-backward-syntactic-ws)
4596 ;; (if (= pos (point))
4597 ;; ;; Was a plain '/' operator. Go past it.
4598 ;; (backward-char)))))
4599 ;;
4600 ;; (> (point) stop-pos))))
4601 ;;
4602 ;; ;; Now the point is either at `stop-pos' or at some
4603 ;; ;; position further back if `stop-pos' was at a
4604 ;; ;; syntactically irrelevant place.
4605 ;;
4606 ;; ;; Skip additional syntactic ws so that we don't stop
4607 ;; ;; at the end of a comment if `skip-chars' is
4608 ;; ;; something like "^/".
4609 ;; (c-backward-syntactic-ws)
4610 ;;
4611 ;; (< (point) stop-pos))))
4612 ;;
4613 ;; ;; We might want to extend this with more useful return values
4614 ;; ;; in the future.
4615 ;; (/= (point) start))))
4616
4617 \f
4618 ;; Tools for handling comments and string literals.
4619
4620 (defun c-in-literal (&optional lim detect-cpp)
4621 "Return the type of literal point is in, if any.
4622 The return value is `c' if in a C-style comment, `c++' if in a C++
4623 style comment, `string' if in a string literal, `pound' if DETECT-CPP
4624 is non-nil and in a preprocessor line, or nil if somewhere else.
4625 Optional LIM is used as the backward limit of the search. If omitted,
4626 or nil, `c-beginning-of-defun' is used.
4627
4628 The last point calculated is cached if the cache is enabled, i.e. if
4629 `c-in-literal-cache' is bound to a two element vector.
4630
4631 Note that this function might do hidden buffer changes. See the
4632 comment at the start of cc-engine.el for more info."
4633 (save-restriction
4634 (widen)
4635 (let* ((safe-place (c-state-semi-safe-place (point)))
4636 (lit (c-state-pp-to-literal safe-place (point))))
4637 (or (cadr lit)
4638 (and detect-cpp
4639 (save-excursion (c-beginning-of-macro))
4640 'pound)))))
4641
4642 (defun c-literal-limits (&optional lim near not-in-delimiter)
4643 "Return a cons of the beginning and end positions of the comment or
4644 string surrounding point (including both delimiters), or nil if point
4645 isn't in one. If LIM is non-nil, it's used as the \"safe\" position
4646 to start parsing from. If NEAR is non-nil, then the limits of any
4647 literal next to point is returned. \"Next to\" means there's only
4648 spaces and tabs between point and the literal. The search for such a
4649 literal is done first in forward direction. If NOT-IN-DELIMITER is
4650 non-nil, the case when point is inside a starting delimiter won't be
4651 recognized. This only has effect for comments which have starting
4652 delimiters with more than one character.
4653
4654 Note that this function might do hidden buffer changes. See the
4655 comment at the start of cc-engine.el for more info."
4656
4657 (save-excursion
4658 (let* ((pos (point))
4659 (lim (or lim (c-state-semi-safe-place pos)))
4660 (pp-to-lit (save-restriction
4661 (widen)
4662 (c-state-pp-to-literal lim pos not-in-delimiter)))
4663 (state (car pp-to-lit))
4664 (lit-limits (car (cddr pp-to-lit))))
4665
4666 (cond
4667 (lit-limits)
4668
4669 (near
4670 (goto-char pos)
4671 ;; Search forward for a literal.
4672 (skip-chars-forward " \t")
4673 (cond
4674 ((looking-at c-string-limit-regexp) ; String.
4675 (cons (point) (or (c-safe (c-forward-sexp 1) (point))
4676 (point-max))))
4677
4678 ((looking-at c-comment-start-regexp) ; Line or block comment.
4679 (cons (point) (progn (c-forward-single-comment) (point))))
4680
4681 (t
4682 ;; Search backward.
4683 (skip-chars-backward " \t")
4684
4685 (let ((end (point)) beg)
4686 (cond
4687 ((save-excursion
4688 (< (skip-syntax-backward c-string-syntax) 0)) ; String.
4689 (setq beg (c-safe (c-backward-sexp 1) (point))))
4690
4691 ((and (c-safe (forward-char -2) t)
4692 (looking-at "*/"))
4693 ;; Block comment. Due to the nature of line
4694 ;; comments, they will always be covered by the
4695 ;; normal case above.
4696 (goto-char end)
4697 (c-backward-single-comment)
4698 ;; If LIM is bogus, beg will be bogus.
4699 (setq beg (point))))
4700
4701 (if beg (cons beg end))))))
4702 ))))
4703
4704 ;; In case external callers use this; it did have a docstring.
4705 (defalias 'c-literal-limits-fast 'c-literal-limits)
4706
4707 (defun c-collect-line-comments (range)
4708 "If the argument is a cons of two buffer positions (such as returned by
4709 `c-literal-limits'), and that range contains a C++ style line comment,
4710 then an extended range is returned that contains all adjacent line
4711 comments (i.e. all comments that starts in the same column with no
4712 empty lines or non-whitespace characters between them). Otherwise the
4713 argument is returned.
4714
4715 Note that this function might do hidden buffer changes. See the
4716 comment at the start of cc-engine.el for more info."
4717
4718 (save-excursion
4719 (condition-case nil
4720 (if (and (consp range) (progn
4721 (goto-char (car range))
4722 (looking-at c-line-comment-starter)))
4723 (let ((col (current-column))
4724 (beg (point))
4725 (bopl (c-point 'bopl))
4726 (end (cdr range)))
4727 ;; Got to take care in the backward direction to handle
4728 ;; comments which are preceded by code.
4729 (while (and (c-backward-single-comment)
4730 (>= (point) bopl)
4731 (looking-at c-line-comment-starter)
4732 (= col (current-column)))
4733 (setq beg (point)
4734 bopl (c-point 'bopl)))
4735 (goto-char end)
4736 (while (and (progn (skip-chars-forward " \t")
4737 (looking-at c-line-comment-starter))
4738 (= col (current-column))
4739 (prog1 (zerop (forward-line 1))
4740 (setq end (point)))))
4741 (cons beg end))
4742 range)
4743 (error range))))
4744
4745 (defun c-literal-type (range)
4746 "Convenience function that given the result of `c-literal-limits',
4747 returns nil or the type of literal that the range surrounds, one
4748 of the symbols `c', `c++' or `string'. It's much faster than using
4749 `c-in-literal' and is intended to be used when you need both the
4750 type of a literal and its limits.
4751
4752 Note that this function might do hidden buffer changes. See the
4753 comment at the start of cc-engine.el for more info."
4754
4755 (if (consp range)
4756 (save-excursion
4757 (goto-char (car range))
4758 (cond ((looking-at c-string-limit-regexp) 'string)
4759 ((or (looking-at "//") ; c++ line comment
4760 (and (looking-at "\\s<") ; comment starter
4761 (looking-at "#"))) ; awk comment.
4762 'c++)
4763 (t 'c))) ; Assuming the range is valid.
4764 range))
4765
4766 (defsubst c-determine-limit-get-base (start try-size)
4767 ;; Get a "safe place" approximately TRY-SIZE characters before START.
4768 ;; This doesn't preserve point.
4769 (let* ((pos (max (- start try-size) (point-min)))
4770 (base (c-state-semi-safe-place pos))
4771 (s (parse-partial-sexp base pos)))
4772 (if (or (nth 4 s) (nth 3 s)) ; comment or string
4773 (nth 8 s)
4774 (point))))
4775
4776 (defun c-determine-limit (how-far-back &optional start try-size)
4777 ;; Return a buffer position HOW-FAR-BACK non-literal characters from START
4778 ;; (default point). This is done by going back further in the buffer then
4779 ;; searching forward for literals. The position found won't be in a
4780 ;; literal. We start searching for the sought position TRY-SIZE (default
4781 ;; twice HOW-FAR-BACK) bytes back from START. This function must be fast.
4782 ;; :-)
4783 (save-excursion
4784 (let* ((start (or start (point)))
4785 (try-size (or try-size (* 2 how-far-back)))
4786 (base (c-determine-limit-get-base start try-size))
4787 (pos base)
4788
4789 (s (parse-partial-sexp pos pos)) ; null state.
4790 stack elt size
4791 (count 0))
4792 (while (< pos start)
4793 ;; Move forward one literal each time round this loop.
4794 ;; Move forward to the start of a comment or string.
4795 (setq s (parse-partial-sexp
4796 pos
4797 start
4798 nil ; target-depth
4799 nil ; stop-before
4800 s ; state
4801 'syntax-table)) ; stop-comment
4802
4803 ;; Gather details of the non-literal-bit - starting pos and size.
4804 (setq size (- (if (or (nth 4 s) (nth 3 s))
4805 (nth 8 s)
4806 (point))
4807 pos))
4808 (if (> size 0)
4809 (setq stack (cons (cons pos size) stack)))
4810
4811 ;; Move forward to the end of the comment/string.
4812 (if (or (nth 4 s) (nth 3 s))
4813 (setq s (parse-partial-sexp
4814 (point)
4815 start
4816 nil ; target-depth
4817 nil ; stop-before
4818 s ; state
4819 'syntax-table))) ; stop-comment
4820 (setq pos (point)))
4821
4822 ;; Now try and find enough non-literal characters recorded on the stack.
4823 ;; Go back one recorded literal each time round this loop.
4824 (while (and (< count how-far-back)
4825 stack)
4826 (setq elt (car stack)
4827 stack (cdr stack))
4828 (setq count (+ count (cdr elt))))
4829
4830 ;; Have we found enough yet?
4831 (cond
4832 ((>= count how-far-back)
4833 (+ (car elt) (- count how-far-back)))
4834 ((eq base (point-min))
4835 (point-min))
4836 (t
4837 (c-determine-limit (- how-far-back count) base try-size))))))
4838
4839 (defun c-determine-+ve-limit (how-far &optional start-pos)
4840 ;; Return a buffer position about HOW-FAR non-literal characters forward
4841 ;; from START-POS (default point), which must not be inside a literal.
4842 (save-excursion
4843 (let ((pos (or start-pos (point)))
4844 (count how-far)
4845 (s (parse-partial-sexp (point) (point)))) ; null state
4846 (while (and (not (eobp))
4847 (> count 0))
4848 ;; Scan over counted characters.
4849 (setq s (parse-partial-sexp
4850 pos
4851 (min (+ pos count) (point-max))
4852 nil ; target-depth
4853 nil ; stop-before
4854 s ; state
4855 'syntax-table)) ; stop-comment
4856 (setq count (- count (- (point) pos) 1)
4857 pos (point))
4858 ;; Scan over literal characters.
4859 (if (nth 8 s)
4860 (setq s (parse-partial-sexp
4861 pos
4862 (point-max)
4863 nil ; target-depth
4864 nil ; stop-before
4865 s ; state
4866 'syntax-table) ; stop-comment
4867 pos (point))))
4868 (point))))
4869
4870 \f
4871 ;; `c-find-decl-spots' and accompanying stuff.
4872
4873 ;; Variables used in `c-find-decl-spots' to cache the search done for
4874 ;; the first declaration in the last call. When that function starts,
4875 ;; it needs to back up over syntactic whitespace to look at the last
4876 ;; token before the region being searched. That can sometimes cause
4877 ;; moves back and forth over a quite large region of comments and
4878 ;; macros, which would be repeated for each changed character when
4879 ;; we're called during fontification, since font-lock refontifies the
4880 ;; current line for each change. Thus it's worthwhile to cache the
4881 ;; first match.
4882 ;;
4883 ;; `c-find-decl-syntactic-pos' is a syntactically relevant position in
4884 ;; the syntactic whitespace less or equal to some start position.
4885 ;; There's no cached value if it's nil.
4886 ;;
4887 ;; `c-find-decl-match-pos' is the match position if
4888 ;; `c-find-decl-prefix-search' matched before the syntactic whitespace
4889 ;; at `c-find-decl-syntactic-pos', or nil if there's no such match.
4890 (defvar c-find-decl-syntactic-pos nil)
4891 (make-variable-buffer-local 'c-find-decl-syntactic-pos)
4892 (defvar c-find-decl-match-pos nil)
4893 (make-variable-buffer-local 'c-find-decl-match-pos)
4894
4895 (defsubst c-invalidate-find-decl-cache (change-min-pos)
4896 (and c-find-decl-syntactic-pos
4897 (< change-min-pos c-find-decl-syntactic-pos)
4898 (setq c-find-decl-syntactic-pos nil)))
4899
4900 ; (defface c-debug-decl-spot-face
4901 ; '((t (:background "Turquoise")))
4902 ; "Debug face to mark the spots where `c-find-decl-spots' stopped.")
4903 ; (defface c-debug-decl-sws-face
4904 ; '((t (:background "Khaki")))
4905 ; "Debug face to mark the syntactic whitespace between the declaration
4906 ; spots and the preceding token end.")
4907
4908 (defmacro c-debug-put-decl-spot-faces (match-pos decl-pos)
4909 (when (facep 'c-debug-decl-spot-face)
4910 `(c-save-buffer-state ((match-pos ,match-pos) (decl-pos ,decl-pos))
4911 (c-debug-add-face (max match-pos (point-min)) decl-pos
4912 'c-debug-decl-sws-face)
4913 (c-debug-add-face decl-pos (min (1+ decl-pos) (point-max))
4914 'c-debug-decl-spot-face))))
4915 (defmacro c-debug-remove-decl-spot-faces (beg end)
4916 (when (facep 'c-debug-decl-spot-face)
4917 `(c-save-buffer-state ()
4918 (c-debug-remove-face ,beg ,end 'c-debug-decl-spot-face)
4919 (c-debug-remove-face ,beg ,end 'c-debug-decl-sws-face))))
4920
4921 (defmacro c-find-decl-prefix-search ()
4922 ;; Macro used inside `c-find-decl-spots'. It ought to be a defun,
4923 ;; but it contains lots of free variables that refer to things
4924 ;; inside `c-find-decl-spots'. The point is left at `cfd-match-pos'
4925 ;; if there is a match, otherwise at `cfd-limit'.
4926 ;;
4927 ;; The macro moves point forward to the next putative start of a declaration
4928 ;; or cfd-limit. This decl start is the next token after a "declaration
4929 ;; prefix". The declaration prefix is the earlier of `cfd-prop-match' and
4930 ;; `cfd-re-match'. `cfd-match-pos' is set to the decl prefix.
4931 ;;
4932 ;; This macro might do hidden buffer changes.
4933
4934 '(progn
4935 ;; Find the next property match position if we haven't got one already.
4936 (unless cfd-prop-match
4937 (save-excursion
4938 (while (progn
4939 (goto-char (c-next-single-property-change
4940 (point) 'c-type nil cfd-limit))
4941 (and (< (point) cfd-limit)
4942 (not (eq (c-get-char-property (1- (point)) 'c-type)
4943 'c-decl-end)))))
4944 (setq cfd-prop-match (point))))
4945
4946 ;; Find the next `c-decl-prefix-or-start-re' match if we haven't
4947 ;; got one already.
4948 (unless cfd-re-match
4949
4950 (if (> cfd-re-match-end (point))
4951 (goto-char cfd-re-match-end))
4952
4953 ;; Each time round, the next `while' moves forward over a pseudo match
4954 ;; of `c-decl-prefix-or-start-re' which is either inside a literal, or
4955 ;; is a ":" not preceded by "public", etc.. `cfd-re-match' and
4956 ;; `cfd-re-match-end' get set.
4957 (while
4958 (progn
4959 (setq cfd-re-match-end (re-search-forward c-decl-prefix-or-start-re
4960 cfd-limit 'move))
4961 (cond
4962 ((null cfd-re-match-end)
4963 ;; No match. Finish up and exit the loop.
4964 (setq cfd-re-match cfd-limit)
4965 nil)
4966 ((c-got-face-at
4967 (if (setq cfd-re-match (match-end 1))
4968 ;; Matched the end of a token preceding a decl spot.
4969 (progn
4970 (goto-char cfd-re-match)
4971 (1- cfd-re-match))
4972 ;; Matched a token that start a decl spot.
4973 (goto-char (match-beginning 0))
4974 (point))
4975 c-literal-faces)
4976 ;; Pseudo match inside a comment or string literal. Skip out
4977 ;; of comments and string literals.
4978 (while (progn
4979 (goto-char (c-next-single-property-change
4980 (point) 'face nil cfd-limit))
4981 (and (< (point) cfd-limit)
4982 (c-got-face-at (point) c-literal-faces))))
4983 t) ; Continue the loop over pseudo matches.
4984 ((and (match-string 1)
4985 (string= (match-string 1) ":")
4986 (save-excursion
4987 (or (/= (c-backward-token-2 2) 0) ; no search limit. :-(
4988 (not (looking-at c-decl-start-colon-kwd-re)))))
4989 ;; Found a ":" which isn't part of "public:", etc.
4990 t)
4991 (t nil)))) ;; Found a real match. Exit the pseudo-match loop.
4992
4993 ;; If our match was at the decl start, we have to back up over the
4994 ;; preceding syntactic ws to set `cfd-match-pos' and to catch
4995 ;; any decl spots in the syntactic ws.
4996 (unless cfd-re-match
4997 (c-backward-syntactic-ws)
4998 (setq cfd-re-match (point))))
4999
5000 ;; Choose whichever match is closer to the start.
5001 (if (< cfd-re-match cfd-prop-match)
5002 (setq cfd-match-pos cfd-re-match
5003 cfd-re-match nil)
5004 (setq cfd-match-pos cfd-prop-match
5005 cfd-prop-match nil))
5006
5007 (goto-char cfd-match-pos)
5008
5009 (when (< cfd-match-pos cfd-limit)
5010 ;; Skip forward past comments only so we don't skip macros.
5011 (c-forward-comments)
5012 ;; Set the position to continue at. We can avoid going over
5013 ;; the comments skipped above a second time, but it's possible
5014 ;; that the comment skipping has taken us past `cfd-prop-match'
5015 ;; since the property might be used inside comments.
5016 (setq cfd-continue-pos (if cfd-prop-match
5017 (min cfd-prop-match (point))
5018 (point))))))
5019
5020 (defun c-find-decl-spots (cfd-limit cfd-decl-re cfd-face-checklist cfd-fun)
5021 ;; Call CFD-FUN for each possible spot for a declaration, cast or
5022 ;; label from the point to CFD-LIMIT.
5023 ;;
5024 ;; CFD-FUN is called with point at the start of the spot. It's passed two
5025 ;; arguments: The first is the end position of the token preceding the spot,
5026 ;; or 0 for the implicit match at bob. The second is a flag that is t when
5027 ;; the match is inside a macro. Point should be moved forward by at least
5028 ;; one token.
5029 ;;
5030 ;; If CFD-FUN adds `c-decl-end' properties somewhere below the current spot,
5031 ;; it should return non-nil to ensure that the next search will find them.
5032 ;;
5033 ;; Such a spot is:
5034 ;; o The first token after bob.
5035 ;; o The first token after the end of submatch 1 in
5036 ;; `c-decl-prefix-or-start-re' when that submatch matches. This
5037 ;; submatch is typically a (L or R) brace or paren, a ;, or a ,.
5038 ;; o The start of each `c-decl-prefix-or-start-re' match when
5039 ;; submatch 1 doesn't match. This is, for example, the keyword
5040 ;; "class" in Pike.
5041 ;; o The start of a previously recognized declaration; "recognized"
5042 ;; means that the last char of the previous token has a `c-type'
5043 ;; text property with the value `c-decl-end'; this only holds
5044 ;; when `c-type-decl-end-used' is set.
5045 ;;
5046 ;; Only a spot that match CFD-DECL-RE and whose face is in the
5047 ;; CFD-FACE-CHECKLIST list causes CFD-FUN to be called. The face
5048 ;; check is disabled if CFD-FACE-CHECKLIST is nil.
5049 ;;
5050 ;; If the match is inside a macro then the buffer is narrowed to the
5051 ;; end of it, so that CFD-FUN can investigate the following tokens
5052 ;; without matching something that begins inside a macro and ends
5053 ;; outside it. It's to avoid this work that the CFD-DECL-RE and
5054 ;; CFD-FACE-CHECKLIST checks exist.
5055 ;;
5056 ;; The spots are visited approximately in order from top to bottom.
5057 ;; It's however the positions where `c-decl-prefix-or-start-re'
5058 ;; matches and where `c-decl-end' properties are found that are in
5059 ;; order. Since the spots often are at the following token, they
5060 ;; might be visited out of order insofar as more spots are reported
5061 ;; later on within the syntactic whitespace between the match
5062 ;; positions and their spots.
5063 ;;
5064 ;; It's assumed that comments and strings are fontified in the
5065 ;; searched range.
5066 ;;
5067 ;; This is mainly used in fontification, and so has an elaborate
5068 ;; cache to handle repeated calls from the same start position; see
5069 ;; the variables above.
5070 ;;
5071 ;; All variables in this function begin with `cfd-' to avoid name
5072 ;; collision with the (dynamically bound) variables used in CFD-FUN.
5073 ;;
5074 ;; This function might do hidden buffer changes.
5075
5076 (let ((cfd-start-pos (point)) ; never changed
5077 (cfd-buffer-end (point-max))
5078 ;; The end of the token preceding the decl spot last found
5079 ;; with `c-decl-prefix-or-start-re'. `cfd-limit' if there's
5080 ;; no match.
5081 cfd-re-match
5082 ;; The end position of the last `c-decl-prefix-or-start-re'
5083 ;; match. If this is greater than `cfd-continue-pos', the
5084 ;; next regexp search is started here instead.
5085 (cfd-re-match-end (point-min))
5086 ;; The end of the last `c-decl-end' found by
5087 ;; `c-find-decl-prefix-search'. `cfd-limit' if there's no
5088 ;; match. If searching for the property isn't needed then we
5089 ;; disable it by setting it to `cfd-limit' directly.
5090 (cfd-prop-match (unless c-type-decl-end-used cfd-limit))
5091 ;; The end of the token preceding the decl spot last found by
5092 ;; `c-find-decl-prefix-search'. 0 for the implicit match at
5093 ;; bob. `cfd-limit' if there's no match. In other words,
5094 ;; this is the minimum of `cfd-re-match' and `cfd-prop-match'.
5095 (cfd-match-pos cfd-limit)
5096 ;; The position to continue searching at.
5097 cfd-continue-pos
5098 ;; The position of the last "real" token we've stopped at.
5099 ;; This can be greater than `cfd-continue-pos' when we get
5100 ;; hits inside macros or at `c-decl-end' positions inside
5101 ;; comments.
5102 (cfd-token-pos 0)
5103 ;; The end position of the last entered macro.
5104 (cfd-macro-end 0))
5105
5106 ;; Initialize by finding a syntactically relevant start position
5107 ;; before the point, and do the first `c-decl-prefix-or-start-re'
5108 ;; search unless we're at bob.
5109
5110 (let (start-in-literal start-in-macro syntactic-pos)
5111 ;; Must back up a bit since we look for the end of the previous
5112 ;; statement or declaration, which is earlier than the first
5113 ;; returned match.
5114
5115 ;; This `cond' moves back over any literals or macros. It has special
5116 ;; handling for when the region being searched is entirely within a
5117 ;; macro. It sets `cfd-continue-pos' (unless we've reached
5118 ;; `cfd-limit').
5119 (cond
5120 ;; First we need to move to a syntactically relevant position.
5121 ;; Begin by backing out of comment or string literals.
5122 ;;
5123 ;; This arm of the cond actually triggers if we're in a literal,
5124 ;; and cfd-limit is at most at BONL.
5125 ((and
5126 ;; This arm of the `and' moves backwards out of a literal when
5127 ;; the face at point is a literal face. In this case, its value
5128 ;; is always non-nil.
5129 (when (c-got-face-at (point) c-literal-faces)
5130 ;; Try to use the faces to back up to the start of the
5131 ;; literal. FIXME: What if the point is on a declaration
5132 ;; inside a comment?
5133 (while (and (not (bobp))
5134 (c-got-face-at (1- (point)) c-literal-faces))
5135 (goto-char (previous-single-property-change
5136 (point) 'face nil (point-min))))
5137
5138 ;; XEmacs doesn't fontify the quotes surrounding string
5139 ;; literals.
5140 (and (featurep 'xemacs)
5141 (eq (get-text-property (point) 'face)
5142 'font-lock-string-face)
5143 (not (bobp))
5144 (progn (backward-char)
5145 (not (looking-at c-string-limit-regexp)))
5146 (forward-char))
5147
5148 ;; Don't trust the literal to contain only literal faces
5149 ;; (the font lock package might not have fontified the
5150 ;; start of it at all, for instance) so check that we have
5151 ;; arrived at something that looks like a start or else
5152 ;; resort to `c-literal-limits'.
5153 (unless (looking-at c-literal-start-regexp)
5154 (let ((range (c-literal-limits)))
5155 (if range (goto-char (car range)))))
5156
5157 (setq start-in-literal (point))) ; end of `and' arm.
5158
5159 ;; The start is in a literal. If the limit is in the same
5160 ;; one we don't have to find a syntactic position etc. We
5161 ;; only check that if the limit is at or before bonl to save
5162 ;; time; it covers the by far most common case when font-lock
5163 ;; refontifies the current line only.
5164 (<= cfd-limit (c-point 'bonl cfd-start-pos))
5165 (save-excursion
5166 (goto-char cfd-start-pos)
5167 (while (progn
5168 (goto-char (c-next-single-property-change
5169 (point) 'face nil cfd-limit))
5170 (and (< (point) cfd-limit)
5171 (c-got-face-at (point) c-literal-faces))))
5172 (= (point) cfd-limit))) ; end of `cond' arm condition
5173
5174 ;; Completely inside a literal. Set up variables to trig the
5175 ;; (< cfd-continue-pos cfd-start-pos) case below and it'll
5176 ;; find a suitable start position.
5177 (setq cfd-continue-pos start-in-literal)) ; end of `cond' arm
5178
5179 ;; Check if the region might be completely inside a macro, to
5180 ;; optimize that like the completely-inside-literal above.
5181 ((save-excursion
5182 (and (= (forward-line 1) 0)
5183 (bolp) ; forward-line has funny behavior at eob.
5184 (>= (point) cfd-limit)
5185 (progn (backward-char)
5186 (eq (char-before) ?\\))))
5187 ;; (Maybe) completely inside a macro. Only need to trig the
5188 ;; (< cfd-continue-pos cfd-start-pos) case below to make it
5189 ;; set things up.
5190 (setq cfd-continue-pos (1- cfd-start-pos)
5191 start-in-macro t))
5192
5193 ;; The default arm of the `cond' moves back over any macro we're in
5194 ;; and over any syntactic WS. It sets `c-find-decl-syntactic-pos'.
5195 (t
5196 ;; Back out of any macro so we don't miss any declaration
5197 ;; that could follow after it.
5198 (when (c-beginning-of-macro)
5199 (setq start-in-macro t))
5200
5201 ;; Now we're at a proper syntactically relevant position so we
5202 ;; can use the cache. But first clear it if it applied
5203 ;; further down.
5204 (c-invalidate-find-decl-cache cfd-start-pos)
5205
5206 (setq syntactic-pos (point))
5207 (unless (eq syntactic-pos c-find-decl-syntactic-pos)
5208 ;; Don't have to do this if the cache is relevant here,
5209 ;; typically if the same line is refontified again. If
5210 ;; we're just some syntactic whitespace further down we can
5211 ;; still use the cache to limit the skipping.
5212 (c-backward-syntactic-ws c-find-decl-syntactic-pos))
5213
5214 ;; If we hit `c-find-decl-syntactic-pos' and
5215 ;; `c-find-decl-match-pos' is set then we install the cached
5216 ;; values. If we hit `c-find-decl-syntactic-pos' and
5217 ;; `c-find-decl-match-pos' is nil then we know there's no decl
5218 ;; prefix in the whitespace before `c-find-decl-syntactic-pos'
5219 ;; and so we can continue the search from this point. If we
5220 ;; didn't hit `c-find-decl-syntactic-pos' then we're now in
5221 ;; the right spot to begin searching anyway.
5222 (if (and (eq (point) c-find-decl-syntactic-pos)
5223 c-find-decl-match-pos)
5224 (setq cfd-match-pos c-find-decl-match-pos
5225 cfd-continue-pos syntactic-pos)
5226
5227 (setq c-find-decl-syntactic-pos syntactic-pos)
5228
5229 (when (if (bobp)
5230 ;; Always consider bob a match to get the first
5231 ;; declaration in the file. Do this separately instead of
5232 ;; letting `c-decl-prefix-or-start-re' match bob, so that
5233 ;; regexp always can consume at least one character to
5234 ;; ensure that we won't get stuck in an infinite loop.
5235 (setq cfd-re-match 0)
5236 (backward-char)
5237 (c-beginning-of-current-token)
5238 (< (point) cfd-limit))
5239 ;; Do an initial search now. In the bob case above it's
5240 ;; only done to search for a `c-decl-end' spot.
5241 (c-find-decl-prefix-search)) ; sets cfd-continue-pos
5242
5243 (setq c-find-decl-match-pos (and (< cfd-match-pos cfd-start-pos)
5244 cfd-match-pos))))) ; end of `cond'
5245
5246 ;; Advance `cfd-continue-pos' if it's before the start position.
5247 ;; The closest continue position that might have effect at or
5248 ;; after the start depends on what we started in. This also
5249 ;; finds a suitable start position in the special cases when the
5250 ;; region is completely within a literal or macro.
5251 (when (and cfd-continue-pos (< cfd-continue-pos cfd-start-pos))
5252
5253 (cond
5254 (start-in-macro
5255 ;; If we're in a macro then it's the closest preceding token
5256 ;; in the macro. Check this before `start-in-literal',
5257 ;; since if we're inside a literal in a macro, the preceding
5258 ;; token is earlier than any `c-decl-end' spot inside the
5259 ;; literal (comment).
5260 (goto-char (or start-in-literal cfd-start-pos))
5261 ;; The only syntactic ws in macros are comments.
5262 (c-backward-comments)
5263 (backward-char)
5264 (c-beginning-of-current-token))
5265
5266 (start-in-literal
5267 ;; If we're in a comment it can only be the closest
5268 ;; preceding `c-decl-end' position within that comment, if
5269 ;; any. Go back to the beginning of such a property so that
5270 ;; `c-find-decl-prefix-search' will find the end of it.
5271 ;; (Can't stop at the end and install it directly on
5272 ;; `cfd-prop-match' since that variable might be cleared
5273 ;; after `cfd-fun' below.)
5274 ;;
5275 ;; Note that if the literal is a string then the property
5276 ;; search will simply skip to the beginning of it right
5277 ;; away.
5278 (if (not c-type-decl-end-used)
5279 (goto-char start-in-literal)
5280 (goto-char cfd-start-pos)
5281 (while (progn
5282 (goto-char (previous-single-property-change
5283 (point) 'c-type nil start-in-literal))
5284 (and (> (point) start-in-literal)
5285 (not (eq (c-get-char-property (point) 'c-type)
5286 'c-decl-end))))))
5287
5288 (when (= (point) start-in-literal)
5289 ;; Didn't find any property inside the comment, so we can
5290 ;; skip it entirely. (This won't skip past a string, but
5291 ;; that'll be handled quickly by the next
5292 ;; `c-find-decl-prefix-search' anyway.)
5293 (c-forward-single-comment)
5294 (if (> (point) cfd-limit)
5295 (goto-char cfd-limit))))
5296
5297 (t
5298 ;; If we started in normal code, the only match that might
5299 ;; apply before the start is what we already got in
5300 ;; `cfd-match-pos' so we can continue at the start position.
5301 ;; (Note that we don't get here if the first match is below
5302 ;; it.)
5303 (goto-char cfd-start-pos))) ; end of `cond'
5304
5305 ;; Delete found matches if they are before our new continue
5306 ;; position, so that `c-find-decl-prefix-search' won't back up
5307 ;; to them later on.
5308 (setq cfd-continue-pos (point))
5309 (when (and cfd-re-match (< cfd-re-match cfd-continue-pos))
5310 (setq cfd-re-match nil))
5311 (when (and cfd-prop-match (< cfd-prop-match cfd-continue-pos))
5312 (setq cfd-prop-match nil))) ; end of `when'
5313
5314 (if syntactic-pos
5315 ;; This is the normal case and we got a proper syntactic
5316 ;; position. If there's a match then it's always outside
5317 ;; macros and comments, so advance to the next token and set
5318 ;; `cfd-token-pos'. The loop below will later go back using
5319 ;; `cfd-continue-pos' to fix declarations inside the
5320 ;; syntactic ws.
5321 (when (and cfd-match-pos (< cfd-match-pos syntactic-pos))
5322 (goto-char syntactic-pos)
5323 (c-forward-syntactic-ws)
5324 (and cfd-continue-pos
5325 (< cfd-continue-pos (point))
5326 (setq cfd-token-pos (point))))
5327
5328 ;; Have one of the special cases when the region is completely
5329 ;; within a literal or macro. `cfd-continue-pos' is set to a
5330 ;; good start position for the search, so do it.
5331 (c-find-decl-prefix-search)))
5332
5333 ;; Now loop, one decl spot per iteration. We already have the first
5334 ;; match in `cfd-match-pos'.
5335 (while (progn
5336 ;; Go forward over "false matches", one per iteration.
5337 (while (and
5338 (< cfd-match-pos cfd-limit)
5339
5340 (or
5341 ;; Kludge to filter out matches on the "<" that
5342 ;; aren't open parens, for the sake of languages
5343 ;; that got `c-recognize-<>-arglists' set.
5344 (and (eq (char-before cfd-match-pos) ?<)
5345 (not (c-get-char-property (1- cfd-match-pos)
5346 'syntax-table)))
5347
5348 ;; If `cfd-continue-pos' is less or equal to
5349 ;; `cfd-token-pos', we've got a hit inside a macro
5350 ;; that's in the syntactic whitespace before the last
5351 ;; "real" declaration we've checked. If they're equal
5352 ;; we've arrived at the declaration a second time, so
5353 ;; there's nothing to do.
5354 (= cfd-continue-pos cfd-token-pos)
5355
5356 (progn
5357 ;; If `cfd-continue-pos' is less than `cfd-token-pos'
5358 ;; we're still searching for declarations embedded in
5359 ;; the syntactic whitespace. In that case we need
5360 ;; only to skip comments and not macros, since they
5361 ;; can't be nested, and that's already been done in
5362 ;; `c-find-decl-prefix-search'.
5363 (when (> cfd-continue-pos cfd-token-pos)
5364 (c-forward-syntactic-ws)
5365 (setq cfd-token-pos (point)))
5366
5367 ;; Continue if the following token fails the
5368 ;; CFD-DECL-RE and CFD-FACE-CHECKLIST checks.
5369 (when (or (>= (point) cfd-limit)
5370 (not (looking-at cfd-decl-re))
5371 (and cfd-face-checklist
5372 (not (c-got-face-at
5373 (point) cfd-face-checklist))))
5374 (goto-char cfd-continue-pos)
5375 t)))
5376
5377 (< (point) cfd-limit)) ; end of "false matches" condition
5378 (c-find-decl-prefix-search)) ; end of "false matches" loop
5379
5380 (< (point) cfd-limit)) ; end of condition for "decl-spot" while
5381
5382 (when (and
5383 (>= (point) cfd-start-pos)
5384
5385 (progn
5386 ;; Narrow to the end of the macro if we got a hit inside
5387 ;; one, to avoid recognizing things that start inside the
5388 ;; macro and end outside it.
5389 (when (> cfd-match-pos cfd-macro-end)
5390 ;; Not in the same macro as in the previous round.
5391 (save-excursion
5392 (goto-char cfd-match-pos)
5393 (setq cfd-macro-end
5394 (if (save-excursion (and (c-beginning-of-macro)
5395 (< (point) cfd-match-pos)))
5396 (progn (c-end-of-macro)
5397 (point))
5398 0))))
5399
5400 (if (zerop cfd-macro-end)
5401 t
5402 (if (> cfd-macro-end (point))
5403 (progn (narrow-to-region (point-min) cfd-macro-end)
5404 t)
5405 ;; The matched token was the last thing in the macro,
5406 ;; so the whole match is bogus.
5407 (setq cfd-macro-end 0)
5408 nil)))) ; end of when condition
5409
5410 (c-debug-put-decl-spot-faces cfd-match-pos (point))
5411 (if (funcall cfd-fun cfd-match-pos (/= cfd-macro-end 0))
5412 (setq cfd-prop-match nil))
5413
5414 (when (/= cfd-macro-end 0)
5415 ;; Restore limits if we did macro narrowing above.
5416 (narrow-to-region (point-min) cfd-buffer-end)))
5417
5418 (goto-char cfd-continue-pos)
5419 (if (= cfd-continue-pos cfd-limit)
5420 (setq cfd-match-pos cfd-limit)
5421 (c-find-decl-prefix-search))))) ; Moves point, sets cfd-continue-pos,
5422 ; cfd-match-pos, etc.
5423
5424 \f
5425 ;; A cache for found types.
5426
5427 ;; Buffer local variable that contains an obarray with the types we've
5428 ;; found. If a declaration is recognized somewhere we record the
5429 ;; fully qualified identifier in it to recognize it as a type
5430 ;; elsewhere in the file too. This is not accurate since we do not
5431 ;; bother with the scoping rules of the languages, but in practice the
5432 ;; same name is seldom used as both a type and something else in a
5433 ;; file, and we only use this as a last resort in ambiguous cases (see
5434 ;; `c-forward-decl-or-cast-1').
5435 ;;
5436 ;; Not every type need be in this cache. However, things which have
5437 ;; ceased to be types must be removed from it.
5438 ;;
5439 ;; Template types in C++ are added here too but with the template
5440 ;; arglist replaced with "<>" in references or "<" for the one in the
5441 ;; primary type. E.g. the type "Foo<A,B>::Bar<C>" is stored as
5442 ;; "Foo<>::Bar<". This avoids storing very long strings (since C++
5443 ;; template specs can be fairly sized programs in themselves) and
5444 ;; improves the hit ratio (it's a type regardless of the template
5445 ;; args; it's just not the same type, but we're only interested in
5446 ;; recognizing types, not telling distinct types apart). Note that
5447 ;; template types in references are added here too; from the example
5448 ;; above there will also be an entry "Foo<".
5449 (defvar c-found-types nil)
5450 (make-variable-buffer-local 'c-found-types)
5451
5452 (defsubst c-clear-found-types ()
5453 ;; Clears `c-found-types'.
5454 (setq c-found-types (make-vector 53 0)))
5455
5456 (defun c-add-type (from to)
5457 ;; Add the given region as a type in `c-found-types'. If the region
5458 ;; doesn't match an existing type but there is a type which is equal
5459 ;; to the given one except that the last character is missing, then
5460 ;; the shorter type is removed. That's done to avoid adding all
5461 ;; prefixes of a type as it's being entered and font locked. This
5462 ;; doesn't cover cases like when characters are removed from a type
5463 ;; or added in the middle. We'd need the position of point when the
5464 ;; font locking is invoked to solve this well.
5465 ;;
5466 ;; This function might do hidden buffer changes.
5467 (let ((type (c-syntactic-content from to c-recognize-<>-arglists)))
5468 (unless (intern-soft type c-found-types)
5469 (unintern (substring type 0 -1) c-found-types)
5470 (intern type c-found-types))))
5471
5472 (defun c-unfind-type (name)
5473 ;; Remove the "NAME" from c-found-types, if present.
5474 (unintern name c-found-types))
5475
5476 (defsubst c-check-type (from to)
5477 ;; Return non-nil if the given region contains a type in
5478 ;; `c-found-types'.
5479 ;;
5480 ;; This function might do hidden buffer changes.
5481 (intern-soft (c-syntactic-content from to c-recognize-<>-arglists)
5482 c-found-types))
5483
5484 (defun c-list-found-types ()
5485 ;; Return all the types in `c-found-types' as a sorted list of
5486 ;; strings.
5487 (let (type-list)
5488 (mapatoms (lambda (type)
5489 (setq type-list (cons (symbol-name type)
5490 type-list)))
5491 c-found-types)
5492 (sort type-list 'string-lessp)))
5493
5494 ;; Shut up the byte compiler.
5495 (defvar c-maybe-stale-found-type)
5496
5497 (defun c-trim-found-types (beg end old-len)
5498 ;; An after change function which, in conjunction with the info in
5499 ;; c-maybe-stale-found-type (set in c-before-change), removes a type
5500 ;; from `c-found-types', should this type have become stale. For
5501 ;; example, this happens to "foo" when "foo \n bar();" becomes
5502 ;; "foo(); \n bar();". Such stale types, if not removed, foul up
5503 ;; the fontification.
5504 ;;
5505 ;; Have we, perhaps, added non-ws characters to the front/back of a found
5506 ;; type?
5507 (when (> end beg)
5508 (save-excursion
5509 (when (< end (point-max))
5510 (goto-char end)
5511 (if (and (c-beginning-of-current-token) ; only moves when we started in the middle
5512 (progn (goto-char end)
5513 (c-end-of-current-token)))
5514 (c-unfind-type (buffer-substring-no-properties
5515 end (point)))))
5516 (when (> beg (point-min))
5517 (goto-char beg)
5518 (if (and (c-end-of-current-token) ; only moves when we started in the middle
5519 (progn (goto-char beg)
5520 (c-beginning-of-current-token)))
5521 (c-unfind-type (buffer-substring-no-properties
5522 (point) beg))))))
5523
5524 (if c-maybe-stale-found-type ; e.g. (c-decl-id-start "foo" 97 107 " (* ooka) " "o")
5525 (cond
5526 ;; Changing the amount of (already existing) whitespace - don't do anything.
5527 ((and (c-partial-ws-p beg end)
5528 (or (= beg end) ; removal of WS
5529 (string-match "^[ \t\n\r\f\v]*$" (nth 5 c-maybe-stale-found-type)))))
5530
5531 ;; The syntactic relationship which defined a "found type" has been
5532 ;; destroyed.
5533 ((eq (car c-maybe-stale-found-type) 'c-decl-id-start)
5534 (c-unfind-type (cadr c-maybe-stale-found-type)))
5535 ;; ((eq (car c-maybe-stale-found-type) 'c-decl-type-start) FIXME!!!
5536 )))
5537
5538 \f
5539 ;; Setting and removing syntax properties on < and > in languages (C++
5540 ;; and Java) where they can be template/generic delimiters as well as
5541 ;; their normal meaning of "less/greater than".
5542
5543 ;; Normally, < and > have syntax 'punctuation'. When they are found to
5544 ;; be delimiters, they are marked as such with the category properties
5545 ;; c-<-as-paren-syntax, c->-as-paren-syntax respectively.
5546
5547 ;; STRATEGY:
5548 ;;
5549 ;; It is impossible to determine with certainty whether a <..> pair in
5550 ;; C++ is two comparison operators or is template delimiters, unless
5551 ;; one duplicates a lot of a C++ compiler. For example, the following
5552 ;; code fragment:
5553 ;;
5554 ;; foo (a < b, c > d) ;
5555 ;;
5556 ;; could be a function call with two integer parameters (each a
5557 ;; relational expression), or it could be a constructor for class foo
5558 ;; taking one parameter d of templated type "a < b, c >". They are
5559 ;; somewhat easier to distinguish in Java.
5560 ;;
5561 ;; The strategy now (2010-01) adopted is to mark and unmark < and
5562 ;; > IN MATCHING PAIRS ONLY. [Previously, they were marked
5563 ;; individually when their context so indicated. This gave rise to
5564 ;; intractable problems when one of a matching pair was deleted, or
5565 ;; pulled into a literal.]
5566 ;;
5567 ;; At each buffer change, the syntax-table properties are removed in a
5568 ;; before-change function and reapplied, when needed, in an
5569 ;; after-change function. It is far more important that the
5570 ;; properties get removed when they they are spurious than that they
5571 ;; be present when wanted.
5572 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5573 (defun c-clear-<-pair-props (&optional pos)
5574 ;; POS (default point) is at a < character. If it is marked with
5575 ;; open paren syntax-table text property, remove the property,
5576 ;; together with the close paren property on the matching > (if
5577 ;; any).
5578 (save-excursion
5579 (if pos
5580 (goto-char pos)
5581 (setq pos (point)))
5582 (when (equal (c-get-char-property (point) 'syntax-table)
5583 c-<-as-paren-syntax)
5584 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5585 (c-go-list-forward))
5586 (when (equal (c-get-char-property (1- (point)) 'syntax-table)
5587 c->-as-paren-syntax) ; should always be true.
5588 (c-unmark-<->-as-paren (1- (point))))
5589 (c-unmark-<->-as-paren pos))))
5590
5591 (defun c-clear->-pair-props (&optional pos)
5592 ;; POS (default point) is at a > character. If it is marked with
5593 ;; close paren syntax-table property, remove the property, together
5594 ;; with the open paren property on the matching < (if any).
5595 (save-excursion
5596 (if pos
5597 (goto-char pos)
5598 (setq pos (point)))
5599 (when (equal (c-get-char-property (point) 'syntax-table)
5600 c->-as-paren-syntax)
5601 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5602 (c-go-up-list-backward))
5603 (when (equal (c-get-char-property (point) 'syntax-table)
5604 c-<-as-paren-syntax) ; should always be true.
5605 (c-unmark-<->-as-paren (point)))
5606 (c-unmark-<->-as-paren pos))))
5607
5608 (defun c-clear-<>-pair-props (&optional pos)
5609 ;; POS (default point) is at a < or > character. If it has an
5610 ;; open/close paren syntax-table property, remove this property both
5611 ;; from the current character and its partner (which will also be
5612 ;; thusly marked).
5613 (cond
5614 ((eq (char-after) ?\<)
5615 (c-clear-<-pair-props pos))
5616 ((eq (char-after) ?\>)
5617 (c-clear->-pair-props pos))
5618 (t (c-benign-error
5619 "c-clear-<>-pair-props called from wrong position"))))
5620
5621 (defun c-clear-<-pair-props-if-match-after (lim &optional pos)
5622 ;; POS (default point) is at a < character. If it is both marked
5623 ;; with open/close paren syntax-table property, and has a matching >
5624 ;; (also marked) which is after LIM, remove the property both from
5625 ;; the current > and its partner. Return t when this happens, nil
5626 ;; when it doesn't.
5627 (save-excursion
5628 (if pos
5629 (goto-char pos)
5630 (setq pos (point)))
5631 (when (equal (c-get-char-property (point) 'syntax-table)
5632 c-<-as-paren-syntax)
5633 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5634 (c-go-list-forward))
5635 (when (and (>= (point) lim)
5636 (equal (c-get-char-property (1- (point)) 'syntax-table)
5637 c->-as-paren-syntax)) ; should always be true.
5638 (c-unmark-<->-as-paren (1- (point)))
5639 (c-unmark-<->-as-paren pos))
5640 t)))
5641
5642 (defun c-clear->-pair-props-if-match-before (lim &optional pos)
5643 ;; POS (default point) is at a > character. If it is both marked
5644 ;; with open/close paren syntax-table property, and has a matching <
5645 ;; (also marked) which is before LIM, remove the property both from
5646 ;; the current < and its partner. Return t when this happens, nil
5647 ;; when it doesn't.
5648 (save-excursion
5649 (if pos
5650 (goto-char pos)
5651 (setq pos (point)))
5652 (when (equal (c-get-char-property (point) 'syntax-table)
5653 c->-as-paren-syntax)
5654 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5655 (c-go-up-list-backward))
5656 (when (and (<= (point) lim)
5657 (equal (c-get-char-property (point) 'syntax-table)
5658 c-<-as-paren-syntax)) ; should always be true.
5659 (c-unmark-<->-as-paren (point))
5660 (c-unmark-<->-as-paren pos))
5661 t)))
5662
5663 ;; Set by c-common-init in cc-mode.el.
5664 (defvar c-new-BEG)
5665 (defvar c-new-END)
5666 ;; Set by c-after-change in cc-mode.el.
5667 (defvar c-old-BEG)
5668 (defvar c-old-END)
5669
5670 (defun c-before-change-check-<>-operators (beg end)
5671 ;; Unmark certain pairs of "< .... >" which are currently marked as
5672 ;; template/generic delimiters. (This marking is via syntax-table text
5673 ;; properties), and expand the (c-new-BEG c-new-END) region to include all
5674 ;; unmarked < and > operators within the certain bounds (see below).
5675 ;;
5676 ;; These pairs are those which are in the current "statement" (i.e.,
5677 ;; the region between the {, }, or ; before BEG and the one after
5678 ;; END), and which enclose any part of the interval (BEG END).
5679 ;;
5680 ;; Note that in C++ (?and Java), template/generic parens cannot
5681 ;; enclose a brace or semicolon, so we use these as bounds on the
5682 ;; region we must work on.
5683 ;;
5684 ;; This function is called from before-change-functions (via
5685 ;; c-get-state-before-change-functions). Thus the buffer is widened,
5686 ;; and point is undefined, both at entry and exit.
5687 ;;
5688 ;; FIXME!!! This routine ignores the possibility of macros entirely.
5689 ;; 2010-01-29.
5690 (save-excursion
5691 (c-save-buffer-state
5692 ((beg-lit-limits (progn (goto-char beg) (c-literal-limits)))
5693 (end-lit-limits (progn (goto-char end) (c-literal-limits)))
5694 new-beg new-end beg-limit end-limit)
5695 ;; Locate the earliest < after the barrier before the changed region,
5696 ;; which isn't already marked as a paren.
5697 (goto-char (if beg-lit-limits (car beg-lit-limits) beg))
5698 (setq beg-limit (c-determine-limit 512))
5699
5700 ;; Remove the syntax-table/category properties from each pertinent <...>
5701 ;; pair. Firstly, the ones with the < before beg and > after beg....
5702 (while (progn (c-syntactic-skip-backward "^;{}<" beg-limit)
5703 (eq (char-before) ?<))
5704 (c-backward-token-2)
5705 (when (eq (char-after) ?<)
5706 (c-clear-<-pair-props-if-match-after beg)))
5707 (c-forward-syntactic-ws)
5708 (setq new-beg (point))
5709
5710 ;; ...Then the ones with < before end and > after end.
5711 (goto-char (if end-lit-limits (cdr end-lit-limits) end))
5712 (setq end-limit (c-determine-+ve-limit 512))
5713 (while (and (c-syntactic-re-search-forward "[;{}>]" end-limit 'end)
5714 (eq (char-before) ?>))
5715 (c-end-of-current-token)
5716 (when (eq (char-before) ?>)
5717 (c-clear->-pair-props-if-match-before end (1- (point)))))
5718 (c-backward-syntactic-ws)
5719 (setq new-end (point))
5720
5721 ;; Extend the fontification region, if needed.
5722 (and new-beg
5723 (< new-beg c-new-BEG)
5724 (setq c-new-BEG new-beg))
5725 (and new-end
5726 (> new-end c-new-END)
5727 (setq c-new-END new-end)))))
5728
5729 (defun c-after-change-check-<>-operators (beg end)
5730 ;; This is called from `after-change-functions' when
5731 ;; c-recognize-<>-arglists' is set. It ensures that no "<" or ">"
5732 ;; chars with paren syntax become part of another operator like "<<"
5733 ;; or ">=".
5734 ;;
5735 ;; This function might do hidden buffer changes.
5736
5737 (save-excursion
5738 (goto-char beg)
5739 (when (or (looking-at "[<>]")
5740 (< (skip-chars-backward "<>") 0))
5741
5742 (goto-char beg)
5743 (c-beginning-of-current-token)
5744 (when (and (< (point) beg)
5745 (looking-at c-<>-multichar-token-regexp)
5746 (< beg (setq beg (match-end 0))))
5747 (while (progn (skip-chars-forward "^<>" beg)
5748 (< (point) beg))
5749 (c-clear-<>-pair-props)
5750 (forward-char))))
5751
5752 (when (< beg end)
5753 (goto-char end)
5754 (when (or (looking-at "[<>]")
5755 (< (skip-chars-backward "<>") 0))
5756
5757 (goto-char end)
5758 (c-beginning-of-current-token)
5759 (when (and (< (point) end)
5760 (looking-at c-<>-multichar-token-regexp)
5761 (< end (setq end (match-end 0))))
5762 (while (progn (skip-chars-forward "^<>" end)
5763 (< (point) end))
5764 (c-clear-<>-pair-props)
5765 (forward-char)))))))
5766
5767 (defun c-restore-<>-properties (_beg _end _old-len)
5768 ;; This function is called as an after-change function. It restores the
5769 ;; category/syntax-table properties on template/generic <..> pairs between
5770 ;; c-new-BEG and c-new-END. It may do hidden buffer changes.
5771 (c-save-buffer-state ((c-parse-and-markup-<>-arglists t)
5772 c-restricted-<>-arglists lit-limits)
5773 (goto-char c-new-BEG)
5774 (if (setq lit-limits (c-literal-limits))
5775 (goto-char (cdr lit-limits)))
5776 (while (and (< (point) c-new-END)
5777 (c-syntactic-re-search-forward "<" c-new-END 'bound))
5778 (backward-char)
5779 (save-excursion
5780 (c-backward-token-2)
5781 (setq c-restricted-<>-arglists
5782 (and (not (looking-at c-opt-<>-sexp-key))
5783 (progn (c-backward-syntactic-ws) ; to ( or ,
5784 (and (memq (char-before) '(?\( ?,)) ; what about <?
5785 (not (eq (c-get-char-property (point) 'c-type)
5786 'c-decl-arg-start)))))))
5787 (or (c-forward-<>-arglist nil)
5788 (forward-char)))))
5789
5790 \f
5791 ;; Functions to handle C++ raw strings.
5792 ;;
5793 ;; A valid C++ raw string looks like
5794 ;; R"<id>(<contents>)<id>"
5795 ;; , where <id> is an identifier from 0 to 16 characters long, not containing
5796 ;; spaces, control characters, double quote or left/right paren. <contents>
5797 ;; can include anything which isn't the terminating )<id>", including new
5798 ;; lines, "s, parentheses, etc.
5799 ;;
5800 ;; CC Mode handles C++ raw strings by the use of `syntax-table' text
5801 ;; properties as follows:
5802 ;;
5803 ;; (i) On a validly terminated raw string, no `syntax-table' text properties
5804 ;; are applied to the opening and closing delimiters, but any " in the
5805 ;; contents is given the property value "punctuation" (`(1)') to prevent it
5806 ;; interacting with the "s in the delimiters.
5807 ;;
5808 ;; The font locking routine `c-font-lock-c++-raw-strings' (in cc-fonts.el)
5809 ;; recognizes valid raw strings, and fontifies the delimiters (apart from
5810 ;; the parentheses) with the default face and the parentheses and the
5811 ;; <contents> with font-lock-string-face.
5812 ;;
5813 ;; (ii) A valid, but unterminated, raw string opening delimiter gets the
5814 ;; "punctuation" value (`(1)') of the `syntax-table' text property, and the
5815 ;; open parenthesis gets the "string fence" value (`(15)').
5816 ;;
5817 ;; `c-font-lock-c++-raw-strings' puts c-font-lock-warning-face on the entire
5818 ;; unmatched opening delimiter (from the R up to the open paren), and allows
5819 ;; the rest of the buffer to get font-lock-string-face, caused by the
5820 ;; unmatched "string fence" `syntax-table' text property value.
5821 ;;
5822 ;; (iii) Inside a macro, a valid raw string is handled as in (i). An
5823 ;; unmatched opening delimiter is handled slightly differently. In addition
5824 ;; to the "punctuation" and "string fence" properties on the delimiter,
5825 ;; another "string fence" `syntax-table' property is applied to the last
5826 ;; possible character of the macro before the terminating linefeed (if there
5827 ;; is such a character after the "("). This "last possible" character is
5828 ;; never a backslash escaping the end of line. If the character preceding
5829 ;; this "last possible" character is itself a backslash, this preceding
5830 ;; character gets a "punctuation" `syntax-table' value. If the "(" is
5831 ;; already at the end of the macro, it gets the "punctuaion" value, and no
5832 ;; "string fence"s are used.
5833 ;;
5834 ;; The effect on the fontification of either of these tactics is that rest of
5835 ;; the macro (if any) after the "(" gets font-lock-string-face, but the rest
5836 ;; of the file is fontified normally.
5837
5838
5839 (defun c-raw-string-pos ()
5840 ;; Get POINT's relationship to any containing raw string.
5841 ;; If point isn't in a raw string, return nil.
5842 ;; Otherwise, return the following list:
5843 ;;
5844 ;; (POS B\" B\( E\) E\")
5845 ;;
5846 ;; , where POS is the symbol `open-delim' if point is in the opening
5847 ;; delimiter, the symbol `close-delim' if it's in the closing delimiter, and
5848 ;; nil if it's in the string body. B\", B\(, E\), E\" are the positions of
5849 ;; the opening and closing quotes and parentheses of a correctly terminated
5850 ;; raw string. (N.B.: E\) and E\" are NOT on the "outside" of these
5851 ;; characters.) If the raw string is not terminated, E\) and E\" are set to
5852 ;; nil.
5853 ;;
5854 ;; Note: this routine is dependant upon the correct syntax-table text
5855 ;; properties being set.
5856 (let* ((safe (c-state-semi-safe-place (point)))
5857 (state (c-state-pp-to-literal safe (point)))
5858 open-quote-pos open-paren-pos close-paren-pos close-quote-pos id)
5859 (save-excursion
5860 (when
5861 (and
5862 (cond
5863 ((null (cadr state))
5864 (or (eq (char-after) ?\")
5865 (search-backward "\"" (max (- (point) 17) (point-min)) t)))
5866 ((and (eq (cadr state) 'string)
5867 (goto-char (car (nth 2 state)))
5868 (or (eq (char-after) ?\")
5869 (search-backward "\"" (max (- (point) 17) (point-min)) t))
5870 (not (bobp)))))
5871 (eq (char-before) ?R)
5872 (looking-at "\"\\([^ ()\\\n\r\t]\\{,16\\}\\)("))
5873 (setq open-quote-pos (point)
5874 open-paren-pos (match-end 1)
5875 id (match-string-no-properties 1))
5876 (goto-char (1+ open-paren-pos))
5877 (when (and (not (c-get-char-property open-paren-pos 'syntax-table))
5878 (search-forward (concat ")" id "\"") nil t))
5879 (setq close-paren-pos (match-beginning 0)
5880 close-quote-pos (1- (point))))))
5881 (and open-quote-pos
5882 (list
5883 (cond
5884 ((<= (point) open-paren-pos)
5885 'open-delim)
5886 ((and close-paren-pos
5887 (> (point) close-paren-pos))
5888 'close-delim)
5889 (t nil))
5890 open-quote-pos open-paren-pos close-paren-pos close-quote-pos))))
5891
5892 (defun c-depropertize-raw-string (id open-quote open-paren bound)
5893 ;; Point is immediately after a raw string opening delimiter. Remove any
5894 ;; `syntax-table' text properties associated with the delimiter (if it's
5895 ;; unmatched) or the raw string.
5896 ;;
5897 ;; ID, a string, is the delimiter's identifier. OPEN-QUOTE and OPEN-PAREN
5898 ;; are the buffer positions of the delimiter's components. BOUND is the
5899 ;; bound for searching for a matching closing delimiter; it is usually nil,
5900 ;; but if we're inside a macro, it's the end of the macro.
5901 ;;
5902 ;; Point is moved to after the (terminated) raw string, or left after the
5903 ;; unmatched opening delimiter, as the case may be. The return value is of
5904 ;; no significance.
5905 (let ((open-paren-prop (c-get-char-property open-paren 'syntax-table)))
5906 (cond
5907 ((null open-paren-prop)
5908 ;; A terminated raw string
5909 (if (search-forward (concat ")" id "\"") nil t)
5910 (c-clear-char-property-with-value
5911 (1+ open-paren) (match-beginning 0) 'syntax-table '(1))))
5912 ((or (and (equal open-paren-prop '(15)) (null bound))
5913 (equal open-paren-prop '(1)))
5914 ;; An unterminated raw string either not in a macro, or in a macro with
5915 ;; the open parenthesis right up against the end of macro
5916 (c-clear-char-property open-quote 'syntax-table)
5917 (c-clear-char-property open-paren 'syntax-table))
5918 (t
5919 ;; An unterminated string in a macro, with at least one char after the
5920 ;; open paren
5921 (c-clear-char-property open-quote 'syntax-table)
5922 (c-clear-char-property open-paren 'syntax-table)
5923 (let ((after-string-fence-pos
5924 (save-excursion
5925 (goto-char (1+ open-paren))
5926 (c-search-forward-char-property 'syntax-table '(15) bound))))
5927 (when after-string-fence-pos
5928 (c-clear-char-property (1- after-string-fence-pos) 'syntax-table)))
5929 ))))
5930
5931 (defun c-depropertize-raw-strings-in-region (start finish)
5932 ;; Remove any `syntax-table' text properties associated with C++ raw strings
5933 ;; contained in the region (START FINISH). Point is undefined at entry and
5934 ;; exit, and the return value has no significance.
5935 (goto-char start)
5936 (while (and (< (point) finish)
5937 (re-search-forward
5938 (concat "\\(" ; 1
5939 c-anchored-cpp-prefix ; 2
5940 "\\)\\|\\(" ; 3
5941 "R\"\\([^ ()\\\n\r\t]\\{,16\\}\\)(" ; 4
5942 "\\)")
5943 finish t))
5944 (when (save-excursion
5945 (goto-char (match-beginning 0)) (not (c-in-literal)))
5946 (if (match-beginning 4) ; the id
5947 ;; We've found a raw string
5948 (c-depropertize-raw-string
5949 (match-string-no-properties 4) ; id
5950 (1+ (match-beginning 3)) ; open quote
5951 (match-end 4) ; open paren
5952 nil) ; bound
5953 ;; We've found a CPP construct. Search for raw strings within it.
5954 (goto-char (match-beginning 2)) ; the "#"
5955 (c-end-of-macro)
5956 (let ((eom (point)))
5957 (goto-char (match-end 2)) ; after the "#".
5958 (while (and (< (point) eom)
5959 (c-syntactic-re-search-forward
5960 "R\"\\([^ ()\\\n\r\t]\\{,16\\}\\)(" eom t))
5961 (c-depropertize-raw-string
5962 (match-string-no-properties 1) ; id
5963 (1+ (match-beginning 0)) ; open quote
5964 (match-end 1) ; open paren
5965 eom))))))) ; bound.
5966
5967 (defun c-before-change-check-raw-strings (beg end)
5968 ;; This function clears `syntax-table' text properties from C++ raw strings
5969 ;; in the region (c-new-BEG c-new-END). BEG and END are the standard
5970 ;; arguments supplied to any before-change function.
5971 ;;
5972 ;; Point is undefined on both entry and exit, and the return value has no
5973 ;; significance.
5974 ;;
5975 ;; This function is called as a before-change function solely due to its
5976 ;; membership of the C++ value of `c-get-state-before-change-functions'.
5977 (c-save-buffer-state
5978 ((beg-rs (progn (goto-char beg) (c-raw-string-pos)))
5979 (beg-plus (if (null beg-rs)
5980 beg
5981 (max beg
5982 (1+ (or (nth 4 beg-rs) (nth 2 beg-rs))))))
5983 (end-rs (progn (goto-char end) (c-raw-string-pos))) ; FIXME!!!
5984 ; Optimize this so that we don't call
5985 ; `c-raw-string-pos' twice when once
5986 ; will do. (2016-06-02).
5987 (end-minus (if (null end-rs)
5988 end
5989 (min end (cadr end-rs))))
5990 )
5991 (when beg-rs
5992 (setq c-new-BEG (min c-new-BEG (1- (cadr beg-rs)))))
5993 (c-depropertize-raw-strings-in-region c-new-BEG beg-plus)
5994
5995 (when end-rs
5996 (setq c-new-END (max c-new-END
5997 (1+ (or (nth 4 end-rs)
5998 (nth 2 end-rs))))))
5999 (c-depropertize-raw-strings-in-region end-minus c-new-END)))
6000
6001 (defun c-propertize-raw-string-opener (id open-quote open-paren bound)
6002 ;; Point is immediately after a raw string opening delimiter. Apply any
6003 ;; pertinent `syntax-table' text properties to the delimiter and also the
6004 ;; raw string, should there be a valid matching closing delimiter.
6005 ;;
6006 ;; ID, a string, is the delimiter's identifier. OPEN-QUOTE and OPEN-PAREN
6007 ;; are the buffer positions of the delimiter's components. BOUND is the
6008 ;; bound for searching for a matching closing delimiter; it is usually nil,
6009 ;; but if we're inside a macro, it's the end of the macro.
6010 ;;
6011 ;; Point is moved to after the (terminated) raw string, or left after the
6012 ;; unmatched opening delimiter, as the case may be. The return value is of
6013 ;; no significance.
6014 (if (search-forward (concat ")" id "\"") bound t)
6015 (let ((end-string (match-beginning 0))
6016 (after-quote (match-end 0)))
6017 (goto-char open-paren)
6018 (while (progn (skip-syntax-forward "^\"" end-string)
6019 (< (point) end-string))
6020 (c-put-char-property (point) 'syntax-table '(1)) ; punctuation
6021 (forward-char))
6022 (goto-char after-quote))
6023 (c-put-char-property open-quote 'syntax-table '(1)) ; punctuation
6024 (c-put-char-property open-paren 'syntax-table '(15)) ; generic string
6025 (when bound
6026 ;; In a CPP construct, we try to apply a generic-string `syntax-table'
6027 ;; text property to the last possible character in the string, so that
6028 ;; only characters within the macro get "stringed out".
6029 (goto-char bound)
6030 (if (save-restriction
6031 (narrow-to-region (1+ open-paren) (point-max))
6032 (re-search-backward
6033 (eval-when-compile
6034 ;; This regular expression matches either an escape pair (which
6035 ;; isn't an escaped NL) (submatch 5) or a non-escaped character
6036 ;; (which isn't itself a backslash) (submatch 10). The long
6037 ;; preambles to these (respectively submatches 2-4 and 6-9)
6038 ;; ensure that we have the correct parity for sequences of
6039 ;; backslashes, etc..
6040 (concat "\\(" ; 1
6041 "\\(\\`[^\\]?\\|[^\\][^\\]\\)\\(\\\\\\(.\\|\n\\)\\)*" ; 2-4
6042 "\\(\\\\.\\)" ; 5
6043 "\\|"
6044 "\\(\\`\\|[^\\]\\|\\(\\`[^\\]?\\|[^\\][^\\]\\)\\(\\\\\\(.\\|\n\\)\\)+\\)" ; 6-9
6045 "\\([^\\]\\)" ; 10
6046 "\\)"
6047 "\\(\\\\\n\\)*\\=")) ; 11
6048 (1+ open-paren) t))
6049 (if (match-beginning 10)
6050 (c-put-char-property (match-beginning 10) 'syntax-table '(15))
6051 (c-put-char-property (match-beginning 5) 'syntax-table '(1))
6052 (c-put-char-property (1+ (match-beginning 5)) 'syntax-table '(15)))
6053 (c-put-char-property open-paren 'syntax-table '(1)))
6054 (goto-char bound))))
6055
6056 (defun c-after-change-re-mark-raw-strings (beg end old-len)
6057 ;; This function applies `syntax-table' text properties to C++ raw strings
6058 ;; beginning in the region (c-new-BEG c-new-END). BEG, END, and OLD-LEN are
6059 ;; the standard arguments supplied to any after-change function.
6060 ;;
6061 ;; Point is undefined on both entry and exit, and the return value has no
6062 ;; significance.
6063 ;;
6064 ;; This function is called as an after-change function solely due to its
6065 ;; membership of the C++ value of `c-before-font-lock-functions'.
6066 (c-save-buffer-state ()
6067 ;; If the region (c-new-BEG c-new-END) has expanded, remove
6068 ;; `syntax-table' text-properties from the new piece(s).
6069 (when (< c-new-BEG c-old-BEG)
6070 (let ((beg-rs (progn (goto-char c-old-BEG) (c-raw-string-pos))))
6071 (c-depropertize-raw-strings-in-region
6072 c-new-BEG
6073 (if beg-rs
6074 (1+ (or (nth 4 beg-rs) (nth 2 beg-rs)))
6075 c-old-BEG))))
6076 (when (> c-new-END c-old-END)
6077 (let ((end-rs (progn (goto-char c-old-END) (c-raw-string-pos))))
6078 (c-depropertize-raw-strings-in-region
6079 (if end-rs
6080 (cadr end-rs)
6081 c-old-END)
6082 c-new-END)))
6083
6084 (goto-char c-new-BEG)
6085 (while (and (< (point) c-new-END)
6086 (re-search-forward
6087 (concat "\\(" ; 1
6088 c-anchored-cpp-prefix ; 2
6089 "\\)\\|\\(" ; 3
6090 "R\"\\([^ ()\\\n\r\t]\\{,16\\}\\)(" ; 4
6091 "\\)")
6092 c-new-END t))
6093 (when (save-excursion
6094 (goto-char (match-beginning 0)) (not (c-in-literal)))
6095 (if (match-beginning 4) ; the id
6096 ;; We've found a raw string.
6097 (c-propertize-raw-string-opener
6098 (match-string-no-properties 4) ; id
6099 (1+ (match-beginning 3)) ; open quote
6100 (match-end 4) ; open paren
6101 nil) ; bound
6102 ;; We've found a CPP construct. Search for raw strings within it.
6103 (goto-char (match-beginning 2)) ; the "#"
6104 (c-end-of-macro)
6105 (let ((eom (point)))
6106 (goto-char (match-end 2)) ; after the "#".
6107 (while (and (< (point) eom)
6108 (c-syntactic-re-search-forward
6109 "R\"\\([^ ()\\\n\r\t]\\{,16\\}\\)(" eom t))
6110 (c-propertize-raw-string-opener
6111 (match-string-no-properties 1) ; id
6112 (1+ (match-beginning 0)) ; open quote
6113 (match-end 1) ; open paren
6114 eom)))))))) ; bound
6115
6116 \f
6117 ;; Handling of small scale constructs like types and names.
6118
6119 ;; Dynamically bound variable that instructs `c-forward-type' to also
6120 ;; treat possible types (i.e. those that it normally returns 'maybe or
6121 ;; 'found for) as actual types (and always return 'found for them).
6122 ;; This means that it records them in `c-record-type-identifiers' if
6123 ;; that is set, and that it adds them to `c-found-types'.
6124 (defvar c-promote-possible-types nil)
6125
6126 ;; Dynamically bound variable that instructs `c-forward-<>-arglist' to
6127 ;; mark up successfully parsed arglists with paren syntax properties on
6128 ;; the surrounding angle brackets and with `c-<>-arg-sep' in the
6129 ;; `c-type' property of each argument separating comma.
6130 ;;
6131 ;; Setting this variable also makes `c-forward-<>-arglist' recurse into
6132 ;; all arglists for side effects (i.e. recording types), otherwise it
6133 ;; exploits any existing paren syntax properties to quickly jump to the
6134 ;; end of already parsed arglists.
6135 ;;
6136 ;; Marking up the arglists is not the default since doing that correctly
6137 ;; depends on a proper value for `c-restricted-<>-arglists'.
6138 (defvar c-parse-and-markup-<>-arglists nil)
6139
6140 ;; Dynamically bound variable that instructs `c-forward-<>-arglist' to
6141 ;; not accept arglists that contain binary operators.
6142 ;;
6143 ;; This is primarily used to handle C++ template arglists. C++
6144 ;; disambiguates them by checking whether the preceding name is a
6145 ;; template or not. We can't do that, so we assume it is a template
6146 ;; if it can be parsed as one. That usually works well since
6147 ;; comparison expressions on the forms "a < b > c" or "a < b, c > d"
6148 ;; in almost all cases would be pointless.
6149 ;;
6150 ;; However, in function arglists, e.g. in "foo (a < b, c > d)", we
6151 ;; should let the comma separate the function arguments instead. And
6152 ;; in a context where the value of the expression is taken, e.g. in
6153 ;; "if (a < b || c > d)", it's probably not a template.
6154 (defvar c-restricted-<>-arglists nil)
6155
6156 ;; Dynamically bound variables that instructs
6157 ;; `c-forward-keyword-clause', `c-forward-<>-arglist',
6158 ;; `c-forward-name', `c-forward-type', `c-forward-decl-or-cast-1', and
6159 ;; `c-forward-label' to record the ranges of all the type and
6160 ;; reference identifiers they encounter. They will build lists on
6161 ;; these variables where each element is a cons of the buffer
6162 ;; positions surrounding each identifier. This recording is only
6163 ;; activated when `c-record-type-identifiers' is non-nil.
6164 ;;
6165 ;; All known types that can't be identifiers are recorded, and also
6166 ;; other possible types if `c-promote-possible-types' is set.
6167 ;; Recording is however disabled inside angle bracket arglists that
6168 ;; are encountered inside names and other angle bracket arglists.
6169 ;; Such occurrences are taken care of by `c-font-lock-<>-arglists'
6170 ;; instead.
6171 ;;
6172 ;; Only the names in C++ template style references (e.g. "tmpl" in
6173 ;; "tmpl<a,b>::foo") are recorded as references, other references
6174 ;; aren't handled here.
6175 ;;
6176 ;; `c-forward-label' records the label identifier(s) on
6177 ;; `c-record-ref-identifiers'.
6178 (defvar c-record-type-identifiers nil)
6179 (defvar c-record-ref-identifiers nil)
6180
6181 ;; This variable will receive a cons cell of the range of the last
6182 ;; single identifier symbol stepped over by `c-forward-name' if it's
6183 ;; successful. This is the range that should be put on one of the
6184 ;; record lists above by the caller. It's assigned nil if there's no
6185 ;; such symbol in the name.
6186 (defvar c-last-identifier-range nil)
6187
6188 (defmacro c-record-type-id (range)
6189 (if (eq (car-safe range) 'cons)
6190 ;; Always true.
6191 `(setq c-record-type-identifiers
6192 (cons ,range c-record-type-identifiers))
6193 `(let ((range ,range))
6194 (if range
6195 (setq c-record-type-identifiers
6196 (cons range c-record-type-identifiers))))))
6197
6198 (defmacro c-record-ref-id (range)
6199 (if (eq (car-safe range) 'cons)
6200 ;; Always true.
6201 `(setq c-record-ref-identifiers
6202 (cons ,range c-record-ref-identifiers))
6203 `(let ((range ,range))
6204 (if range
6205 (setq c-record-ref-identifiers
6206 (cons range c-record-ref-identifiers))))))
6207
6208 ;; Dynamically bound variable that instructs `c-forward-type' to
6209 ;; record the ranges of types that only are found. Behaves otherwise
6210 ;; like `c-record-type-identifiers'.
6211 (defvar c-record-found-types nil)
6212
6213 (defmacro c-forward-keyword-prefixed-id (type)
6214 ;; Used internally in `c-forward-keyword-clause' to move forward
6215 ;; over a type (if TYPE is 'type) or a name (otherwise) which
6216 ;; possibly is prefixed by keywords and their associated clauses.
6217 ;; Try with a type/name first to not trip up on those that begin
6218 ;; with a keyword. Return t if a known or found type is moved
6219 ;; over. The point is clobbered if nil is returned. If range
6220 ;; recording is enabled, the identifier is recorded on as a type
6221 ;; if TYPE is 'type or as a reference if TYPE is 'ref.
6222 ;;
6223 ;; This macro might do hidden buffer changes.
6224 `(let (res)
6225 (setq c-last-identifier-range nil)
6226 (while (if (setq res ,(if (eq type 'type)
6227 `(c-forward-type)
6228 `(c-forward-name)))
6229 nil
6230 (cond ((looking-at c-keywords-regexp)
6231 (c-forward-keyword-clause 1))
6232 ((and c-opt-cpp-prefix
6233 (looking-at c-noise-macro-with-parens-name-re))
6234 (c-forward-noise-clause)))))
6235 (when (memq res '(t known found prefix maybe))
6236 (when c-record-type-identifiers
6237 ,(if (eq type 'type)
6238 `(c-record-type-id c-last-identifier-range)
6239 `(c-record-ref-id c-last-identifier-range)))
6240 t)))
6241
6242 (defmacro c-forward-id-comma-list (type update-safe-pos)
6243 ;; Used internally in `c-forward-keyword-clause' to move forward
6244 ;; over a comma separated list of types or names using
6245 ;; `c-forward-keyword-prefixed-id'.
6246 ;;
6247 ;; This macro might do hidden buffer changes.
6248 `(while (and (progn
6249 ,(when update-safe-pos
6250 `(setq safe-pos (point)))
6251 (eq (char-after) ?,))
6252 (progn
6253 (forward-char)
6254 (c-forward-syntactic-ws)
6255 (c-forward-keyword-prefixed-id ,type)))))
6256
6257 (defun c-forward-noise-clause ()
6258 ;; Point is at a c-noise-macro-with-parens-names macro identifier. Go
6259 ;; forward over this name, any parenthesis expression which follows it, and
6260 ;; any syntactic WS, ending up at the next token. If there is an unbalanced
6261 ;; paren expression, leave point at it. Always Return t.
6262 (c-forward-token-2)
6263 (if (and (eq (char-after) ?\()
6264 (c-go-list-forward))
6265 (c-forward-syntactic-ws))
6266 t)
6267
6268 (defun c-forward-keyword-clause (match)
6269 ;; Submatch MATCH in the current match data is assumed to surround a
6270 ;; token. If it's a keyword, move over it and any immediately
6271 ;; following clauses associated with it, stopping at the start of
6272 ;; the next token. t is returned in that case, otherwise the point
6273 ;; stays and nil is returned. The kind of clauses that are
6274 ;; recognized are those specified by `c-type-list-kwds',
6275 ;; `c-ref-list-kwds', `c-colon-type-list-kwds',
6276 ;; `c-paren-nontype-kwds', `c-paren-type-kwds', `c-<>-type-kwds',
6277 ;; and `c-<>-arglist-kwds'.
6278 ;;
6279 ;; This function records identifier ranges on
6280 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6281 ;; `c-record-type-identifiers' is non-nil.
6282 ;;
6283 ;; Note that for `c-colon-type-list-kwds', which doesn't necessary
6284 ;; apply directly after the keyword, the type list is moved over
6285 ;; only when there is no unaccounted token before it (i.e. a token
6286 ;; that isn't moved over due to some other keyword list). The
6287 ;; identifier ranges in the list are still recorded if that should
6288 ;; be done, though.
6289 ;;
6290 ;; This function might do hidden buffer changes.
6291
6292 (let ((kwd-sym (c-keyword-sym (match-string match))) safe-pos pos
6293 ;; The call to `c-forward-<>-arglist' below is made after
6294 ;; `c-<>-sexp-kwds' keywords, so we're certain they actually
6295 ;; are angle bracket arglists and `c-restricted-<>-arglists'
6296 ;; should therefore be nil.
6297 (c-parse-and-markup-<>-arglists t)
6298 c-restricted-<>-arglists)
6299
6300 (when kwd-sym
6301 (goto-char (match-end match))
6302 (c-forward-syntactic-ws)
6303 (setq safe-pos (point))
6304
6305 (cond
6306 ((and (c-keyword-member kwd-sym 'c-type-list-kwds)
6307 (c-forward-keyword-prefixed-id type))
6308 ;; There's a type directly after a keyword in `c-type-list-kwds'.
6309 (c-forward-id-comma-list type t))
6310
6311 ((and (c-keyword-member kwd-sym 'c-ref-list-kwds)
6312 (c-forward-keyword-prefixed-id ref))
6313 ;; There's a name directly after a keyword in `c-ref-list-kwds'.
6314 (c-forward-id-comma-list ref t))
6315
6316 ((and (c-keyword-member kwd-sym 'c-paren-any-kwds)
6317 (eq (char-after) ?\())
6318 ;; There's an open paren after a keyword in `c-paren-any-kwds'.
6319
6320 (forward-char)
6321 (when (and (setq pos (c-up-list-forward))
6322 (eq (char-before pos) ?\)))
6323 (when (and c-record-type-identifiers
6324 (c-keyword-member kwd-sym 'c-paren-type-kwds))
6325 ;; Use `c-forward-type' on every identifier we can find
6326 ;; inside the paren, to record the types.
6327 (while (c-syntactic-re-search-forward c-symbol-start pos t)
6328 (goto-char (match-beginning 0))
6329 (unless (c-forward-type)
6330 (looking-at c-symbol-key) ; Always matches.
6331 (goto-char (match-end 0)))))
6332
6333 (goto-char pos)
6334 (c-forward-syntactic-ws)
6335 (setq safe-pos (point))))
6336
6337 ((and (c-keyword-member kwd-sym 'c-<>-sexp-kwds)
6338 (eq (char-after) ?<)
6339 (c-forward-<>-arglist (c-keyword-member kwd-sym 'c-<>-type-kwds)))
6340 (c-forward-syntactic-ws)
6341 (setq safe-pos (point)))
6342
6343 ((and (c-keyword-member kwd-sym 'c-nonsymbol-sexp-kwds)
6344 (not (looking-at c-symbol-start))
6345 (c-safe (c-forward-sexp) t))
6346 (c-forward-syntactic-ws)
6347 (setq safe-pos (point))))
6348
6349 (when (c-keyword-member kwd-sym 'c-colon-type-list-kwds)
6350 (if (eq (char-after) ?:)
6351 ;; If we are at the colon already, we move over the type
6352 ;; list after it.
6353 (progn
6354 (forward-char)
6355 (c-forward-syntactic-ws)
6356 (when (c-forward-keyword-prefixed-id type)
6357 (c-forward-id-comma-list type t)))
6358 ;; Not at the colon, so stop here. But the identifier
6359 ;; ranges in the type list later on should still be
6360 ;; recorded.
6361 (and c-record-type-identifiers
6362 (progn
6363 ;; If a keyword matched both one of the types above and
6364 ;; this one, we match `c-colon-type-list-re' after the
6365 ;; clause matched above.
6366 (goto-char safe-pos)
6367 (looking-at c-colon-type-list-re))
6368 (progn
6369 (goto-char (match-end 0))
6370 (c-forward-syntactic-ws)
6371 (c-forward-keyword-prefixed-id type))
6372 ;; There's a type after the `c-colon-type-list-re' match
6373 ;; after a keyword in `c-colon-type-list-kwds'.
6374 (c-forward-id-comma-list type nil))))
6375
6376 (goto-char safe-pos)
6377 t)))
6378
6379 ;; cc-mode requires cc-fonts.
6380 (declare-function c-fontify-recorded-types-and-refs "cc-fonts" ())
6381
6382 (defun c-forward-<>-arglist (all-types)
6383 ;; The point is assumed to be at a "<". Try to treat it as the open
6384 ;; paren of an angle bracket arglist and move forward to the
6385 ;; corresponding ">". If successful, the point is left after the
6386 ;; ">" and t is returned, otherwise the point isn't moved and nil is
6387 ;; returned. If ALL-TYPES is t then all encountered arguments in
6388 ;; the arglist that might be types are treated as found types.
6389 ;;
6390 ;; The variable `c-parse-and-markup-<>-arglists' controls how this
6391 ;; function handles text properties on the angle brackets and argument
6392 ;; separating commas.
6393 ;;
6394 ;; `c-restricted-<>-arglists' controls how lenient the template
6395 ;; arglist recognition should be.
6396 ;;
6397 ;; This function records identifier ranges on
6398 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6399 ;; `c-record-type-identifiers' is non-nil.
6400 ;;
6401 ;; This function might do hidden buffer changes.
6402
6403 (let ((start (point))
6404 ;; If `c-record-type-identifiers' is set then activate
6405 ;; recording of any found types that constitute an argument in
6406 ;; the arglist.
6407 (c-record-found-types (if c-record-type-identifiers t)))
6408 (if (catch 'angle-bracket-arglist-escape
6409 (setq c-record-found-types
6410 (c-forward-<>-arglist-recur all-types)))
6411 (progn
6412 (when (consp c-record-found-types)
6413 (setq c-record-type-identifiers
6414 ;; `nconc' doesn't mind that the tail of
6415 ;; `c-record-found-types' is t.
6416 (nconc c-record-found-types c-record-type-identifiers)))
6417 t)
6418
6419 (goto-char start)
6420 nil)))
6421
6422 (defun c-forward-<>-arglist-recur (all-types)
6423 ;; Recursive part of `c-forward-<>-arglist'.
6424 ;;
6425 ;; This function might do hidden buffer changes.
6426 (let ((start (point)) res pos
6427 ;; Cover this so that any recorded found type ranges are
6428 ;; automatically lost if it turns out to not be an angle
6429 ;; bracket arglist. It's propagated through the return value
6430 ;; on successful completion.
6431 (c-record-found-types c-record-found-types)
6432 ;; List that collects the positions after the argument
6433 ;; separating ',' in the arglist.
6434 arg-start-pos)
6435 ;; If the '<' has paren open syntax then we've marked it as an angle
6436 ;; bracket arglist before, so skip to the end.
6437 (if (and (not c-parse-and-markup-<>-arglists)
6438 (c-get-char-property (point) 'syntax-table))
6439
6440 (progn
6441 (forward-char)
6442 (if (and (c-go-up-list-forward)
6443 (eq (char-before) ?>))
6444 t
6445 ;; Got unmatched paren angle brackets. We don't clear the paren
6446 ;; syntax properties and retry, on the basis that it's very
6447 ;; unlikely that paren angle brackets become operators by code
6448 ;; manipulation. It's far more likely that it doesn't match due
6449 ;; to narrowing or some temporary change.
6450 (goto-char start)
6451 nil))
6452
6453 (forward-char) ; Forward over the opening '<'.
6454
6455 (unless (looking-at c-<-op-cont-regexp)
6456 ;; go forward one non-alphanumeric character (group) per iteration of
6457 ;; this loop.
6458 (while (and
6459 (progn
6460 (c-forward-syntactic-ws)
6461 (when (or (and c-record-type-identifiers all-types)
6462 (not (equal c-inside-<>-type-key "\\(\\<\\>\\)")))
6463 (c-forward-syntactic-ws)
6464 (cond
6465 ((eq (char-after) ??)
6466 (forward-char))
6467 ((and (looking-at c-identifier-start)
6468 (not (looking-at c-keywords-regexp)))
6469 (if (or (and all-types c-record-type-identifiers)
6470 (c-major-mode-is 'java-mode))
6471 ;; All encountered identifiers are types, so set the
6472 ;; promote flag and parse the type.
6473 (let ((c-promote-possible-types t)
6474 (c-record-found-types t))
6475 (c-forward-type))
6476 (c-forward-token-2))))
6477
6478 (c-forward-syntactic-ws)
6479
6480 (when (looking-at c-inside-<>-type-key)
6481 (goto-char (match-end 1))
6482 (c-forward-syntactic-ws)
6483 (let ((c-promote-possible-types t)
6484 (c-record-found-types t))
6485 (c-forward-type))
6486 (c-forward-syntactic-ws)))
6487
6488 (setq pos (point)) ; e.g. first token inside the '<'
6489
6490 ;; Note: These regexps exploit the match order in \| so
6491 ;; that "<>" is matched by "<" rather than "[^>:-]>".
6492 (c-syntactic-re-search-forward
6493 ;; Stop on ',', '|', '&', '+' and '-' to catch
6494 ;; common binary operators that could be between
6495 ;; two comparison expressions "a<b" and "c>d".
6496 ;; 2016-02-11: C++11 templates can now contain arithmetic
6497 ;; expressions, so template detection in C++ is now less
6498 ;; robust than it was.
6499 c-<>-notable-chars-re
6500 nil t t))
6501
6502 (cond
6503 ((eq (char-before) ?>)
6504 ;; Either an operator starting with '>' or the end of
6505 ;; the angle bracket arglist.
6506
6507 (if (save-excursion
6508 (c-backward-token-2)
6509 (looking-at c-multichar->-op-not->>-regexp))
6510 (progn
6511 (goto-char (match-end 0))
6512 t) ; Continue the loop.
6513
6514 ;; The angle bracket arglist is finished.
6515 (when c-parse-and-markup-<>-arglists
6516 (while arg-start-pos
6517 (c-put-c-type-property (1- (car arg-start-pos))
6518 'c-<>-arg-sep)
6519 (setq arg-start-pos (cdr arg-start-pos)))
6520 (c-mark-<-as-paren start)
6521 (c-mark->-as-paren (1- (point))))
6522 (setq res t)
6523 nil)) ; Exit the loop.
6524
6525 ((eq (char-before) ?<)
6526 ;; Either an operator starting with '<' or a nested arglist.
6527 (setq pos (point))
6528 (let (id-start id-end subres keyword-match)
6529 (cond
6530 ;; The '<' begins a multi-char operator.
6531 ((looking-at c-<-op-cont-regexp)
6532 (goto-char (match-end 0)))
6533 ;; We're at a nested <.....>
6534 ((progn
6535 (backward-char) ; to the '<'
6536 (and
6537 (save-excursion
6538 ;; There's always an identifier before an angle
6539 ;; bracket arglist, or a keyword in `c-<>-type-kwds'
6540 ;; or `c-<>-arglist-kwds'.
6541 (c-backward-syntactic-ws)
6542 (setq id-end (point))
6543 (c-simple-skip-symbol-backward)
6544 (when (or (setq keyword-match
6545 (looking-at c-opt-<>-sexp-key))
6546 (not (looking-at c-keywords-regexp)))
6547 (setq id-start (point))))
6548 (setq subres
6549 (let ((c-promote-possible-types t)
6550 (c-record-found-types t))
6551 (c-forward-<>-arglist-recur
6552 (and keyword-match
6553 (c-keyword-member
6554 (c-keyword-sym (match-string 1))
6555 'c-<>-type-kwds))))))
6556 (or subres (goto-char pos))
6557 subres)
6558 ;; It was an angle bracket arglist.
6559 (setq c-record-found-types subres)
6560
6561 ;; Record the identifier before the template as a type
6562 ;; or reference depending on whether the arglist is last
6563 ;; in a qualified identifier.
6564 (when (and c-record-type-identifiers
6565 (not keyword-match))
6566 (if (and c-opt-identifier-concat-key
6567 (progn
6568 (c-forward-syntactic-ws)
6569 (looking-at c-opt-identifier-concat-key)))
6570 (c-record-ref-id (cons id-start id-end))
6571 (c-record-type-id (cons id-start id-end)))))
6572
6573 ;; At a "less than" operator.
6574 (t
6575 ;; (forward-char) ; NO! We've already gone over the <.
6576 )))
6577 t) ; carry on looping.
6578
6579 ((and
6580 (eq (char-before) ?\()
6581 (c-go-up-list-forward)
6582 (eq (char-before) ?\))))
6583
6584 ((and (not c-restricted-<>-arglists)
6585 (or (and (eq (char-before) ?&)
6586 (not (eq (char-after) ?&)))
6587 (eq (char-before) ?,)))
6588 ;; Just another argument. Record the position. The
6589 ;; type check stuff that made us stop at it is at
6590 ;; the top of the loop.
6591 (setq arg-start-pos (cons (point) arg-start-pos)))
6592
6593 (t
6594 ;; Got a character that can't be in an angle bracket
6595 ;; arglist argument. Abort using `throw', since
6596 ;; it's useless to try to find a surrounding arglist
6597 ;; if we're nested.
6598 (throw 'angle-bracket-arglist-escape nil))))))
6599 (if res
6600 (or c-record-found-types t)))))
6601
6602 (defun c-backward-<>-arglist (all-types &optional limit)
6603 ;; The point is assumed to be directly after a ">". Try to treat it
6604 ;; as the close paren of an angle bracket arglist and move back to
6605 ;; the corresponding "<". If successful, the point is left at
6606 ;; the "<" and t is returned, otherwise the point isn't moved and
6607 ;; nil is returned. ALL-TYPES is passed on to
6608 ;; `c-forward-<>-arglist'.
6609 ;;
6610 ;; If the optional LIMIT is given, it bounds the backward search.
6611 ;; It's then assumed to be at a syntactically relevant position.
6612 ;;
6613 ;; This is a wrapper around `c-forward-<>-arglist'. See that
6614 ;; function for more details.
6615
6616 (let ((start (point)))
6617 (backward-char)
6618 (if (and (not c-parse-and-markup-<>-arglists)
6619 (c-get-char-property (point) 'syntax-table))
6620
6621 (if (and (c-go-up-list-backward)
6622 (eq (char-after) ?<))
6623 t
6624 ;; See corresponding note in `c-forward-<>-arglist'.
6625 (goto-char start)
6626 nil)
6627
6628 (while (progn
6629 (c-syntactic-skip-backward "^<;{}" limit t)
6630
6631 (and
6632 (if (eq (char-before) ?<)
6633 t
6634 ;; Stopped at bob or a char that isn't allowed in an
6635 ;; arglist, so we've failed.
6636 (goto-char start)
6637 nil)
6638
6639 (if (> (point)
6640 (progn (c-beginning-of-current-token)
6641 (point)))
6642 ;; If we moved then the "<" was part of some
6643 ;; multicharacter token.
6644 t
6645
6646 (backward-char)
6647 (let ((beg-pos (point)))
6648 (if (c-forward-<>-arglist all-types)
6649 (cond ((= (point) start)
6650 ;; Matched the arglist. Break the while.
6651 (goto-char beg-pos)
6652 nil)
6653 ((> (point) start)
6654 ;; We started from a non-paren ">" inside an
6655 ;; arglist.
6656 (goto-char start)
6657 nil)
6658 (t
6659 ;; Matched a shorter arglist. Can be a nested
6660 ;; one so continue looking.
6661 (goto-char beg-pos)
6662 t))
6663 t))))))
6664
6665 (/= (point) start))))
6666
6667 (defun c-forward-name ()
6668 ;; Move forward over a complete name if at the beginning of one,
6669 ;; stopping at the next following token. A keyword, as such,
6670 ;; doesn't count as a name. If the point is not at something that
6671 ;; is recognized as a name then it stays put.
6672 ;;
6673 ;; A name could be something as simple as "foo" in C or something as
6674 ;; complex as "X<Y<class A<int>::B, BIT_MAX >> b>, ::operator<> ::
6675 ;; Z<(a>b)> :: operator const X<&foo>::T Q::G<unsigned short
6676 ;; int>::*volatile const" in C++ (this function is actually little
6677 ;; more than a `looking-at' call in all modes except those that,
6678 ;; like C++, have `c-recognize-<>-arglists' set).
6679 ;;
6680 ;; Return
6681 ;; o - nil if no name is found;
6682 ;; o - 'template if it's an identifier ending with an angle bracket
6683 ;; arglist;
6684 ;; o - 'operator of it's an operator identifier;
6685 ;; o - t if it's some other kind of name.
6686 ;;
6687 ;; This function records identifier ranges on
6688 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6689 ;; `c-record-type-identifiers' is non-nil.
6690 ;;
6691 ;; This function might do hidden buffer changes.
6692
6693 (let ((pos (point)) (start (point)) res id-start id-end
6694 ;; Turn off `c-promote-possible-types' here since we might
6695 ;; call `c-forward-<>-arglist' and we don't want it to promote
6696 ;; every suspect thing in the arglist to a type. We're
6697 ;; typically called from `c-forward-type' in this case, and
6698 ;; the caller only wants the top level type that it finds to
6699 ;; be promoted.
6700 c-promote-possible-types)
6701 (while
6702 (and
6703 (looking-at c-identifier-key)
6704
6705 (progn
6706 ;; Check for keyword. We go to the last symbol in
6707 ;; `c-identifier-key' first.
6708 (goto-char (setq id-end (match-end 0)))
6709 (c-simple-skip-symbol-backward)
6710 (setq id-start (point))
6711
6712 (if (looking-at c-keywords-regexp)
6713 (when (and (c-major-mode-is 'c++-mode)
6714 (looking-at
6715 (cc-eval-when-compile
6716 (concat "\\(operator\\|\\(template\\)\\)"
6717 "\\(" (c-lang-const c-nonsymbol-key c++)
6718 "\\|$\\)")))
6719 (if (match-beginning 2)
6720 ;; "template" is only valid inside an
6721 ;; identifier if preceded by "::".
6722 (save-excursion
6723 (c-backward-syntactic-ws)
6724 (and (c-safe (backward-char 2) t)
6725 (looking-at "::")))
6726 t))
6727
6728 ;; Handle a C++ operator or template identifier.
6729 (goto-char id-end)
6730 (c-forward-syntactic-ws)
6731 (cond ((eq (char-before id-end) ?e)
6732 ;; Got "... ::template".
6733 (let ((subres (c-forward-name)))
6734 (when subres
6735 (setq pos (point)
6736 res subres))))
6737
6738 ((looking-at c-identifier-start)
6739 ;; Got a cast operator.
6740 (when (c-forward-type)
6741 (setq pos (point)
6742 res 'operator)
6743 ;; Now we should match a sequence of either
6744 ;; '*', '&' or a name followed by ":: *",
6745 ;; where each can be followed by a sequence
6746 ;; of `c-opt-type-modifier-key'.
6747 (while (cond ((looking-at "[*&]")
6748 (goto-char (match-end 0))
6749 t)
6750 ((looking-at c-identifier-start)
6751 (and (c-forward-name)
6752 (looking-at "::")
6753 (progn
6754 (goto-char (match-end 0))
6755 (c-forward-syntactic-ws)
6756 (eq (char-after) ?*))
6757 (progn
6758 (forward-char)
6759 t))))
6760 (while (progn
6761 (c-forward-syntactic-ws)
6762 (setq pos (point))
6763 (looking-at c-opt-type-modifier-key))
6764 (goto-char (match-end 1))))))
6765
6766 ((looking-at c-overloadable-operators-regexp)
6767 ;; Got some other operator.
6768 (setq c-last-identifier-range
6769 (cons (point) (match-end 0)))
6770 (goto-char (match-end 0))
6771 (c-forward-syntactic-ws)
6772 (setq pos (point)
6773 res 'operator)))
6774
6775 nil)
6776
6777 ;; `id-start' is equal to `id-end' if we've jumped over
6778 ;; an identifier that doesn't end with a symbol token.
6779 ;; That can occur e.g. for Java import directives on the
6780 ;; form "foo.bar.*".
6781 (when (and id-start (/= id-start id-end))
6782 (setq c-last-identifier-range
6783 (cons id-start id-end)))
6784 (goto-char id-end)
6785 (c-forward-syntactic-ws)
6786 (setq pos (point)
6787 res t)))
6788
6789 (progn
6790 (goto-char pos)
6791 (when (or c-opt-identifier-concat-key
6792 c-recognize-<>-arglists)
6793
6794 (cond
6795 ((and c-opt-identifier-concat-key
6796 (looking-at c-opt-identifier-concat-key))
6797 ;; Got a concatenated identifier. This handles the
6798 ;; cases with tricky syntactic whitespace that aren't
6799 ;; covered in `c-identifier-key'.
6800 (goto-char (match-end 0))
6801 (c-forward-syntactic-ws)
6802 t)
6803
6804 ((and c-recognize-<>-arglists
6805 (eq (char-after) ?<))
6806 ;; Maybe an angle bracket arglist.
6807 (when (let (c-last-identifier-range)
6808 (c-forward-<>-arglist nil))
6809
6810 (c-forward-syntactic-ws)
6811 (unless (eq (char-after) ?\()
6812 (setq c-last-identifier-range nil)
6813 (c-add-type start (1+ pos)))
6814 (setq pos (point))
6815
6816 (if (and c-opt-identifier-concat-key
6817 (looking-at c-opt-identifier-concat-key))
6818
6819 ;; Continue if there's an identifier concatenation
6820 ;; operator after the template argument.
6821 (progn
6822 (when (and c-record-type-identifiers id-start)
6823 (c-record-ref-id (cons id-start id-end)))
6824 (forward-char 2)
6825 (c-forward-syntactic-ws)
6826 t)
6827
6828 (when (and c-record-type-identifiers id-start
6829 (not (eq (char-after) ?\()))
6830 (c-record-type-id (cons id-start id-end)))
6831 (setq res 'template)
6832 nil)))
6833 )))))
6834
6835 (goto-char pos)
6836 res))
6837
6838 (defun c-forward-type (&optional brace-block-too)
6839 ;; Move forward over a type spec if at the beginning of one,
6840 ;; stopping at the next following token. The keyword "typedef"
6841 ;; isn't part of a type spec here.
6842 ;;
6843 ;; BRACE-BLOCK-TOO, when non-nil, means move over the brace block in
6844 ;; constructs like "struct foo {...} bar ;" or "struct {...} bar;".
6845 ;; The current (2009-03-10) intention is to convert all uses of
6846 ;; `c-forward-type' to call with this parameter set, then to
6847 ;; eliminate it.
6848 ;;
6849 ;; Return
6850 ;; o - t if it's a known type that can't be a name or other
6851 ;; expression;
6852 ;; o - 'known if it's an otherwise known type (according to
6853 ;; `*-font-lock-extra-types');
6854 ;; o - 'prefix if it's a known prefix of a type;
6855 ;; o - 'found if it's a type that matches one in `c-found-types';
6856 ;; o - 'maybe if it's an identifier that might be a type;
6857 ;; o - 'decltype if it's a decltype(variable) declaration; - or
6858 ;; o - nil if it can't be a type (the point isn't moved then).
6859 ;;
6860 ;; The point is assumed to be at the beginning of a token.
6861 ;;
6862 ;; Note that this function doesn't skip past the brace definition
6863 ;; that might be considered part of the type, e.g.
6864 ;; "enum {a, b, c} foo".
6865 ;;
6866 ;; This function records identifier ranges on
6867 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6868 ;; `c-record-type-identifiers' is non-nil.
6869 ;;
6870 ;; This function might do hidden buffer changes.
6871 (when (and c-recognize-<>-arglists
6872 (looking-at "<"))
6873 (c-forward-<>-arglist t)
6874 (c-forward-syntactic-ws))
6875
6876 (let ((start (point)) pos res name-res id-start id-end id-range)
6877
6878 ;; Skip leading type modifiers. If any are found we know it's a
6879 ;; prefix of a type.
6880 (when c-opt-type-modifier-key ; e.g. "const" "volatile", but NOT "typedef"
6881 (while (looking-at c-opt-type-modifier-key)
6882 (goto-char (match-end 1))
6883 (c-forward-syntactic-ws)
6884 (setq res 'prefix)))
6885
6886 (cond
6887 ((looking-at c-typeof-key) ; e.g. C++'s "decltype".
6888 (goto-char (match-end 1))
6889 (c-forward-syntactic-ws)
6890 (setq res (and (eq (char-after) ?\()
6891 (c-safe (c-forward-sexp))
6892 'decltype))
6893 (if res
6894 (c-forward-syntactic-ws)
6895 (goto-char start)))
6896
6897 ((looking-at c-type-prefix-key) ; e.g. "struct", "class", but NOT
6898 ; "typedef".
6899 (goto-char (match-end 1))
6900 (c-forward-syntactic-ws)
6901
6902 (while (cond
6903 ((looking-at c-decl-hangon-key)
6904 (c-forward-keyword-clause 1))
6905 ((and c-opt-cpp-prefix
6906 (looking-at c-noise-macro-with-parens-name-re))
6907 (c-forward-noise-clause))))
6908
6909 (setq pos (point))
6910
6911 (setq name-res (c-forward-name))
6912 (setq res (not (null name-res)))
6913 (when (eq name-res t)
6914 ;; In many languages the name can be used without the
6915 ;; prefix, so we add it to `c-found-types'.
6916 (c-add-type pos (point))
6917 (when (and c-record-type-identifiers
6918 c-last-identifier-range)
6919 (c-record-type-id c-last-identifier-range)))
6920 (when (and brace-block-too
6921 (memq res '(t nil))
6922 (eq (char-after) ?\{)
6923 (save-excursion
6924 (c-safe
6925 (progn (c-forward-sexp)
6926 (c-forward-syntactic-ws)
6927 (setq pos (point))))))
6928 (goto-char pos)
6929 (setq res t))
6930 (unless res (goto-char start))) ; invalid syntax
6931
6932 ((progn
6933 (setq pos nil)
6934 (if (looking-at c-identifier-start)
6935 (save-excursion
6936 (setq id-start (point)
6937 name-res (c-forward-name))
6938 (when name-res
6939 (setq id-end (point)
6940 id-range c-last-identifier-range))))
6941 (and (cond ((looking-at c-primitive-type-key)
6942 (setq res t))
6943 ((c-with-syntax-table c-identifier-syntax-table
6944 (looking-at c-known-type-key))
6945 (setq res 'known)))
6946 (or (not id-end)
6947 (>= (save-excursion
6948 (save-match-data
6949 (goto-char (match-end 1))
6950 (c-forward-syntactic-ws)
6951 (setq pos (point))))
6952 id-end)
6953 (setq res nil))))
6954 ;; Looking at a primitive or known type identifier. We've
6955 ;; checked for a name first so that we don't go here if the
6956 ;; known type match only is a prefix of another name.
6957
6958 (setq id-end (match-end 1))
6959
6960 (when (and c-record-type-identifiers
6961 (or c-promote-possible-types (eq res t)))
6962 (c-record-type-id (cons (match-beginning 1) (match-end 1))))
6963
6964 (if (and c-opt-type-component-key
6965 (save-match-data
6966 (looking-at c-opt-type-component-key)))
6967 ;; There might be more keywords for the type.
6968 (let (safe-pos)
6969 (c-forward-keyword-clause 1)
6970 (while (progn
6971 (setq safe-pos (point))
6972 (looking-at c-opt-type-component-key))
6973 (when (and c-record-type-identifiers
6974 (looking-at c-primitive-type-key))
6975 (c-record-type-id (cons (match-beginning 1)
6976 (match-end 1))))
6977 (c-forward-keyword-clause 1))
6978 (if (looking-at c-primitive-type-key)
6979 (progn
6980 (when c-record-type-identifiers
6981 (c-record-type-id (cons (match-beginning 1)
6982 (match-end 1))))
6983 (c-forward-keyword-clause 1)
6984 (setq res t))
6985 (goto-char safe-pos)
6986 (setq res 'prefix)))
6987 (unless (save-match-data (c-forward-keyword-clause 1))
6988 (if pos
6989 (goto-char pos)
6990 (goto-char (match-end 1))
6991 (c-forward-syntactic-ws)))))
6992
6993 (name-res
6994 (cond ((eq name-res t)
6995 ;; A normal identifier.
6996 (goto-char id-end)
6997 (if (or res c-promote-possible-types)
6998 (progn
6999 (c-add-type id-start id-end)
7000 (when (and c-record-type-identifiers id-range)
7001 (c-record-type-id id-range))
7002 (unless res
7003 (setq res 'found)))
7004 (setq res (if (c-check-type id-start id-end)
7005 ;; It's an identifier that has been used as
7006 ;; a type somewhere else.
7007 'found
7008 ;; It's an identifier that might be a type.
7009 'maybe))))
7010 ((eq name-res 'template)
7011 ;; A template is sometimes a type.
7012 (goto-char id-end)
7013 (c-forward-syntactic-ws)
7014 (setq res
7015 (if (eq (char-after) ?\()
7016 (if (c-check-type id-start id-end)
7017 ;; It's an identifier that has been used as
7018 ;; a type somewhere else.
7019 'found
7020 ;; It's an identifier that might be a type.
7021 'maybe)
7022 t)))
7023 (t
7024 ;; Otherwise it's an operator identifier, which is not a type.
7025 (goto-char start)
7026 (setq res nil)))))
7027
7028 (when res
7029 ;; Skip trailing type modifiers. If any are found we know it's
7030 ;; a type.
7031 (when c-opt-type-modifier-key
7032 (while (looking-at c-opt-type-modifier-key) ; e.g. "const", "volatile"
7033 (goto-char (match-end 1))
7034 (c-forward-syntactic-ws)
7035 (setq res t)))
7036
7037 ;; Step over any type suffix operator. Do not let the existence
7038 ;; of these alter the classification of the found type, since
7039 ;; these operators typically are allowed in normal expressions
7040 ;; too.
7041 (when c-opt-type-suffix-key ; e.g. "..."
7042 (while (looking-at c-opt-type-suffix-key)
7043 (goto-char (match-end 1))
7044 (c-forward-syntactic-ws)))
7045
7046 (when c-opt-type-concat-key ; Only/mainly for pike.
7047 ;; Look for a trailing operator that concatenates the type
7048 ;; with a following one, and if so step past that one through
7049 ;; a recursive call. Note that we don't record concatenated
7050 ;; types in `c-found-types' - it's the component types that
7051 ;; are recorded when appropriate.
7052 (setq pos (point))
7053 (let* ((c-promote-possible-types (or (memq res '(t known))
7054 c-promote-possible-types))
7055 ;; If we can't promote then set `c-record-found-types' so that
7056 ;; we can merge in the types from the second part afterwards if
7057 ;; it turns out to be a known type there.
7058 (c-record-found-types (and c-record-type-identifiers
7059 (not c-promote-possible-types)))
7060 subres)
7061 (if (and (looking-at c-opt-type-concat-key)
7062
7063 (progn
7064 (goto-char (match-end 1))
7065 (c-forward-syntactic-ws)
7066 (setq subres (c-forward-type))))
7067
7068 (progn
7069 ;; If either operand certainly is a type then both are, but we
7070 ;; don't let the existence of the operator itself promote two
7071 ;; uncertain types to a certain one.
7072 (cond ((eq res t))
7073 ((eq subres t)
7074 (unless (eq name-res 'template)
7075 (c-add-type id-start id-end))
7076 (when (and c-record-type-identifiers id-range)
7077 (c-record-type-id id-range))
7078 (setq res t))
7079 ((eq res 'known))
7080 ((eq subres 'known)
7081 (setq res 'known))
7082 ((eq res 'found))
7083 ((eq subres 'found)
7084 (setq res 'found))
7085 (t
7086 (setq res 'maybe)))
7087
7088 (when (and (eq res t)
7089 (consp c-record-found-types))
7090 ;; Merge in the ranges of any types found by the second
7091 ;; `c-forward-type'.
7092 (setq c-record-type-identifiers
7093 ;; `nconc' doesn't mind that the tail of
7094 ;; `c-record-found-types' is t.
7095 (nconc c-record-found-types
7096 c-record-type-identifiers))))
7097
7098 (goto-char pos))))
7099
7100 (when (and c-record-found-types (memq res '(known found)) id-range)
7101 (setq c-record-found-types
7102 (cons id-range c-record-found-types))))
7103
7104 ;;(message "c-forward-type %s -> %s: %s" start (point) res)
7105
7106 res))
7107
7108 (defun c-forward-annotation ()
7109 ;; Used for Java code only at the moment. Assumes point is on the @, moves
7110 ;; forward an annotation and returns t. Leaves point unmoved and returns
7111 ;; nil if there is no annotation at point.
7112 (let ((pos (point)))
7113 (or
7114 (and (looking-at "@")
7115 (not (looking-at c-keywords-regexp))
7116 (progn (forward-char) t)
7117 (looking-at c-symbol-key)
7118 (progn (goto-char (match-end 0))
7119 (c-forward-syntactic-ws)
7120 t)
7121 (if (looking-at "(")
7122 (c-go-list-forward)
7123 t))
7124 (progn (goto-char pos) nil))))
7125
7126 (defmacro c-pull-open-brace (ps)
7127 ;; Pull the next open brace from PS (which has the form of paren-state),
7128 ;; skipping over any brace pairs. Returns NIL when PS is exhausted.
7129 `(progn
7130 (while (consp (car ,ps))
7131 (setq ,ps (cdr ,ps)))
7132 (prog1 (car ,ps)
7133 (setq ,ps (cdr ,ps)))))
7134
7135 (defun c-back-over-compound-identifier ()
7136 ;; Point is putatively just after a "compound identifier", i.e. something
7137 ;; looking (in C++) like this "FQN::of::base::Class". Move to the start of
7138 ;; this construct and return t. If the parsing fails, return nil, leaving
7139 ;; point unchanged.
7140 (let ((here (point))
7141 end
7142 )
7143 (if (not (c-simple-skip-symbol-backward))
7144 nil
7145 (while
7146 (progn
7147 (setq end (point))
7148 (c-backward-syntactic-ws)
7149 (c-backward-token-2)
7150 (and
7151 c-opt-identifier-concat-key
7152 (looking-at c-opt-identifier-concat-key)
7153 (progn
7154 (c-backward-syntactic-ws)
7155 (c-simple-skip-symbol-backward))))
7156 (setq end (point)))
7157 (goto-char end)
7158 t)))
7159
7160 (defun c-back-over-member-initializer-braces ()
7161 ;; Point is just after a closing brace/parenthesis. Try to parse this as a
7162 ;; C++ member initializer list, going back to just after the introducing ":"
7163 ;; and returning t. Otherwise return nil, leaving point unchanged.
7164 (let ((here (point)) res)
7165 (setq res
7166 (catch 'done
7167 (when (not (c-go-list-backward))
7168 (throw 'done nil))
7169 (c-backward-syntactic-ws)
7170 (when (not (c-back-over-compound-identifier))
7171 (throw 'done nil))
7172 (c-backward-syntactic-ws)
7173
7174 (while (eq (char-before) ?,)
7175 (backward-char)
7176 (c-backward-syntactic-ws)
7177 (when (not (memq (char-before) '(?\) ?})))
7178 (throw 'done nil))
7179 (when (not (c-go-list-backward))
7180 (throw 'done nil))
7181 (c-backward-syntactic-ws)
7182 (when (not (c-back-over-compound-identifier))
7183 (throw 'done nil))
7184 (c-backward-syntactic-ws))
7185
7186 (eq (char-before) ?:)))
7187 (or res (goto-char here))
7188 res))
7189
7190 (defmacro c-back-over-list-of-member-inits ()
7191 ;; Go back over a list of elements, each looking like:
7192 ;; <symbol> (<expression>) ,
7193 ;; or <symbol> {<expression>} ,
7194 ;; when we are putatively immediately after a comma. Stop when we don't see
7195 ;; a comma. If either of <symbol> or bracketed <expression> is missing,
7196 ;; throw nil to 'level. If the terminating } or ) is unmatched, throw nil
7197 ;; to 'done. This is not a general purpose macro!
7198 `(while (eq (char-before) ?,)
7199 (backward-char)
7200 (c-backward-syntactic-ws)
7201 (when (not (memq (char-before) '(?\) ?})))
7202 (throw 'level nil))
7203 (when (not (c-go-list-backward))
7204 (throw 'done nil))
7205 (c-backward-syntactic-ws)
7206 (when (not (c-back-over-compound-identifier))
7207 (throw 'level nil))
7208 (c-backward-syntactic-ws)))
7209
7210 (defun c-back-over-member-initializers ()
7211 ;; Test whether we are in a C++ member initializer list, and if so, go back
7212 ;; to the introducing ":", returning the position of the opening paren of
7213 ;; the function's arglist. Otherwise return nil, leaving point unchanged.
7214 (let ((here (point))
7215 (paren-state (c-parse-state))
7216 pos level-plausible at-top-level res)
7217 ;; Assume tentatively that we're at the top level. Try to go back to the
7218 ;; colon we seek.
7219 (setq res
7220 (catch 'done
7221 (setq level-plausible
7222 (catch 'level
7223 (c-backward-syntactic-ws)
7224 (when (memq (char-before) '(?\) ?}))
7225 (when (not (c-go-list-backward))
7226 (throw 'done nil))
7227 (c-backward-syntactic-ws))
7228 (when (c-back-over-compound-identifier)
7229 (c-backward-syntactic-ws))
7230 (c-back-over-list-of-member-inits)
7231 (and (eq (char-before) ?:)
7232 (save-excursion
7233 (c-backward-token-2)
7234 (not (looking-at c-:$-multichar-token-regexp)))
7235 (c-just-after-func-arglist-p))))
7236
7237 (while (and (not (and level-plausible
7238 (setq at-top-level (c-at-toplevel-p))))
7239 (setq pos (c-pull-open-brace paren-state))) ; might be a paren.
7240 (setq level-plausible
7241 (catch 'level
7242 (goto-char pos)
7243 (c-backward-syntactic-ws)
7244 (when (not (c-back-over-compound-identifier))
7245 (throw 'level nil))
7246 (c-backward-syntactic-ws)
7247 (c-back-over-list-of-member-inits)
7248 (and (eq (char-before) ?:)
7249 (save-excursion
7250 (c-backward-token-2)
7251 (not (looking-at c-:$-multichar-token-regexp)))
7252 (c-just-after-func-arglist-p)))))
7253
7254 (and at-top-level level-plausible)))
7255 (or res (goto-char here))
7256 res))
7257
7258 \f
7259 ;; Handling of large scale constructs like statements and declarations.
7260
7261 ;; Macro used inside `c-forward-decl-or-cast-1'. It ought to be a
7262 ;; defsubst or perhaps even a defun, but it contains lots of free
7263 ;; variables that refer to things inside `c-forward-decl-or-cast-1'.
7264 (defmacro c-fdoc-shift-type-backward (&optional short)
7265 ;; `c-forward-decl-or-cast-1' can consume an arbitrary length list
7266 ;; of types when parsing a declaration, which means that it
7267 ;; sometimes consumes the identifier in the declaration as a type.
7268 ;; This is used to "backtrack" and make the last type be treated as
7269 ;; an identifier instead.
7270 `(progn
7271 ,(unless short
7272 ;; These identifiers are bound only in the inner let.
7273 '(setq identifier-type at-type
7274 identifier-start type-start
7275 got-parens nil
7276 got-identifier t
7277 got-suffix t
7278 got-suffix-after-parens id-start
7279 paren-depth 0))
7280
7281 (if (setq at-type (if (eq backup-at-type 'prefix)
7282 t
7283 backup-at-type))
7284 (setq type-start backup-type-start
7285 id-start backup-id-start)
7286 (setq type-start start-pos
7287 id-start start-pos))
7288
7289 ;; When these flags already are set we've found specifiers that
7290 ;; unconditionally signal these attributes - backtracking doesn't
7291 ;; change that. So keep them set in that case.
7292 (or at-type-decl
7293 (setq at-type-decl backup-at-type-decl))
7294 (or maybe-typeless
7295 (setq maybe-typeless backup-maybe-typeless))
7296
7297 ,(unless short
7298 ;; This identifier is bound only in the inner let.
7299 '(setq start id-start))))
7300
7301 (defun c-forward-declarator (&optional limit accept-anon)
7302 ;; Assuming point is at the start of a declarator, move forward over it,
7303 ;; leaving point at the next token after it (e.g. a ) or a ; or a ,).
7304 ;;
7305 ;; Return a list (ID-START ID-END BRACKETS-AFTER-ID GOT-INIT), where ID-START and
7306 ;; ID-END are the bounds of the declarator's identifier, and
7307 ;; BRACKETS-AFTER-ID is non-nil if a [...] pair is present after the id.
7308 ;; GOT-INIT is non-nil when the declarator is followed by "=" or "(".
7309 ;;
7310 ;; If ACCEPT-ANON is non-nil, move forward over any "anonymous declarator",
7311 ;; i.e. something like the (*) in int (*), such as might be found in a
7312 ;; declaration. In such a case ID-START and ID-END in the return value are
7313 ;; both set to nil. A "null" "anonymous declarator" gives a non-nil result.
7314 ;;
7315 ;; If no declarator is found, leave point unmoved and return nil. LIMIT is
7316 ;; an optional limit for forward searching.
7317 ;;
7318 ;; Note that the global variable `c-last-identifier-range' is written to, so
7319 ;; the caller should bind it if necessary.
7320
7321 ;; Inside the following "condition form", we move forward over the
7322 ;; declarator's identifier up as far as any opening bracket (for array
7323 ;; size) or paren (for parameters of function-type) or brace (for
7324 ;; array/struct initialization) or "=" or terminating delimiter
7325 ;; (e.g. "," or ";" or "}").
7326 (let ((here (point))
7327 id-start id-end brackets-after-id paren-depth)
7328 (or limit (setq limit (point-max)))
7329 (if (and
7330 (< (point) limit)
7331
7332 ;; The following form moves forward over the declarator's
7333 ;; identifier (and what precedes it), returning t. If there
7334 ;; wasn't one, it returns nil.
7335 (let (got-identifier)
7336 (setq paren-depth 0)
7337 ;; Skip over type decl prefix operators, one for each iteration
7338 ;; of the while. These are, e.g. "*" in "int *foo" or "(" and
7339 ;; "*" in "int (*foo) (void)" (Note similar code in
7340 ;; `c-forward-decl-or-cast-1'.)
7341 (while
7342 (cond
7343 ((looking-at c-decl-hangon-key)
7344 (c-forward-keyword-clause 1))
7345 ((and c-opt-cpp-prefix
7346 (looking-at c-noise-macro-with-parens-name-re))
7347 (c-forward-noise-clause))
7348 ((and (looking-at c-type-decl-prefix-key)
7349 (if (and (c-major-mode-is 'c++-mode)
7350 (match-beginning 3))
7351 ;; If the third submatch matches in C++ then
7352 ;; we're looking at an identifier that's a
7353 ;; prefix only if it specifies a member pointer.
7354 (progn
7355 (setq id-start (point))
7356 (c-forward-name)
7357 (if (looking-at "\\(::\\)")
7358 ;; We only check for a trailing "::" and
7359 ;; let the "*" that should follow be
7360 ;; matched in the next round.
7361 t
7362 ;; It turned out to be the real identifier,
7363 ;; so flag that and stop.
7364 (setq got-identifier t)
7365 nil))
7366 t))
7367 (if (eq (char-after) ?\()
7368 (progn
7369 (setq paren-depth (1+ paren-depth))
7370 (forward-char))
7371 (goto-char (match-end 1)))
7372 (c-forward-syntactic-ws)
7373 t)))
7374
7375 ;; If we haven't passed the identifier already, do it now.
7376 (unless got-identifier
7377 (setq id-start (point)))
7378 (cond
7379 ((or got-identifier
7380 (c-forward-name))
7381 (save-excursion
7382 (c-backward-syntactic-ws)
7383 (setq id-end (point))))
7384 (accept-anon
7385 (setq id-start nil id-end nil)
7386 t)
7387 (t (/= (point) here))))
7388
7389 ;; Skip out of the parens surrounding the identifier. If closing
7390 ;; parens are missing, this form returns nil.
7391 (or (= paren-depth 0)
7392 (c-safe (goto-char (scan-lists (point) 1 paren-depth))))
7393
7394 (<= (point) limit)
7395
7396 ;; Skip over any trailing bit, such as "__attribute__".
7397 (progn
7398 (while (cond
7399 ((looking-at c-decl-hangon-key)
7400 (c-forward-keyword-clause 1))
7401 ((and c-opt-cpp-prefix
7402 (looking-at c-noise-macro-with-parens-name-re))
7403 (c-forward-noise-clause))))
7404 (<= (point) limit))
7405
7406 ;; Search syntactically to the end of the declarator (";",
7407 ;; ",", a closing paren, eob etc) or to the beginning of an
7408 ;; initializer or function prototype ("=" or "\\s\(").
7409 ;; Note that square brackets are now not also treated as
7410 ;; initializers, since this broke when there were also
7411 ;; initializing brace lists.
7412 (let (found)
7413 (while
7414 (and (setq found (c-syntactic-re-search-forward
7415 "[;,]\\|\\s)\\|\\'\\|\\(=\\|\\s(\\)" limit t t))
7416 (eq (char-before) ?\[)
7417 (c-go-up-list-forward))
7418 (setq brackets-after-id t))
7419 (backward-char)
7420 found))
7421 (list id-start id-end brackets-after-id (match-beginning 1))
7422
7423 (goto-char here)
7424 nil)))
7425
7426 (defun c-forward-decl-or-cast-1 (preceding-token-end context last-cast-end)
7427 ;; Move forward over a declaration or a cast if at the start of one.
7428 ;; The point is assumed to be at the start of some token. Nil is
7429 ;; returned if no declaration or cast is recognized, and the point
7430 ;; is clobbered in that case.
7431 ;;
7432 ;; If a declaration is parsed:
7433 ;;
7434 ;; The point is left at the first token after the first complete
7435 ;; declarator, if there is one. The return value is a list of 4 elements,
7436 ;; where the first is the position of the first token in the declarator.
7437 ;; (See below for the other three.)
7438 ;; Some examples:
7439 ;;
7440 ;; void foo (int a, char *b) stuff ...
7441 ;; car ^ ^ point
7442 ;; float (*a)[], b;
7443 ;; car ^ ^ point
7444 ;; unsigned int a = c_style_initializer, b;
7445 ;; car ^ ^ point
7446 ;; unsigned int a (cplusplus_style_initializer), b;
7447 ;; car ^ ^ point (might change)
7448 ;; class Foo : public Bar {}
7449 ;; car ^ ^ point
7450 ;; class PikeClass (int a, string b) stuff ...
7451 ;; car ^ ^ point
7452 ;; enum bool;
7453 ;; car ^ ^ point
7454 ;; enum bool flag;
7455 ;; car ^ ^ point
7456 ;; void cplusplus_function (int x) throw (Bad);
7457 ;; car ^ ^ point
7458 ;; Foo::Foo (int b) : Base (b) {}
7459 ;; car ^ ^ point
7460 ;;
7461 ;; auto foo = 5;
7462 ;; car ^ ^ point
7463 ;; auto cplusplus_11 (int a, char *b) -> decltype (bar):
7464 ;; car ^ ^ point
7465 ;;
7466 ;;
7467 ;;
7468 ;; The second element of the return value is non-nil when a
7469 ;; `c-typedef-decl-kwds' specifier is found in the declaration.
7470 ;; Specifically it is a dotted pair (A . B) where B is t when a
7471 ;; `c-typedef-kwds' ("typedef") is present, and A is t when some
7472 ;; other `c-typedef-decl-kwds' (e.g. class, struct, enum)
7473 ;; specifier is present. I.e., (some of) the declared
7474 ;; identifier(s) are types.
7475 ;;
7476 ;; The third element of the return value is non-nil when the declaration
7477 ;; parsed might be an expression. The fourth element is the position of
7478 ;; the start of the type identifier.
7479 ;;
7480 ;; If a cast is parsed:
7481 ;;
7482 ;; The point is left at the first token after the closing paren of
7483 ;; the cast. The return value is `cast'. Note that the start
7484 ;; position must be at the first token inside the cast parenthesis
7485 ;; to recognize it.
7486 ;;
7487 ;; PRECEDING-TOKEN-END is the first position after the preceding
7488 ;; token, i.e. on the other side of the syntactic ws from the point.
7489 ;; Use a value less than or equal to (point-min) if the point is at
7490 ;; the first token in (the visible part of) the buffer.
7491 ;;
7492 ;; CONTEXT is a symbol that describes the context at the point:
7493 ;; 'decl In a comma-separated declaration context (typically
7494 ;; inside a function declaration arglist).
7495 ;; '<> In an angle bracket arglist.
7496 ;; 'arglist Some other type of arglist.
7497 ;; nil Some other context or unknown context. Includes
7498 ;; within the parens of an if, for, ... construct.
7499 ;;
7500 ;; LAST-CAST-END is the first token after the closing paren of a
7501 ;; preceding cast, or nil if none is known. If
7502 ;; `c-forward-decl-or-cast-1' is used in succession, it should be
7503 ;; the position after the closest preceding call where a cast was
7504 ;; matched. In that case it's used to discover chains of casts like
7505 ;; "(a) (b) c".
7506 ;;
7507 ;; This function records identifier ranges on
7508 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
7509 ;; `c-record-type-identifiers' is non-nil.
7510 ;;
7511 ;; This function might do hidden buffer changes.
7512
7513 (let (;; `start-pos' is used below to point to the start of the
7514 ;; first type, i.e. after any leading specifiers. It might
7515 ;; also point at the beginning of the preceding syntactic
7516 ;; whitespace.
7517 (start-pos (point))
7518 ;; Set to the result of `c-forward-type'.
7519 at-type
7520 ;; The position of the first token in what we currently
7521 ;; believe is the type in the declaration or cast, after any
7522 ;; specifiers and their associated clauses.
7523 type-start
7524 ;; The position of the first token in what we currently
7525 ;; believe is the declarator for the first identifier. Set
7526 ;; when the type is found, and moved forward over any
7527 ;; `c-decl-hangon-kwds' and their associated clauses that
7528 ;; occurs after the type.
7529 id-start
7530 ;; These store `at-type', `type-start' and `id-start' of the
7531 ;; identifier before the one in those variables. The previous
7532 ;; identifier might turn out to be the real type in a
7533 ;; declaration if the last one has to be the declarator in it.
7534 ;; If `backup-at-type' is nil then the other variables have
7535 ;; undefined values.
7536 backup-at-type backup-type-start backup-id-start
7537 ;; This stores `kwd-sym' of the symbol before the current one.
7538 ;; This is needed to distinguish the C++11 version of "auto" from
7539 ;; the pre C++11 meaning.
7540 backup-kwd-sym
7541 ;; Set if we've found a specifier (apart from "typedef") that makes
7542 ;; the defined identifier(s) types.
7543 at-type-decl
7544 ;; Set if we've a "typedef" keyword.
7545 at-typedef
7546 ;; Set if we've found a specifier that can start a declaration
7547 ;; where there's no type.
7548 maybe-typeless
7549 ;; Save the value of kwd-sym between loops of the "Check for a
7550 ;; type" loop. Needed to distinguish a C++11 "auto" from a pre
7551 ;; C++11 one.
7552 prev-kwd-sym
7553 ;; If a specifier is found that also can be a type prefix,
7554 ;; these flags are set instead of those above. If we need to
7555 ;; back up an identifier, they are copied to the real flag
7556 ;; variables. Thus they only take effect if we fail to
7557 ;; interpret it as a type.
7558 backup-at-type-decl backup-maybe-typeless
7559 ;; Whether we've found a declaration or a cast. We might know
7560 ;; this before we've found the type in it. It's 'ids if we've
7561 ;; found two consecutive identifiers (usually a sure sign, but
7562 ;; we should allow that in labels too), and t if we've found a
7563 ;; specifier keyword (a 100% sure sign).
7564 at-decl-or-cast
7565 ;; Set when we need to back up to parse this as a declaration
7566 ;; but not as a cast.
7567 backup-if-not-cast
7568 ;; For casts, the return position.
7569 cast-end
7570 ;; Have we got a new-style C++11 "auto"?
7571 new-style-auto
7572 ;; Set when the symbol before `preceding-token-end' is known to
7573 ;; terminate the previous construct, or when we're at point-min.
7574 at-decl-start
7575 ;; Save `c-record-type-identifiers' and
7576 ;; `c-record-ref-identifiers' since ranges are recorded
7577 ;; speculatively and should be thrown away if it turns out
7578 ;; that it isn't a declaration or cast.
7579 (save-rec-type-ids c-record-type-identifiers)
7580 (save-rec-ref-ids c-record-ref-identifiers)
7581 ;; Set when we parse a declaration which might also be an expression,
7582 ;; such as "a *b". See CASE 16 and CASE 17.
7583 maybe-expression)
7584
7585 (save-excursion
7586 (goto-char preceding-token-end)
7587 (setq at-decl-start
7588 (or (bobp)
7589 (let ((tok-end (point)))
7590 (c-backward-token-2)
7591 (member (buffer-substring-no-properties (point) tok-end)
7592 c-pre-start-tokens)))))
7593
7594 (while (c-forward-annotation)
7595 (c-forward-syntactic-ws))
7596
7597 ;; Check for a type. Unknown symbols are treated as possible
7598 ;; types, but they could also be specifiers disguised through
7599 ;; macros like __INLINE__, so we recognize both types and known
7600 ;; specifiers after them too.
7601 (while
7602 (let* ((start (point)) kwd-sym kwd-clause-end found-type noise-start)
7603
7604 (cond
7605 ;; Look for a specifier keyword clause.
7606 ((or (looking-at c-prefix-spec-kwds-re)
7607 (and (c-major-mode-is 'java-mode)
7608 (looking-at "@[A-Za-z0-9]+")))
7609 (save-match-data
7610 (if (looking-at c-typedef-key)
7611 (setq at-typedef t)))
7612 (setq kwd-sym (c-keyword-sym (match-string 1)))
7613 (save-excursion
7614 (c-forward-keyword-clause 1)
7615 (setq kwd-clause-end (point))))
7616 ((and c-opt-cpp-prefix
7617 (looking-at c-noise-macro-with-parens-name-re))
7618 (setq noise-start (point))
7619 (c-forward-noise-clause)
7620 (setq kwd-clause-end (point))))
7621
7622 (when (setq found-type (c-forward-type t)) ; brace-block-too
7623 ;; Found a known or possible type or a prefix of a known type.
7624 (when (and (c-major-mode-is 'c++-mode) ; C++11 style "auto"?
7625 (eq prev-kwd-sym (c-keyword-sym "auto"))
7626 (looking-at "[=(]")) ; FIXME!!! proper regexp.
7627 (setq new-style-auto t)
7628 (setq found-type nil)
7629 (goto-char start)) ; position of foo in "auto foo"
7630
7631 (when at-type
7632 ;; Got two identifiers with nothing but whitespace
7633 ;; between them. That can only happen in declarations.
7634 (setq at-decl-or-cast 'ids)
7635
7636 (when (eq at-type 'found)
7637 ;; If the previous identifier is a found type we
7638 ;; record it as a real one; it might be some sort of
7639 ;; alias for a prefix like "unsigned".
7640 (save-excursion
7641 (goto-char type-start)
7642 (let ((c-promote-possible-types t))
7643 (c-forward-type)))))
7644
7645 (setq backup-at-type at-type
7646 backup-type-start type-start
7647 backup-id-start id-start
7648 backup-kwd-sym kwd-sym
7649 at-type found-type
7650 type-start start
7651 id-start (point)
7652 ;; The previous ambiguous specifier/type turned out
7653 ;; to be a type since we've parsed another one after
7654 ;; it, so clear these backup flags.
7655 backup-at-type-decl nil
7656 backup-maybe-typeless nil))
7657
7658 (if (or kwd-sym noise-start)
7659 (progn
7660 ;; Handle known specifier keywords and
7661 ;; `c-decl-hangon-kwds' which can occur after known
7662 ;; types.
7663
7664 (if (or (c-keyword-member kwd-sym 'c-decl-hangon-kwds)
7665 noise-start)
7666 ;; It's a hang-on keyword or noise clause that can occur
7667 ;; anywhere.
7668 (progn
7669 (if at-type
7670 ;; Move the identifier start position if
7671 ;; we've passed a type.
7672 (setq id-start kwd-clause-end)
7673 ;; Otherwise treat this as a specifier and
7674 ;; move the fallback position.
7675 (setq start-pos kwd-clause-end))
7676 (goto-char kwd-clause-end))
7677
7678 ;; It's an ordinary specifier so we know that
7679 ;; anything before this can't be the type.
7680 (setq backup-at-type nil
7681 start-pos kwd-clause-end)
7682
7683 (if found-type
7684 ;; It's ambiguous whether this keyword is a
7685 ;; specifier or a type prefix, so set the backup
7686 ;; flags. (It's assumed that `c-forward-type'
7687 ;; moved further than `c-forward-keyword-clause'.)
7688 (progn
7689 (when (c-keyword-member kwd-sym 'c-typedef-decl-kwds)
7690 (setq backup-at-type-decl t))
7691 (when (c-keyword-member kwd-sym 'c-typeless-decl-kwds)
7692 (setq backup-maybe-typeless t)))
7693
7694 (when (c-keyword-member kwd-sym 'c-typedef-decl-kwds)
7695 ;; This test only happens after we've scanned a type.
7696 ;; So, with valid syntax, kwd-sym can't be 'typedef.
7697 (setq at-type-decl t))
7698 (when (c-keyword-member kwd-sym 'c-typeless-decl-kwds)
7699 (setq maybe-typeless t))
7700
7701 ;; Haven't matched a type so it's an unambiguous
7702 ;; specifier keyword and we know we're in a
7703 ;; declaration.
7704 (setq at-decl-or-cast t)
7705 (setq prev-kwd-sym kwd-sym)
7706
7707 (goto-char kwd-clause-end))))
7708
7709 ;; If the type isn't known we continue so that we'll jump
7710 ;; over all specifiers and type identifiers. The reason
7711 ;; to do this for a known type prefix is to make things
7712 ;; like "unsigned INT16" work.
7713 (and found-type (not (eq found-type t))))))
7714
7715 (cond
7716 ((eq at-type t)
7717 ;; If a known type was found, we still need to skip over any
7718 ;; hangon keyword clauses after it. Otherwise it has already
7719 ;; been done in the loop above.
7720 (while
7721 (cond ((looking-at c-decl-hangon-key)
7722 (c-forward-keyword-clause 1))
7723 ((and c-opt-cpp-prefix
7724 (looking-at c-noise-macro-with-parens-name-re))
7725 (c-forward-noise-clause))))
7726 (setq id-start (point)))
7727
7728 ((eq at-type 'prefix)
7729 ;; A prefix type is itself a primitive type when it's not
7730 ;; followed by another type.
7731 (setq at-type t))
7732
7733 ((not at-type)
7734 ;; Got no type but set things up to continue anyway to handle
7735 ;; the various cases when a declaration doesn't start with a
7736 ;; type.
7737 (setq id-start start-pos))
7738
7739 ((and (eq at-type 'maybe)
7740 (c-major-mode-is 'c++-mode))
7741 ;; If it's C++ then check if the last "type" ends on the form
7742 ;; "foo::foo" or "foo::~foo", i.e. if it's the name of a
7743 ;; (con|de)structor.
7744 (save-excursion
7745 (let (name end-2 end-1)
7746 (goto-char id-start)
7747 (c-backward-syntactic-ws)
7748 (setq end-2 (point))
7749 (when (and
7750 (c-simple-skip-symbol-backward)
7751 (progn
7752 (setq name
7753 (buffer-substring-no-properties (point) end-2))
7754 ;; Cheating in the handling of syntactic ws below.
7755 (< (skip-chars-backward ":~ \t\n\r\v\f") 0))
7756 (progn
7757 (setq end-1 (point))
7758 (c-simple-skip-symbol-backward))
7759 (>= (point) type-start)
7760 (equal (buffer-substring-no-properties (point) end-1)
7761 name))
7762 ;; It is a (con|de)structor name. In that case the
7763 ;; declaration is typeless so zap out any preceding
7764 ;; identifier(s) that we might have taken as types.
7765 (goto-char type-start)
7766 (setq at-type nil
7767 backup-at-type nil
7768 id-start type-start))))))
7769
7770 ;; Check for and step over a type decl expression after the thing
7771 ;; that is or might be a type. This can't be skipped since we
7772 ;; need the correct end position of the declarator for
7773 ;; `max-type-decl-end-*'.
7774 (let ((start (point)) (paren-depth 0) pos
7775 ;; True if there's a non-open-paren match of
7776 ;; `c-type-decl-prefix-key'.
7777 got-prefix
7778 ;; True if the declarator is surrounded by a parenthesis pair.
7779 got-parens
7780 ;; True if there is an identifier in the declarator.
7781 got-identifier
7782 ;; True if there's a non-close-paren match of
7783 ;; `c-type-decl-suffix-key'.
7784 got-suffix
7785 ;; True if there's a prefix match outside the outermost
7786 ;; paren pair that surrounds the declarator.
7787 got-prefix-before-parens
7788 ;; True if there's a suffix match outside the outermost
7789 ;; paren pair that surrounds the declarator. The value is
7790 ;; the position of the first suffix match.
7791 got-suffix-after-parens
7792 ;; True if we've parsed the type decl to a token that is
7793 ;; known to end declarations in this context.
7794 at-decl-end
7795 ;; The earlier values of `at-type' and `type-start' if we've
7796 ;; shifted the type backwards.
7797 identifier-type identifier-start
7798 ;; If `c-parse-and-markup-<>-arglists' is set we need to
7799 ;; turn it off during the name skipping below to avoid
7800 ;; getting `c-type' properties that might be bogus. That
7801 ;; can happen since we don't know if
7802 ;; `c-restricted-<>-arglists' will be correct inside the
7803 ;; arglist paren that gets entered.
7804 c-parse-and-markup-<>-arglists
7805 ;; Start of the identifier for which `got-identifier' was set.
7806 name-start)
7807
7808 (goto-char id-start)
7809
7810 ;; Skip over type decl prefix operators. (Note similar code in
7811 ;; `c-forward-declarator'.)
7812 (if (and c-recognize-typeless-decls
7813 (equal c-type-decl-prefix-key "\\<\\>"))
7814 (when (eq (char-after) ?\()
7815 (progn
7816 (setq paren-depth (1+ paren-depth))
7817 (forward-char)))
7818 (while (and (looking-at c-type-decl-prefix-key)
7819 (if (and (c-major-mode-is 'c++-mode)
7820 (match-beginning 3))
7821 ;; If the third submatch matches in C++ then
7822 ;; we're looking at an identifier that's a
7823 ;; prefix only if it specifies a member pointer.
7824 (when (progn (setq pos (point))
7825 (setq got-identifier (c-forward-name)))
7826 (setq name-start pos)
7827 (if (looking-at "\\(::\\)")
7828 ;; We only check for a trailing "::" and
7829 ;; let the "*" that should follow be
7830 ;; matched in the next round.
7831 (progn (setq got-identifier nil) t)
7832 ;; It turned out to be the real identifier,
7833 ;; so stop.
7834 nil))
7835 t))
7836
7837 (if (eq (char-after) ?\()
7838 (progn
7839 (setq paren-depth (1+ paren-depth))
7840 (forward-char))
7841 (unless got-prefix-before-parens
7842 (setq got-prefix-before-parens (= paren-depth 0)))
7843 (setq got-prefix t)
7844 (goto-char (match-end 1)))
7845 (c-forward-syntactic-ws)))
7846
7847 (setq got-parens (> paren-depth 0))
7848
7849 ;; Skip over an identifier.
7850 (or got-identifier
7851 (and (looking-at c-identifier-start)
7852 (setq pos (point))
7853 (setq got-identifier (c-forward-name))
7854 (setq name-start pos)))
7855
7856 ;; Skip over type decl suffix operators and trailing noise macros.
7857 (while
7858 (cond
7859 ((and c-opt-cpp-prefix
7860 (looking-at c-noise-macro-with-parens-name-re))
7861 (c-forward-noise-clause))
7862
7863 ((looking-at c-type-decl-suffix-key)
7864 (if (eq (char-after) ?\))
7865 (when (> paren-depth 0)
7866 (setq paren-depth (1- paren-depth))
7867 (forward-char)
7868 t)
7869 (when (if (save-match-data (looking-at "\\s("))
7870 (c-safe (c-forward-sexp 1) t)
7871 (goto-char (match-end 1))
7872 t)
7873 (when (and (not got-suffix-after-parens)
7874 (= paren-depth 0))
7875 (setq got-suffix-after-parens (match-beginning 0)))
7876 (setq got-suffix t))))
7877
7878 (t
7879 ;; No suffix matched. We might have matched the
7880 ;; identifier as a type and the open paren of a
7881 ;; function arglist as a type decl prefix. In that
7882 ;; case we should "backtrack": Reinterpret the last
7883 ;; type as the identifier, move out of the arglist and
7884 ;; continue searching for suffix operators.
7885 ;;
7886 ;; Do this even if there's no preceding type, to cope
7887 ;; with old style function declarations in K&R C,
7888 ;; (con|de)structors in C++ and `c-typeless-decl-kwds'
7889 ;; style declarations. That isn't applicable in an
7890 ;; arglist context, though.
7891 (when (and (= paren-depth 1)
7892 (not got-prefix-before-parens)
7893 (not (eq at-type t))
7894 (or backup-at-type
7895 maybe-typeless
7896 backup-maybe-typeless
7897 (when c-recognize-typeless-decls
7898 (not context)))
7899 (setq pos (c-up-list-forward (point)))
7900 (eq (char-before pos) ?\)))
7901 (c-fdoc-shift-type-backward)
7902 (goto-char pos)
7903 t)))
7904
7905 (c-forward-syntactic-ws))
7906
7907 (when (or (and new-style-auto
7908 (looking-at c-auto-ops-re))
7909 (and (or maybe-typeless backup-maybe-typeless)
7910 (not got-identifier)
7911 (not got-prefix)
7912 at-type))
7913 ;; Have found no identifier but `c-typeless-decl-kwds' has
7914 ;; matched so we know we're inside a declaration. The
7915 ;; preceding type must be the identifier instead.
7916 (c-fdoc-shift-type-backward))
7917
7918 ;; Prepare the "-> type;" for fontification later on.
7919 (when (and new-style-auto
7920 (looking-at c-haskell-op-re))
7921 (save-excursion
7922 (goto-char (match-end 0))
7923 (c-forward-syntactic-ws)
7924 (setq type-start (point))
7925 (setq at-type (c-forward-type))))
7926
7927 (setq
7928 at-decl-or-cast
7929 (catch 'at-decl-or-cast
7930
7931 ;; CASE 1
7932 (when (> paren-depth 0)
7933 ;; Encountered something inside parens that isn't matched by
7934 ;; the `c-type-decl-*' regexps, so it's not a type decl
7935 ;; expression. Try to skip out to the same paren depth to
7936 ;; not confuse the cast check below.
7937 (c-safe (goto-char (scan-lists (point) 1 paren-depth)))
7938 ;; If we've found a specifier keyword then it's a
7939 ;; declaration regardless.
7940 (throw 'at-decl-or-cast (eq at-decl-or-cast t)))
7941
7942 (setq at-decl-end
7943 (looking-at (cond ((eq context '<>) "[,>]")
7944 (context "[,)]")
7945 (t "[,;]"))))
7946
7947 ;; Now we've collected info about various characteristics of
7948 ;; the construct we're looking at. Below follows a decision
7949 ;; tree based on that. It's ordered to check more certain
7950 ;; signs before less certain ones.
7951
7952 (if got-identifier
7953 (progn
7954
7955 ;; CASE 2
7956 (when (and (or at-type maybe-typeless)
7957 (not (or got-prefix got-parens)))
7958 ;; Got another identifier directly after the type, so it's a
7959 ;; declaration.
7960 (throw 'at-decl-or-cast t))
7961
7962 (when (and got-parens
7963 (not got-prefix)
7964 ;; (not got-suffix-after-parens)
7965 (or backup-at-type
7966 maybe-typeless
7967 backup-maybe-typeless
7968 (eq at-decl-or-cast t)
7969 ;; Check whether we have "bar (gnu);" where we
7970 ;; are directly inside a class (etc.) called "bar".
7971 (save-excursion
7972 (and
7973 (progn
7974 (goto-char name-start)
7975 (not (memq (c-forward-type) '(nil maybe))))
7976 (progn
7977 (goto-char id-start)
7978 (c-directly-in-class-called-p
7979 (buffer-substring
7980 type-start
7981 (progn
7982 (goto-char type-start)
7983 (c-forward-type)
7984 (c-backward-syntactic-ws)
7985 (point)))))))))
7986 ;; Got a declaration of the form "foo bar (gnu);" or "bar
7987 ;; (gnu);" where we've recognized "bar" as the type and "gnu"
7988 ;; as the declarator, and in the latter case, checked that
7989 ;; "bar (gnu)" appears directly inside the class "bar". In
7990 ;; this case it's however more likely that "bar" is the
7991 ;; declarator and "gnu" a function argument or initializer
7992 ;; (if `c-recognize-paren-inits' is set), since the parens
7993 ;; around "gnu" would be superfluous if it's a declarator.
7994 ;; Shift the type one step backward.
7995 (c-fdoc-shift-type-backward)))
7996
7997 ;; Found no identifier.
7998
7999 (if backup-at-type
8000 (progn
8001
8002 ;; CASE 3
8003 (when (= (point) start)
8004 ;; Got a plain list of identifiers. If a colon follows it's
8005 ;; a valid label, or maybe a bitfield. Otherwise the last
8006 ;; one probably is the declared identifier and we should
8007 ;; back up to the previous type, providing it isn't a cast.
8008 (if (and (eq (char-after) ?:)
8009 (not (c-major-mode-is 'java-mode)))
8010 (cond
8011 ;; If we've found a specifier keyword then it's a
8012 ;; declaration regardless.
8013 ((eq at-decl-or-cast t)
8014 (throw 'at-decl-or-cast t))
8015 ((and c-has-bitfields
8016 (eq at-decl-or-cast 'ids)) ; bitfield.
8017 (setq backup-if-not-cast t)
8018 (throw 'at-decl-or-cast t)))
8019
8020 (setq backup-if-not-cast t)
8021 (throw 'at-decl-or-cast t)))
8022
8023 ;; CASE 4
8024 (when (and got-suffix
8025 (not got-prefix)
8026 (not got-parens))
8027 ;; Got a plain list of identifiers followed by some suffix.
8028 ;; If this isn't a cast then the last identifier probably is
8029 ;; the declared one and we should back up to the previous
8030 ;; type.
8031 (setq backup-if-not-cast t)
8032 (throw 'at-decl-or-cast t)))
8033
8034 ;; CASE 5
8035 (when (eq at-type t)
8036 ;; If the type is known we know that there can't be any
8037 ;; identifier somewhere else, and it's only in declarations in
8038 ;; e.g. function prototypes and in casts that the identifier may
8039 ;; be left out.
8040 (throw 'at-decl-or-cast t))
8041
8042 (when (= (point) start)
8043 ;; Only got a single identifier (parsed as a type so far).
8044 ;; CASE 6
8045 (if (and
8046 ;; Check that the identifier isn't at the start of an
8047 ;; expression.
8048 at-decl-end
8049 (cond
8050 ((eq context 'decl)
8051 ;; Inside an arglist that contains declarations. If K&R
8052 ;; style declarations and parenthesis style initializers
8053 ;; aren't allowed then the single identifier must be a
8054 ;; type, else we require that it's known or found
8055 ;; (primitive types are handled above).
8056 (or (and (not c-recognize-knr-p)
8057 (not c-recognize-paren-inits))
8058 (memq at-type '(known found))))
8059 ((eq context '<>)
8060 ;; Inside a template arglist. Accept known and found
8061 ;; types; other identifiers could just as well be
8062 ;; constants in C++.
8063 (memq at-type '(known found)))))
8064 (throw 'at-decl-or-cast t)
8065 ;; CASE 7
8066 ;; Can't be a valid declaration or cast, but if we've found a
8067 ;; specifier it can't be anything else either, so treat it as
8068 ;; an invalid/unfinished declaration or cast.
8069 (throw 'at-decl-or-cast at-decl-or-cast))))
8070
8071 (if (and got-parens
8072 (not got-prefix)
8073 (not context)
8074 (not (eq at-type t))
8075 (or backup-at-type
8076 maybe-typeless
8077 backup-maybe-typeless
8078 (when c-recognize-typeless-decls
8079 (or (not got-suffix)
8080 (not (looking-at
8081 c-after-suffixed-type-maybe-decl-key))))))
8082 ;; Got an empty paren pair and a preceding type that probably
8083 ;; really is the identifier. Shift the type backwards to make
8084 ;; the last one the identifier. This is analogous to the
8085 ;; "backtracking" done inside the `c-type-decl-suffix-key' loop
8086 ;; above.
8087 ;;
8088 ;; Exception: In addition to the conditions in that
8089 ;; "backtracking" code, do not shift backward if we're not
8090 ;; looking at either `c-after-suffixed-type-decl-key' or "[;,]".
8091 ;; Since there's no preceding type, the shift would mean that
8092 ;; the declaration is typeless. But if the regexp doesn't match
8093 ;; then we will simply fall through in the tests below and not
8094 ;; recognize it at all, so it's better to try it as an abstract
8095 ;; declarator instead.
8096 (c-fdoc-shift-type-backward)
8097
8098 ;; Still no identifier.
8099 ;; CASE 8
8100 (when (and got-prefix (or got-parens got-suffix))
8101 ;; Require `got-prefix' together with either `got-parens' or
8102 ;; `got-suffix' to recognize it as an abstract declarator:
8103 ;; `got-parens' only is probably an empty function call.
8104 ;; `got-suffix' only can build an ordinary expression together
8105 ;; with the preceding identifier which we've taken as a type.
8106 ;; We could actually accept on `got-prefix' only, but that can
8107 ;; easily occur temporarily while writing an expression so we
8108 ;; avoid that case anyway. We could do a better job if we knew
8109 ;; the point when the fontification was invoked.
8110 (throw 'at-decl-or-cast t))
8111
8112 ;; CASE 9
8113 (when (and at-type
8114 (not got-prefix)
8115 (not got-parens)
8116 got-suffix-after-parens
8117 (eq (char-after got-suffix-after-parens) ?\())
8118 ;; Got a type, no declarator but a paren suffix. I.e. it's a
8119 ;; normal function call after all (or perhaps a C++ style object
8120 ;; instantiation expression).
8121 (throw 'at-decl-or-cast nil))))
8122
8123 ;; CASE 10
8124 (when at-decl-or-cast
8125 ;; By now we've located the type in the declaration that we know
8126 ;; we're in.
8127 (throw 'at-decl-or-cast t))
8128
8129 ;; CASE 11
8130 (when (and got-identifier
8131 (not context)
8132 (looking-at c-after-suffixed-type-decl-key)
8133 (if (and got-parens
8134 (not got-prefix)
8135 (not got-suffix)
8136 (not (eq at-type t)))
8137 ;; Shift the type backward in the case that there's a
8138 ;; single identifier inside parens. That can only
8139 ;; occur in K&R style function declarations so it's
8140 ;; more likely that it really is a function call.
8141 ;; Therefore we only do this after
8142 ;; `c-after-suffixed-type-decl-key' has matched.
8143 (progn (c-fdoc-shift-type-backward) t)
8144 got-suffix-after-parens))
8145 ;; A declaration according to `c-after-suffixed-type-decl-key'.
8146 (throw 'at-decl-or-cast t))
8147
8148 ;; CASE 12
8149 (when (and (or got-prefix (not got-parens))
8150 (memq at-type '(t known)))
8151 ;; It's a declaration if a known type precedes it and it can't be a
8152 ;; function call.
8153 (throw 'at-decl-or-cast t))
8154
8155 ;; If we get here we can't tell if this is a type decl or a normal
8156 ;; expression by looking at it alone. (That's under the assumption
8157 ;; that normal expressions always can look like type decl expressions,
8158 ;; which isn't really true but the cases where it doesn't hold are so
8159 ;; uncommon (e.g. some placements of "const" in C++) it's not worth
8160 ;; the effort to look for them.)
8161
8162 ;;; 2008-04-16: commented out the next form, to allow the function to recognize
8163 ;;; "foo (int bar)" in CC (an implicit type (in class foo) without a semicolon)
8164 ;;; as a(n almost complete) declaration, enabling it to be fontified.
8165 ;; CASE 13
8166 ;; (unless (or at-decl-end (looking-at "=[^=]"))
8167 ;; If this is a declaration it should end here or its initializer(*)
8168 ;; should start here, so check for allowed separation tokens. Note
8169 ;; that this rule doesn't work e.g. with a K&R arglist after a
8170 ;; function header.
8171 ;;
8172 ;; *) Don't check for C++ style initializers using parens
8173 ;; since those already have been matched as suffixes.
8174 ;;
8175 ;; If `at-decl-or-cast' is then we've found some other sign that
8176 ;; it's a declaration or cast, so then it's probably an
8177 ;; invalid/unfinished one.
8178 ;; (throw 'at-decl-or-cast at-decl-or-cast))
8179
8180 ;; Below are tests that only should be applied when we're certain to
8181 ;; not have parsed halfway through an expression.
8182
8183 ;; CASE 14
8184 (when (memq at-type '(t known))
8185 ;; The expression starts with a known type so treat it as a
8186 ;; declaration.
8187 (throw 'at-decl-or-cast t))
8188
8189 ;; CASE 15
8190 (when (and (c-major-mode-is 'c++-mode)
8191 ;; In C++ we check if the identifier is a known type, since
8192 ;; (con|de)structors use the class name as identifier.
8193 ;; We've always shifted over the identifier as a type and
8194 ;; then backed up again in this case.
8195 identifier-type
8196 (or (memq identifier-type '(found known))
8197 (and (eq (char-after identifier-start) ?~)
8198 ;; `at-type' probably won't be 'found for
8199 ;; destructors since the "~" is then part of the
8200 ;; type name being checked against the list of
8201 ;; known types, so do a check without that
8202 ;; operator.
8203 (or (save-excursion
8204 (goto-char (1+ identifier-start))
8205 (c-forward-syntactic-ws)
8206 (c-with-syntax-table
8207 c-identifier-syntax-table
8208 (looking-at c-known-type-key)))
8209 (save-excursion
8210 (goto-char (1+ identifier-start))
8211 ;; We have already parsed the type earlier,
8212 ;; so it'd be possible to cache the end
8213 ;; position instead of redoing it here, but
8214 ;; then we'd need to keep track of another
8215 ;; position everywhere.
8216 (c-check-type (point)
8217 (progn (c-forward-type)
8218 (point))))))))
8219 (throw 'at-decl-or-cast t))
8220
8221 (if got-identifier
8222 (progn
8223 ;; CASE 16
8224 (when (and got-prefix-before-parens
8225 at-type
8226 (or at-decl-end (looking-at "=[^=]"))
8227 (not context)
8228 (or (not got-suffix)
8229 at-decl-start))
8230 ;; Got something like "foo * bar;". Since we're not inside
8231 ;; an arglist it would be a meaningless expression because
8232 ;; the result isn't used. We therefore choose to recognize
8233 ;; it as a declaration. We only allow a suffix (which makes
8234 ;; the construct look like a function call) when
8235 ;; `at-decl-start' provides additional evidence that we do
8236 ;; have a declaration.
8237 (setq maybe-expression t)
8238 (throw 'at-decl-or-cast t))
8239
8240 ;; CASE 17
8241 (when (and (or got-suffix-after-parens
8242 (looking-at "=[^=]"))
8243 (eq at-type 'found)
8244 (not (eq context 'arglist)))
8245 ;; Got something like "a (*b) (c);" or "a (b) = c;". It could
8246 ;; be an odd expression or it could be a declaration. Treat
8247 ;; it as a declaration if "a" has been used as a type
8248 ;; somewhere else (if it's a known type we won't get here).
8249 (setq maybe-expression t)
8250 (throw 'at-decl-or-cast t)))
8251
8252 ;; CASE 18
8253 (when (and context
8254 (or got-prefix
8255 (and (eq context 'decl)
8256 (not c-recognize-paren-inits)
8257 (or got-parens got-suffix))))
8258 ;; Got a type followed by an abstract declarator. If `got-prefix'
8259 ;; is set it's something like "a *" without anything after it. If
8260 ;; `got-parens' or `got-suffix' is set it's "a()", "a[]", "a()[]",
8261 ;; or similar, which we accept only if the context rules out
8262 ;; expressions.
8263 (throw 'at-decl-or-cast t)))
8264
8265 ;; If we had a complete symbol table here (which rules out
8266 ;; `c-found-types') we should return t due to the disambiguation rule
8267 ;; (in at least C++) that anything that can be parsed as a declaration
8268 ;; is a declaration. Now we're being more defensive and prefer to
8269 ;; highlight things like "foo (bar);" as a declaration only if we're
8270 ;; inside an arglist that contains declarations.
8271 ;; CASE 19
8272 (eq context 'decl))))
8273
8274 ;; The point is now after the type decl expression.
8275
8276 (cond
8277 ;; Check for a cast.
8278 ((save-excursion
8279 (and
8280 c-cast-parens
8281
8282 ;; Should be the first type/identifier in a cast paren.
8283 (> preceding-token-end (point-min))
8284 (memq (char-before preceding-token-end) c-cast-parens)
8285
8286 ;; The closing paren should follow.
8287 (progn
8288 (c-forward-syntactic-ws)
8289 (looking-at "\\s)"))
8290
8291 ;; There should be a primary expression after it.
8292 (let (pos)
8293 (forward-char)
8294 (c-forward-syntactic-ws)
8295 (setq cast-end (point))
8296 (and (looking-at c-primary-expr-regexp)
8297 (progn
8298 (setq pos (match-end 0))
8299 (or
8300 ;; Check if the expression begins with a prefix keyword.
8301 (match-beginning 2)
8302 (if (match-beginning 1)
8303 ;; Expression begins with an ambiguous operator. Treat
8304 ;; it as a cast if it's a type decl or if we've
8305 ;; recognized the type somewhere else.
8306 (or at-decl-or-cast
8307 (memq at-type '(t known found)))
8308 ;; Unless it's a keyword, it's the beginning of a primary
8309 ;; expression.
8310 (not (looking-at c-keywords-regexp)))))
8311 ;; If `c-primary-expr-regexp' matched a nonsymbol token, check
8312 ;; that it matched a whole one so that we don't e.g. confuse
8313 ;; the operator '-' with '->'. It's ok if it matches further,
8314 ;; though, since it e.g. can match the float '.5' while the
8315 ;; operator regexp only matches '.'.
8316 (or (not (looking-at c-nonsymbol-token-regexp))
8317 (<= (match-end 0) pos))))
8318
8319 ;; There should either be a cast before it or something that isn't an
8320 ;; identifier or close paren.
8321 (> preceding-token-end (point-min))
8322 (progn
8323 (goto-char (1- preceding-token-end))
8324 (or (eq (point) last-cast-end)
8325 (progn
8326 (c-backward-syntactic-ws)
8327 (if (< (skip-syntax-backward "w_") 0)
8328 ;; It's a symbol. Accept it only if it's one of the
8329 ;; keywords that can precede an expression (without
8330 ;; surrounding parens).
8331 (looking-at c-simple-stmt-key)
8332 (and
8333 ;; Check that it isn't a close paren (block close is ok,
8334 ;; though).
8335 (not (memq (char-before) '(?\) ?\])))
8336 ;; Check that it isn't a nonsymbol identifier.
8337 (not (c-on-identifier)))))))))
8338
8339 ;; Handle the cast.
8340 (when (and c-record-type-identifiers at-type (not (eq at-type t)))
8341 (let ((c-promote-possible-types t))
8342 (goto-char type-start)
8343 (c-forward-type)))
8344
8345 (goto-char cast-end)
8346 'cast)
8347
8348 (at-decl-or-cast
8349 ;; We're at a declaration. Highlight the type and the following
8350 ;; declarators.
8351
8352 (when backup-if-not-cast
8353 (c-fdoc-shift-type-backward t))
8354
8355 (when (and (eq context 'decl) (looking-at ","))
8356 ;; Make sure to propagate the `c-decl-arg-start' property to
8357 ;; the next argument if it's set in this one, to cope with
8358 ;; interactive refontification.
8359 (c-put-c-type-property (point) 'c-decl-arg-start))
8360
8361 ;; Record the type's coordinates in `c-record-type-identifiers' for
8362 ;; later fontification.
8363 (when (and c-record-type-identifiers at-type ;; (not (eq at-type t))
8364 ;; There seems no reason to exclude a token from
8365 ;; fontification just because it's "a known type that can't
8366 ;; be a name or other expression". 2013-09-18.
8367 )
8368 (let ((c-promote-possible-types t))
8369 (save-excursion
8370 (goto-char type-start)
8371 (c-forward-type))))
8372
8373 (list id-start
8374 (and (or at-type-decl at-typedef)
8375 (cons at-type-decl at-typedef))
8376 maybe-expression
8377 type-start))
8378
8379 (t
8380 ;; False alarm. Restore the recorded ranges.
8381 (setq c-record-type-identifiers save-rec-type-ids
8382 c-record-ref-identifiers save-rec-ref-ids)
8383 nil))))
8384
8385 (defun c-forward-label (&optional assume-markup preceding-token-end limit)
8386 ;; Assuming that point is at the beginning of a token, check if it starts a
8387 ;; label and if so move over it and return non-nil (t in default situations,
8388 ;; specific symbols (see below) for interesting situations), otherwise don't
8389 ;; move and return nil. "Label" here means "most things with a colon".
8390 ;;
8391 ;; More precisely, a "label" is regarded as one of:
8392 ;; (i) a goto target like "foo:" - returns the symbol `goto-target';
8393 ;; (ii) A case label - either the entire construct "case FOO:", or just the
8394 ;; bare "case", should the colon be missing. We return t;
8395 ;; (iii) a keyword which needs a colon, like "default:" or "private:"; We
8396 ;; return t;
8397 ;; (iv) One of QT's "extended" C++ variants of
8398 ;; "private:"/"protected:"/"public:"/"more:" looking like "public slots:".
8399 ;; Returns the symbol `qt-2kwds-colon'.
8400 ;; (v) QT's construct "signals:". Returns the symbol `qt-1kwd-colon'.
8401 ;; (vi) One of the keywords matched by `c-opt-extra-label-key' (without any
8402 ;; colon). Currently (2006-03), this applies only to Objective C's
8403 ;; keywords "@private", "@protected", and "@public". Returns t.
8404 ;;
8405 ;; One of the things which will NOT be recognized as a label is a bit-field
8406 ;; element of a struct, something like "int foo:5".
8407 ;;
8408 ;; The end of the label is taken to be just after the colon, or the end of
8409 ;; the first submatch in `c-opt-extra-label-key'. The point is directly
8410 ;; after the end on return. The terminating char gets marked with
8411 ;; `c-decl-end' to improve recognition of the following declaration or
8412 ;; statement.
8413 ;;
8414 ;; If ASSUME-MARKUP is non-nil, it's assumed that the preceding
8415 ;; label, if any, has already been marked up like that.
8416 ;;
8417 ;; If PRECEDING-TOKEN-END is given, it should be the first position
8418 ;; after the preceding token, i.e. on the other side of the
8419 ;; syntactic ws from the point. Use a value less than or equal to
8420 ;; (point-min) if the point is at the first token in (the visible
8421 ;; part of) the buffer.
8422 ;;
8423 ;; The optional LIMIT limits the forward scan for the colon.
8424 ;;
8425 ;; This function records the ranges of the label symbols on
8426 ;; `c-record-ref-identifiers' if `c-record-type-identifiers' (!) is
8427 ;; non-nil.
8428 ;;
8429 ;; This function might do hidden buffer changes.
8430
8431 (let ((start (point))
8432 label-end
8433 qt-symbol-idx
8434 macro-start ; if we're in one.
8435 label-type
8436 kwd)
8437 (cond
8438 ;; "case" or "default" (Doesn't apply to AWK).
8439 ((looking-at c-label-kwds-regexp)
8440 (let ((kwd-end (match-end 1)))
8441 ;; Record only the keyword itself for fontification, since in
8442 ;; case labels the following is a constant expression and not
8443 ;; a label.
8444 (when c-record-type-identifiers
8445 (c-record-ref-id (cons (match-beginning 1) kwd-end)))
8446
8447 ;; Find the label end.
8448 (goto-char kwd-end)
8449 (setq label-type
8450 (if (and (c-syntactic-re-search-forward
8451 ;; Stop on chars that aren't allowed in expressions,
8452 ;; and on operator chars that would be meaningless
8453 ;; there. FIXME: This doesn't cope with ?: operators.
8454 "[;{=,@]\\|\\(\\=\\|[^:]\\):\\([^:]\\|\\'\\)"
8455 limit t t nil 1)
8456 (match-beginning 2))
8457
8458 (progn ; there's a proper :
8459 (goto-char (match-beginning 2)) ; just after the :
8460 (c-put-c-type-property (1- (point)) 'c-decl-end)
8461 t)
8462
8463 ;; It's an unfinished label. We consider the keyword enough
8464 ;; to recognize it as a label, so that it gets fontified.
8465 ;; Leave the point at the end of it, but don't put any
8466 ;; `c-decl-end' marker.
8467 (goto-char kwd-end)
8468 t))))
8469
8470 ;; @private, @protected, @public, in Objective C, or similar.
8471 ((and c-opt-extra-label-key
8472 (looking-at c-opt-extra-label-key))
8473 ;; For a `c-opt-extra-label-key' match, we record the whole
8474 ;; thing for fontification. That's to get the leading '@' in
8475 ;; Objective-C protection labels fontified.
8476 (goto-char (match-end 1))
8477 (when c-record-type-identifiers
8478 (c-record-ref-id (cons (match-beginning 1) (point))))
8479 (c-put-c-type-property (1- (point)) 'c-decl-end)
8480 (setq label-type t))
8481
8482 ;; All other cases of labels.
8483 ((and c-recognize-colon-labels ; nil for AWK and IDL, otherwise t.
8484
8485 ;; A colon label must have something before the colon.
8486 (not (eq (char-after) ?:))
8487
8488 ;; Check that we're not after a token that can't precede a label.
8489 (or
8490 ;; Trivially succeeds when there's no preceding token.
8491 ;; Succeeds when we're at a virtual semicolon.
8492 (if preceding-token-end
8493 (<= preceding-token-end (point-min))
8494 (save-excursion
8495 (c-backward-syntactic-ws)
8496 (setq preceding-token-end (point))
8497 (or (bobp)
8498 (c-at-vsemi-p))))
8499
8500 ;; Check if we're after a label, if we're after a closing
8501 ;; paren that belong to statement, and with
8502 ;; `c-label-prefix-re'. It's done in different order
8503 ;; depending on `assume-markup' since the checks have
8504 ;; different expensiveness.
8505 (if assume-markup
8506 (or
8507 (eq (c-get-char-property (1- preceding-token-end) 'c-type)
8508 'c-decl-end)
8509
8510 (save-excursion
8511 (goto-char (1- preceding-token-end))
8512 (c-beginning-of-current-token)
8513 (or (looking-at c-label-prefix-re)
8514 (looking-at c-block-stmt-1-key)))
8515
8516 (and (eq (char-before preceding-token-end) ?\))
8517 (c-after-conditional)))
8518
8519 (or
8520 (save-excursion
8521 (goto-char (1- preceding-token-end))
8522 (c-beginning-of-current-token)
8523 (or (looking-at c-label-prefix-re)
8524 (looking-at c-block-stmt-1-key)))
8525
8526 (cond
8527 ((eq (char-before preceding-token-end) ?\))
8528 (c-after-conditional))
8529
8530 ((eq (char-before preceding-token-end) ?:)
8531 ;; Might be after another label, so check it recursively.
8532 (save-restriction
8533 (save-excursion
8534 (goto-char (1- preceding-token-end))
8535 ;; Essentially the same as the
8536 ;; `c-syntactic-re-search-forward' regexp below.
8537 (setq macro-start
8538 (save-excursion (and (c-beginning-of-macro)
8539 (point))))
8540 (if macro-start (narrow-to-region macro-start (point-max)))
8541 (c-syntactic-skip-backward "^-]:?;}=*/%&|,<>!@+" nil t)
8542 ;; Note: the following should work instead of the
8543 ;; narrow-to-region above. Investigate why not,
8544 ;; sometime. ACM, 2006-03-31.
8545 ;; (c-syntactic-skip-backward "^-]:?;}=*/%&|,<>!@+"
8546 ;; macro-start t)
8547 (let ((pte (point))
8548 ;; If the caller turned on recording for us,
8549 ;; it shouldn't apply when we check the
8550 ;; preceding label.
8551 c-record-type-identifiers)
8552 ;; A label can't start at a cpp directive. Check for
8553 ;; this, since c-forward-syntactic-ws would foul up on it.
8554 (unless (and c-opt-cpp-prefix (looking-at c-opt-cpp-prefix))
8555 (c-forward-syntactic-ws)
8556 (c-forward-label nil pte start))))))))))
8557
8558 ;; Point is still at the beginning of the possible label construct.
8559 ;;
8560 ;; Check that the next nonsymbol token is ":", or that we're in one
8561 ;; of QT's "slots" declarations. Allow '(' for the sake of macro
8562 ;; arguments. FIXME: Should build this regexp from the language
8563 ;; constants.
8564 (cond
8565 ;; public: protected: private:
8566 ((and
8567 (c-major-mode-is 'c++-mode)
8568 (search-forward-regexp
8569 "\\=p\\(r\\(ivate\\|otected\\)\\|ublic\\)\\>[^_]" nil t)
8570 (progn (backward-char)
8571 (c-forward-syntactic-ws limit)
8572 (looking-at ":\\([^:]\\|\\'\\)"))) ; A single colon.
8573 (forward-char)
8574 (setq label-type t))
8575 ;; QT double keyword like "protected slots:" or goto target.
8576 ((progn (goto-char start) nil))
8577 ((when (c-syntactic-re-search-forward
8578 "[ \t\n[:?;{=*/%&|,<>!@+-]" limit t t) ; not at EOB
8579 (backward-char)
8580 (setq label-end (point))
8581 (setq qt-symbol-idx
8582 (and (c-major-mode-is 'c++-mode)
8583 (string-match
8584 "\\(p\\(r\\(ivate\\|otected\\)\\|ublic\\)\\|more\\)\\>"
8585 (buffer-substring start (point)))))
8586 (c-forward-syntactic-ws limit)
8587 (cond
8588 ((looking-at ":\\([^:]\\|\\'\\)") ; A single colon.
8589 (forward-char)
8590 (setq label-type
8591 (if (or (string= "signals" ; Special QT macro
8592 (setq kwd (buffer-substring-no-properties start label-end)))
8593 (string= "Q_SIGNALS" kwd))
8594 'qt-1kwd-colon
8595 'goto-target)))
8596 ((and qt-symbol-idx
8597 (search-forward-regexp "\\=\\(slots\\|Q_SLOTS\\)\\>" limit t)
8598 (progn (c-forward-syntactic-ws limit)
8599 (looking-at ":\\([^:]\\|\\'\\)"))) ; A single colon
8600 (forward-char)
8601 (setq label-type 'qt-2kwds-colon)))))))
8602
8603 (save-restriction
8604 (narrow-to-region start (point))
8605
8606 ;; Check that `c-nonlabel-token-key' doesn't match anywhere.
8607 (catch 'check-label
8608 (goto-char start)
8609 (while (progn
8610 (when (looking-at c-nonlabel-token-key)
8611 (goto-char start)
8612 (setq label-type nil)
8613 (throw 'check-label nil))
8614 (and (c-safe (c-forward-sexp)
8615 (c-forward-syntactic-ws)
8616 t)
8617 (not (eobp)))))
8618
8619 ;; Record the identifiers in the label for fontification, unless
8620 ;; it begins with `c-label-kwds' in which case the following
8621 ;; identifiers are part of a (constant) expression that
8622 ;; shouldn't be fontified.
8623 (when (and c-record-type-identifiers
8624 (progn (goto-char start)
8625 (not (looking-at c-label-kwds-regexp))))
8626 (while (c-syntactic-re-search-forward c-symbol-key nil t)
8627 (c-record-ref-id (cons (match-beginning 0)
8628 (match-end 0)))))
8629
8630 (c-put-c-type-property (1- (point-max)) 'c-decl-end)
8631 (goto-char (point-max)))))
8632
8633 (t
8634 ;; Not a label.
8635 (goto-char start)))
8636 label-type))
8637
8638 (defun c-forward-objc-directive ()
8639 ;; Assuming the point is at the beginning of a token, try to move
8640 ;; forward to the end of the Objective-C directive that starts
8641 ;; there. Return t if a directive was fully recognized, otherwise
8642 ;; the point is moved as far as one could be successfully parsed and
8643 ;; nil is returned.
8644 ;;
8645 ;; This function records identifier ranges on
8646 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
8647 ;; `c-record-type-identifiers' is non-nil.
8648 ;;
8649 ;; This function might do hidden buffer changes.
8650
8651 (let ((start (point))
8652 start-char
8653 (c-promote-possible-types t)
8654 lim
8655 ;; Turn off recognition of angle bracket arglists while parsing
8656 ;; types here since the protocol reference list might then be
8657 ;; considered part of the preceding name or superclass-name.
8658 c-recognize-<>-arglists)
8659
8660 (if (or
8661 (when (looking-at
8662 (eval-when-compile
8663 (c-make-keywords-re t
8664 (append (c-lang-const c-protection-kwds objc)
8665 '("@end"))
8666 'objc-mode)))
8667 (goto-char (match-end 1))
8668 t)
8669
8670 (and
8671 (looking-at
8672 (eval-when-compile
8673 (c-make-keywords-re t
8674 '("@interface" "@implementation" "@protocol")
8675 'objc-mode)))
8676
8677 ;; Handle the name of the class itself.
8678 (progn
8679 ;; (c-forward-token-2) ; 2006/1/13 This doesn't move if the token's
8680 ;; at EOB.
8681 (goto-char (match-end 0))
8682 (setq lim (point))
8683 (c-skip-ws-forward)
8684 (c-forward-type))
8685
8686 (catch 'break
8687 ;; Look for ": superclass-name" or "( category-name )".
8688 (when (looking-at "[:(]")
8689 (setq start-char (char-after))
8690 (forward-char)
8691 (c-forward-syntactic-ws)
8692 (unless (c-forward-type) (throw 'break nil))
8693 (when (eq start-char ?\()
8694 (unless (eq (char-after) ?\)) (throw 'break nil))
8695 (forward-char)
8696 (c-forward-syntactic-ws)))
8697
8698 ;; Look for a protocol reference list.
8699 (if (eq (char-after) ?<)
8700 (let ((c-recognize-<>-arglists t)
8701 (c-parse-and-markup-<>-arglists t)
8702 c-restricted-<>-arglists)
8703 (c-forward-<>-arglist t))
8704 t))))
8705
8706 (progn
8707 (c-backward-syntactic-ws lim)
8708 (c-clear-c-type-property start (1- (point)) 'c-decl-end)
8709 (c-put-c-type-property (1- (point)) 'c-decl-end)
8710 t)
8711
8712 (c-clear-c-type-property start (point) 'c-decl-end)
8713 nil)))
8714
8715 (defun c-beginning-of-inheritance-list (&optional lim)
8716 ;; Go to the first non-whitespace after the colon that starts a
8717 ;; multiple inheritance introduction. Optional LIM is the farthest
8718 ;; back we should search.
8719 ;;
8720 ;; This function might do hidden buffer changes.
8721 (c-with-syntax-table c++-template-syntax-table
8722 (c-backward-token-2 0 t lim)
8723 (while (and (or (looking-at c-symbol-start)
8724 (looking-at "[<,]\\|::"))
8725 (zerop (c-backward-token-2 1 t lim))))))
8726
8727 (defun c-in-method-def-p ()
8728 ;; Return nil if we aren't in a method definition, otherwise the
8729 ;; position of the initial [+-].
8730 ;;
8731 ;; This function might do hidden buffer changes.
8732 (save-excursion
8733 (beginning-of-line)
8734 (and c-opt-method-key
8735 (looking-at c-opt-method-key)
8736 (point))
8737 ))
8738
8739 ;; Contributed by Kevin Ryde <user42@zip.com.au>.
8740 (defun c-in-gcc-asm-p ()
8741 ;; Return non-nil if point is within a gcc \"asm\" block.
8742 ;;
8743 ;; This should be called with point inside an argument list.
8744 ;;
8745 ;; Only one level of enclosing parentheses is considered, so for
8746 ;; instance nil is returned when in a function call within an asm
8747 ;; operand.
8748 ;;
8749 ;; This function might do hidden buffer changes.
8750
8751 (and c-opt-asm-stmt-key
8752 (save-excursion
8753 (beginning-of-line)
8754 (backward-up-list 1)
8755 (c-beginning-of-statement-1 (point-min) nil t)
8756 (looking-at c-opt-asm-stmt-key))))
8757
8758 (defun c-at-toplevel-p ()
8759 "Return a determination as to whether point is \"at the top level\".
8760 Informally, \"at the top level\" is anywhere where you can write
8761 a function.
8762
8763 More precisely, being at the top-level means that point is either
8764 outside any enclosing block (such as a function definition), or
8765 directly inside a class, namespace or other block that contains
8766 another declaration level.
8767
8768 If point is not at the top-level (e.g. it is inside a method
8769 definition), then nil is returned. Otherwise, if point is at a
8770 top-level not enclosed within a class definition, t is returned.
8771 Otherwise, a 2-vector is returned where the zeroth element is the
8772 buffer position of the start of the class declaration, and the first
8773 element is the buffer position of the enclosing class's opening
8774 brace.
8775
8776 Note that this function might do hidden buffer changes. See the
8777 comment at the start of cc-engine.el for more info."
8778 ;; Note to maintainers: this function consumes a great mass of CPU cycles.
8779 ;; Its use should thus be minimized as far as possible.
8780 (let ((paren-state (c-parse-state)))
8781 (or (not (c-most-enclosing-brace paren-state))
8782 (c-search-uplist-for-classkey paren-state))))
8783
8784 (defun c-just-after-func-arglist-p (&optional lim)
8785 ;; Return non-nil if the point is in the region after the argument
8786 ;; list of a function and its opening brace (or semicolon in case it
8787 ;; got no body). If there are K&R style argument declarations in
8788 ;; that region, the point has to be inside the first one for this
8789 ;; function to recognize it.
8790 ;;
8791 ;; If successful, the point is moved to the first token after the
8792 ;; function header (see `c-forward-decl-or-cast-1' for details) and
8793 ;; the position of the opening paren of the function arglist is
8794 ;; returned.
8795 ;;
8796 ;; The point is clobbered if not successful.
8797 ;;
8798 ;; LIM is used as bound for backward buffer searches.
8799 ;;
8800 ;; This function might do hidden buffer changes.
8801
8802 (let ((beg (point)) id-start)
8803 (and
8804 (eq (c-beginning-of-statement-1 lim) 'same)
8805
8806 (not (and (c-major-mode-is 'objc-mode)
8807 (c-forward-objc-directive)))
8808
8809 (setq id-start
8810 (car-safe (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil)))
8811 (< id-start beg)
8812
8813 ;; There should not be a '=' or ',' between beg and the
8814 ;; start of the declaration since that means we were in the
8815 ;; "expression part" of the declaration.
8816 (or (> (point) beg)
8817 (not (looking-at "[=,]")))
8818
8819 (save-excursion
8820 ;; Check that there's an arglist paren in the
8821 ;; declaration.
8822 (goto-char id-start)
8823 (cond ((eq (char-after) ?\()
8824 ;; The declarator is a paren expression, so skip past it
8825 ;; so that we don't get stuck on that instead of the
8826 ;; function arglist.
8827 (c-forward-sexp))
8828 ((and c-opt-op-identifier-prefix
8829 (looking-at c-opt-op-identifier-prefix))
8830 ;; Don't trip up on "operator ()".
8831 (c-forward-token-2 2 t)))
8832 (and (< (point) beg)
8833 (c-syntactic-re-search-forward "(" beg t t)
8834 (1- (point)))))))
8835
8836 (defun c-in-knr-argdecl (&optional lim)
8837 ;; Return the position of the first argument declaration if point is
8838 ;; inside a K&R style argument declaration list, nil otherwise.
8839 ;; `c-recognize-knr-p' is not checked. If LIM is non-nil, it's a
8840 ;; position that bounds the backward search for the argument list. This
8841 ;; function doesn't move point.
8842 ;;
8843 ;; Point must be within a possible K&R region, e.g. just before a top-level
8844 ;; "{". It must be outside of parens and brackets. The test can return
8845 ;; false positives otherwise.
8846 ;;
8847 ;; This function might do hidden buffer changes.
8848 (save-excursion
8849 (save-restriction
8850 ;; If we're in a macro, our search range is restricted to it. Narrow to
8851 ;; the searchable range.
8852 (let* ((macro-start (save-excursion (and (c-beginning-of-macro) (point))))
8853 (macro-end (save-excursion (and macro-start (c-end-of-macro) (point))))
8854 (low-lim (max (or lim (point-min)) (or macro-start (point-min))))
8855 before-lparen after-rparen
8856 (here (point))
8857 (pp-count-out 20) ; Max number of paren/brace constructs before
8858 ; we give up.
8859 ids ; List of identifiers in the parenthesized list.
8860 id-start after-prec-token decl-or-cast decl-res
8861 c-last-identifier-range identifier-ok)
8862 (narrow-to-region low-lim (or macro-end (point-max)))
8863
8864 ;; Search backwards for the defun's argument list. We give up if we
8865 ;; encounter a "}" (end of a previous defun) an "=" (which can't be in
8866 ;; a knr region) or BOB.
8867 ;;
8868 ;; The criterion for a paren structure being the arg list is:
8869 ;; o - there is non-WS stuff after it but before any "{"; AND
8870 ;; o - the token after it isn't a ";" AND
8871 ;; o - it is preceded by either an identifier (the function name) or
8872 ;; a macro expansion like "DEFUN (...)"; AND
8873 ;; o - its content is a non-empty comma-separated list of identifiers
8874 ;; (an empty arg list won't have a knr region).
8875 ;;
8876 ;; The following snippet illustrates these rules:
8877 ;; int foo (bar, baz, yuk)
8878 ;; int bar [] ;
8879 ;; int (*baz) (my_type) ;
8880 ;; int (*(* yuk) (void)) (void) ;
8881 ;; {
8882 ;;
8883 ;; Additionally, for a knr list to be recognized:
8884 ;; o - The identifier of each declarator up to and including the
8885 ;; one "near" point must be contained in the arg list.
8886
8887 (catch 'knr
8888 (while (> pp-count-out 0) ; go back one paren/bracket pair each time.
8889 (setq pp-count-out (1- pp-count-out))
8890 (c-syntactic-skip-backward "^)]}=")
8891 (cond ((eq (char-before) ?\))
8892 (setq after-rparen (point)))
8893 ((eq (char-before) ?\])
8894 (setq after-rparen nil))
8895 (t ; either } (hit previous defun) or = or no more
8896 ; parens/brackets.
8897 (throw 'knr nil)))
8898
8899 (if after-rparen
8900 ;; We're inside a paren. Could it be our argument list....?
8901 (if
8902 (and
8903 (progn
8904 (goto-char after-rparen)
8905 (unless (c-go-list-backward) (throw 'knr nil)) ;
8906 ;; FIXME!!! What about macros between the parens? 2007/01/20
8907 (setq before-lparen (point)))
8908
8909 ;; It can't be the arg list if next token is ; or {
8910 (progn (goto-char after-rparen)
8911 (c-forward-syntactic-ws)
8912 (not (memq (char-after) '(?\; ?\{ ?\=))))
8913
8914 ;; Is the thing preceding the list an identifier (the
8915 ;; function name), or a macro expansion?
8916 (progn
8917 (goto-char before-lparen)
8918 (eq (c-backward-token-2) 0)
8919 (or (eq (c-on-identifier) (point))
8920 (and (eq (char-after) ?\))
8921 (c-go-up-list-backward)
8922 (eq (c-backward-token-2) 0)
8923 (eq (c-on-identifier) (point)))))
8924
8925 ;; Have we got a non-empty list of comma-separated
8926 ;; identifiers?
8927 (progn
8928 (goto-char before-lparen)
8929 (c-forward-token-2) ; to first token inside parens
8930 (and
8931 (setq id-start (c-on-identifier)) ; Must be at least one.
8932 (catch 'id-list
8933 (while
8934 (progn
8935 (forward-char)
8936 (c-end-of-current-token)
8937 (push (buffer-substring-no-properties id-start
8938 (point))
8939 ids)
8940 (c-forward-syntactic-ws)
8941 (eq (char-after) ?\,))
8942 (c-forward-token-2)
8943 (unless (setq id-start (c-on-identifier))
8944 (throw 'id-list nil)))
8945 (eq (char-after) ?\)))))
8946
8947 ;; Are all the identifiers in the k&r list up to the
8948 ;; current one also in the argument list?
8949 (progn
8950 (forward-char) ; over the )
8951 (setq after-prec-token after-rparen)
8952 (c-forward-syntactic-ws)
8953 (while (and
8954 (or (consp (setq decl-or-cast
8955 (c-forward-decl-or-cast-1
8956 after-prec-token
8957 nil ; Or 'arglist ???
8958 nil)))
8959 (progn
8960 (goto-char after-prec-token)
8961 (c-forward-syntactic-ws)
8962 (setq identifier-ok (eq (char-after) ?{))
8963 nil))
8964 (eq (char-after) ?\;)
8965 (setq after-prec-token (1+ (point)))
8966 (goto-char (car decl-or-cast))
8967 (setq decl-res (c-forward-declarator))
8968 (setq identifier-ok
8969 (member (buffer-substring-no-properties
8970 (car decl-res) (cadr decl-res))
8971 ids))
8972 (progn
8973 (goto-char after-prec-token)
8974 (prog1 (< (point) here)
8975 (c-forward-syntactic-ws))))
8976 (setq identifier-ok nil))
8977 identifier-ok))
8978 ;; ...Yes. We've identified the function's argument list.
8979 (throw 'knr
8980 (progn (goto-char after-rparen)
8981 (c-forward-syntactic-ws)
8982 (point)))
8983 ;; ...No. The current parens aren't the function's arg list.
8984 (goto-char before-lparen))
8985
8986 (or (c-go-list-backward) ; backwards over [ .... ]
8987 (throw 'knr nil)))))))))
8988
8989 (defun c-skip-conditional ()
8990 ;; skip forward over conditional at point, including any predicate
8991 ;; statements in parentheses. No error checking is performed.
8992 ;;
8993 ;; This function might do hidden buffer changes.
8994 (c-forward-sexp (cond
8995 ;; else if()
8996 ((looking-at (concat "\\<else"
8997 "\\([ \t\n]\\|\\\\\n\\)+"
8998 "if\\>\\([^_]\\|$\\)"))
8999 3)
9000 ;; do, else, try, finally
9001 ((looking-at (concat "\\<\\("
9002 "do\\|else\\|try\\|finally"
9003 "\\)\\>\\([^_]\\|$\\)"))
9004 1)
9005 ;; for, if, while, switch, catch, synchronized, foreach
9006 (t 2))))
9007
9008 (defun c-after-conditional (&optional lim)
9009 ;; If looking at the token after a conditional then return the
9010 ;; position of its start, otherwise return nil.
9011 ;;
9012 ;; This function might do hidden buffer changes.
9013 (save-excursion
9014 (and (zerop (c-backward-token-2 1 t lim))
9015 (or (looking-at c-block-stmt-1-key)
9016 (and (eq (char-after) ?\()
9017 (zerop (c-backward-token-2 1 t lim))
9018 (or (looking-at c-block-stmt-2-key)
9019 (looking-at c-block-stmt-1-2-key))))
9020 (point))))
9021
9022 (defun c-after-special-operator-id (&optional lim)
9023 ;; If the point is after an operator identifier that isn't handled
9024 ;; like an ordinary symbol (i.e. like "operator =" in C++) then the
9025 ;; position of the start of that identifier is returned. nil is
9026 ;; returned otherwise. The point may be anywhere in the syntactic
9027 ;; whitespace after the last token of the operator identifier.
9028 ;;
9029 ;; This function might do hidden buffer changes.
9030 (save-excursion
9031 (and c-overloadable-operators-regexp
9032 (zerop (c-backward-token-2 1 nil lim))
9033 (looking-at c-overloadable-operators-regexp)
9034 (or (not c-opt-op-identifier-prefix)
9035 (and
9036 (zerop (c-backward-token-2 1 nil lim))
9037 (looking-at c-opt-op-identifier-prefix)))
9038 (point))))
9039
9040 (defsubst c-backward-to-block-anchor (&optional lim)
9041 ;; Assuming point is at a brace that opens a statement block of some
9042 ;; kind, move to the proper anchor point for that block. It might
9043 ;; need to be adjusted further by c-add-stmt-syntax, but the
9044 ;; position at return is suitable as start position for that
9045 ;; function.
9046 ;;
9047 ;; This function might do hidden buffer changes.
9048 (unless (= (point) (c-point 'boi))
9049 (let ((start (c-after-conditional lim)))
9050 (if start
9051 (goto-char start)))))
9052
9053 (defsubst c-backward-to-decl-anchor (&optional lim)
9054 ;; Assuming point is at a brace that opens the block of a top level
9055 ;; declaration of some kind, move to the proper anchor point for
9056 ;; that block.
9057 ;;
9058 ;; This function might do hidden buffer changes.
9059 (unless (= (point) (c-point 'boi))
9060 (c-beginning-of-statement-1 lim)))
9061
9062 (defun c-search-decl-header-end ()
9063 ;; Search forward for the end of the "header" of the current
9064 ;; declaration. That's the position where the definition body
9065 ;; starts, or the first variable initializer, or the ending
9066 ;; semicolon. I.e. search forward for the closest following
9067 ;; (syntactically relevant) '{', '=' or ';' token. Point is left
9068 ;; _after_ the first found token, or at point-max if none is found.
9069 ;;
9070 ;; This function might do hidden buffer changes.
9071
9072 (let ((base (point)))
9073 (if (c-major-mode-is 'c++-mode)
9074
9075 ;; In C++ we need to take special care to handle operator
9076 ;; tokens and those pesky template brackets.
9077 (while (and
9078 (c-syntactic-re-search-forward "[;{<=]" nil 'move t t)
9079 (or
9080 (c-end-of-current-token base)
9081 ;; Handle operator identifiers, i.e. ignore any
9082 ;; operator token preceded by "operator".
9083 (save-excursion
9084 (and (c-safe (c-backward-sexp) t)
9085 (looking-at c-opt-op-identifier-prefix)))
9086 (and (eq (char-before) ?<)
9087 (c-with-syntax-table c++-template-syntax-table
9088 (if (c-safe (goto-char (c-up-list-forward (point))))
9089 t
9090 (goto-char (point-max))
9091 nil)))))
9092 (setq base (point)))
9093
9094 (while (and
9095 (c-syntactic-re-search-forward "[;{=]" nil 'move t t)
9096 (c-end-of-current-token base))
9097 (setq base (point))))))
9098
9099 (defun c-beginning-of-decl-1 (&optional lim)
9100 ;; Go to the beginning of the current declaration, or the beginning
9101 ;; of the previous one if already at the start of it. Point won't
9102 ;; be moved out of any surrounding paren. Return a cons cell of the
9103 ;; form (MOVE . KNR-POS). MOVE is like the return value from
9104 ;; `c-beginning-of-statement-1'. If point skipped over some K&R
9105 ;; style argument declarations (and they are to be recognized) then
9106 ;; KNR-POS is set to the start of the first such argument
9107 ;; declaration, otherwise KNR-POS is nil. If LIM is non-nil, it's a
9108 ;; position that bounds the backward search.
9109 ;;
9110 ;; NB: Cases where the declaration continues after the block, as in
9111 ;; "struct foo { ... } bar;", are currently recognized as two
9112 ;; declarations, e.g. "struct foo { ... }" and "bar;" in this case.
9113 ;;
9114 ;; This function might do hidden buffer changes.
9115 (catch 'return
9116 (let* ((start (point))
9117 (last-stmt-start (point))
9118 (move (c-beginning-of-statement-1 lim nil t)))
9119
9120 ;; `c-beginning-of-statement-1' stops at a block start, but we
9121 ;; want to continue if the block doesn't begin a top level
9122 ;; construct, i.e. if it isn't preceded by ';', '}', ':', bob,
9123 ;; or an open paren.
9124 (let ((beg (point)) tentative-move)
9125 ;; Go back one "statement" each time round the loop until we're just
9126 ;; after a ;, }, or :, or at BOB or the start of a macro or start of
9127 ;; an ObjC method. This will move over a multiple declaration whose
9128 ;; components are comma separated.
9129 (while (and
9130 ;; Must check with c-opt-method-key in ObjC mode.
9131 (not (and c-opt-method-key
9132 (looking-at c-opt-method-key)))
9133 (/= last-stmt-start (point))
9134 (progn
9135 (c-backward-syntactic-ws lim)
9136 (not (memq (char-before) '(?\; ?} ?: nil))))
9137 (save-excursion
9138 (backward-char)
9139 (not (looking-at "\\s(")))
9140 ;; Check that we don't move from the first thing in a
9141 ;; macro to its header.
9142 (not (eq (setq tentative-move
9143 (c-beginning-of-statement-1 lim nil t))
9144 'macro)))
9145 (setq last-stmt-start beg
9146 beg (point)
9147 move tentative-move))
9148 (goto-char beg))
9149
9150 (when c-recognize-knr-p
9151 (let ((fallback-pos (point)) knr-argdecl-start)
9152 ;; Handle K&R argdecls. Back up after the "statement" jumped
9153 ;; over by `c-beginning-of-statement-1', unless it was the
9154 ;; function body, in which case we're sitting on the opening
9155 ;; brace now. Then test if we're in a K&R argdecl region and
9156 ;; that we started at the other side of the first argdecl in
9157 ;; it.
9158 (unless (eq (char-after) ?{)
9159 (goto-char last-stmt-start))
9160 (if (and (setq knr-argdecl-start (c-in-knr-argdecl lim))
9161 (< knr-argdecl-start start)
9162 (progn
9163 (goto-char knr-argdecl-start)
9164 (not (eq (c-beginning-of-statement-1 lim nil t) 'macro))))
9165 (throw 'return
9166 (cons (if (eq (char-after fallback-pos) ?{)
9167 'previous
9168 'same)
9169 knr-argdecl-start))
9170 (goto-char fallback-pos))))
9171
9172 ;; `c-beginning-of-statement-1' counts each brace block as a separate
9173 ;; statement, so the result will be 'previous if we've moved over any.
9174 ;; So change our result back to 'same if necessary.
9175 ;;
9176 ;; If they were brace list initializers we might not have moved over a
9177 ;; declaration boundary though, so change it to 'same if we've moved
9178 ;; past a '=' before '{', but not ';'. (This ought to be integrated
9179 ;; into `c-beginning-of-statement-1', so we avoid this extra pass which
9180 ;; potentially can search over a large amount of text.). Take special
9181 ;; pains not to get mislead by C++'s "operator=", and the like.
9182 (if (and (eq move 'previous)
9183 (c-with-syntax-table (if (c-major-mode-is 'c++-mode)
9184 c++-template-syntax-table
9185 (syntax-table))
9186 (save-excursion
9187 (and
9188 (progn
9189 (while ; keep going back to "[;={"s until we either find
9190 ; no more, or get to one which isn't an "operator ="
9191 (and (c-syntactic-re-search-forward "[;={]" start t t t)
9192 (eq (char-before) ?=)
9193 c-overloadable-operators-regexp
9194 c-opt-op-identifier-prefix
9195 (save-excursion
9196 (eq (c-backward-token-2) 0)
9197 (looking-at c-overloadable-operators-regexp)
9198 (eq (c-backward-token-2) 0)
9199 (looking-at c-opt-op-identifier-prefix))))
9200 (eq (char-before) ?=))
9201 (c-syntactic-re-search-forward "[;{]" start t t)
9202 (eq (char-before) ?{)
9203 (c-safe (goto-char (c-up-list-forward (point))) t)
9204 (not (c-syntactic-re-search-forward ";" start t t))))))
9205 (cons 'same nil)
9206 (cons move nil)))))
9207
9208 (defun c-end-of-decl-1 ()
9209 ;; Assuming point is at the start of a declaration (as detected by
9210 ;; e.g. `c-beginning-of-decl-1'), go to the end of it. Unlike
9211 ;; `c-beginning-of-decl-1', this function handles the case when a
9212 ;; block is followed by identifiers in e.g. struct declarations in C
9213 ;; or C++. If a proper end was found then t is returned, otherwise
9214 ;; point is moved as far as possible within the current sexp and nil
9215 ;; is returned. This function doesn't handle macros; use
9216 ;; `c-end-of-macro' instead in those cases.
9217 ;;
9218 ;; This function might do hidden buffer changes.
9219 (let ((start (point))
9220 (decl-syntax-table (if (c-major-mode-is 'c++-mode)
9221 c++-template-syntax-table
9222 (syntax-table))))
9223 (catch 'return
9224 (c-search-decl-header-end)
9225
9226 (when (and c-recognize-knr-p
9227 (eq (char-before) ?\;)
9228 (c-in-knr-argdecl start))
9229 ;; Stopped at the ';' in a K&R argdecl section which is
9230 ;; detected using the same criteria as in
9231 ;; `c-beginning-of-decl-1'. Move to the following block
9232 ;; start.
9233 (c-syntactic-re-search-forward "{" nil 'move t))
9234
9235 (when (eq (char-before) ?{)
9236 ;; Encountered a block in the declaration. Jump over it.
9237 (condition-case nil
9238 (goto-char (c-up-list-forward (point)))
9239 (error (goto-char (point-max))
9240 (throw 'return nil)))
9241 (if (or (not c-opt-block-decls-with-vars-key)
9242 (save-excursion
9243 (c-with-syntax-table decl-syntax-table
9244 (let ((lim (point)))
9245 (goto-char start)
9246 (not (and
9247 ;; Check for `c-opt-block-decls-with-vars-key'
9248 ;; before the first paren.
9249 (c-syntactic-re-search-forward
9250 (concat "[;=([{]\\|\\("
9251 c-opt-block-decls-with-vars-key
9252 "\\)")
9253 lim t t t)
9254 (match-beginning 1)
9255 (not (eq (char-before) ?_))
9256 ;; Check that the first following paren is
9257 ;; the block.
9258 (c-syntactic-re-search-forward "[;=([{]"
9259 lim t t t)
9260 (eq (char-before) ?{)))))))
9261 ;; The declaration doesn't have any of the
9262 ;; `c-opt-block-decls-with-vars' keywords in the
9263 ;; beginning, so it ends here at the end of the block.
9264 (throw 'return t)))
9265
9266 (c-with-syntax-table decl-syntax-table
9267 (while (progn
9268 (if (eq (char-before) ?\;)
9269 (throw 'return t))
9270 (c-syntactic-re-search-forward ";" nil 'move t))))
9271 nil)))
9272
9273 (defun c-looking-at-decl-block (containing-sexp goto-start &optional limit)
9274 ;; Assuming the point is at an open brace, check if it starts a
9275 ;; block that contains another declaration level, i.e. that isn't a
9276 ;; statement block or a brace list, and if so return non-nil.
9277 ;;
9278 ;; If the check is successful, the return value is the start of the
9279 ;; keyword that tells what kind of construct it is, i.e. typically
9280 ;; what `c-decl-block-key' matched. Also, if GOTO-START is set then
9281 ;; the point will be at the start of the construct, before any
9282 ;; leading specifiers, otherwise it's at the returned position.
9283 ;;
9284 ;; The point is clobbered if the check is unsuccessful.
9285 ;;
9286 ;; CONTAINING-SEXP is the position of the open of the surrounding
9287 ;; paren, or nil if none.
9288 ;;
9289 ;; The optional LIMIT limits the backward search for the start of
9290 ;; the construct. It's assumed to be at a syntactically relevant
9291 ;; position.
9292 ;;
9293 ;; If any template arglists are found in the searched region before
9294 ;; the open brace, they get marked with paren syntax.
9295 ;;
9296 ;; This function might do hidden buffer changes.
9297
9298 (let ((open-brace (point)) kwd-start first-specifier-pos)
9299 (c-syntactic-skip-backward c-block-prefix-charset limit t)
9300
9301 (when (and c-recognize-<>-arglists
9302 (eq (char-before) ?>))
9303 ;; Could be at the end of a template arglist.
9304 (let ((c-parse-and-markup-<>-arglists t))
9305 (while (and
9306 (c-backward-<>-arglist nil limit)
9307 (progn
9308 (c-syntactic-skip-backward c-block-prefix-charset limit t)
9309 (eq (char-before) ?>))))))
9310
9311 ;; Skip back over noise clauses.
9312 (while (and
9313 c-opt-cpp-prefix
9314 (eq (char-before) ?\))
9315 (let ((after-paren (point)))
9316 (if (and (c-go-list-backward)
9317 (progn (c-backward-syntactic-ws)
9318 (c-simple-skip-symbol-backward))
9319 (or (looking-at c-paren-nontype-key)
9320 (looking-at c-noise-macro-with-parens-name-re)))
9321 (progn
9322 (c-syntactic-skip-backward c-block-prefix-charset limit t)
9323 t)
9324 (goto-char after-paren)
9325 nil))))
9326
9327 ;; Note: Can't get bogus hits inside template arglists below since they
9328 ;; have gotten paren syntax above.
9329 (when (and
9330 ;; If `goto-start' is set we begin by searching for the
9331 ;; first possible position of a leading specifier list.
9332 ;; The `c-decl-block-key' search continues from there since
9333 ;; we know it can't match earlier.
9334 (if goto-start
9335 (when (c-syntactic-re-search-forward c-symbol-start
9336 open-brace t t)
9337 (goto-char (setq first-specifier-pos (match-beginning 0)))
9338 t)
9339 t)
9340
9341 (cond
9342 ((c-syntactic-re-search-forward c-decl-block-key open-brace t t t)
9343 (goto-char (setq kwd-start (match-beginning 0)))
9344 (and
9345 ;; Exclude cases where we matched what would ordinarily
9346 ;; be a block declaration keyword, except where it's not
9347 ;; legal because it's part of a "compound keyword" like
9348 ;; "enum class". Of course, if c-after-brace-list-key
9349 ;; is nil, we can skip the test.
9350 (or (equal c-after-brace-list-key "\\<\\>")
9351 (save-match-data
9352 (save-excursion
9353 (not
9354 (and
9355 (looking-at c-after-brace-list-key)
9356 (= (c-backward-token-2 1 t) 0)
9357 (looking-at c-brace-list-key))))))
9358 (or
9359 ;; Found a keyword that can't be a type?
9360 (match-beginning 1)
9361
9362 ;; Can be a type too, in which case it's the return type of a
9363 ;; function (under the assumption that no declaration level
9364 ;; block construct starts with a type).
9365 (not (c-forward-type))
9366
9367 ;; Jumped over a type, but it could be a declaration keyword
9368 ;; followed by the declared identifier that we've jumped over
9369 ;; instead (e.g. in "class Foo {"). If it indeed is a type
9370 ;; then we should be at the declarator now, so check for a
9371 ;; valid declarator start.
9372 ;;
9373 ;; Note: This doesn't cope with the case when a declared
9374 ;; identifier is followed by e.g. '(' in a language where '('
9375 ;; also might be part of a declarator expression. Currently
9376 ;; there's no such language.
9377 (not (or (looking-at c-symbol-start)
9378 (looking-at c-type-decl-prefix-key))))))
9379
9380 ;; In Pike a list of modifiers may be followed by a brace
9381 ;; to make them apply to many identifiers. Note that the
9382 ;; match data will be empty on return in this case.
9383 ((and (c-major-mode-is 'pike-mode)
9384 (progn
9385 (goto-char open-brace)
9386 (= (c-backward-token-2) 0))
9387 (looking-at c-specifier-key)
9388 ;; Use this variant to avoid yet another special regexp.
9389 (c-keyword-member (c-keyword-sym (match-string 1))
9390 'c-modifier-kwds))
9391 (setq kwd-start (point))
9392 t)))
9393
9394 ;; Got a match.
9395
9396 (if goto-start
9397 ;; Back up over any preceding specifiers and their clauses
9398 ;; by going forward from `first-specifier-pos', which is the
9399 ;; earliest possible position where the specifier list can
9400 ;; start.
9401 (progn
9402 (goto-char first-specifier-pos)
9403
9404 (while (< (point) kwd-start)
9405 (if (looking-at c-symbol-key)
9406 ;; Accept any plain symbol token on the ground that
9407 ;; it's a specifier masked through a macro (just
9408 ;; like `c-forward-decl-or-cast-1' skip forward over
9409 ;; such tokens).
9410 ;;
9411 ;; Could be more restrictive wrt invalid keywords,
9412 ;; but that'd only occur in invalid code so there's
9413 ;; no use spending effort on it.
9414 (let ((end (match-end 0)))
9415 (unless (c-forward-keyword-clause 0)
9416 (goto-char end)
9417 (c-forward-syntactic-ws)))
9418
9419 ;; Can't parse a declaration preamble and is still
9420 ;; before `kwd-start'. That means `first-specifier-pos'
9421 ;; was in some earlier construct. Search again.
9422 (if (c-syntactic-re-search-forward c-symbol-start
9423 kwd-start 'move t)
9424 (goto-char (setq first-specifier-pos (match-beginning 0)))
9425 ;; Got no preamble before the block declaration keyword.
9426 (setq first-specifier-pos kwd-start))))
9427
9428 (goto-char first-specifier-pos))
9429 (goto-char kwd-start))
9430
9431 kwd-start)))
9432
9433 (defun c-directly-in-class-called-p (name)
9434 ;; Check whether point is directly inside a brace block which is the brace
9435 ;; block of a class, struct, or union which is called NAME, a string.
9436 (let* ((paren-state (c-parse-state))
9437 (brace-pos (c-pull-open-brace paren-state))
9438 )
9439 (when (eq (char-after brace-pos) ?{)
9440 (goto-char brace-pos)
9441 (save-excursion
9442 ; *c-looking-at-decl-block
9443 ; containing-sexp goto-start &optional
9444 ; limit)
9445 (when (and (c-looking-at-decl-block
9446 (c-pull-open-brace paren-state)
9447 nil)
9448 (looking-at c-class-key))
9449 (goto-char (match-end 1))
9450 (c-forward-syntactic-ws)
9451 (looking-at name))))))
9452
9453 (defun c-search-uplist-for-classkey (paren-state)
9454 ;; Check if the closest containing paren sexp is a declaration
9455 ;; block, returning a 2 element vector in that case. Aref 0
9456 ;; contains the bufpos at boi of the class key line, and aref 1
9457 ;; contains the bufpos of the open brace. This function is an
9458 ;; obsolete wrapper for `c-looking-at-decl-block'.
9459 ;;
9460 ;; This function might do hidden buffer changes.
9461 (let ((open-paren-pos (c-most-enclosing-brace paren-state)))
9462 (when open-paren-pos
9463 (save-excursion
9464 (goto-char open-paren-pos)
9465 (when (and (eq (char-after) ?{)
9466 (c-looking-at-decl-block
9467 (c-safe-position open-paren-pos paren-state)
9468 nil))
9469 (back-to-indentation)
9470 (vector (point) open-paren-pos))))))
9471
9472 (defun c-most-enclosing-decl-block (paren-state)
9473 ;; Return the buffer position of the most enclosing decl-block brace (in the
9474 ;; sense of c-looking-at-decl-block) in the PAREN-STATE structure, or nil if
9475 ;; none was found.
9476 (let* ((open-brace (c-pull-open-brace paren-state))
9477 (next-open-brace (c-pull-open-brace paren-state)))
9478 (while (and open-brace
9479 (save-excursion
9480 (goto-char open-brace)
9481 (not (c-looking-at-decl-block next-open-brace nil))))
9482 (setq open-brace next-open-brace
9483 next-open-brace (c-pull-open-brace paren-state)))
9484 open-brace))
9485
9486 (defun c-cheap-inside-bracelist-p (paren-state)
9487 ;; Return the position of the L-brace if point is inside a brace list
9488 ;; initialization of an array, etc. This is an approximate function,
9489 ;; designed for speed over accuracy. It will not find every bracelist, but
9490 ;; a non-nil result is reliable. We simply search for "= {" (naturally with
9491 ;; syntactic whitespace allowed). PAREN-STATE is the normal thing that it
9492 ;; is everywhere else.
9493 (let (b-pos)
9494 (save-excursion
9495 (while
9496 (and (setq b-pos (c-pull-open-brace paren-state))
9497 (progn (goto-char b-pos)
9498 (c-backward-sws)
9499 (c-backward-token-2)
9500 (not (looking-at "=")))))
9501 b-pos)))
9502
9503 (defun c-backward-typed-enum-colon ()
9504 ;; We're at a "{" which might be the opening brace of a enum which is
9505 ;; strongly typed (by a ":" followed by a type). If this is the case, leave
9506 ;; point before the colon and return t. Otherwise leave point unchanged and return nil.
9507 ;; Match data will be clobbered.
9508 (let ((here (point))
9509 (colon-pos nil))
9510 (save-excursion
9511 (while
9512 (and (eql (c-backward-token-2) 0)
9513 (or (not (looking-at "\\s)"))
9514 (c-go-up-list-backward))
9515 (cond
9516 ((and (eql (char-after) ?:)
9517 (save-excursion
9518 (c-backward-syntactic-ws)
9519 (c-on-identifier)))
9520 (setq colon-pos (point))
9521 (forward-char)
9522 (c-forward-syntactic-ws)
9523 (or (and (c-forward-type)
9524 (progn (c-forward-syntactic-ws)
9525 (eq (point) here)))
9526 (setq colon-pos nil))
9527 nil)
9528 ((eql (char-after) ?\()
9529 t)
9530 ((looking-at c-symbol-key)
9531 t)
9532 (t nil)))))
9533 (when colon-pos
9534 (goto-char colon-pos)
9535 t)))
9536
9537 (defun c-backward-over-enum-header ()
9538 ;; We're at a "{". Move back to the enum-like keyword that starts this
9539 ;; declaration and return t, otherwise don't move and return nil.
9540 (let ((here (point))
9541 up-sexp-pos before-identifier)
9542 (when c-recognize-post-brace-list-type-p
9543 (c-backward-typed-enum-colon))
9544 (while
9545 (and
9546 (eq (c-backward-token-2) 0)
9547 (or (not (looking-at "\\s)"))
9548 (c-go-up-list-backward))
9549 (cond
9550 ((and (looking-at c-symbol-key) (c-on-identifier)
9551 (not before-identifier))
9552 (setq before-identifier t))
9553 ((and before-identifier
9554 (or (eql (char-after) ?,)
9555 (looking-at c-postfix-decl-spec-key)))
9556 (setq before-identifier nil)
9557 t)
9558 ((looking-at c-after-brace-list-key) t)
9559 ((looking-at c-brace-list-key) nil)
9560 ((eq (char-after) ?\()
9561 (and (eq (c-backward-token-2) 0)
9562 (or (looking-at c-decl-hangon-key)
9563 (and c-opt-cpp-prefix
9564 (looking-at c-noise-macro-with-parens-name-re)))))
9565
9566 ((and c-recognize-<>-arglists
9567 (eq (char-after) ?<)
9568 (looking-at "\\s("))
9569 t)
9570 (t nil))))
9571 (or (looking-at c-brace-list-key)
9572 (progn (goto-char here) nil))))
9573
9574 (defun c-inside-bracelist-p (containing-sexp paren-state)
9575 ;; return the buffer position of the beginning of the brace list
9576 ;; statement if we're inside a brace list, otherwise return nil.
9577 ;; CONTAINING-SEXP is the buffer pos of the innermost containing
9578 ;; paren. PAREN-STATE is the remainder of the state of enclosing
9579 ;; braces
9580 ;;
9581 ;; N.B.: This algorithm can potentially get confused by cpp macros
9582 ;; placed in inconvenient locations. It's a trade-off we make for
9583 ;; speed.
9584 ;;
9585 ;; This function might do hidden buffer changes.
9586 (or
9587 ;; This will pick up brace list declarations.
9588 (save-excursion
9589 (goto-char containing-sexp)
9590 (c-backward-over-enum-header))
9591 ;; this will pick up array/aggregate init lists, even if they are nested.
9592 (save-excursion
9593 (let ((class-key
9594 ;; Pike can have class definitions anywhere, so we must
9595 ;; check for the class key here.
9596 (and (c-major-mode-is 'pike-mode)
9597 c-decl-block-key))
9598 bufpos braceassignp lim next-containing macro-start)
9599 (while (and (not bufpos)
9600 containing-sexp)
9601 (when paren-state
9602 (if (consp (car paren-state))
9603 (setq lim (cdr (car paren-state))
9604 paren-state (cdr paren-state))
9605 (setq lim (car paren-state)))
9606 (when paren-state
9607 (setq next-containing (car paren-state)
9608 paren-state (cdr paren-state))))
9609 (goto-char containing-sexp)
9610 (if (c-looking-at-inexpr-block next-containing next-containing)
9611 ;; We're in an in-expression block of some kind. Do not
9612 ;; check nesting. We deliberately set the limit to the
9613 ;; containing sexp, so that c-looking-at-inexpr-block
9614 ;; doesn't check for an identifier before it.
9615 (setq containing-sexp nil)
9616 ;; see if the open brace is preceded by = or [...] in
9617 ;; this statement, but watch out for operator=
9618 (setq braceassignp 'dontknow)
9619 (c-backward-token-2 1 t lim)
9620 ;; Checks to do only on the first sexp before the brace.
9621 (when (and c-opt-inexpr-brace-list-key
9622 (eq (char-after) ?\[))
9623 ;; In Java, an initialization brace list may follow
9624 ;; directly after "new Foo[]", so check for a "new"
9625 ;; earlier.
9626 (while (eq braceassignp 'dontknow)
9627 (setq braceassignp
9628 (cond ((/= (c-backward-token-2 1 t lim) 0) nil)
9629 ((looking-at c-opt-inexpr-brace-list-key) t)
9630 ((looking-at "\\sw\\|\\s_\\|[.[]")
9631 ;; Carry on looking if this is an
9632 ;; identifier (may contain "." in Java)
9633 ;; or another "[]" sexp.
9634 'dontknow)
9635 (t nil)))))
9636 ;; Checks to do on all sexps before the brace, up to the
9637 ;; beginning of the statement.
9638 (while (eq braceassignp 'dontknow)
9639 (cond ((eq (char-after) ?\;)
9640 (setq braceassignp nil))
9641 ((and class-key
9642 (looking-at class-key))
9643 (setq braceassignp nil))
9644 ((eq (char-after) ?=)
9645 ;; We've seen a =, but must check earlier tokens so
9646 ;; that it isn't something that should be ignored.
9647 (setq braceassignp 'maybe)
9648 (while (and (eq braceassignp 'maybe)
9649 (zerop (c-backward-token-2 1 t lim)))
9650 (setq braceassignp
9651 (cond
9652 ;; Check for operator =
9653 ((and c-opt-op-identifier-prefix
9654 (looking-at c-opt-op-identifier-prefix))
9655 nil)
9656 ;; Check for `<opchar>= in Pike.
9657 ((and (c-major-mode-is 'pike-mode)
9658 (or (eq (char-after) ?`)
9659 ;; Special case for Pikes
9660 ;; `[]=, since '[' is not in
9661 ;; the punctuation class.
9662 (and (eq (char-after) ?\[)
9663 (eq (char-before) ?`))))
9664 nil)
9665 ((looking-at "\\s.") 'maybe)
9666 ;; make sure we're not in a C++ template
9667 ;; argument assignment
9668 ((and
9669 (c-major-mode-is 'c++-mode)
9670 (save-excursion
9671 (let ((here (point))
9672 (pos< (progn
9673 (skip-chars-backward "^<>")
9674 (point))))
9675 (and (eq (char-before) ?<)
9676 (not (c-crosses-statement-barrier-p
9677 pos< here))
9678 (not (c-in-literal))
9679 ))))
9680 nil)
9681 (t t))))))
9682 (if (and (eq braceassignp 'dontknow)
9683 (/= (c-backward-token-2 1 t lim) 0))
9684 (setq braceassignp nil)))
9685 (cond
9686 (braceassignp
9687 ;; We've hit the beginning of the aggregate list.
9688 (c-beginning-of-statement-1
9689 (c-most-enclosing-brace paren-state))
9690 (setq bufpos (point)))
9691 ((eq (char-after) ?\;)
9692 ;; Brace lists can't contain a semicolon, so we're done.
9693 (setq containing-sexp nil))
9694 ((and (setq macro-start (point))
9695 (c-forward-to-cpp-define-body)
9696 (eq (point) containing-sexp))
9697 ;; We've a macro whose expansion starts with the '{'.
9698 ;; Heuristically, if we have a ';' in it we've not got a
9699 ;; brace list, otherwise we have.
9700 (let ((macro-end (progn (c-end-of-macro) (point))))
9701 (goto-char containing-sexp)
9702 (forward-char)
9703 (if (and (c-syntactic-re-search-forward "[;,]" macro-end t t)
9704 (eq (char-before) ?\;))
9705 (setq bufpos nil
9706 containing-sexp nil)
9707 (setq bufpos macro-start))))
9708 (t
9709 ;; Go up one level
9710 (setq containing-sexp next-containing
9711 lim nil
9712 next-containing nil)))))
9713
9714 bufpos))
9715 ))
9716
9717 (defun c-looking-at-special-brace-list (&optional lim)
9718 ;; If we're looking at the start of a pike-style list, i.e., `({ })',
9719 ;; `([ ])', `(< >)', etc., a cons of a cons of its starting and ending
9720 ;; positions and its entry in c-special-brace-lists is returned, nil
9721 ;; otherwise. The ending position is nil if the list is still open.
9722 ;; LIM is the limit for forward search. The point may either be at
9723 ;; the `(' or at the following paren character. Tries to check the
9724 ;; matching closer, but assumes it's correct if no balanced paren is
9725 ;; found (i.e. the case `({ ... } ... )' is detected as _not_ being
9726 ;; a special brace list).
9727 ;;
9728 ;; This function might do hidden buffer changes.
9729 (if c-special-brace-lists
9730 (condition-case ()
9731 (save-excursion
9732 (let ((beg (point))
9733 inner-beg end type)
9734 (c-forward-syntactic-ws)
9735 (if (eq (char-after) ?\()
9736 (progn
9737 (forward-char 1)
9738 (c-forward-syntactic-ws)
9739 (setq inner-beg (point))
9740 (setq type (assq (char-after) c-special-brace-lists)))
9741 (if (setq type (assq (char-after) c-special-brace-lists))
9742 (progn
9743 (setq inner-beg (point))
9744 (c-backward-syntactic-ws)
9745 (forward-char -1)
9746 (setq beg (if (eq (char-after) ?\()
9747 (point)
9748 nil)))))
9749 (if (and beg type)
9750 (if (and (c-safe
9751 (goto-char beg)
9752 (c-forward-sexp 1)
9753 (setq end (point))
9754 (= (char-before) ?\)))
9755 (c-safe
9756 (goto-char inner-beg)
9757 (if (looking-at "\\s(")
9758 ;; Check balancing of the inner paren
9759 ;; below.
9760 (progn
9761 (c-forward-sexp 1)
9762 t)
9763 ;; If the inner char isn't a paren then
9764 ;; we can't check balancing, so just
9765 ;; check the char before the outer
9766 ;; closing paren.
9767 (goto-char end)
9768 (backward-char)
9769 (c-backward-syntactic-ws)
9770 (= (char-before) (cdr type)))))
9771 (if (or (/= (char-syntax (char-before)) ?\))
9772 (= (progn
9773 (c-forward-syntactic-ws)
9774 (point))
9775 (1- end)))
9776 (cons (cons beg end) type))
9777 (cons (list beg) type)))))
9778 (error nil))))
9779
9780 (defun c-looking-at-bos (&optional lim)
9781 ;; Return non-nil if between two statements or declarations, assuming
9782 ;; point is not inside a literal or comment.
9783 ;;
9784 ;; Obsolete - `c-at-statement-start-p' or `c-at-expression-start-p'
9785 ;; are recommended instead.
9786 ;;
9787 ;; This function might do hidden buffer changes.
9788 (c-at-statement-start-p))
9789 (make-obsolete 'c-looking-at-bos 'c-at-statement-start-p "22.1")
9790
9791 (defun c-looking-at-inexpr-block (lim containing-sexp &optional check-at-end)
9792 ;; Return non-nil if we're looking at the beginning of a block
9793 ;; inside an expression. The value returned is actually a cons of
9794 ;; either 'inlambda, 'inexpr-statement or 'inexpr-class and the
9795 ;; position of the beginning of the construct.
9796 ;;
9797 ;; LIM limits the backward search. CONTAINING-SEXP is the start
9798 ;; position of the closest containing list. If it's nil, the
9799 ;; containing paren isn't used to decide whether we're inside an
9800 ;; expression or not. If both LIM and CONTAINING-SEXP are used, LIM
9801 ;; needs to be farther back.
9802 ;;
9803 ;; If CHECK-AT-END is non-nil then extra checks at the end of the
9804 ;; brace block might be done. It should only be used when the
9805 ;; construct can be assumed to be complete, i.e. when the original
9806 ;; starting position was further down than that.
9807 ;;
9808 ;; This function might do hidden buffer changes.
9809
9810 (save-excursion
9811 (let ((res 'maybe) passed-paren
9812 (closest-lim (or containing-sexp lim (point-min)))
9813 ;; Look at the character after point only as a last resort
9814 ;; when we can't disambiguate.
9815 (block-follows (and (eq (char-after) ?{) (point))))
9816
9817 (while (and (eq res 'maybe)
9818 (progn (c-backward-syntactic-ws)
9819 (> (point) closest-lim))
9820 (not (bobp))
9821 (progn (backward-char)
9822 (looking-at "[]).]\\|\\w\\|\\s_"))
9823 (c-safe (forward-char)
9824 (goto-char (scan-sexps (point) -1))))
9825
9826 (setq res
9827 (if (looking-at c-keywords-regexp)
9828 (let ((kw-sym (c-keyword-sym (match-string 1))))
9829 (cond
9830 ((and block-follows
9831 (c-keyword-member kw-sym 'c-inexpr-class-kwds))
9832 (and (not (eq passed-paren ?\[))
9833 (or (not (looking-at c-class-key))
9834 ;; If the class definition is at the start of
9835 ;; a statement, we don't consider it an
9836 ;; in-expression class.
9837 (let ((prev (point)))
9838 (while (and
9839 (= (c-backward-token-2 1 nil closest-lim) 0)
9840 (eq (char-syntax (char-after)) ?w))
9841 (setq prev (point)))
9842 (goto-char prev)
9843 (not (c-at-statement-start-p)))
9844 ;; Also, in Pike we treat it as an
9845 ;; in-expression class if it's used in an
9846 ;; object clone expression.
9847 (save-excursion
9848 (and check-at-end
9849 (c-major-mode-is 'pike-mode)
9850 (progn (goto-char block-follows)
9851 (zerop (c-forward-token-2 1 t)))
9852 (eq (char-after) ?\())))
9853 (cons 'inexpr-class (point))))
9854 ((c-keyword-member kw-sym 'c-inexpr-block-kwds)
9855 (when (not passed-paren)
9856 (cons 'inexpr-statement (point))))
9857 ((c-keyword-member kw-sym 'c-lambda-kwds)
9858 (when (or (not passed-paren)
9859 (eq passed-paren ?\())
9860 (cons 'inlambda (point))))
9861 ((c-keyword-member kw-sym 'c-block-stmt-kwds)
9862 nil)
9863 (t
9864 'maybe)))
9865
9866 (if (looking-at "\\s(")
9867 (if passed-paren
9868 (if (and (eq passed-paren ?\[)
9869 (eq (char-after) ?\[))
9870 ;; Accept several square bracket sexps for
9871 ;; Java array initializations.
9872 'maybe)
9873 (setq passed-paren (char-after))
9874 'maybe)
9875 'maybe))))
9876
9877 (if (eq res 'maybe)
9878 (when (and c-recognize-paren-inexpr-blocks
9879 block-follows
9880 containing-sexp
9881 (eq (char-after containing-sexp) ?\())
9882 (goto-char containing-sexp)
9883 (if (or (save-excursion
9884 (c-backward-syntactic-ws lim)
9885 (while (and (eq (char-before) ?>)
9886 (c-get-char-property (1- (point))
9887 'syntax-table)
9888 (c-go-list-backward nil lim))
9889 (c-backward-syntactic-ws lim))
9890 (and (> (point) (or lim (point-min)))
9891 (c-on-identifier)))
9892 (and c-special-brace-lists
9893 (c-looking-at-special-brace-list)))
9894 nil
9895 (cons 'inexpr-statement (point))))
9896
9897 res))))
9898
9899 (defun c-looking-at-inexpr-block-backward (paren-state)
9900 ;; Returns non-nil if we're looking at the end of an in-expression
9901 ;; block, otherwise the same as `c-looking-at-inexpr-block'.
9902 ;; PAREN-STATE is the paren state relevant at the current position.
9903 ;;
9904 ;; This function might do hidden buffer changes.
9905 (save-excursion
9906 ;; We currently only recognize a block.
9907 (let ((here (point))
9908 (elem (car-safe paren-state))
9909 containing-sexp)
9910 (when (and (consp elem)
9911 (progn (goto-char (cdr elem))
9912 (c-forward-syntactic-ws here)
9913 (= (point) here)))
9914 (goto-char (car elem))
9915 (if (setq paren-state (cdr paren-state))
9916 (setq containing-sexp (car-safe paren-state)))
9917 (c-looking-at-inexpr-block (c-safe-position containing-sexp
9918 paren-state)
9919 containing-sexp)))))
9920
9921 (defun c-at-macro-vsemi-p (&optional pos)
9922 ;; Is there a "virtual semicolon" at POS or point?
9923 ;; (See cc-defs.el for full details of "virtual semicolons".)
9924 ;;
9925 ;; This is true when point is at the last non syntactic WS position on the
9926 ;; line, there is a macro call last on the line, and this particular macro's
9927 ;; name is defined by the regexp `c-vs-macro-regexp' as not needing a
9928 ;; semicolon.
9929 (save-excursion
9930 (save-restriction
9931 (widen)
9932 (if pos
9933 (goto-char pos)
9934 (setq pos (point)))
9935 (and
9936 c-macro-with-semi-re
9937 (eq (skip-chars-backward " \t") 0)
9938
9939 ;; Check we've got nothing after this except comments and empty lines
9940 ;; joined by escaped EOLs.
9941 (skip-chars-forward " \t") ; always returns non-nil.
9942 (progn
9943 (while ; go over 1 block comment per iteration.
9944 (and
9945 (looking-at "\\(\\\\[\n\r][ \t]*\\)*")
9946 (goto-char (match-end 0))
9947 (cond
9948 ((looking-at c-block-comment-start-regexp)
9949 (and (forward-comment 1)
9950 (skip-chars-forward " \t"))) ; always returns non-nil
9951 ((looking-at c-line-comment-start-regexp)
9952 (end-of-line)
9953 nil)
9954 (t nil))))
9955 (eolp))
9956
9957 (goto-char pos)
9958 (progn (c-backward-syntactic-ws)
9959 (eq (point) pos))
9960
9961 ;; Check for one of the listed macros being before point.
9962 (or (not (eq (char-before) ?\)))
9963 (when (c-go-list-backward)
9964 (c-backward-syntactic-ws)
9965 t))
9966 (c-simple-skip-symbol-backward)
9967 (looking-at c-macro-with-semi-re)
9968 (goto-char pos)
9969 (not (c-in-literal)))))) ; The most expensive check last.
9970
9971 (defun c-macro-vsemi-status-unknown-p () t) ; See cc-defs.el.
9972
9973 \f
9974 ;; `c-guess-basic-syntax' and the functions that precedes it below
9975 ;; implements the main decision tree for determining the syntactic
9976 ;; analysis of the current line of code.
9977
9978 ;; Dynamically bound to t when `c-guess-basic-syntax' is called during
9979 ;; auto newline analysis.
9980 (defvar c-auto-newline-analysis nil)
9981
9982 (defun c-brace-anchor-point (bracepos)
9983 ;; BRACEPOS is the position of a brace in a construct like "namespace
9984 ;; Bar {". Return the anchor point in this construct; this is the
9985 ;; earliest symbol on the brace's line which isn't earlier than
9986 ;; "namespace".
9987 ;;
9988 ;; Currently (2007-08-17), "like namespace" means "matches
9989 ;; c-other-block-decl-kwds". It doesn't work with "class" or "struct"
9990 ;; or anything like that.
9991 (save-excursion
9992 (let ((boi (c-point 'boi bracepos)))
9993 (goto-char bracepos)
9994 (while (and (> (point) boi)
9995 (not (looking-at c-other-decl-block-key)))
9996 (c-backward-token-2))
9997 (if (> (point) boi) (point) boi))))
9998
9999 (defsubst c-add-syntax (symbol &rest args)
10000 ;; A simple function to prepend a new syntax element to
10001 ;; `c-syntactic-context'. Using `setq' on it is unsafe since it
10002 ;; should always be dynamically bound but since we read it first
10003 ;; we'll fail properly anyway if this function is misused.
10004 (setq c-syntactic-context (cons (cons symbol args)
10005 c-syntactic-context)))
10006
10007 (defsubst c-append-syntax (symbol &rest args)
10008 ;; Like `c-add-syntax' but appends to the end of the syntax list.
10009 ;; (Normally not necessary.)
10010 (setq c-syntactic-context (nconc c-syntactic-context
10011 (list (cons symbol args)))))
10012
10013 (defun c-add-stmt-syntax (syntax-symbol
10014 syntax-extra-args
10015 stop-at-boi-only
10016 containing-sexp
10017 paren-state)
10018 ;; Add the indicated SYNTAX-SYMBOL to `c-syntactic-context', extending it as
10019 ;; needed with further syntax elements of the types `substatement',
10020 ;; `inexpr-statement', `arglist-cont-nonempty', `statement-block-intro', and
10021 ;; `defun-block-intro'.
10022 ;;
10023 ;; Do the generic processing to anchor the given syntax symbol on
10024 ;; the preceding statement: Skip over any labels and containing
10025 ;; statements on the same line, and then search backward until we
10026 ;; find a statement or block start that begins at boi without a
10027 ;; label or comment.
10028 ;;
10029 ;; Point is assumed to be at the prospective anchor point for the
10030 ;; given SYNTAX-SYMBOL. More syntax entries are added if we need to
10031 ;; skip past open parens and containing statements. Most of the added
10032 ;; syntax elements will get the same anchor point - the exception is
10033 ;; for an anchor in a construct like "namespace"[*] - this is as early
10034 ;; as possible in the construct but on the same line as the {.
10035 ;;
10036 ;; [*] i.e. with a keyword matching c-other-block-decl-kwds.
10037 ;;
10038 ;; SYNTAX-EXTRA-ARGS are a list of the extra arguments for the
10039 ;; syntax symbol. They are appended after the anchor point.
10040 ;;
10041 ;; If STOP-AT-BOI-ONLY is nil, we can stop in the middle of the line
10042 ;; if the current statement starts there.
10043 ;;
10044 ;; Note: It's not a problem if PAREN-STATE "overshoots"
10045 ;; CONTAINING-SEXP, i.e. contains info about parens further down.
10046 ;;
10047 ;; This function might do hidden buffer changes.
10048
10049 (if (= (point) (c-point 'boi))
10050 ;; This is by far the most common case, so let's give it special
10051 ;; treatment.
10052 (apply 'c-add-syntax syntax-symbol (point) syntax-extra-args)
10053
10054 (let ((syntax-last c-syntactic-context)
10055 (boi (c-point 'boi))
10056 ;; Set when we're on a label, so that we don't stop there.
10057 ;; FIXME: To be complete we should check if we're on a label
10058 ;; now at the start.
10059 on-label)
10060
10061 ;; Use point as the anchor point for "namespace", "extern", etc.
10062 (apply 'c-add-syntax syntax-symbol
10063 (if (rassq syntax-symbol c-other-decl-block-key-in-symbols-alist)
10064 (point) nil)
10065 syntax-extra-args)
10066
10067 ;; Loop while we have to back out of containing blocks.
10068 (while
10069 (and
10070 (catch 'back-up-block
10071
10072 ;; Loop while we have to back up statements.
10073 (while (or (/= (point) boi)
10074 on-label
10075 (looking-at c-comment-start-regexp))
10076
10077 ;; Skip past any comments that stands between the
10078 ;; statement start and boi.
10079 (let ((savepos (point)))
10080 (while (and (/= savepos boi)
10081 (c-backward-single-comment))
10082 (setq savepos (point)
10083 boi (c-point 'boi)))
10084 (goto-char savepos))
10085
10086 ;; Skip to the beginning of this statement or backward
10087 ;; another one.
10088 (let ((old-pos (point))
10089 (old-boi boi)
10090 (step-type (c-beginning-of-statement-1 containing-sexp)))
10091 (setq boi (c-point 'boi)
10092 on-label (eq step-type 'label))
10093
10094 (cond ((= (point) old-pos)
10095 ;; If we didn't move we're at the start of a block and
10096 ;; have to continue outside it.
10097 (throw 'back-up-block t))
10098
10099 ((and (eq step-type 'up)
10100 (>= (point) old-boi)
10101 (looking-at "else\\>[^_]")
10102 (save-excursion
10103 (goto-char old-pos)
10104 (looking-at "if\\>[^_]")))
10105 ;; Special case to avoid deeper and deeper indentation
10106 ;; of "else if" clauses.
10107 )
10108
10109 ((and (not stop-at-boi-only)
10110 (/= old-pos old-boi)
10111 (memq step-type '(up previous)))
10112 ;; If stop-at-boi-only is nil, we shouldn't back up
10113 ;; over previous or containing statements to try to
10114 ;; reach boi, so go back to the last position and
10115 ;; exit.
10116 (goto-char old-pos)
10117 (throw 'back-up-block nil))
10118
10119 (t
10120 (if (and (not stop-at-boi-only)
10121 (memq step-type '(up previous beginning)))
10122 ;; If we've moved into another statement then we
10123 ;; should no longer try to stop in the middle of a
10124 ;; line.
10125 (setq stop-at-boi-only t))
10126
10127 ;; Record this as a substatement if we skipped up one
10128 ;; level.
10129 (when (eq step-type 'up)
10130 (c-add-syntax 'substatement nil))))
10131 )))
10132
10133 containing-sexp)
10134
10135 ;; Now we have to go out of this block.
10136 (goto-char containing-sexp)
10137
10138 ;; Don't stop in the middle of a special brace list opener
10139 ;; like "({".
10140 (when c-special-brace-lists
10141 (let ((special-list (c-looking-at-special-brace-list)))
10142 (when (and special-list
10143 (< (car (car special-list)) (point)))
10144 (setq containing-sexp (car (car special-list)))
10145 (goto-char containing-sexp))))
10146
10147 (setq paren-state (c-whack-state-after containing-sexp paren-state)
10148 containing-sexp (c-most-enclosing-brace paren-state)
10149 boi (c-point 'boi))
10150
10151 ;; Analyze the construct in front of the block we've stepped out
10152 ;; from and add the right syntactic element for it.
10153 (let ((paren-pos (point))
10154 (paren-char (char-after))
10155 step-type)
10156
10157 (if (eq paren-char ?\()
10158 ;; Stepped out of a parenthesis block, so we're in an
10159 ;; expression now.
10160 (progn
10161 (when (/= paren-pos boi)
10162 (if (and c-recognize-paren-inexpr-blocks
10163 (progn
10164 (c-backward-syntactic-ws containing-sexp)
10165 (or (not (looking-at "\\>"))
10166 (not (c-on-identifier))))
10167 (save-excursion
10168 (goto-char (1+ paren-pos))
10169 (c-forward-syntactic-ws)
10170 (eq (char-after) ?{)))
10171 ;; Stepped out of an in-expression statement. This
10172 ;; syntactic element won't get an anchor pos.
10173 (c-add-syntax 'inexpr-statement)
10174
10175 ;; A parenthesis normally belongs to an arglist.
10176 (c-add-syntax 'arglist-cont-nonempty nil paren-pos)))
10177
10178 (goto-char (max boi
10179 (if containing-sexp
10180 (1+ containing-sexp)
10181 (point-min))))
10182 (setq step-type 'same
10183 on-label nil))
10184
10185 ;; Stepped out of a brace block.
10186 (setq step-type (c-beginning-of-statement-1 containing-sexp)
10187 on-label (eq step-type 'label))
10188
10189 (if (and (eq step-type 'same)
10190 (/= paren-pos (point)))
10191 (let (inexpr)
10192 (cond
10193 ((save-excursion
10194 (goto-char paren-pos)
10195 (setq inexpr (c-looking-at-inexpr-block
10196 (c-safe-position containing-sexp paren-state)
10197 containing-sexp)))
10198 (c-add-syntax (if (eq (car inexpr) 'inlambda)
10199 'defun-block-intro
10200 'statement-block-intro)
10201 nil))
10202 ((looking-at c-other-decl-block-key)
10203 (c-add-syntax
10204 (cdr (assoc (match-string 1)
10205 c-other-decl-block-key-in-symbols-alist))
10206 (max (c-point 'boi paren-pos) (point))))
10207 (t (c-add-syntax 'defun-block-intro nil))))
10208
10209 (c-add-syntax 'statement-block-intro nil)))
10210
10211 (if (= paren-pos boi)
10212 ;; Always done if the open brace was at boi. The
10213 ;; c-beginning-of-statement-1 call above is necessary
10214 ;; anyway, to decide the type of block-intro to add.
10215 (goto-char paren-pos)
10216 (setq boi (c-point 'boi)))
10217 ))
10218
10219 ;; Fill in the current point as the anchor for all the symbols
10220 ;; added above.
10221 (let ((p c-syntactic-context) q)
10222 (while (not (eq p syntax-last))
10223 (setq q (cdr (car p))) ; e.g. (nil 28) [from (arglist-cont-nonempty nil 28)]
10224 (while q
10225 (unless (car q)
10226 (setcar q (point)))
10227 (setq q (cdr q)))
10228 (setq p (cdr p))))
10229 )))
10230
10231 (defun c-add-class-syntax (symbol
10232 containing-decl-open
10233 containing-decl-start
10234 containing-decl-kwd
10235 paren-state)
10236 ;; The inclass and class-close syntactic symbols are added in
10237 ;; several places and some work is needed to fix everything.
10238 ;; Therefore it's collected here.
10239 ;;
10240 ;; This function might do hidden buffer changes.
10241 (goto-char containing-decl-open)
10242 (if (and (eq symbol 'inclass) (= (point) (c-point 'boi)))
10243 (progn
10244 (c-add-syntax symbol containing-decl-open)
10245 containing-decl-open)
10246 (goto-char containing-decl-start)
10247 ;; Ought to use `c-add-stmt-syntax' instead of backing up to boi
10248 ;; here, but we have to do like this for compatibility.
10249 (back-to-indentation)
10250 (c-add-syntax symbol (point))
10251 (if (and (c-keyword-member containing-decl-kwd
10252 'c-inexpr-class-kwds)
10253 (/= containing-decl-start (c-point 'boi containing-decl-start)))
10254 (c-add-syntax 'inexpr-class))
10255 (point)))
10256
10257 (defun c-guess-continued-construct (indent-point
10258 char-after-ip
10259 beg-of-same-or-containing-stmt
10260 containing-sexp
10261 paren-state)
10262 ;; This function contains the decision tree reached through both
10263 ;; cases 18 and 10. It's a continued statement or top level
10264 ;; construct of some kind.
10265 ;;
10266 ;; This function might do hidden buffer changes.
10267
10268 (let (special-brace-list placeholder)
10269 (goto-char indent-point)
10270 (skip-chars-forward " \t")
10271
10272 (cond
10273 ;; (CASE A removed.)
10274 ;; CASE B: open braces for class or brace-lists
10275 ((setq special-brace-list
10276 (or (and c-special-brace-lists
10277 (c-looking-at-special-brace-list))
10278 (eq char-after-ip ?{)))
10279
10280 (cond
10281 ;; CASE B.1: class-open
10282 ((save-excursion
10283 (and (eq (char-after) ?{)
10284 (c-looking-at-decl-block containing-sexp t)
10285 (setq beg-of-same-or-containing-stmt (point))))
10286 (c-add-syntax 'class-open beg-of-same-or-containing-stmt))
10287
10288 ;; CASE B.2: brace-list-open
10289 ((or (consp special-brace-list)
10290 (save-excursion
10291 (goto-char beg-of-same-or-containing-stmt)
10292 (c-syntactic-re-search-forward "=\\([^=]\\|$\\)"
10293 indent-point t t t)))
10294 ;; The most semantically accurate symbol here is
10295 ;; brace-list-open, but we normally report it simply as a
10296 ;; statement-cont. The reason is that one normally adjusts
10297 ;; brace-list-open for brace lists as top-level constructs,
10298 ;; and brace lists inside statements is a completely different
10299 ;; context. C.f. case 5A.3.
10300 (c-beginning-of-statement-1 containing-sexp)
10301 (c-add-stmt-syntax (if c-auto-newline-analysis
10302 ;; Turn off the dwim above when we're
10303 ;; analyzing the nature of the brace
10304 ;; for the auto newline feature.
10305 'brace-list-open
10306 'statement-cont)
10307 nil nil
10308 containing-sexp paren-state))
10309
10310 ;; CASE B.3: The body of a function declared inside a normal
10311 ;; block. Can occur e.g. in Pike and when using gcc
10312 ;; extensions, but watch out for macros followed by blocks.
10313 ;; C.f. cases E, 16F and 17G.
10314 ((and (not (c-at-statement-start-p))
10315 (eq (c-beginning-of-statement-1 containing-sexp nil nil t)
10316 'same)
10317 (save-excursion
10318 (let ((c-recognize-typeless-decls nil))
10319 ;; Turn off recognition of constructs that lacks a
10320 ;; type in this case, since that's more likely to be
10321 ;; a macro followed by a block.
10322 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
10323 (c-add-stmt-syntax 'defun-open nil t
10324 containing-sexp paren-state))
10325
10326 ;; CASE B.4: Continued statement with block open. The most
10327 ;; accurate analysis is perhaps `statement-cont' together with
10328 ;; `block-open' but we play DWIM and use `substatement-open'
10329 ;; instead. The rationale is that this typically is a macro
10330 ;; followed by a block which makes it very similar to a
10331 ;; statement with a substatement block.
10332 (t
10333 (c-add-stmt-syntax 'substatement-open nil nil
10334 containing-sexp paren-state))
10335 ))
10336
10337 ;; CASE C: iostream insertion or extraction operator
10338 ((and (looking-at "\\(<<\\|>>\\)\\([^=]\\|$\\)")
10339 (save-excursion
10340 (goto-char beg-of-same-or-containing-stmt)
10341 ;; If there is no preceding streamop in the statement
10342 ;; then indent this line as a normal statement-cont.
10343 (when (c-syntactic-re-search-forward
10344 "\\(<<\\|>>\\)\\([^=]\\|$\\)" indent-point 'move t t)
10345 (c-add-syntax 'stream-op (c-point 'boi))
10346 t))))
10347
10348 ;; CASE E: In the "K&R region" of a function declared inside a
10349 ;; normal block. C.f. case B.3.
10350 ((and (save-excursion
10351 ;; Check that the next token is a '{'. This works as
10352 ;; long as no language that allows nested function
10353 ;; definitions allows stuff like member init lists, K&R
10354 ;; declarations or throws clauses there.
10355 ;;
10356 ;; Note that we do a forward search for something ahead
10357 ;; of the indentation line here. That's not good since
10358 ;; the user might not have typed it yet. Unfortunately
10359 ;; it's exceedingly tricky to recognize a function
10360 ;; prototype in a code block without resorting to this.
10361 (c-forward-syntactic-ws)
10362 (eq (char-after) ?{))
10363 (not (c-at-statement-start-p))
10364 (eq (c-beginning-of-statement-1 containing-sexp nil nil t)
10365 'same)
10366 (save-excursion
10367 (let ((c-recognize-typeless-decls nil))
10368 ;; Turn off recognition of constructs that lacks a
10369 ;; type in this case, since that's more likely to be
10370 ;; a macro followed by a block.
10371 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
10372 (c-add-stmt-syntax 'func-decl-cont nil t
10373 containing-sexp paren-state))
10374
10375 ;;CASE F: continued statement and the only preceding items are
10376 ;;annotations.
10377 ((and (c-major-mode-is 'java-mode)
10378 (setq placeholder (point))
10379 (c-beginning-of-statement-1)
10380 (progn
10381 (while (and (c-forward-annotation)
10382 (< (point) placeholder))
10383 (c-forward-syntactic-ws))
10384 t)
10385 (prog1
10386 (>= (point) placeholder)
10387 (goto-char placeholder)))
10388 (c-beginning-of-statement-1 containing-sexp)
10389 (c-add-syntax 'annotation-var-cont (point)))
10390
10391 ;; CASE G: a template list continuation?
10392 ;; Mostly a duplication of case 5D.3 to fix templates-19:
10393 ((and (c-major-mode-is 'c++-mode)
10394 (save-excursion
10395 (goto-char indent-point)
10396 (c-with-syntax-table c++-template-syntax-table
10397 (setq placeholder (c-up-list-backward)))
10398 (and placeholder
10399 (eq (char-after placeholder) ?<)
10400 (/= (char-before placeholder) ?<)
10401 (progn
10402 (goto-char (1+ placeholder))
10403 (not (looking-at c-<-op-cont-regexp))))))
10404 (c-with-syntax-table c++-template-syntax-table
10405 (goto-char placeholder)
10406 (c-beginning-of-statement-1 containing-sexp t))
10407 (if (save-excursion
10408 (c-backward-syntactic-ws containing-sexp)
10409 (eq (char-before) ?<))
10410 ;; In a nested template arglist.
10411 (progn
10412 (goto-char placeholder)
10413 (c-syntactic-skip-backward "^,;" containing-sexp t)
10414 (c-forward-syntactic-ws))
10415 (back-to-indentation))
10416 ;; FIXME: Should use c-add-stmt-syntax, but it's not yet
10417 ;; template aware.
10418 (c-add-syntax 'template-args-cont (point) placeholder))
10419
10420 ;; CASE D: continued statement.
10421 (t
10422 (c-beginning-of-statement-1 containing-sexp)
10423 (c-add-stmt-syntax 'statement-cont nil nil
10424 containing-sexp paren-state))
10425 )))
10426
10427 ;; The next autoload was added by RMS on 2005/8/9 - don't know why (ACM,
10428 ;; 2005/11/29).
10429 ;;;###autoload
10430 (defun c-guess-basic-syntax ()
10431 "Return the syntactic context of the current line."
10432 (save-excursion
10433 (beginning-of-line)
10434 (c-save-buffer-state
10435 ((indent-point (point))
10436 (case-fold-search nil)
10437 ;; A whole ugly bunch of various temporary variables. Have
10438 ;; to declare them here since it's not possible to declare
10439 ;; a variable with only the scope of a cond test and the
10440 ;; following result clauses, and most of this function is a
10441 ;; single gigantic cond. :P
10442 literal char-before-ip before-ws-ip char-after-ip macro-start
10443 in-macro-expr c-syntactic-context placeholder c-in-literal-cache
10444 step-type tmpsymbol keyword injava-inher special-brace-list tmp-pos
10445 containing-<
10446 ;; The following record some positions for the containing
10447 ;; declaration block if we're directly within one:
10448 ;; `containing-decl-open' is the position of the open
10449 ;; brace. `containing-decl-start' is the start of the
10450 ;; declaration. `containing-decl-kwd' is the keyword
10451 ;; symbol of the keyword that tells what kind of block it
10452 ;; is.
10453 containing-decl-open
10454 containing-decl-start
10455 containing-decl-kwd
10456 ;; The open paren of the closest surrounding sexp or nil if
10457 ;; there is none.
10458 containing-sexp
10459 ;; The position after the closest preceding brace sexp
10460 ;; (nested sexps are ignored), or the position after
10461 ;; `containing-sexp' if there is none, or (point-min) if
10462 ;; `containing-sexp' is nil.
10463 lim
10464 ;; The paren state outside `containing-sexp', or at
10465 ;; `indent-point' if `containing-sexp' is nil.
10466 (paren-state (c-parse-state))
10467 ;; There's always at most one syntactic element which got
10468 ;; an anchor pos. It's stored in syntactic-relpos.
10469 syntactic-relpos
10470 (c-stmt-delim-chars c-stmt-delim-chars))
10471
10472 ;; Check if we're directly inside an enclosing declaration
10473 ;; level block.
10474 (when (and (setq containing-sexp
10475 (c-most-enclosing-brace paren-state))
10476 (progn
10477 (goto-char containing-sexp)
10478 (eq (char-after) ?{))
10479 (setq placeholder
10480 (c-looking-at-decl-block
10481 (c-most-enclosing-brace paren-state
10482 containing-sexp)
10483 t)))
10484 (setq containing-decl-open containing-sexp
10485 containing-decl-start (point)
10486 containing-sexp nil)
10487 (goto-char placeholder)
10488 (setq containing-decl-kwd (and (looking-at c-keywords-regexp)
10489 (c-keyword-sym (match-string 1)))))
10490
10491 ;; Init some position variables.
10492 (if paren-state
10493 (progn
10494 (setq containing-sexp (car paren-state)
10495 paren-state (cdr paren-state))
10496 (if (consp containing-sexp)
10497 (save-excursion
10498 (goto-char (cdr containing-sexp))
10499 (if (and (c-major-mode-is 'c++-mode)
10500 (c-back-over-member-initializer-braces))
10501 (c-syntactic-skip-backward "^}" nil t))
10502 (setq lim (point))
10503 (if paren-state
10504 ;; Ignore balanced paren. The next entry
10505 ;; can't be another one.
10506 (setq containing-sexp (car paren-state)
10507 paren-state (cdr paren-state))
10508 ;; If there is no surrounding open paren then
10509 ;; put the last balanced pair back on paren-state.
10510 (setq paren-state (cons containing-sexp paren-state)
10511 containing-sexp nil)))
10512 (setq lim (1+ containing-sexp))))
10513 (setq lim (point-min)))
10514
10515 ;; If we're in a parenthesis list then ',' delimits the
10516 ;; "statements" rather than being an operator (with the
10517 ;; exception of the "for" clause). This difference is
10518 ;; typically only noticeable when statements are used in macro
10519 ;; arglists.
10520 (when (and containing-sexp
10521 (eq (char-after containing-sexp) ?\())
10522 (setq c-stmt-delim-chars c-stmt-delim-chars-with-comma))
10523 ;; cache char before and after indent point, and move point to
10524 ;; the most likely position to perform the majority of tests
10525 (goto-char indent-point)
10526 (c-backward-syntactic-ws lim)
10527 (setq before-ws-ip (point)
10528 char-before-ip (char-before))
10529 (goto-char indent-point)
10530 (skip-chars-forward " \t")
10531 (setq char-after-ip (char-after))
10532
10533 ;; are we in a literal?
10534 (setq literal (c-in-literal lim))
10535
10536 ;; now figure out syntactic qualities of the current line
10537 (cond
10538
10539 ;; CASE 1: in a string.
10540 ((eq literal 'string)
10541 (c-add-syntax 'string (c-point 'bopl)))
10542
10543 ;; CASE 2: in a C or C++ style comment.
10544 ((and (memq literal '(c c++))
10545 ;; This is a kludge for XEmacs where we use
10546 ;; `buffer-syntactic-context', which doesn't correctly
10547 ;; recognize "\*/" to end a block comment.
10548 ;; `parse-partial-sexp' which is used by
10549 ;; `c-literal-limits' will however do that in most
10550 ;; versions, which results in that we get nil from
10551 ;; `c-literal-limits' even when `c-in-literal' claims
10552 ;; we're inside a comment.
10553 (setq placeholder (c-literal-limits lim)))
10554 (c-add-syntax literal (car placeholder)))
10555
10556 ;; CASE 3: in a cpp preprocessor macro continuation.
10557 ((and (save-excursion
10558 (when (c-beginning-of-macro)
10559 (setq macro-start (point))))
10560 (/= macro-start (c-point 'boi))
10561 (progn
10562 (setq tmpsymbol 'cpp-macro-cont)
10563 (or (not c-syntactic-indentation-in-macros)
10564 (save-excursion
10565 (goto-char macro-start)
10566 ;; If at the beginning of the body of a #define
10567 ;; directive then analyze as cpp-define-intro
10568 ;; only. Go on with the syntactic analysis
10569 ;; otherwise. in-macro-expr is set if we're in a
10570 ;; cpp expression, i.e. before the #define body
10571 ;; or anywhere in a non-#define directive.
10572 (if (c-forward-to-cpp-define-body)
10573 (let ((indent-boi (c-point 'boi indent-point)))
10574 (setq in-macro-expr (> (point) indent-boi)
10575 tmpsymbol 'cpp-define-intro)
10576 (= (point) indent-boi))
10577 (setq in-macro-expr t)
10578 nil)))))
10579 (c-add-syntax tmpsymbol macro-start)
10580 (setq macro-start nil))
10581
10582 ;; CASE 11: an else clause?
10583 ((looking-at "else\\>[^_]")
10584 (c-beginning-of-statement-1 containing-sexp)
10585 (c-add-stmt-syntax 'else-clause nil t
10586 containing-sexp paren-state))
10587
10588 ;; CASE 12: while closure of a do/while construct?
10589 ((and (looking-at "while\\>[^_]")
10590 (save-excursion
10591 (prog1 (eq (c-beginning-of-statement-1 containing-sexp)
10592 'beginning)
10593 (setq placeholder (point)))))
10594 (goto-char placeholder)
10595 (c-add-stmt-syntax 'do-while-closure nil t
10596 containing-sexp paren-state))
10597
10598 ;; CASE 13: A catch or finally clause? This case is simpler
10599 ;; than if-else and do-while, because a block is required
10600 ;; after every try, catch and finally.
10601 ((save-excursion
10602 (and (cond ((c-major-mode-is 'c++-mode)
10603 (looking-at "catch\\>[^_]"))
10604 ((c-major-mode-is 'java-mode)
10605 (looking-at "\\(catch\\|finally\\)\\>[^_]")))
10606 (and (c-safe (c-backward-syntactic-ws)
10607 (c-backward-sexp)
10608 t)
10609 (eq (char-after) ?{)
10610 (c-safe (c-backward-syntactic-ws)
10611 (c-backward-sexp)
10612 t)
10613 (if (eq (char-after) ?\()
10614 (c-safe (c-backward-sexp) t)
10615 t))
10616 (looking-at "\\(try\\|catch\\)\\>[^_]")
10617 (setq placeholder (point))))
10618 (goto-char placeholder)
10619 (c-add-stmt-syntax 'catch-clause nil t
10620 containing-sexp paren-state))
10621
10622 ;; CASE 18: A substatement we can recognize by keyword.
10623 ((save-excursion
10624 (and c-opt-block-stmt-key
10625 (not (eq char-before-ip ?\;))
10626 (not (c-at-vsemi-p before-ws-ip))
10627 (not (memq char-after-ip '(?\) ?\] ?,)))
10628 (or (not (eq char-before-ip ?}))
10629 (c-looking-at-inexpr-block-backward c-state-cache))
10630 (> (point)
10631 (progn
10632 ;; Ought to cache the result from the
10633 ;; c-beginning-of-statement-1 calls here.
10634 (setq placeholder (point))
10635 (while (eq (setq step-type
10636 (c-beginning-of-statement-1 lim))
10637 'label))
10638 (if (eq step-type 'previous)
10639 (goto-char placeholder)
10640 (setq placeholder (point))
10641 (if (and (eq step-type 'same)
10642 (not (looking-at c-opt-block-stmt-key)))
10643 ;; Step up to the containing statement if we
10644 ;; stayed in the same one.
10645 (let (step)
10646 (while (eq
10647 (setq step
10648 (c-beginning-of-statement-1 lim))
10649 'label))
10650 (if (eq step 'up)
10651 (setq placeholder (point))
10652 ;; There was no containing statement after all.
10653 (goto-char placeholder)))))
10654 placeholder))
10655 (if (looking-at c-block-stmt-2-key)
10656 ;; Require a parenthesis after these keywords.
10657 ;; Necessary to catch e.g. synchronized in Java,
10658 ;; which can be used both as statement and
10659 ;; modifier.
10660 (and (zerop (c-forward-token-2 1 nil))
10661 (eq (char-after) ?\())
10662 (looking-at c-opt-block-stmt-key))))
10663
10664 (if (eq step-type 'up)
10665 ;; CASE 18A: Simple substatement.
10666 (progn
10667 (goto-char placeholder)
10668 (cond
10669 ((eq char-after-ip ?{)
10670 (c-add-stmt-syntax 'substatement-open nil nil
10671 containing-sexp paren-state))
10672 ((save-excursion
10673 (goto-char indent-point)
10674 (back-to-indentation)
10675 (c-forward-label))
10676 (c-add-stmt-syntax 'substatement-label nil nil
10677 containing-sexp paren-state))
10678 (t
10679 (c-add-stmt-syntax 'substatement nil nil
10680 containing-sexp paren-state))))
10681
10682 ;; CASE 18B: Some other substatement. This is shared
10683 ;; with case 10.
10684 (c-guess-continued-construct indent-point
10685 char-after-ip
10686 placeholder
10687 lim
10688 paren-state)))
10689
10690 ;; CASE 14: A case or default label
10691 ((save-excursion
10692 (and (looking-at c-label-kwds-regexp)
10693 (or (c-major-mode-is 'idl-mode)
10694 (and
10695 containing-sexp
10696 (goto-char containing-sexp)
10697 (eq (char-after) ?{)
10698 (progn (c-backward-syntactic-ws) t)
10699 (eq (char-before) ?\))
10700 (c-go-list-backward)
10701 (progn (c-backward-syntactic-ws) t)
10702 (c-simple-skip-symbol-backward)
10703 (looking-at c-block-stmt-2-key)))))
10704 (if containing-sexp
10705 (progn
10706 (goto-char containing-sexp)
10707 (setq lim (c-most-enclosing-brace c-state-cache
10708 containing-sexp))
10709 (c-backward-to-block-anchor lim)
10710 (c-add-stmt-syntax 'case-label nil t lim paren-state))
10711 ;; Got a bogus label at the top level. In lack of better
10712 ;; alternatives, anchor it on (point-min).
10713 (c-add-syntax 'case-label (point-min))))
10714
10715 ;; CASE 15: any other label
10716 ((save-excursion
10717 (back-to-indentation)
10718 (and (not (looking-at c-syntactic-ws-start))
10719 (not (looking-at c-label-kwds-regexp))
10720 (c-forward-label)))
10721 (cond (containing-decl-open
10722 (setq placeholder (c-add-class-syntax 'inclass
10723 containing-decl-open
10724 containing-decl-start
10725 containing-decl-kwd
10726 paren-state))
10727 ;; Append access-label with the same anchor point as
10728 ;; inclass gets.
10729 (c-append-syntax 'access-label placeholder))
10730
10731 (containing-sexp
10732 (goto-char containing-sexp)
10733 (setq lim (c-most-enclosing-brace c-state-cache
10734 containing-sexp))
10735 (save-excursion
10736 (setq tmpsymbol
10737 (if (and (eq (c-beginning-of-statement-1 lim) 'up)
10738 (looking-at "switch\\>[^_]"))
10739 ;; If the surrounding statement is a switch then
10740 ;; let's analyze all labels as switch labels, so
10741 ;; that they get lined up consistently.
10742 'case-label
10743 'label)))
10744 (c-backward-to-block-anchor lim)
10745 (c-add-stmt-syntax tmpsymbol nil t lim paren-state))
10746
10747 (t
10748 ;; A label on the top level. Treat it as a class
10749 ;; context. (point-min) is the closest we get to the
10750 ;; class open brace.
10751 (c-add-syntax 'access-label (point-min)))))
10752
10753 ;; CASE 4: In-expression statement. C.f. cases 7B, 16A and
10754 ;; 17E.
10755 ((setq placeholder (c-looking-at-inexpr-block
10756 (c-safe-position containing-sexp paren-state)
10757 containing-sexp
10758 ;; Have to turn on the heuristics after
10759 ;; the point even though it doesn't work
10760 ;; very well. C.f. test case class-16.pike.
10761 t))
10762 (setq tmpsymbol (assq (car placeholder)
10763 '((inexpr-class . class-open)
10764 (inexpr-statement . block-open))))
10765 (if tmpsymbol
10766 ;; It's a statement block or an anonymous class.
10767 (setq tmpsymbol (cdr tmpsymbol))
10768 ;; It's a Pike lambda. Check whether we are between the
10769 ;; lambda keyword and the argument list or at the defun
10770 ;; opener.
10771 (setq tmpsymbol (if (eq char-after-ip ?{)
10772 'inline-open
10773 'lambda-intro-cont)))
10774 (goto-char (cdr placeholder))
10775 (back-to-indentation)
10776 (c-add-stmt-syntax tmpsymbol nil t
10777 (c-most-enclosing-brace c-state-cache (point))
10778 paren-state)
10779 (unless (eq (point) (cdr placeholder))
10780 (c-add-syntax (car placeholder))))
10781
10782 ;; CASE 5: Line is inside a declaration level block or at top level.
10783 ((or containing-decl-open (null containing-sexp))
10784 (cond
10785
10786 ;; CASE 5A: we are looking at a defun, brace list, class,
10787 ;; or inline-inclass method opening brace
10788 ((setq special-brace-list
10789 (or (and c-special-brace-lists
10790 (c-looking-at-special-brace-list))
10791 (eq char-after-ip ?{)))
10792 (cond
10793
10794 ;; CASE 5A.1: Non-class declaration block open.
10795 ((save-excursion
10796 (let (tmp)
10797 (and (eq char-after-ip ?{)
10798 (setq tmp (c-looking-at-decl-block containing-sexp t))
10799 (progn
10800 (setq placeholder (point))
10801 (goto-char tmp)
10802 (looking-at c-symbol-key))
10803 (c-keyword-member
10804 (c-keyword-sym (setq keyword (match-string 0)))
10805 'c-other-block-decl-kwds))))
10806 (goto-char placeholder)
10807 (c-add-stmt-syntax
10808 (if (string-equal keyword "extern")
10809 ;; Special case for extern-lang-open.
10810 'extern-lang-open
10811 (intern (concat keyword "-open")))
10812 nil t containing-sexp paren-state))
10813
10814 ;; CASE 5A.2: we are looking at a class opening brace
10815 ((save-excursion
10816 (goto-char indent-point)
10817 (skip-chars-forward " \t")
10818 (and (eq (char-after) ?{)
10819 (c-looking-at-decl-block containing-sexp t)
10820 (setq placeholder (point))))
10821 (c-add-syntax 'class-open placeholder))
10822
10823 ;; CASE 5A.3: brace list open
10824 ((save-excursion
10825 (c-beginning-of-decl-1 lim)
10826 (while (cond
10827 ((looking-at c-specifier-key)
10828 (c-forward-keyword-clause 1))
10829 ((and c-opt-cpp-prefix
10830 (looking-at c-noise-macro-with-parens-name-re))
10831 (c-forward-noise-clause))))
10832 (setq placeholder (c-point 'boi))
10833 (or (consp special-brace-list)
10834 (and (or (save-excursion
10835 (goto-char indent-point)
10836 (setq tmpsymbol nil)
10837 (while (and (> (point) placeholder)
10838 (zerop (c-backward-token-2 1 t))
10839 (not (looking-at "=\\([^=]\\|$\\)")))
10840 (and c-opt-inexpr-brace-list-key
10841 (not tmpsymbol)
10842 (looking-at c-opt-inexpr-brace-list-key)
10843 (setq tmpsymbol 'topmost-intro-cont)))
10844 (looking-at "=\\([^=]\\|$\\)"))
10845 (looking-at c-brace-list-key))
10846 (save-excursion
10847 (while (and (< (point) indent-point)
10848 (zerop (c-forward-token-2 1 t))
10849 (not (memq (char-after) '(?\; ?\()))))
10850 (not (memq (char-after) '(?\; ?\()))
10851 ))))
10852 (if (and (not c-auto-newline-analysis)
10853 (c-major-mode-is 'java-mode)
10854 (eq tmpsymbol 'topmost-intro-cont))
10855 ;; We're in Java and have found that the open brace
10856 ;; belongs to a "new Foo[]" initialization list,
10857 ;; which means the brace list is part of an
10858 ;; expression and not a top level definition. We
10859 ;; therefore treat it as any topmost continuation
10860 ;; even though the semantically correct symbol still
10861 ;; is brace-list-open, on the same grounds as in
10862 ;; case B.2.
10863 (progn
10864 (c-beginning-of-statement-1 lim)
10865 (c-add-syntax 'topmost-intro-cont (c-point 'boi)))
10866 (c-add-syntax 'brace-list-open placeholder)))
10867
10868 ;; CASE 5A.4: inline defun open
10869 ((and containing-decl-open
10870 (not (c-keyword-member containing-decl-kwd
10871 'c-other-block-decl-kwds)))
10872 (c-add-syntax 'inline-open)
10873 (c-add-class-syntax 'inclass
10874 containing-decl-open
10875 containing-decl-start
10876 containing-decl-kwd
10877 paren-state))
10878
10879 ;; CASE 5A.5: ordinary defun open
10880 (t
10881 (save-excursion
10882 (c-beginning-of-decl-1 lim)
10883 (while (cond
10884 ((looking-at c-specifier-key)
10885 (c-forward-keyword-clause 1))
10886 ((and c-opt-cpp-prefix
10887 (looking-at c-noise-macro-with-parens-name-re))
10888 (c-forward-noise-clause))))
10889 (c-add-syntax 'defun-open (c-point 'boi))
10890 ;; Bogus to use bol here, but it's the legacy. (Resolved,
10891 ;; 2007-11-09)
10892 ))))
10893
10894 ;; CASE 5R: Member init list. (Used to be part of CASE 5B.1)
10895 ;; Note there is no limit on the backward search here, since member
10896 ;; init lists can, in practice, be very large.
10897 ((save-excursion
10898 (when (and (c-major-mode-is 'c++-mode)
10899 (setq placeholder (c-back-over-member-initializers)))
10900 (setq tmp-pos (point))))
10901 (if (= (c-point 'bosws) (1+ tmp-pos))
10902 (progn
10903 ;; There is no preceding member init clause.
10904 ;; Indent relative to the beginning of indentation
10905 ;; for the topmost-intro line that contains the
10906 ;; prototype's open paren.
10907 (goto-char placeholder)
10908 (c-add-syntax 'member-init-intro (c-point 'boi)))
10909 ;; Indent relative to the first member init clause.
10910 (goto-char (1+ tmp-pos))
10911 (c-forward-syntactic-ws)
10912 (c-add-syntax 'member-init-cont (point))))
10913
10914 ;; CASE 5B: After a function header but before the body (or
10915 ;; the ending semicolon if there's no body).
10916 ((save-excursion
10917 (when (setq placeholder (c-just-after-func-arglist-p
10918 (max lim (c-determine-limit 500))))
10919 (setq tmp-pos (point))))
10920 (cond
10921
10922 ;; CASE 5B.1: Member init list.
10923 ((eq (char-after tmp-pos) ?:)
10924 ;; There is no preceding member init clause.
10925 ;; Indent relative to the beginning of indentation
10926 ;; for the topmost-intro line that contains the
10927 ;; prototype's open paren.
10928 (goto-char placeholder)
10929 (c-add-syntax 'member-init-intro (c-point 'boi)))
10930
10931 ;; CASE 5B.2: K&R arg decl intro
10932 ((and c-recognize-knr-p
10933 (c-in-knr-argdecl lim))
10934 (c-beginning-of-statement-1 lim)
10935 (c-add-syntax 'knr-argdecl-intro (c-point 'boi))
10936 (if containing-decl-open
10937 (c-add-class-syntax 'inclass
10938 containing-decl-open
10939 containing-decl-start
10940 containing-decl-kwd
10941 paren-state)))
10942
10943 ;; CASE 5B.4: Nether region after a C++ or Java func
10944 ;; decl, which could include a `throws' declaration.
10945 (t
10946 (c-beginning-of-statement-1 lim)
10947 (c-add-syntax 'func-decl-cont (c-point 'boi))
10948 )))
10949
10950 ;; CASE 5C: inheritance line. could be first inheritance
10951 ;; line, or continuation of a multiple inheritance
10952 ((or (and (c-major-mode-is 'c++-mode)
10953 (progn
10954 (when (eq char-after-ip ?,)
10955 (skip-chars-forward " \t")
10956 (forward-char))
10957 (looking-at c-opt-postfix-decl-spec-key)))
10958 (and (or (eq char-before-ip ?:)
10959 ;; watch out for scope operator
10960 (save-excursion
10961 (and (eq char-after-ip ?:)
10962 (c-safe (forward-char 1) t)
10963 (not (eq (char-after) ?:))
10964 )))
10965 (save-excursion
10966 (c-beginning-of-statement-1 lim)
10967 (when (looking-at c-opt-<>-sexp-key)
10968 (goto-char (match-end 1))
10969 (c-forward-syntactic-ws)
10970 (c-forward-<>-arglist nil)
10971 (c-forward-syntactic-ws))
10972 (looking-at c-class-key)))
10973 ;; for Java
10974 (and (c-major-mode-is 'java-mode)
10975 (let ((fence (save-excursion
10976 (c-beginning-of-statement-1 lim)
10977 (point)))
10978 cont done)
10979 (save-excursion
10980 (while (not done)
10981 (cond ((looking-at c-opt-postfix-decl-spec-key)
10982 (setq injava-inher (cons cont (point))
10983 done t))
10984 ((or (not (c-safe (c-forward-sexp -1) t))
10985 (<= (point) fence))
10986 (setq done t))
10987 )
10988 (setq cont t)))
10989 injava-inher)
10990 (not (c-crosses-statement-barrier-p (cdr injava-inher)
10991 (point)))
10992 ))
10993 (cond
10994
10995 ;; CASE 5C.1: non-hanging colon on an inher intro
10996 ((eq char-after-ip ?:)
10997 (c-beginning-of-statement-1 lim)
10998 (c-add-syntax 'inher-intro (c-point 'boi))
10999 ;; don't add inclass symbol since relative point already
11000 ;; contains any class offset
11001 )
11002
11003 ;; CASE 5C.2: hanging colon on an inher intro
11004 ((eq char-before-ip ?:)
11005 (c-beginning-of-statement-1 lim)
11006 (c-add-syntax 'inher-intro (c-point 'boi))
11007 (if containing-decl-open
11008 (c-add-class-syntax 'inclass
11009 containing-decl-open
11010 containing-decl-start
11011 containing-decl-kwd
11012 paren-state)))
11013
11014 ;; CASE 5C.3: in a Java implements/extends
11015 (injava-inher
11016 (let ((where (cdr injava-inher))
11017 (cont (car injava-inher)))
11018 (goto-char where)
11019 (cond ((looking-at "throws\\>[^_]")
11020 (c-add-syntax 'func-decl-cont
11021 (progn (c-beginning-of-statement-1 lim)
11022 (c-point 'boi))))
11023 (cont (c-add-syntax 'inher-cont where))
11024 (t (c-add-syntax 'inher-intro
11025 (progn (goto-char (cdr injava-inher))
11026 (c-beginning-of-statement-1 lim)
11027 (point))))
11028 )))
11029
11030 ;; CASE 5C.4: a continued inheritance line
11031 (t
11032 (c-beginning-of-inheritance-list lim)
11033 (c-add-syntax 'inher-cont (point))
11034 ;; don't add inclass symbol since relative point already
11035 ;; contains any class offset
11036 )))
11037
11038 ;; CASE 5P: AWK pattern or function or continuation
11039 ;; thereof.
11040 ((c-major-mode-is 'awk-mode)
11041 (setq placeholder (point))
11042 (c-add-stmt-syntax
11043 (if (and (eq (c-beginning-of-statement-1) 'same)
11044 (/= (point) placeholder))
11045 'topmost-intro-cont
11046 'topmost-intro)
11047 nil nil
11048 containing-sexp paren-state))
11049
11050 ;; CASE 5D: this could be a top-level initialization, a
11051 ;; member init list continuation, or a template argument
11052 ;; list continuation.
11053 ((save-excursion
11054 ;; Note: We use the fact that lim is always after any
11055 ;; preceding brace sexp.
11056 (if c-recognize-<>-arglists
11057 (while (and
11058 (progn
11059 (c-syntactic-skip-backward "^;,=<>" lim t)
11060 (> (point) lim))
11061 (or
11062 (when c-overloadable-operators-regexp
11063 (when (setq placeholder (c-after-special-operator-id lim))
11064 (goto-char placeholder)
11065 t))
11066 (cond
11067 ((eq (char-before) ?>)
11068 (or (c-backward-<>-arglist nil lim)
11069 (backward-char))
11070 t)
11071 ((eq (char-before) ?<)
11072 (backward-char)
11073 (if (save-excursion
11074 (c-forward-<>-arglist nil))
11075 (progn (forward-char)
11076 nil)
11077 t))
11078 (t nil)))))
11079 ;; NB: No c-after-special-operator-id stuff in this
11080 ;; clause - we assume only C++ needs it.
11081 (c-syntactic-skip-backward "^;,=" lim t))
11082 (memq (char-before) '(?, ?= ?<)))
11083 (cond
11084
11085 ;; CASE 5D.3: perhaps a template list continuation?
11086 ((and (c-major-mode-is 'c++-mode)
11087 (save-excursion
11088 (save-restriction
11089 (c-with-syntax-table c++-template-syntax-table
11090 (goto-char indent-point)
11091 (setq placeholder (c-up-list-backward))
11092 (and placeholder
11093 (eq (char-after placeholder) ?<))))))
11094 (c-with-syntax-table c++-template-syntax-table
11095 (goto-char placeholder)
11096 (c-beginning-of-statement-1 lim t))
11097 (if (save-excursion
11098 (c-backward-syntactic-ws lim)
11099 (eq (char-before) ?<))
11100 ;; In a nested template arglist.
11101 (progn
11102 (goto-char placeholder)
11103 (c-syntactic-skip-backward "^,;" lim t)
11104 (c-forward-syntactic-ws))
11105 (back-to-indentation))
11106 ;; FIXME: Should use c-add-stmt-syntax, but it's not yet
11107 ;; template aware.
11108 (c-add-syntax 'template-args-cont (point) placeholder))
11109
11110 ;; CASE 5D.4: perhaps a multiple inheritance line?
11111 ((and (c-major-mode-is 'c++-mode)
11112 (save-excursion
11113 (c-beginning-of-statement-1 lim)
11114 (setq placeholder (point))
11115 (if (looking-at "static\\>[^_]")
11116 (c-forward-token-2 1 nil indent-point))
11117 (and (looking-at c-class-key)
11118 (zerop (c-forward-token-2 2 nil indent-point))
11119 (if (eq (char-after) ?<)
11120 (c-with-syntax-table c++-template-syntax-table
11121 (zerop (c-forward-token-2 1 t indent-point)))
11122 t)
11123 (eq (char-after) ?:))))
11124 (goto-char placeholder)
11125 (c-add-syntax 'inher-cont (c-point 'boi)))
11126
11127 ;; CASE 5D.5: Continuation of the "expression part" of a
11128 ;; top level construct. Or, perhaps, an unrecognized construct.
11129 (t
11130 (while (and (setq placeholder (point))
11131 (eq (car (c-beginning-of-decl-1 containing-sexp)) ; Can't use `lim' here.
11132 'same)
11133 (save-excursion
11134 (c-backward-syntactic-ws)
11135 (eq (char-before) ?}))
11136 (< (point) placeholder)))
11137 (c-add-stmt-syntax
11138 (cond
11139 ((eq (point) placeholder) 'statement) ; unrecognized construct
11140 ;; A preceding comma at the top level means that a
11141 ;; new variable declaration starts here. Use
11142 ;; topmost-intro-cont for it, for consistency with
11143 ;; the first variable declaration. C.f. case 5N.
11144 ((eq char-before-ip ?,) 'topmost-intro-cont)
11145 (t 'statement-cont))
11146 nil nil containing-sexp paren-state))
11147 ))
11148
11149 ;; CASE 5F: Close of a non-class declaration level block.
11150 ((and (eq char-after-ip ?})
11151 (c-keyword-member containing-decl-kwd
11152 'c-other-block-decl-kwds))
11153 ;; This is inconsistent: Should use `containing-decl-open'
11154 ;; here if it's at boi, like in case 5J.
11155 (goto-char containing-decl-start)
11156 (c-add-stmt-syntax
11157 (if (string-equal (symbol-name containing-decl-kwd) "extern")
11158 ;; Special case for compatibility with the
11159 ;; extern-lang syntactic symbols.
11160 'extern-lang-close
11161 (intern (concat (symbol-name containing-decl-kwd)
11162 "-close")))
11163 nil t
11164 (c-most-enclosing-brace paren-state (point))
11165 paren-state))
11166
11167 ;; CASE 5G: we are looking at the brace which closes the
11168 ;; enclosing nested class decl
11169 ((and containing-sexp
11170 (eq char-after-ip ?})
11171 (eq containing-decl-open containing-sexp))
11172 (c-add-class-syntax 'class-close
11173 containing-decl-open
11174 containing-decl-start
11175 containing-decl-kwd
11176 paren-state))
11177
11178 ;; CASE 5H: we could be looking at subsequent knr-argdecls
11179 ((and c-recognize-knr-p
11180 (not containing-sexp) ; can't be knr inside braces.
11181 (not (eq char-before-ip ?}))
11182 (save-excursion
11183 (setq placeholder (cdr (c-beginning-of-decl-1 lim)))
11184 (and placeholder
11185 ;; Do an extra check to avoid tripping up on
11186 ;; statements that occur in invalid contexts
11187 ;; (e.g. in macro bodies where we don't really
11188 ;; know the context of what we're looking at).
11189 (not (and c-opt-block-stmt-key
11190 (looking-at c-opt-block-stmt-key)))))
11191 (< placeholder indent-point))
11192 (goto-char placeholder)
11193 (c-add-syntax 'knr-argdecl (point)))
11194
11195 ;; CASE 5I: ObjC method definition.
11196 ((and c-opt-method-key
11197 (looking-at c-opt-method-key))
11198 (c-beginning-of-statement-1 nil t)
11199 (if (= (point) indent-point)
11200 ;; Handle the case when it's the first (non-comment)
11201 ;; thing in the buffer. Can't look for a 'same return
11202 ;; value from cbos1 since ObjC directives currently
11203 ;; aren't recognized fully, so that we get 'same
11204 ;; instead of 'previous if it moved over a preceding
11205 ;; directive.
11206 (goto-char (point-min)))
11207 (c-add-syntax 'objc-method-intro (c-point 'boi)))
11208
11209 ;; CASE 5N: At a variable declaration that follows a class
11210 ;; definition or some other block declaration that doesn't
11211 ;; end at the closing '}'. C.f. case 5D.5.
11212 ((progn
11213 (c-backward-syntactic-ws lim)
11214 (and (eq (char-before) ?})
11215 (save-excursion
11216 (let ((start (point)))
11217 (if (and c-state-cache
11218 (consp (car c-state-cache))
11219 (eq (cdar c-state-cache) (point)))
11220 ;; Speed up the backward search a bit.
11221 (goto-char (caar c-state-cache)))
11222 (c-beginning-of-decl-1 containing-sexp) ; Can't use `lim' here.
11223 (setq placeholder (point))
11224 (if (= start (point))
11225 ;; The '}' is unbalanced.
11226 nil
11227 (c-end-of-decl-1)
11228 (>= (point) indent-point))))))
11229 (goto-char placeholder)
11230 (c-add-stmt-syntax 'topmost-intro-cont nil nil
11231 containing-sexp paren-state))
11232
11233 ;; NOTE: The point is at the end of the previous token here.
11234
11235 ;; CASE 5J: we are at the topmost level, make
11236 ;; sure we skip back past any access specifiers
11237 ((and
11238 ;; A macro continuation line is never at top level.
11239 (not (and macro-start
11240 (> indent-point macro-start)))
11241 (save-excursion
11242 (setq placeholder (point))
11243 (or (memq char-before-ip '(?\; ?{ ?} nil))
11244 (c-at-vsemi-p before-ws-ip)
11245 (when (and (eq char-before-ip ?:)
11246 (eq (c-beginning-of-statement-1 lim)
11247 'label))
11248 (c-backward-syntactic-ws lim)
11249 (setq placeholder (point)))
11250 (and (c-major-mode-is 'objc-mode)
11251 (catch 'not-in-directive
11252 (c-beginning-of-statement-1 lim)
11253 (setq placeholder (point))
11254 (while (and (c-forward-objc-directive)
11255 (< (point) indent-point))
11256 (c-forward-syntactic-ws)
11257 (if (>= (point) indent-point)
11258 (throw 'not-in-directive t))
11259 (setq placeholder (point)))
11260 nil)))))
11261 ;; For historic reasons we anchor at bol of the last
11262 ;; line of the previous declaration. That's clearly
11263 ;; highly bogus and useless, and it makes our lives hard
11264 ;; to remain compatible. :P
11265 (goto-char placeholder)
11266 (c-add-syntax 'topmost-intro (c-point 'bol))
11267 (if containing-decl-open
11268 (if (c-keyword-member containing-decl-kwd
11269 'c-other-block-decl-kwds)
11270 (progn
11271 (goto-char (c-brace-anchor-point containing-decl-open))
11272 (c-add-stmt-syntax
11273 (if (string-equal (symbol-name containing-decl-kwd)
11274 "extern")
11275 ;; Special case for compatibility with the
11276 ;; extern-lang syntactic symbols.
11277 'inextern-lang
11278 (intern (concat "in"
11279 (symbol-name containing-decl-kwd))))
11280 nil t
11281 (c-most-enclosing-brace paren-state (point))
11282 paren-state))
11283 (c-add-class-syntax 'inclass
11284 containing-decl-open
11285 containing-decl-start
11286 containing-decl-kwd
11287 paren-state)))
11288 (when (and c-syntactic-indentation-in-macros
11289 macro-start
11290 (/= macro-start (c-point 'boi indent-point)))
11291 (c-add-syntax 'cpp-define-intro)
11292 (setq macro-start nil)))
11293
11294 ;; CASE 5K: we are at an ObjC method definition
11295 ;; continuation line.
11296 ((and c-opt-method-key
11297 (save-excursion
11298 (c-beginning-of-statement-1 lim)
11299 (beginning-of-line)
11300 (when (looking-at c-opt-method-key)
11301 (setq placeholder (point)))))
11302 (c-add-syntax 'objc-method-args-cont placeholder))
11303
11304 ;; CASE 5L: we are at the first argument of a template
11305 ;; arglist that begins on the previous line.
11306 ((and c-recognize-<>-arglists
11307 (eq (char-before) ?<)
11308 (not (and c-overloadable-operators-regexp
11309 (c-after-special-operator-id lim))))
11310 (c-beginning-of-statement-1 (c-safe-position (point) paren-state))
11311 (c-add-syntax 'template-args-cont (c-point 'boi)))
11312
11313 ;; CASE 5Q: we are at a statement within a macro.
11314 (macro-start
11315 (c-beginning-of-statement-1 containing-sexp)
11316 (c-add-stmt-syntax 'statement nil t containing-sexp paren-state))
11317
11318 ;;CASE 5N: We are at a topmost continuation line and the only
11319 ;;preceding items are annotations.
11320 ((and (c-major-mode-is 'java-mode)
11321 (setq placeholder (point))
11322 (c-beginning-of-statement-1)
11323 (progn
11324 (while (and (c-forward-annotation))
11325 (c-forward-syntactic-ws))
11326 t)
11327 (prog1
11328 (>= (point) placeholder)
11329 (goto-char placeholder)))
11330 (c-add-syntax 'annotation-top-cont (c-point 'boi)))
11331
11332 ;; CASE 5M: we are at a topmost continuation line
11333 (t
11334 (c-beginning-of-statement-1 (c-safe-position (point) paren-state))
11335 (when (c-major-mode-is 'objc-mode)
11336 (setq placeholder (point))
11337 (while (and (c-forward-objc-directive)
11338 (< (point) indent-point))
11339 (c-forward-syntactic-ws)
11340 (setq placeholder (point)))
11341 (goto-char placeholder))
11342 (c-add-syntax 'topmost-intro-cont (c-point 'boi)))
11343 ))
11344
11345 ;; (CASE 6 has been removed.)
11346
11347 ;; CASE 7: line is an expression, not a statement. Most
11348 ;; likely we are either in a function prototype or a function
11349 ;; call argument list
11350 ((not (or (and c-special-brace-lists
11351 (save-excursion
11352 (goto-char containing-sexp)
11353 (c-looking-at-special-brace-list)))
11354 (eq (char-after containing-sexp) ?{)))
11355 (cond
11356
11357 ;; CASE 7A: we are looking at the arglist closing paren.
11358 ;; C.f. case 7F.
11359 ((memq char-after-ip '(?\) ?\]))
11360 (goto-char containing-sexp)
11361 (setq placeholder (c-point 'boi))
11362 (if (and (c-safe (backward-up-list 1) t)
11363 (>= (point) placeholder))
11364 (progn
11365 (forward-char)
11366 (skip-chars-forward " \t"))
11367 (goto-char placeholder))
11368 (c-add-stmt-syntax 'arglist-close (list containing-sexp) t
11369 (c-most-enclosing-brace paren-state (point))
11370 paren-state))
11371
11372 ;; CASE 7B: Looking at the opening brace of an
11373 ;; in-expression block or brace list. C.f. cases 4, 16A
11374 ;; and 17E.
11375 ((and (eq char-after-ip ?{)
11376 (progn
11377 (setq placeholder (c-inside-bracelist-p (point)
11378 paren-state))
11379 (if placeholder
11380 (setq tmpsymbol '(brace-list-open . inexpr-class))
11381 (setq tmpsymbol '(block-open . inexpr-statement)
11382 placeholder
11383 (cdr-safe (c-looking-at-inexpr-block
11384 (c-safe-position containing-sexp
11385 paren-state)
11386 containing-sexp)))
11387 ;; placeholder is nil if it's a block directly in
11388 ;; a function arglist. That makes us skip out of
11389 ;; this case.
11390 )))
11391 (goto-char placeholder)
11392 (back-to-indentation)
11393 (c-add-stmt-syntax (car tmpsymbol) nil t
11394 (c-most-enclosing-brace paren-state (point))
11395 paren-state)
11396 (if (/= (point) placeholder)
11397 (c-add-syntax (cdr tmpsymbol))))
11398
11399 ;; CASE 7C: we are looking at the first argument in an empty
11400 ;; argument list. Use arglist-close if we're actually
11401 ;; looking at a close paren or bracket.
11402 ((memq char-before-ip '(?\( ?\[))
11403 (goto-char containing-sexp)
11404 (setq placeholder (c-point 'boi))
11405 (if (and (c-safe (backward-up-list 1) t)
11406 (>= (point) placeholder))
11407 (progn
11408 (forward-char)
11409 (skip-chars-forward " \t"))
11410 (goto-char placeholder))
11411 (c-add-stmt-syntax 'arglist-intro (list containing-sexp) t
11412 (c-most-enclosing-brace paren-state (point))
11413 paren-state))
11414
11415 ;; CASE 7D: we are inside a conditional test clause. treat
11416 ;; these things as statements
11417 ((progn
11418 (goto-char containing-sexp)
11419 (and (c-safe (c-forward-sexp -1) t)
11420 (looking-at "\\<for\\>[^_]")))
11421 (goto-char (1+ containing-sexp))
11422 (c-forward-syntactic-ws indent-point)
11423 (if (eq char-before-ip ?\;)
11424 (c-add-syntax 'statement (point))
11425 (c-add-syntax 'statement-cont (point))
11426 ))
11427
11428 ;; CASE 7E: maybe a continued ObjC method call. This is the
11429 ;; case when we are inside a [] bracketed exp, and what
11430 ;; precede the opening bracket is not an identifier.
11431 ((and c-opt-method-key
11432 (eq (char-after containing-sexp) ?\[)
11433 (progn
11434 (goto-char (1- containing-sexp))
11435 (c-backward-syntactic-ws (c-point 'bod))
11436 (if (not (looking-at c-symbol-key))
11437 (c-add-syntax 'objc-method-call-cont containing-sexp))
11438 )))
11439
11440 ;; CASE 7F: we are looking at an arglist continuation line,
11441 ;; but the preceding argument is on the same line as the
11442 ;; opening paren. This case includes multi-line
11443 ;; mathematical paren groupings, but we could be on a
11444 ;; for-list continuation line. C.f. case 7A.
11445 ((progn
11446 (goto-char (1+ containing-sexp))
11447 (< (save-excursion
11448 (c-forward-syntactic-ws)
11449 (point))
11450 (c-point 'bonl)))
11451 (goto-char containing-sexp) ; paren opening the arglist
11452 (setq placeholder (c-point 'boi))
11453 (if (and (c-safe (backward-up-list 1) t)
11454 (>= (point) placeholder))
11455 (progn
11456 (forward-char)
11457 (skip-chars-forward " \t"))
11458 (goto-char placeholder))
11459 (c-add-stmt-syntax 'arglist-cont-nonempty (list containing-sexp) t
11460 (c-most-enclosing-brace c-state-cache (point))
11461 paren-state))
11462
11463 ;; CASE 7G: we are looking at just a normal arglist
11464 ;; continuation line
11465 (t (c-forward-syntactic-ws indent-point)
11466 (c-add-syntax 'arglist-cont (c-point 'boi)))
11467 ))
11468
11469 ;; CASE 8: func-local multi-inheritance line
11470 ((and (c-major-mode-is 'c++-mode)
11471 (save-excursion
11472 (goto-char indent-point)
11473 (skip-chars-forward " \t")
11474 (looking-at c-opt-postfix-decl-spec-key)))
11475 (goto-char indent-point)
11476 (skip-chars-forward " \t")
11477 (cond
11478
11479 ;; CASE 8A: non-hanging colon on an inher intro
11480 ((eq char-after-ip ?:)
11481 (c-backward-syntactic-ws lim)
11482 (c-add-syntax 'inher-intro (c-point 'boi)))
11483
11484 ;; CASE 8B: hanging colon on an inher intro
11485 ((eq char-before-ip ?:)
11486 (c-add-syntax 'inher-intro (c-point 'boi)))
11487
11488 ;; CASE 8C: a continued inheritance line
11489 (t
11490 (c-beginning-of-inheritance-list lim)
11491 (c-add-syntax 'inher-cont (point))
11492 )))
11493
11494 ;; CASE 9: we are inside a brace-list
11495 ((and (not (c-major-mode-is 'awk-mode)) ; Maybe this isn't needed (ACM, 2002/3/29)
11496 (setq special-brace-list
11497 (or (and c-special-brace-lists ;;;; ALWAYS NIL FOR AWK!!
11498 (save-excursion
11499 (goto-char containing-sexp)
11500 (c-looking-at-special-brace-list)))
11501 (c-inside-bracelist-p containing-sexp paren-state))))
11502 (cond
11503
11504 ;; CASE 9A: In the middle of a special brace list opener.
11505 ((and (consp special-brace-list)
11506 (save-excursion
11507 (goto-char containing-sexp)
11508 (eq (char-after) ?\())
11509 (eq char-after-ip (car (cdr special-brace-list))))
11510 (goto-char (car (car special-brace-list)))
11511 (skip-chars-backward " \t")
11512 (if (and (bolp)
11513 (assoc 'statement-cont
11514 (setq placeholder (c-guess-basic-syntax))))
11515 (setq c-syntactic-context placeholder)
11516 (c-beginning-of-statement-1
11517 (c-safe-position (1- containing-sexp) paren-state))
11518 (c-forward-token-2 0)
11519 (while (cond
11520 ((looking-at c-specifier-key)
11521 (c-forward-keyword-clause 1))
11522 ((and c-opt-cpp-prefix
11523 (looking-at c-noise-macro-with-parens-name-re))
11524 (c-forward-noise-clause))))
11525 (c-add-syntax 'brace-list-open (c-point 'boi))))
11526
11527 ;; CASE 9B: brace-list-close brace
11528 ((if (consp special-brace-list)
11529 ;; Check special brace list closer.
11530 (progn
11531 (goto-char (car (car special-brace-list)))
11532 (save-excursion
11533 (goto-char indent-point)
11534 (back-to-indentation)
11535 (or
11536 ;; We were between the special close char and the `)'.
11537 (and (eq (char-after) ?\))
11538 (eq (1+ (point)) (cdr (car special-brace-list))))
11539 ;; We were before the special close char.
11540 (and (eq (char-after) (cdr (cdr special-brace-list)))
11541 (zerop (c-forward-token-2))
11542 (eq (1+ (point)) (cdr (car special-brace-list)))))))
11543 ;; Normal brace list check.
11544 (and (eq char-after-ip ?})
11545 (c-safe (goto-char (c-up-list-backward (point))) t)
11546 (= (point) containing-sexp)))
11547 (if (eq (point) (c-point 'boi))
11548 (c-add-syntax 'brace-list-close (point))
11549 (setq lim (c-most-enclosing-brace c-state-cache (point)))
11550 (c-beginning-of-statement-1 lim nil nil t)
11551 (c-add-stmt-syntax 'brace-list-close nil t lim paren-state)))
11552
11553 (t
11554 ;; Prepare for the rest of the cases below by going to the
11555 ;; token following the opening brace
11556 (if (consp special-brace-list)
11557 (progn
11558 (goto-char (car (car special-brace-list)))
11559 (c-forward-token-2 1 nil indent-point))
11560 (goto-char containing-sexp))
11561 (forward-char)
11562 (let ((start (point)))
11563 (c-forward-syntactic-ws indent-point)
11564 (goto-char (max start (c-point 'bol))))
11565 (c-skip-ws-forward indent-point)
11566 (cond
11567
11568 ;; CASE 9C: we're looking at the first line in a brace-list
11569 ((= (point) indent-point)
11570 (if (consp special-brace-list)
11571 (goto-char (car (car special-brace-list)))
11572 (goto-char containing-sexp))
11573 (if (eq (point) (c-point 'boi))
11574 (c-add-syntax 'brace-list-intro (point))
11575 (setq lim (c-most-enclosing-brace c-state-cache (point)))
11576 (c-beginning-of-statement-1 lim)
11577 (c-add-stmt-syntax 'brace-list-intro nil t lim paren-state)))
11578
11579 ;; CASE 9D: this is just a later brace-list-entry or
11580 ;; brace-entry-open
11581 (t (if (or (eq char-after-ip ?{)
11582 (and c-special-brace-lists
11583 (save-excursion
11584 (goto-char indent-point)
11585 (c-forward-syntactic-ws (c-point 'eol))
11586 (c-looking-at-special-brace-list (point)))))
11587 (c-add-syntax 'brace-entry-open (point))
11588 (c-add-syntax 'brace-list-entry (point))
11589 ))
11590 ))))
11591
11592 ;; CASE 10: A continued statement or top level construct.
11593 ((and (not (memq char-before-ip '(?\; ?:)))
11594 (not (c-at-vsemi-p before-ws-ip))
11595 (or (not (eq char-before-ip ?}))
11596 (c-looking-at-inexpr-block-backward c-state-cache))
11597 (> (point)
11598 (save-excursion
11599 (c-beginning-of-statement-1 containing-sexp)
11600 (setq placeholder (point))))
11601 (/= placeholder containing-sexp))
11602 ;; This is shared with case 18.
11603 (c-guess-continued-construct indent-point
11604 char-after-ip
11605 placeholder
11606 containing-sexp
11607 paren-state))
11608
11609 ;; CASE 16: block close brace, possibly closing the defun or
11610 ;; the class
11611 ((eq char-after-ip ?})
11612 ;; From here on we have the next containing sexp in lim.
11613 (setq lim (c-most-enclosing-brace paren-state))
11614 (goto-char containing-sexp)
11615 (cond
11616
11617 ;; CASE 16E: Closing a statement block? This catches
11618 ;; cases where it's preceded by a statement keyword,
11619 ;; which works even when used in an "invalid" context,
11620 ;; e.g. a macro argument.
11621 ((c-after-conditional)
11622 (c-backward-to-block-anchor lim)
11623 (c-add-stmt-syntax 'block-close nil t lim paren-state))
11624
11625 ;; CASE 16A: closing a lambda defun or an in-expression
11626 ;; block? C.f. cases 4, 7B and 17E.
11627 ((setq placeholder (c-looking-at-inexpr-block
11628 (c-safe-position containing-sexp paren-state)
11629 nil))
11630 (setq tmpsymbol (if (eq (car placeholder) 'inlambda)
11631 'inline-close
11632 'block-close))
11633 (goto-char containing-sexp)
11634 (back-to-indentation)
11635 (if (= containing-sexp (point))
11636 (c-add-syntax tmpsymbol (point))
11637 (goto-char (cdr placeholder))
11638 (back-to-indentation)
11639 (c-add-stmt-syntax tmpsymbol nil t
11640 (c-most-enclosing-brace paren-state (point))
11641 paren-state)
11642 (if (/= (point) (cdr placeholder))
11643 (c-add-syntax (car placeholder)))))
11644
11645 ;; CASE 16B: does this close an inline or a function in
11646 ;; a non-class declaration level block?
11647 ((save-excursion
11648 (and lim
11649 (progn
11650 (goto-char lim)
11651 (c-looking-at-decl-block
11652 (c-most-enclosing-brace paren-state lim)
11653 nil))
11654 (setq placeholder (point))))
11655 (c-backward-to-decl-anchor lim)
11656 (back-to-indentation)
11657 (if (save-excursion
11658 (goto-char placeholder)
11659 (looking-at c-other-decl-block-key))
11660 (c-add-syntax 'defun-close (point))
11661 (c-add-syntax 'inline-close (point))))
11662
11663 ;; CASE 16F: Can be a defun-close of a function declared
11664 ;; in a statement block, e.g. in Pike or when using gcc
11665 ;; extensions, but watch out for macros followed by
11666 ;; blocks. Let it through to be handled below.
11667 ;; C.f. cases B.3 and 17G.
11668 ((save-excursion
11669 (and (not (c-at-statement-start-p))
11670 (eq (c-beginning-of-statement-1 lim nil nil t) 'same)
11671 (setq placeholder (point))
11672 (let ((c-recognize-typeless-decls nil))
11673 ;; Turn off recognition of constructs that
11674 ;; lacks a type in this case, since that's more
11675 ;; likely to be a macro followed by a block.
11676 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
11677 (back-to-indentation)
11678 (if (/= (point) containing-sexp)
11679 (goto-char placeholder))
11680 (c-add-stmt-syntax 'defun-close nil t lim paren-state))
11681
11682 ;; CASE 16C: If there is an enclosing brace then this is
11683 ;; a block close since defun closes inside declaration
11684 ;; level blocks have been handled above.
11685 (lim
11686 ;; If the block is preceded by a case/switch label on
11687 ;; the same line, we anchor at the first preceding label
11688 ;; at boi. The default handling in c-add-stmt-syntax
11689 ;; really fixes it better, but we do like this to keep
11690 ;; the indentation compatible with version 5.28 and
11691 ;; earlier. C.f. case 17H.
11692 (while (and (/= (setq placeholder (point)) (c-point 'boi))
11693 (eq (c-beginning-of-statement-1 lim) 'label)))
11694 (goto-char placeholder)
11695 (if (looking-at c-label-kwds-regexp)
11696 (c-add-syntax 'block-close (point))
11697 (goto-char containing-sexp)
11698 ;; c-backward-to-block-anchor not necessary here; those
11699 ;; situations are handled in case 16E above.
11700 (c-add-stmt-syntax 'block-close nil t lim paren-state)))
11701
11702 ;; CASE 16D: Only top level defun close left.
11703 (t
11704 (goto-char containing-sexp)
11705 (c-backward-to-decl-anchor lim)
11706 (c-add-stmt-syntax 'defun-close nil nil
11707 (c-most-enclosing-brace paren-state)
11708 paren-state))
11709 ))
11710
11711 ;; CASE 19: line is an expression, not a statement, and is directly
11712 ;; contained by a template delimiter. Most likely, we are in a
11713 ;; template arglist within a statement. This case is based on CASE
11714 ;; 7. At some point in the future, we may wish to create more
11715 ;; syntactic symbols such as `template-intro',
11716 ;; `template-cont-nonempty', etc., and distinguish between them as we
11717 ;; do for `arglist-intro' etc. (2009-12-07).
11718 ((and c-recognize-<>-arglists
11719 (setq containing-< (c-up-list-backward indent-point containing-sexp))
11720 (eq (char-after containing-<) ?\<))
11721 (setq placeholder (c-point 'boi containing-<))
11722 (goto-char containing-sexp) ; Most nested Lbrace/Lparen (but not
11723 ; '<') before indent-point.
11724 (if (>= (point) placeholder)
11725 (progn
11726 (forward-char)
11727 (skip-chars-forward " \t"))
11728 (goto-char placeholder))
11729 (c-add-stmt-syntax 'template-args-cont (list containing-<) t
11730 (c-most-enclosing-brace c-state-cache (point))
11731 paren-state))
11732
11733 ;; CASE 17: Statement or defun catchall.
11734 (t
11735 (goto-char indent-point)
11736 ;; Back up statements until we find one that starts at boi.
11737 (while (let* ((prev-point (point))
11738 (last-step-type (c-beginning-of-statement-1
11739 containing-sexp)))
11740 (if (= (point) prev-point)
11741 (progn
11742 (setq step-type (or step-type last-step-type))
11743 nil)
11744 (setq step-type last-step-type)
11745 (/= (point) (c-point 'boi)))))
11746 (cond
11747
11748 ;; CASE 17B: continued statement
11749 ((and (eq step-type 'same)
11750 (/= (point) indent-point))
11751 (c-add-stmt-syntax 'statement-cont nil nil
11752 containing-sexp paren-state))
11753
11754 ;; CASE 17A: After a case/default label?
11755 ((progn
11756 (while (and (eq step-type 'label)
11757 (not (looking-at c-label-kwds-regexp)))
11758 (setq step-type
11759 (c-beginning-of-statement-1 containing-sexp)))
11760 (eq step-type 'label))
11761 (c-add-stmt-syntax (if (eq char-after-ip ?{)
11762 'statement-case-open
11763 'statement-case-intro)
11764 nil t containing-sexp paren-state))
11765
11766 ;; CASE 17D: any old statement
11767 ((progn
11768 (while (eq step-type 'label)
11769 (setq step-type
11770 (c-beginning-of-statement-1 containing-sexp)))
11771 (eq step-type 'previous))
11772 (c-add-stmt-syntax 'statement nil t
11773 containing-sexp paren-state)
11774 (if (eq char-after-ip ?{)
11775 (c-add-syntax 'block-open)))
11776
11777 ;; CASE 17I: Inside a substatement block.
11778 ((progn
11779 ;; The following tests are all based on containing-sexp.
11780 (goto-char containing-sexp)
11781 ;; From here on we have the next containing sexp in lim.
11782 (setq lim (c-most-enclosing-brace paren-state containing-sexp))
11783 (c-after-conditional))
11784 (c-backward-to-block-anchor lim)
11785 (c-add-stmt-syntax 'statement-block-intro nil t
11786 lim paren-state)
11787 (if (eq char-after-ip ?{)
11788 (c-add-syntax 'block-open)))
11789
11790 ;; CASE 17E: first statement in an in-expression block.
11791 ;; C.f. cases 4, 7B and 16A.
11792 ((setq placeholder (c-looking-at-inexpr-block
11793 (c-safe-position containing-sexp paren-state)
11794 nil))
11795 (setq tmpsymbol (if (eq (car placeholder) 'inlambda)
11796 'defun-block-intro
11797 'statement-block-intro))
11798 (back-to-indentation)
11799 (if (= containing-sexp (point))
11800 (c-add-syntax tmpsymbol (point))
11801 (goto-char (cdr placeholder))
11802 (back-to-indentation)
11803 (c-add-stmt-syntax tmpsymbol nil t
11804 (c-most-enclosing-brace c-state-cache (point))
11805 paren-state)
11806 (if (/= (point) (cdr placeholder))
11807 (c-add-syntax (car placeholder))))
11808 (if (eq char-after-ip ?{)
11809 (c-add-syntax 'block-open)))
11810
11811 ;; CASE 17F: first statement in an inline, or first
11812 ;; statement in a top-level defun. we can tell this is it
11813 ;; if there are no enclosing braces that haven't been
11814 ;; narrowed out by a class (i.e. don't use bod here).
11815 ((save-excursion
11816 (or (not (setq placeholder (c-most-enclosing-brace
11817 paren-state)))
11818 (and (progn
11819 (goto-char placeholder)
11820 (eq (char-after) ?{))
11821 (c-looking-at-decl-block (c-most-enclosing-brace
11822 paren-state (point))
11823 nil))))
11824 (c-backward-to-decl-anchor lim)
11825 (back-to-indentation)
11826 (c-add-syntax 'defun-block-intro (point)))
11827
11828 ;; CASE 17G: First statement in a function declared inside
11829 ;; a normal block. This can occur in Pike and with
11830 ;; e.g. the gcc extensions, but watch out for macros
11831 ;; followed by blocks. C.f. cases B.3 and 16F.
11832 ((save-excursion
11833 (and (not (c-at-statement-start-p))
11834 (eq (c-beginning-of-statement-1 lim nil nil t) 'same)
11835 (setq placeholder (point))
11836 (let ((c-recognize-typeless-decls nil))
11837 ;; Turn off recognition of constructs that lacks
11838 ;; a type in this case, since that's more likely
11839 ;; to be a macro followed by a block.
11840 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
11841 (back-to-indentation)
11842 (if (/= (point) containing-sexp)
11843 (goto-char placeholder))
11844 (c-add-stmt-syntax 'defun-block-intro nil t
11845 lim paren-state))
11846
11847 ;; CASE 17H: First statement in a block.
11848 (t
11849 ;; If the block is preceded by a case/switch label on the
11850 ;; same line, we anchor at the first preceding label at
11851 ;; boi. The default handling in c-add-stmt-syntax is
11852 ;; really fixes it better, but we do like this to keep the
11853 ;; indentation compatible with version 5.28 and earlier.
11854 ;; C.f. case 16C.
11855 (while (and (/= (setq placeholder (point)) (c-point 'boi))
11856 (eq (c-beginning-of-statement-1 lim) 'label)))
11857 (goto-char placeholder)
11858 (if (looking-at c-label-kwds-regexp)
11859 (c-add-syntax 'statement-block-intro (point))
11860 (goto-char containing-sexp)
11861 ;; c-backward-to-block-anchor not necessary here; those
11862 ;; situations are handled in case 17I above.
11863 (c-add-stmt-syntax 'statement-block-intro nil t
11864 lim paren-state))
11865 (if (eq char-after-ip ?{)
11866 (c-add-syntax 'block-open)))
11867 ))
11868 )
11869
11870 ;; now we need to look at any modifiers
11871 (goto-char indent-point)
11872 (skip-chars-forward " \t")
11873
11874 ;; are we looking at a comment only line?
11875 (when (and (looking-at c-comment-start-regexp)
11876 (/= (c-forward-token-2 0 nil (c-point 'eol)) 0))
11877 (c-append-syntax 'comment-intro))
11878
11879 ;; we might want to give additional offset to friends (in C++).
11880 (when (and c-opt-friend-key
11881 (looking-at c-opt-friend-key))
11882 (c-append-syntax 'friend))
11883
11884 ;; Set syntactic-relpos.
11885 (let ((p c-syntactic-context))
11886 (while (and p
11887 (if (integerp (c-langelem-pos (car p)))
11888 (progn
11889 (setq syntactic-relpos (c-langelem-pos (car p)))
11890 nil)
11891 t))
11892 (setq p (cdr p))))
11893
11894 ;; Start of or a continuation of a preprocessor directive?
11895 (if (and macro-start
11896 (eq macro-start (c-point 'boi))
11897 (not (and (c-major-mode-is 'pike-mode)
11898 (eq (char-after (1+ macro-start)) ?\"))))
11899 (c-append-syntax 'cpp-macro)
11900 (when (and c-syntactic-indentation-in-macros macro-start)
11901 (if in-macro-expr
11902 (when (or
11903 (< syntactic-relpos macro-start)
11904 (not (or
11905 (assq 'arglist-intro c-syntactic-context)
11906 (assq 'arglist-cont c-syntactic-context)
11907 (assq 'arglist-cont-nonempty c-syntactic-context)
11908 (assq 'arglist-close c-syntactic-context))))
11909 ;; If inside a cpp expression, i.e. anywhere in a
11910 ;; cpp directive except a #define body, we only let
11911 ;; through the syntactic analysis that is internal
11912 ;; in the expression. That means the arglist
11913 ;; elements, if they are anchored inside the cpp
11914 ;; expression.
11915 (setq c-syntactic-context nil)
11916 (c-add-syntax 'cpp-macro-cont macro-start))
11917 (when (and (eq macro-start syntactic-relpos)
11918 (not (assq 'cpp-define-intro c-syntactic-context))
11919 (save-excursion
11920 (goto-char macro-start)
11921 (or (not (c-forward-to-cpp-define-body))
11922 (<= (point) (c-point 'boi indent-point)))))
11923 ;; Inside a #define body and the syntactic analysis is
11924 ;; anchored on the start of the #define. In this case
11925 ;; we add cpp-define-intro to get the extra
11926 ;; indentation of the #define body.
11927 (c-add-syntax 'cpp-define-intro)))))
11928
11929 ;; return the syntax
11930 c-syntactic-context)))
11931
11932 \f
11933 ;; Indentation calculation.
11934
11935 (defun c-evaluate-offset (offset langelem symbol)
11936 ;; offset can be a number, a function, a variable, a list, or one of
11937 ;; the symbols + or -
11938 ;;
11939 ;; This function might do hidden buffer changes.
11940 (let ((res
11941 (cond
11942 ((numberp offset) offset)
11943 ((vectorp offset) offset)
11944 ((null offset) nil)
11945
11946 ((eq offset '+) c-basic-offset)
11947 ((eq offset '-) (- c-basic-offset))
11948 ((eq offset '++) (* 2 c-basic-offset))
11949 ((eq offset '--) (* 2 (- c-basic-offset)))
11950 ((eq offset '*) (/ c-basic-offset 2))
11951 ((eq offset '/) (/ (- c-basic-offset) 2))
11952
11953 ((functionp offset)
11954 (c-evaluate-offset
11955 (funcall offset
11956 (cons (c-langelem-sym langelem)
11957 (c-langelem-pos langelem)))
11958 langelem symbol))
11959
11960 ((listp offset)
11961 (cond
11962 ((eq (car offset) 'quote)
11963 (c-benign-error "The offset %S for %s was mistakenly quoted"
11964 offset symbol)
11965 nil)
11966
11967 ((memq (car offset) '(min max))
11968 (let (res val (method (car offset)))
11969 (setq offset (cdr offset))
11970 (while offset
11971 (setq val (c-evaluate-offset (car offset) langelem symbol))
11972 (cond
11973 ((not val))
11974 ((not res)
11975 (setq res val))
11976 ((integerp val)
11977 (if (vectorp res)
11978 (c-benign-error "\
11979 Error evaluating offset %S for %s: \
11980 Cannot combine absolute offset %S with relative %S in `%s' method"
11981 (car offset) symbol res val method)
11982 (setq res (funcall method res val))))
11983 (t
11984 (if (integerp res)
11985 (c-benign-error "\
11986 Error evaluating offset %S for %s: \
11987 Cannot combine relative offset %S with absolute %S in `%s' method"
11988 (car offset) symbol res val method)
11989 (setq res (vector (funcall method (aref res 0)
11990 (aref val 0)))))))
11991 (setq offset (cdr offset)))
11992 res))
11993
11994 ((eq (car offset) 'add)
11995 (let (res val)
11996 (setq offset (cdr offset))
11997 (while offset
11998 (setq val (c-evaluate-offset (car offset) langelem symbol))
11999 (cond
12000 ((not val))
12001 ((not res)
12002 (setq res val))
12003 ((integerp val)
12004 (if (vectorp res)
12005 (setq res (vector (+ (aref res 0) val)))
12006 (setq res (+ res val))))
12007 (t
12008 (if (vectorp res)
12009 (c-benign-error "\
12010 Error evaluating offset %S for %s: \
12011 Cannot combine absolute offsets %S and %S in `add' method"
12012 (car offset) symbol res val)
12013 (setq res val)))) ; Override.
12014 (setq offset (cdr offset)))
12015 res))
12016
12017 (t
12018 (let (res)
12019 (when (eq (car offset) 'first)
12020 (setq offset (cdr offset)))
12021 (while (and (not res) offset)
12022 (setq res (c-evaluate-offset (car offset) langelem symbol)
12023 offset (cdr offset)))
12024 res))))
12025
12026 ((and (symbolp offset) (boundp offset))
12027 (symbol-value offset))
12028
12029 (t
12030 (c-benign-error "Unknown offset format %S for %s" offset symbol)
12031 nil))))
12032
12033 (if (or (null res) (integerp res)
12034 (and (vectorp res) (= (length res) 1) (integerp (aref res 0))))
12035 res
12036 (c-benign-error "Error evaluating offset %S for %s: Got invalid value %S"
12037 offset symbol res)
12038 nil)))
12039
12040 (defun c-calc-offset (langelem)
12041 ;; Get offset from LANGELEM which is a list beginning with the
12042 ;; syntactic symbol and followed by any analysis data it provides.
12043 ;; That data may be zero or more elements, but if at least one is
12044 ;; given then the first is the anchor position (or nil). The symbol
12045 ;; is matched against `c-offsets-alist' and the offset calculated
12046 ;; from that is returned.
12047 ;;
12048 ;; This function might do hidden buffer changes.
12049 (let* ((symbol (c-langelem-sym langelem))
12050 (match (assq symbol c-offsets-alist))
12051 (offset (cdr-safe match)))
12052 (if match
12053 (setq offset (c-evaluate-offset offset langelem symbol))
12054 (if c-strict-syntax-p
12055 (c-benign-error "No offset found for syntactic symbol %s" symbol))
12056 (setq offset 0))
12057 (if (vectorp offset)
12058 offset
12059 (or (and (numberp offset) offset)
12060 (and (symbolp offset) (symbol-value offset))
12061 0))
12062 ))
12063
12064 (defun c-get-offset (langelem)
12065 ;; This is a compatibility wrapper for `c-calc-offset' in case
12066 ;; someone is calling it directly. It takes an old style syntactic
12067 ;; element on the form (SYMBOL . ANCHOR-POS) and converts it to the
12068 ;; new list form.
12069 ;;
12070 ;; This function might do hidden buffer changes.
12071 (if (c-langelem-pos langelem)
12072 (c-calc-offset (list (c-langelem-sym langelem)
12073 (c-langelem-pos langelem)))
12074 (c-calc-offset langelem)))
12075
12076 (defun c-get-syntactic-indentation (langelems)
12077 ;; Calculate the syntactic indentation from a syntactic description
12078 ;; as returned by `c-guess-syntax'.
12079 ;;
12080 ;; Note that topmost-intro always has an anchor position at bol, for
12081 ;; historical reasons. It's often used together with other symbols
12082 ;; that has more sane positions. Since we always use the first
12083 ;; found anchor position, we rely on that these other symbols always
12084 ;; precede topmost-intro in the LANGELEMS list.
12085 ;;
12086 ;; This function might do hidden buffer changes.
12087 (let ((indent 0) anchor)
12088
12089 (while langelems
12090 (let* ((c-syntactic-element (car langelems))
12091 (res (c-calc-offset c-syntactic-element)))
12092
12093 (if (vectorp res)
12094 ;; Got an absolute column that overrides any indentation
12095 ;; we've collected so far, but not the relative
12096 ;; indentation we might get for the nested structures
12097 ;; further down the langelems list.
12098 (setq indent (elt res 0)
12099 anchor (point-min)) ; A position at column 0.
12100
12101 ;; Got a relative change of the current calculated
12102 ;; indentation.
12103 (setq indent (+ indent res))
12104
12105 ;; Use the anchor position from the first syntactic
12106 ;; element with one.
12107 (unless anchor
12108 (setq anchor (c-langelem-pos (car langelems)))))
12109
12110 (setq langelems (cdr langelems))))
12111
12112 (if anchor
12113 (+ indent (save-excursion
12114 (goto-char anchor)
12115 (current-column)))
12116 indent)))
12117
12118 \f
12119 (cc-provide 'cc-engine)
12120
12121 ;; Local Variables:
12122 ;; indent-tabs-mode: t
12123 ;; tab-width: 8
12124 ;; End:
12125 ;;; cc-engine.el ends here