Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for odrIndicator (0.12 sec)

  1. src/cmd/compile/internal/pkginit/initAsanGlobals.go

    	asanFilename.Class = ir.PEXTERN
    	symL.Def = asanFilename
    	typecheck.Target.Externs = append(typecheck.Target.Externs, asanFilename)
    
    	var init ir.Nodes
    	var c ir.Node
    	// globals[i].odrIndicator = 0 is the default, no need to set it explicitly here.
    	for i, n := range InstrumentGlobalsSlice {
    		setField := func(f string, val ir.Node, i int) {
    			r := ir.NewAssignStmt(base.Pos, ir.NewSelectorExpr(base.Pos, ir.ODOT,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 19:36:24 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. src/runtime/asan/asan.go

    	uintptr_t beg;
    	uintptr_t size;
    	uintptr_t size_with_redzone;
    	const char *name;
    	const char *module_name;
    	uintptr_t has_dynamic_init;
    	struct _asan_global_source_location *location;
    	uintptr_t odr_indicator;
    };
    
    
    extern void __asan_register_globals(void*, long int);
    
    // Register global variables.
    // The 'globals' is an array of structures describing 'n' globals.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 00:22:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top