Edit File by line
/home/barbar84/www/wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../lib/golang/src/runtime
File: textflag.h
// Copyright 2013 The Go Authors. All rights reserved.
[0] Fix | Delete
// Use of this source code is governed by a BSD-style
[1] Fix | Delete
// license that can be found in the LICENSE file.
[2] Fix | Delete
[3] Fix | Delete
// This file defines flags attached to various functions
[4] Fix | Delete
// and data objects. The compilers, assemblers, and linker must
[5] Fix | Delete
// all agree on these values.
[6] Fix | Delete
//
[7] Fix | Delete
// Keep in sync with src/cmd/internal/obj/textflag.go.
[8] Fix | Delete
[9] Fix | Delete
// Don't profile the marked routine. This flag is deprecated.
[10] Fix | Delete
#define NOPROF 1
[11] Fix | Delete
// It is ok for the linker to get multiple of these symbols. It will
[12] Fix | Delete
// pick one of the duplicates to use.
[13] Fix | Delete
#define DUPOK 2
[14] Fix | Delete
// Don't insert stack check preamble.
[15] Fix | Delete
#define NOSPLIT 4
[16] Fix | Delete
// Put this data in a read-only section.
[17] Fix | Delete
#define RODATA 8
[18] Fix | Delete
// This data contains no pointers.
[19] Fix | Delete
#define NOPTR 16
[20] Fix | Delete
// This is a wrapper function and should not count as disabling 'recover'.
[21] Fix | Delete
#define WRAPPER 32
[22] Fix | Delete
// This function uses its incoming context register.
[23] Fix | Delete
#define NEEDCTXT 64
[24] Fix | Delete
// Allocate a word of thread local storage and store the offset from the
[25] Fix | Delete
// thread local base to the thread local storage in this variable.
[26] Fix | Delete
#define TLSBSS 256
[27] Fix | Delete
// Do not insert instructions to allocate a stack frame for this function.
[28] Fix | Delete
// Only valid on functions that declare a frame size of 0.
[29] Fix | Delete
#define NOFRAME 512
[30] Fix | Delete
// Function can call reflect.Type.Method or reflect.Type.MethodByName.
[31] Fix | Delete
#define REFLECTMETHOD 1024
[32] Fix | Delete
// Function is the outermost frame of the call stack. Call stack unwinders
[33] Fix | Delete
// should stop at this function.
[34] Fix | Delete
#define TOPFRAME 2048
[35] Fix | Delete
// Function is an ABI wrapper.
[36] Fix | Delete
#define ABIWRAPPER 4096
[37] Fix | Delete
[38] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function