| /llvm-project/flang/lib/Evaluate/ |
| H A D | complex.cpp | 17 RealFlags flags; in Add() local 18 Part reSum{re_.Add(that.re_, rounding).AccumulateFlags(flags)}; in Add() 19 Part imSum{im_.Add(that.im_, rounding).AccumulateFlags(flags)}; in Add() 20 return {Complex{reSum, imSum}, flags}; in Add() 26 RealFlags flags; in Subtract() local 27 Part reDiff{re_.Subtract(that.re_, rounding).AccumulateFlags(flags)}; in Subtract() 28 Part imDiff{im_.Subtract(that.im_, rounding).AccumulateFlags(flags)}; in Subtract() 29 return {Complex{reDiff, imDiff}, flags}; in Subtract() 36 RealFlags flags; in Multiply() local 37 Part ac{re_.Multiply(that.re_, rounding).AccumulateFlags(flags)}; in Multiply() [all …]
|
| /llvm-project/llvm/test/CodeGen/AArch64/ |
| H A D | loh.mir | 26 ; CHECK-NEXT: $x1 = ADRP target-flags(aarch64-page) @g3 27 ; CHECK-NEXT: $x1 = ADRP target-flags(aarch64-page) @g4 29 ; CHECK-NEXT: $x1 = ADRP target-flags(aarch64-page) @g2 30 ; CHECK-NEXT: $x1 = ADRP target-flags(aarch64-page) @g3 32 ; CHECK-NEXT: $x0 = ADRP target-flags(aarch64-page) @g0 33 ; CHECK-NEXT: $x0 = ADRP target-flags(aarch64-page) @g1 34 $x0 = ADRP target-flags(aarch64-page) @g0 35 $x0 = ADRP target-flags(aarch64-page) @g1 36 $x1 = ADRP target-flags(aarch64-page) @g2 37 $x1 = ADRP target-flags(aarch64-page) @g3 [all …]
|
| /llvm-project/mlir/test/Dialect/OpenMP/ |
| H A D | attr.mlir | 3 // CHECK: module attributes {omp.flags = #omp.flags<>} { 4 module attributes {omp.flags = #omp.flags<debug_kind = 0, assume_teams_oversubscription = false, as… 6 // CHECK: module attributes {omp.flags = #omp.flags<debug_kind = 20>} { 7 module attributes {omp.flags = #omp.flags<debug_kind = 20, assume_teams_oversubscription = false, a… 9 // CHECK: module attributes {omp.flags = #omp.flags<debug_kind = 100, assume_teams_oversubscription… 10 module attributes {omp.flags = #omp.flags<debug_kind = 100, assume_teams_oversubscription = true, a… 12 // CHECK: module attributes {omp.flags = #omp.flags<debug_kind = 200, assume_teams_oversubscription… 13 module attributes {omp.flags = #omp.flags<debug_kind = 200, assume_teams_oversubscription = true, a… 15 // CHECK: module attributes {omp.flags = #omp.flags<debug_kind = 300, assume_teams_oversubscription… 16 module attributes {omp.flags = #omp.flags<debug_kind = 300, assume_teams_oversubscription = true, a… [all …]
|
| /llvm-project/llvm/test/CodeGen/MIR/Hexagon/ |
| H A D | target-flags.mir | 8 ; CHECK: target-flags(hexagon-pcrel) 9 $r0 = A2_tfrsi target-flags (hexagon-pcrel) 0 10 ; CHECK: target-flags(hexagon-got) 11 $r0 = A2_tfrsi target-flags (hexagon-got) 0 12 ; CHECK: target-flags(hexagon-lo16) 13 $r0 = A2_tfrsi target-flags (hexagon-lo16) 0 14 ; CHECK: target-flags(hexagon-hi16) 15 $r0 = A2_tfrsi target-flags (hexagon-hi16) 0 16 ; CHECK: target-flags(hexagon-gprel) 17 $r0 = A2_tfrsi target-flags (hexago [all...] |
| /llvm-project/compiler-rt/lib/BlocksRuntime/ |
| H A D | runtime.c | 285 static void *_Block_copy_internal(const void *arg, const int flags) { in _Block_copy_internal() argument 287 const bool wantsOne = (WANTS_ONE & flags) == WANTS_ONE; in _Block_copy_internal() 295 if (aBlock->flags & BLOCK_NEEDS_FREE) { in _Block_copy_internal() 297 latching_incr_int(&aBlock->flags); in _Block_copy_internal() 300 else if (aBlock->flags & BLOCK_IS_GC) { in _Block_copy_internal() 302 if (wantsOne && ((latching_incr_int(&aBlock->flags) & BLOCK_REFCOUNT_MASK) == 1)) { in _Block_copy_internal() 308 else if (aBlock->flags & BLOCK_IS_GLOBAL) { in _Block_copy_internal() 318 result->flags &= ~(BLOCK_REFCOUNT_MASK); // XXX not needed in _Block_copy_internal() 319 result->flags |= BLOCK_NEEDS_FREE | 1; in _Block_copy_internal() 321 if (result->flags & BLOCK_HAS_COPY_DISPOSE) { in _Block_copy_internal() [all …]
|
| /llvm-project/llvm/test/tools/llvm-objcopy/ELF/ |
| H A D | set-section-flags.test | 3 # Single flags on a section with no flags: 4 # RUN: llvm-objcopy --set-section-flags=.foo=alloc \ 5 # RUN: --set-section-flags=.baz=alloc --set-section-flags=.rela.baz=alloc %t %t.alloc 7 # RUN: llvm-objcopy --set-section-flags=.foo=load \ 8 # RUN: --set-section-flags=.baz=load --set-section-flags=.rela.baz=load %t %t.load 10 # RUN: llvm-objcopy --set-section-flags=.foo=noload \ 11 # RUN: --set-section-flags=.baz=noload --set-section-flags=.rela.baz=noload %t %t.noload 13 # RUN: llvm-objcopy --set-section-flags=.foo=readonly \ 14 # RUN: --set-section-flags=.baz=readonly --set-section-flags=.rela.baz=readonly %t %t.readonly 16 # RUN: llvm-objcopy --set-section-flags=.foo=exclude \ [all …]
|
| /llvm-project/clang/lib/CodeGen/ |
| H A D | CGBlocks.h | 58 uint32_t flags; variable 61 BlockFlags(uint32_t flags) : flags(flags) {} in BlockFlags() argument 62 BlockFlags() : flags(0) {} in BlockFlags() 63 BlockFlags(BlockLiteralFlags flag) : flags(flag) {} in BlockFlags() 64 BlockFlags(BlockByrefFlags flag) : flags(flag) {} in BlockFlags() 66 uint32_t getBitMask() const { return flags; } in getBitMask() 67 bool empty() const { return flags == 0; } in empty() 70 return BlockFlags(l.flags | r.flags); 73 l.flags |= r.flags; 77 return (l.flags & r.flags); [all …]
|
| /llvm-project/llvm/test/tools/llvm-rc/ |
| H A D | memoryflags.test | 7 ; CHECK-NEXT: Memory flags: 0x1050 11 ; CHECK-NEXT: Memory flags: 0x1050 15 ; CHECK-NEXT: Memory flags: 0x1010 19 ; CHECK-NEXT: Memory flags: 0x1030 23 ; CHECK-NEXT: Memory flags: 0x0 27 ; CHECK-NEXT: Memory flags: 0x1030 31 ; CHECK-NEXT: Memory flags: 0x1010 35 ; CHECK-NEXT: Memory flags: 0x1030 39 ; CHECK-NEXT: Memory flags: 0x1030 43 ; CHECK-NEXT: Memory flags: 0x1030 [all …]
|
| /llvm-project/llvm/test/CodeGen/RISCV/ |
| H A D | mir-target-flags.ll | 12 ; `target-flags(...)` 25 ; RV32-SMALL: target-flags(riscv-hi) @g_e 26 ; RV32-SMALL-NEXT: target-flags(riscv-lo) @g_e 27 ; RV32-SMALL: target-flags(riscv-hi) @g_i 28 ; RV32-SMALL-NEXT: target-flags(riscv-lo) @g_i 29 ; RV32-SMALL: target-flags(riscv-tls-got-hi) @t_un 30 ; RV32-SMALL-NEXT: target-flags(riscv-pcrel-lo) <mcsymbol .Lpcrel_hi0> 31 ; RV32-SMALL: target-flags(riscv-tls-got-hi) @t_ld 32 ; RV32-SMALL-NEXT: target-flags(riscv-pcrel-lo) <mcsymbol .Lpcrel_hi1> 33 ; RV32-SMALL: target-flags(riscv-tls-got-hi) @t_ie [all …]
|
| /llvm-project/llvm/utils/lit/lit/builtin_commands/ |
| H A D | diff.py | 38 def compareTwoFiles(flags, filepaths): argument 51 flags, filepaths, filelines, locale.getpreferredencoding(False) 55 return compareTwoTextFiles(flags, filepaths, filelines, "utf-8") 57 return compareTwoBinaryFiles(flags, filepaths, filelines) 60 def compareTwoBinaryFiles(flags, filepaths, filelines): argument 70 n=flags.num_context_lines, 75 if flags.unified_diff: 84 n=flags.num_context_lines, 93 def compareTwoTextFiles(flags, filepaths, filelines_bin, encoding): argument 108 if flags.strip_trailing_cr: [all …]
|
| /llvm-project/mlir/lib/Transforms/ |
| H A D | LocationSnapshot.cpp | 33 Operation *op, const OpPrintingFlags &flags, in generateLocationsFromIR() 37 AsmState state(op, flags, &opToLineCol); in generateLocationsFromIR() 73 OpPrintingFlags flags, in generateLocationsFromIR() 94 generateLocationsFromIR(outputFile->os(), filepath, op, flags, tag); in generateLocationsFromIR() 103 Operation *op, OpPrintingFlags flags) { in generateLocationsFromIR() 104 ::generateLocationsFromIR(os, fileName, op, flags, /*tag=*/StringRef()); in generateLocationsFromIR() 110 OpPrintingFlags flags) { in generateLocationsFromIR() 111 return ::generateLocationsFromIR(fileName, op, flags, /*tag=*/StringRef()); in generateLocationsFromIR() 120 OpPrintingFlags flags) { in generateLocationsFromIR() 121 ::generateLocationsFromIR(os, fileName, op, flags, ta in generateLocationsFromIR() 32 generateLocationsFromIR(raw_ostream & os,StringRef fileName,Operation * op,const OpPrintingFlags & flags,StringRef tag) generateLocationsFromIR() argument 72 generateLocationsFromIR(StringRef fileName,Operation * op,OpPrintingFlags flags,StringRef tag) generateLocationsFromIR() argument 102 generateLocationsFromIR(raw_ostream & os,StringRef fileName,Operation * op,OpPrintingFlags flags) generateLocationsFromIR() argument 109 generateLocationsFromIR(StringRef fileName,Operation * op,OpPrintingFlags flags) generateLocationsFromIR() argument 119 generateLocationsFromIR(raw_ostream & os,StringRef fileName,StringRef tag,Operation * op,OpPrintingFlags flags) generateLocationsFromIR() argument 127 generateLocationsFromIR(StringRef fileName,StringRef tag,Operation * op,OpPrintingFlags flags) generateLocationsFromIR() argument 148 OpPrintingFlags flags; global() member 152 createLocationSnapshotPass(OpPrintingFlags flags,StringRef fileName,StringRef tag) createLocationSnapshotPass() argument [all...] |
| /llvm-project/libcxx/test/std/input.output/iostream.format/std.manip/ |
| H A D | setbase.pass.cpp | 33 assert((is.flags() & std::ios_base::basefield) == std::ios_base::oct); in main() 35 assert((is.flags() & std::ios_base::basefield) == std::ios_base::dec); in main() 37 assert((is.flags() & std::ios_base::basefield) == std::ios_base::hex); in main() 39 assert((is.flags() & std::ios_base::basefield) == 0); in main() 45 assert((os.flags() & std::ios_base::basefield) == std::ios_base::oct); in main() 47 assert((os.flags() & std::ios_base::basefield) == std::ios_base::dec); in main() 49 assert((os.flags() & std::ios_base::basefield) == std::ios_base::hex); in main() 51 assert((os.flags() & std::ios_base::basefield) == 0); in main() 58 assert((is.flags() & std::ios_base::basefield) == std::ios_base::oct); in main() 60 assert((is.flags() & std::ios_base::basefield) == std::ios_base::dec); in main() [all …]
|
| /llvm-project/llvm/test/tools/llvm-objcopy/COFF/ |
| H A D | set-section-flags.test | 3 ## Single flag on a section with no flags: 4 # RUN: llvm-objcopy --set-section-flags=.foo=alloc %t %t.alloc 6 # RUN: llvm-objcopy --set-section-flags=.foo=load %t %t.load 8 # RUN: llvm-objcopy --set-section-flags=.foo=noload %t %t.noload 10 # RUN: llvm-objcopy --set-section-flags=.foo=readonly %t %t.readonly 12 # RUN: llvm-objcopy --set-section-flags=.foo=exclude %t %t.exclude 14 # RUN: llvm-objcopy --set-section-flags=.foo=debug %t %t.debug 16 # RUN: llvm-objcopy --set-section-flags=.foo=code %t %t.code 18 # RUN: llvm-objcopy --set-section-flags=.foo=data %t %t.data 20 # RUN: llvm-objcopy --set-section-flags=.foo=rom %t %t.rom [all …]
|
| /llvm-project/polly/lib/External/isl/ |
| H A D | isl_map_lexopt_templ.c | 33 __isl_give isl_set **empty, unsigned flags) in SF() 36 flags); in SF() 43 unsigned flags = ISL_OPT_MAX; in SF() local 44 return SF(isl_basic_map_partial_lexopt,SUFFIX)(bmap, dom, empty, flags); in SF() 51 unsigned flags = 0; in SF() local 52 return SF(isl_basic_map_partial_lexopt,SUFFIX)(bmap, dom, empty, flags); in SF() 88 __isl_give isl_set **empty, unsigned flags) in SF() 94 if (ISL_FL_ISSET(flags, ISL_OPT_FULL)) in SF() 96 empty, flags); in SF() 113 isl_basic_set_copy(dom->p[0]), empty, flags); in SF() [all …]
|
| /llvm-project/mlir/lib/Dialect/Quant/IR/ |
| H A D | TypeDetail.h | 24 QuantizedTypeStorage(unsigned flags, Type storageType, Type expressedType, in QuantizedTypeStorage() 26 : flags(flags), storageType(storageType), expressedType(expressedType), in QuantizedTypeStorage() 30 unsigned flags; member 47 KeyTy(unsigned flags, Type storageType, Type expressedType, in KeyTy() 49 : flags(flags), storageType(storageType), expressedType(expressedType), in KeyTy() 51 unsigned flags; member 61 return lhs.flags == rhs.flags && lhs.storageType == rhs.storageType && in genericIsEqual() 72 return llvm::hash_combine(flags, storageType, expressedType, in getHashValue() 78 : QuantizedTypeStorage(key.flags, key.storageType, key.expressedType, in AnyQuantizedTypeStorage() 97 KeyTy(unsigned flags, Type storageType, Type expressedType, double scale, in KeyTy() [all …]
|
| /llvm-project/llvm/test/tools/llvm-readobj/ELF/ |
| H A D | section-flags-os-proc.test | 1 ## Here we test how OS and processor specific flags are dumped. 7 # OS-PROC-LLVM: Name: .os.flags.low 11 # OS-PROC-LLVM: Name: .os.flags.high 16 # OS-PROC-LLVM: Name: .os.flags.mask 21 # OS-PROC-LLVM: Name: .proc.flags.low 25 # OS-PROC-LLVM: Name: .proc.flags.high 30 # OS-PROC-LLVM: Name: .proc.flags.mask 35 # OS-PROC-LLVM: Name: .both.flags.low 39 # OS-PROC-LLVM: Name: .both.flags.high 45 # OS-PROC-LLVM: Name: .both.flags.mask [all …]
|
| /llvm-project/llvm/test/CodeGen/X86/ |
| H A D | asm-block-labels.ll | 11 call void asm sideeffect ".file \22block12.c\22", "~{dirflag},~{fpsr},~{flags}"( ) 12 call void asm sideeffect ".line 1", "~{dirflag},~{fpsr},~{flags}"( ) 13 call void asm sideeffect "int $$1", "~{dirflag},~{fpsr},~{flags},~{memory}"( ) 14 call void asm sideeffect ".file \22block12.c\22", "~{dirflag},~{fpsr},~{flags}"( ) 15 call void asm sideeffect ".line 2", "~{dirflag},~{fpsr},~{flags}"( ) 16 …call void asm sideeffect "brl ${0:l}", "X,~{dirflag},~{fpsr},~{flags},~{memory}"( label %"LASM$foo… 25 call void asm sideeffect ".file \22block12.c\22", "~{dirflag},~{fpsr},~{flags}"( ) 26 call void asm sideeffect ".line 3", "~{dirflag},~{fpsr},~{flags}"( ) 27 …call void asm sideeffect "brl ${0:l}", "X,~{dirflag},~{fpsr},~{flags},~{memory}"( label %"LASM$foo… 28 call void asm sideeffect ".file \22block12.c\22", "~{dirflag},~{fpsr},~{flags}"( ) [all …]
|
| H A D | lvi-hardening-inline-asm.ll | 18 call void asm sideeffect "mov 0x3fed(%rip),%rax", "~{dirflag},~{fpsr},~{flags}"() #1 21 call void asm sideeffect "movdqa 0x0(%rip),%xmm0", "~{dirflag},~{fpsr},~{flags}"() #1 24 call void asm sideeffect "movslq 0x3e5d(%rip),%rbx", "~{dirflag},~{fpsr},~{flags}"() #1 27 call void asm sideeffect "mov (%r12,%rax,8),%rax", "~{dirflag},~{fpsr},~{flags}"() #1 30 call void asm sideeffect "movq (24)(%rsi), %r11", "~{dirflag},~{fpsr},~{flags}"() #1 33 call void asm sideeffect "cmove %r12,%rax", "~{dirflag},~{fpsr},~{flags}"() #1 36 call void asm sideeffect "cmove (%r12),%rax", "~{dirflag},~{fpsr},~{flags}"() #1 39 call void asm sideeffect "pop %rbx", "~{dirflag},~{fpsr},~{flags}"() #1 42 call void asm sideeffect "popq %rbx", "~{dirflag},~{fpsr},~{flags}"() #1 45 call void asm sideeffect "xchg (%r12),%rax", "~{dirflag},~{fpsr},~{flags}"() #1 [all …]
|
| /llvm-project/llvm/test/Assembler/ |
| H A D | thinlto-summary.ll | 12 ^2 = gv: (guid: 1, summaries: (function: (module: ^0, flags: (linkage: external, visibility: default, notEligibleToImport: 0, live: 0, dsoLocal: 0), insts: 10, calls: ((callee: ^15, hotness: hot), (callee: ^17, hotness: cold), (callee: ^16, hotness: none, tail: 1)), refs: (writeonly ^14, readonly ^13, ^11)))) 16 ^3 = gv: (guid: 2, summaries: (function: (module: ^1, flags: (linkage: external, visibility: default, notEligibleToImport: 0, live: 0, dsoLocal: 0), insts: 10, calls: ((callee: ^15, relbf: 256, tail: 1))))) 19 ^4 = gv: (guid: 3, summaries: (function: (module: ^0, flags: (linkage: internal, visibility: default, notEligibleToImport: 0, live: 0, dsoLocal: 1, importType: definition), insts: 1))) 21 ^5 = gv: (guid: 4, summaries: (alias: (module: ^0, flags: (linkage: private, visibility: default, notEligibleToImport: 0, live: 0, dsoLocal: 1, importType: definition), aliasee: ^14))) 22 ^6 = gv: (guid: 5, summaries: (function: (module: ^0, flags: (linkage: available_externally, visibility: default, notEligibleToImport: 0, live: 0, dsoLocal: 0), insts: 1))) 23 ^7 = gv: (guid: 6, summaries: (function: (module: ^0, flags: (linkage: linkonce, visibility: default, notEligibleToImport: 0, live: 0, dsoLocal: 0), insts: 1))) 24 ^8 = gv: (guid: 7, summaries: (function: (module: ^0, flags: (linkage: linkonce_odr, visibility: default, notEligibleToImport: 0, live: 0, dsoLocal: 0), insts: 1))) 25 ^9 = gv: (guid: 8, summaries: (function: (module: ^0, flags: (linkage: weak_odr, visibility: default, notEligibleToImport: 0, live: 0, dsoLocal: 0, canAutoHide: 1, importType: definition), insts: 1))) 26 ^10 = gv: (guid: 9, summaries: (function: (module: ^0, flags: (linkage: weak, visibility: default, notEligibleToImport: 0, live: 0, dsoLocal: 0), insts: 1))) 27 ^11 = gv: (guid: 10, summaries: (variable: (module: ^0, flags [all...] |
| /llvm-project/clang/lib/Sema/ |
| H A D | Scope.cpp | 20 void Scope::setFlags(Scope *parent, unsigned flags) { in setFlags() argument 22 Flags = flags; in setFlags() 24 if (parent && !(flags & FnScope)) { in setFlags() 62 if (flags & FnScope) FnParent = this; in setFlags() 70 if (flags & BreakScope) BreakParent = this; in setFlags() 71 if (flags & ContinueScope) ContinueParent = this; in setFlags() 72 if (flags & BlockScope) BlockParent = this; in setFlags() 73 if (flags & TemplateParamScope) TemplateParamParent = this; in setFlags() 77 if (flags & FunctionPrototypeScope && !(flags & LambdaScope)) in setFlags() 80 if (flags & DeclScope) { in setFlags() [all …]
|
| /llvm-project/compiler-rt/include/sanitizer/ |
| H A D | netbsd_syscall_hooks.h | 61 #define __sanitizer_syscall_pre_open(path, flags, mode) \ argument 62 __sanitizer_syscall_pre_impl_open((long long)(path), (long long)(flags), \ 64 #define __sanitizer_syscall_post_open(res, path, flags, mode) \ argument 66 (long long)(flags), (long long)(mode)) 123 #define __sanitizer_syscall_pre_compat_20_getfsstat(buf, bufsize, flags) \ argument 125 (long long)(buf), (long long)(bufsize), (long long)(flags)) 126 #define __sanitizer_syscall_post_compat_20_getfsstat(res, buf, bufsize, flags) \ argument 128 res, (long long)(buf), (long long)(bufsize), (long long)(flags)) 138 #define __sanitizer_syscall_pre_compat_40_mount(type, path, flags, data) \ argument 140 (long long)(type), (long long)(path), (long long)(flags), \ [all …]
|
| H A D | linux_syscall_hooks.h | 206 #define __sanitizer_syscall_pre_timer_settime(timer_id, flags, new_setting, \ argument 208 __sanitizer_syscall_pre_impl_timer_settime((long)(timer_id), (long)(flags), \ 211 #define __sanitizer_syscall_post_timer_settime(res, timer_id, flags, \ argument 214 res, (long)(timer_id), (long)(flags), (long)(new_setting), \ 240 #define __sanitizer_syscall_pre_clock_nanosleep(which_clock, flags, rqtp, \ argument 243 (long)(which_clock), (long)(flags), (long)(rqtp), (long)(rmtp)) 244 #define __sanitizer_syscall_post_clock_nanosleep(res, which_clock, flags, \ argument 247 res, (long)(which_clock), (long)(flags), (long)(rqtp), (long)(rmtp)) 327 flags) \ argument 329 (long)(segments), (long)(flags)) [all …]
|
| /llvm-project/flang/lib/Semantics/ |
| H A D | definable.cpp | 67 const evaluate::DataRef &dataRef, DefinabilityFlags flags) { in DefinesComponentPointerTarget() argument 84 (flags.test(DefinabilityFlag::AcceptAllocatable) && in DefinesComponentPointerTarget() 86 if (!flags.test(DefinabilityFlag::PointerDefinition)) { in DefinesComponentPointerTarget() 90 flags.reset(DefinabilityFlag::PointerDefinition); in DefinesComponentPointerTarget() 91 return DefinesComponentPointerTarget(component->base(), flags); in DefinesComponentPointerTarget() 99 const Scope &scope, DefinabilityFlags flags, const Symbol &original, in WhyNotDefinableBase() argument 102 bool isPointerDefinition{flags.test(DefinabilityFlag::PointerDefinition)}; in WhyNotDefinableBase() 103 bool acceptAllocatable{flags.test(DefinabilityFlag::AcceptAllocatable)}; in WhyNotDefinableBase() 114 return WhyNotDefinableBase(at, scope, flags, dataRef->GetFirstSymbol(), in WhyNotDefinableBase() 118 DefinesComponentPointerTarget(*dataRef, flags)); in WhyNotDefinableBase() 179 WhyNotDefinableLast(parser::CharBlock at,const Scope & scope,DefinabilityFlags flags,const Symbol & original) WhyNotDefinableLast() argument 233 WhyNotDefinable(parser::CharBlock at,const Scope & scope,DefinabilityFlags flags,const evaluate::DataRef & dataRef) WhyNotDefinable() argument 246 WhyNotDefinable(parser::CharBlock at,const Scope & scope,DefinabilityFlags flags,const Symbol & original) WhyNotDefinable() argument 297 WhyNotDefinable(parser::CharBlock at,const Scope & scope,DefinabilityFlags flags,const evaluate::Expr<evaluate::SomeType> & expr) WhyNotDefinable() argument [all...] |
| /llvm-project/lld/wasm/ |
| H A D | SymbolTable.cpp | 222 uint32_t flags, in addSyntheticFunction() 228 flags, nullptr, function); in addSyntheticFunction() 251 uint32_t flags) { in addSyntheticDataSymbol() 255 flags | WASM_SYMBOL_ABSOLUTE); in addSyntheticDataSymbol() 258 DefinedGlobal *SymbolTable::addSyntheticGlobal(StringRef name, uint32_t flags, in addSyntheticGlobal() 264 return replaceSymbol<DefinedGlobal>(insertName(name).first, name, flags, in addSyntheticGlobal() 280 DefinedTable *SymbolTable::addSyntheticTable(StringRef name, uint32_t flags, in addSyntheticTable() 289 return replaceSymbol<DefinedTable>(s, name, flags, nullptr, table); in addSyntheticTable() 353 Symbol *SymbolTable::addSharedFunction(StringRef name, uint32_t flags, in addDefinedFunction() 363 replaceSymbol<SharedFunctionSymbol>(sym, name, flags, fil in addDefinedFunction() 221 addSyntheticFunction(StringRef name,uint32_t flags,InputFunction * function) addSyntheticFunction() argument 250 addSyntheticDataSymbol(StringRef name,uint32_t flags) addSyntheticDataSymbol() argument 257 addSyntheticGlobal(StringRef name,uint32_t flags,InputGlobal * global) addSyntheticGlobal() argument 279 addSyntheticTable(StringRef name,uint32_t flags,InputTable * table) addSyntheticTable() argument 319 addDefinedFunction(StringRef name,uint32_t flags,InputFile * file,InputFunction * function) addDefinedFunction() argument 375 addDefinedData(StringRef name,uint32_t flags,InputFile * file,InputChunk * segment,uint64_t address,uint64_t size) addDefinedData() argument 400 addDefinedGlobal(StringRef name,uint32_t flags,InputFile * file,InputGlobal * global) addDefinedGlobal() argument 424 addDefinedTag(StringRef name,uint32_t flags,InputFile * file,InputTag * tag) addDefinedTag() argument 448 addDefinedTable(StringRef name,uint32_t flags,InputFile * file,InputTable * table) addDefinedTable() argument 482 setImportAttributes(T * existing,std::optional<StringRef> importName,std::optional<StringRef> importModule,uint32_t flags,InputFile * file) setImportAttributes() argument 513 addUndefinedFunction(StringRef name,std::optional<StringRef> importName,std::optional<StringRef> importModule,uint32_t flags,InputFile * file,const WasmSignature * sig,bool isCalledDirectly) addUndefinedFunction() argument 575 addUndefinedData(StringRef name,uint32_t flags,InputFile * file) addUndefinedData() argument 604 addUndefinedGlobal(StringRef name,std::optional<StringRef> importName,std::optional<StringRef> importModule,uint32_t flags,InputFile * file,const WasmGlobalType * type) addUndefinedGlobal() argument 630 addUndefinedTable(StringRef name,std::optional<StringRef> importName,std::optional<StringRef> importModule,uint32_t flags,InputFile * file,const WasmTableType * type) addUndefinedTable() argument 656 addUndefinedTag(StringRef name,std::optional<StringRef> importName,std::optional<StringRef> importModule,uint32_t flags,InputFile * file,const WasmSignature * sig) addUndefinedTag() argument 684 uint32_t flags = config->exportTable ? 0 : WASM_SYMBOL_VISIBILITY_HIDDEN; createUndefinedIndirectFunctionTable() local 699 uint32_t flags = config->exportTable ? 0 : WASM_SYMBOL_VISIBILITY_HIDDEN; createDefinedIndirectFunctionTable() local [all...] |
| /llvm-project/lld/ELF/Arch/ |
| H A D | MipsArchTree.cpp | 37 uint32_t flags; 41 static StringRef getAbiName(uint32_t flags) { in getAbiName() 42 switch (flags) { in getAbiName() 69 uint32_t abi = files[0].flags & (EF_MIPS_ABI | EF_MIPS_ABI2); in checkFlags() 70 bool nan = files[0].flags & EF_MIPS_NAN2008; in checkFlags() 71 bool fp = files[0].flags & EF_MIPS_FP64; in checkFlags() 74 if (ctx.arg.is64 && f.flags & EF_MIPS_MICROMIPS) in checkFlags() 77 uint32_t abi2 = f.flags & (EF_MIPS_ABI | EF_MIPS_ABI2); in checkFlags() 83 bool nan2 = f.flags & EF_MIPS_NAN2008; in checkFlags() 88 bool fp2 = f.flags in checkFlags() 36 uint32_t flags; global() member 40 getAbiName(uint32_t flags) getAbiName() argument 185 getMachName(uint32_t flags) getMachName() argument 230 getArchName(uint32_t flags) getArchName() argument 259 getFullArchName(uint32_t flags) getFullArchName() argument [all...] |