Path: blob/master/src/hotspot/cpu/arm/icache_arm.cpp
40930 views
/*1* Copyright (c) 2008, 2016, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*22*/2324#include "precompiled.hpp"25#include "asm/assembler.inline.hpp"26#include "asm/macroAssembler.hpp"27#include "runtime/icache.hpp"2829#define __ _masm->303132static int icache_flush(address addr, int lines, int magic) {33__builtin___clear_cache((char*) addr, (char*) (addr + (lines << ICache::log2_line_size)));34return magic;35}363738void ICacheStubGenerator::generate_icache_flush(ICache::flush_icache_stub_t* flush_icache_stub) {39address start = (address)icache_flush;4041*flush_icache_stub = (ICache::flush_icache_stub_t)start;4243// ICache::invalidate_range() contains explicit condition that the first44// call is invoked on the generated icache flush stub code range.45ICache::invalidate_range(start, 0);4647{48// dummy code mark to make the shared code happy49// (fields that would need to be modified to emulate the correct50// mark are not accessible)51StubCodeMark mark(this, "ICache", "fake_stub_for_inlined_icache_flush");52__ ret();53}54}5556#undef __575859