hotspot/src/share/vm/c1/c1_LIRAssembler.cpp
changeset 38031 e0b822facc03
parent 38017 55047d16f141
equal deleted inserted replaced
38030:93f24e7b3c43 38031:e0b822facc03
     1 /*
     1 /*
     2  * Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2000, 2016, 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.
   125   _slow_case_stubs->append(stub);
   125   _slow_case_stubs->append(stub);
   126 }
   126 }
   127 
   127 
   128 void LIR_Assembler::emit_stubs(CodeStubList* stub_list) {
   128 void LIR_Assembler::emit_stubs(CodeStubList* stub_list) {
   129   for (int m = 0; m < stub_list->length(); m++) {
   129   for (int m = 0; m < stub_list->length(); m++) {
   130     CodeStub* s = (*stub_list)[m];
   130     CodeStub* s = stub_list->at(m);
   131 
   131 
   132     check_codespace();
   132     check_codespace();
   133     CHECK_BAILOUT();
   133     CHECK_BAILOUT();
   134 
   134 
   135 #ifndef PRODUCT
   135 #ifndef PRODUCT