]> git.proxmox.com Git - mirror_edk2.git/commit - BaseTools/Source/Python/Common/Expression.py
BaseTools: Update Expression.py for VOID* to support L'a' and 'a'
authorFeng, YunhuaX </o=Intel/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Feng, YunhuaX4e1>
Fri, 2 Feb 2018 09:01:52 +0000 (17:01 +0800)
committerYonghong Zhu <yonghong.zhu@intel.com>
Sun, 4 Feb 2018 03:19:39 +0000 (11:19 +0800)
commit0e6b86731e5792a2fe89b595268a817f0cd989cc
treeff0cc81999b962190fd2d92d599d78f34fbe6e2f
parentbee0f2f167e6e982e665c851d605cd50e7748e08
BaseTools: Update Expression.py for VOID* to support L'a' and 'a'

Original VOID* type support L"string" and "string" format, now we also
add support for single quote string that without null terminator.
Type VOID* support L'a' and 'a', the value transfer to c style value.
L'a' --> {0x61, 0x00}
L'ab' --> {0x61, 0x00, 0x62, 0x00}
'a'  --> {0x61}
'ab' --> {0x61, 0x62}

when the value is L'' or '' that not include any character, tool will
report error.

Cc: Liming Gao <liming.gao@intel.com>
Cc: Yonghong Zhu <yonghong.zhu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Yunhua Feng <yunhuax.feng@intel.com>
Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
BaseTools/Source/Python/Common/Expression.py
BaseTools/Source/Python/Common/Misc.py