forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhugepage_text.h
35 lines (28 loc) · 1.19 KB
/
hugepage_text.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Author: Ken Chen <kenchen@google.com>
//
// Library support to remap process executable elf segment with hugepages.
//
// ReloadElfTextInHugePages() will search for an ELF executable segment,
// and remap it using hugepage.
#ifndef CHROMEOS_HUGEPAGE_TEXT_HUGEPAGE_TEXT_H_
#define CHROMEOS_HUGEPAGE_TEXT_HUGEPAGE_TEXT_H_
#include <string>
#include "chromeos/chromeos_export.h"
#if defined(__clang__) || defined(__GNUC__)
#define ATTRIBUTE_NO_SANITIZE_ADDRESS __attribute__((no_sanitize_address))
#else
#define ATTRIBUTE_NO_SANITIZE_ADDRESS
#endif
namespace chromeos {
// This function will scan ELF
// segments and attempt to remap text segment from small page to hugepage.
// When this function returns, text segments that are naturally aligned on
// hugepage size will be backed by hugepages. In the event of errors, the
// remapping operation will be aborted and rolled back, e.g. they are all
// soft fail.
CHROMEOS_EXPORT extern void ReloadElfTextInHugePages(void);
} // namespace chromeos
#endif // CHROMEOS_HUGEPAGE_TEXT_HUGEPAGE_TEXT_H_