I've run into this on a project here and so dug into it a bit.
It seems that we're using a psp customized from one that has an out-of-date MK60f15.h, which #defines the memory model guard macro MCU_MK60F12 and thus prevents the IO_Map.h from declaring it. The newer psp (included with CW 10.5) seems to fix it.
The relevant parts of the older MK60f15.h header are:
** Reference manual: K60P144M150SF3RM, Rev. 1, Oct 2011
** Version: rev. 1.3, 2011-11-18
...
/* SCGC4 Bit Fields */
#define SIM_SCGC4_EWM_MASK 0x2u
#define SIM_SCGC4_EWM_SHIFT 1
....
#define SIM_SCGC4_VREF_MASK 0x100000u
#define SIM_SCGC4_VREF_SHIFT 20
/* SCGC5 Bit Fields */
The relevant parts of IO_Map.h are:
** Reference manual: K60P144M150SF3RM, Rev. 2, Dec 2011
** Version: rev. 1.9, 2013-06-24
...
/* SCGC4 Bit Fields */
#define SIM_SCGC4_EWM_MASK 0x2u
#define SIM_SCGC4_EWM_SHIFT 1
...
#define SIM_SCGC4_VREF_MASK 0x100000u
#define SIM_SCGC4_VREF_SHIFT 20
#define SIM_SCGC4_LLWU_MASK 0x10000000u
#define SIM_SCGC4_LLWU_SHIFT 28
/* SCGC5 Bit Fields */