comparison src/os_cpu/windows_x86/vm/os_windows_x86.cpp @ 1748:3e8fbc61cee8

6978355: renaming for 6961697 Summary: This is the renaming part of 6961697 to keep the actual changes small for review. Reviewed-by: kvn, never
author twisti
date Wed, 25 Aug 2010 05:27:54 -0700
parents 126ea7725993
children 1e9a9d2e6509
comparison
equal deleted inserted replaced
1747:53dbe853fb3a 1748:3e8fbc61cee8
1 /* 1 /*
2 * Copyright (c) 1999, 2009, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
147 PUNWIND_INFO_EH_ONLY punwind; 147 PUNWIND_INFO_EH_ONLY punwind;
148 148
149 // If we are using Vectored Exceptions we don't need this registration 149 // If we are using Vectored Exceptions we don't need this registration
150 if (UseVectoredExceptions) return true; 150 if (UseVectoredExceptions) return true;
151 151
152 BufferBlob* b = BufferBlob::create("CodeCache Exception Handler", sizeof (DynamicCodeData)); 152 BufferBlob* blob = BufferBlob::create("CodeCache Exception Handler", sizeof(DynamicCodeData));
153 CodeBuffer cb(b->instructions_begin(), b->instructions_size()); 153 CodeBuffer cb(blob);
154 MacroAssembler* masm = new MacroAssembler(&cb); 154 MacroAssembler* masm = new MacroAssembler(&cb);
155 pDCD = (pDynamicCodeData) masm->pc(); 155 pDCD = (pDynamicCodeData) masm->pc();
156 156
157 masm->jump(ExternalAddress((address)&HandleExceptionFromCodeCache)); 157 masm->jump(ExternalAddress((address)&HandleExceptionFromCodeCache));
158 masm->flush(); 158 masm->flush();