BNF is used to describe context-free languages, which regex can't normally describe. What separates context-free languages and regex is that context-free langauges can have recursion on both sides at the same time. A classic example is the balanced parenthesis problem.
paren = paren paren
| '(' paren ')' <-- there are characters on both sides of the recursion
| ''
In your case, you don't use any double-sided recursion, so it reduces to a regular language.
fieldname = /(?:>?[^(>])+/ //No double >, but single ones are ok.
option = /(?:[^()\\]|\\.)*/ //No parens, unless preceeded by \
pattern = /<<(?<fieldname> )(?:\((?<option> )\))?>>/
Putting it together:
pattern = /<<(?<fieldname>(?:>?[^(>])+)(?:\((?<option>(?:[^()\\]|\\.)*)\))?>>/
Some border cases:
<<f>oo(bar>>)>> --> ('f>oo', 'bar>>')
<<foo(bar\))>> --> ('foo', 'bar\)')
<<foo(bar\\)>> --> ('foo', 'bar\\')
<<foo\(bar)>> --> ('foo\', 'bar')
EDIT:
If you want any extra parenthesis characters (and back-slashes) to have to be escaped inside << and >>, you could do something like this:
fieldname = /(?:<?[^()\\<]|<?\\[()\\])+/
options = /(?:[^()\\]|\\[()\\])*/
pattern = /<<(?<fieldname> )(?:\((?<option> )\))?>>/
/<<(?<fieldname>(?:<?[^()\\]|<?\\[()\\])+)(?:\((?<option>(?:[^()\\]|\\[()\\])*)\))?>>/
updated:
<<f>oo(bar>>)>> --> ('f>oo', 'bar>>')
<<foo(bar\))>> --> ('foo', 'bar\)')
<<foo(bar\\)>> --> ('foo', 'bar\\')
<<foo\(bar)>> --> doesn't match
<<foo\((bar)>> --> ('foo\(', 'bar')
