/third_party/node/deps/v8/src/asmjs/ |
D | asm-scanner.h | 79 bool IsLocal() const { return IsLocal(Token()); } in IsLocal() function 81 static bool IsLocal(token_t token) { return token <= kLocalsStart; } in IsLocal() function 86 DCHECK(IsLocal(token)); in LocalIndex()
|
D | asm-parser.cc | 202 DCHECK(is_global || AsmJsScanner::IsLocal(token)); in GetVarInfo() 637 if (!scanner_.IsGlobal() && !scanner_.IsLocal()) { in ValidateExport() 851 if (!scanner_.IsLocal()) { in ValidateFunctionParams() 912 if (!scanner_.IsLocal()) { in ValidateFunctionLocals() 1080 if (scanner_.IsGlobal() || scanner_.IsLocal()) { in ExpressionStatement() 1269 if (scanner_.IsGlobal() || scanner_.IsLocal()) { in BreakStatement() 1286 if (scanner_.IsGlobal() || scanner_.IsLocal()) { in ContinueStatement() 1300 DCHECK(scanner_.IsGlobal() || scanner_.IsLocal()); in LabelledStatement() 1445 if (scanner_.IsLocal()) { in Identifier() 1477 } else if (scanner_.IsLocal() || scanner_.IsGlobal()) { in CallExpression() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/ |
D | NaClBitcodeParser.cpp | 71 bool IsLocal) { in ProcessAbbreviation() argument 77 Parser->ProcessAbbreviation(IsLocal ? Parser->GetBlockID() : GlobalBlockID, in ProcessAbbreviation() 78 Abbrev, IsLocal); in ProcessAbbreviation()
|
D | NaClBitstreamReader.cpp | 253 void NaClBitstreamCursor::ReadAbbrevRecord(bool IsLocal, in ReadAbbrevRecord() argument 312 Listener->ProcessAbbreviation(Abbv, IsLocal); in ReadAbbrevRecord()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ |
D | TargetMachine.cpp | 214 bool IsLocal = shouldAssumeDSOLocal(*GV->getParent(), GV); in getTLSModel() local 218 if (IsLocal) in getTLSModel() 223 if (IsLocal) in getTLSModel()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | ModuleSummaryIndexYAML.h | 139 bool NotEligibleToImport, Live, IsLocal, CanAutoHide; 182 io.mapOptional("Local", summary.IsLocal); 226 FSum.NotEligibleToImport, FSum.Live, FSum.IsLocal, FSum.CanAutoHide),
|
D | ModuleSummaryIndex.h | 324 bool NotEligibleToImport, bool Live, bool IsLocal, 327 Live(Live), DSOLocal(IsLocal), CanAutoHide(CanAutoHide) {}
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonTargetObjectFile.cpp | 235 bool IsLocal = GVar->hasLocalLinkage(); in isGlobalInSmallSection() local 236 if (!StaticsInSData && IsLocal) { in isGlobalInSmallSection()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldELF.h | 129 bool IsLocal = false) const;
|
D | RuntimeDyldELF.cpp | 989 bool IsLocal) const { in getMatchingLoRelocation() 992 if (IsLocal) in getMatchingLoRelocation() 998 if (IsLocal) in getMatchingLoRelocation()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/ |
D | NaClBitstreamReader.h | 355 virtual void ProcessAbbreviation(NaClBitCodeAbbrev *Abbrv, bool IsLocal) = 0; 885 void ReadAbbrevRecord(bool IsLocal, NaClAbbrevListener *Listener);
|
D | NaClBitcodeParser.h | 358 virtual void ProcessAbbreviation(NaClBitCodeAbbrev *Abbrev, bool IsLocal);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFAcceleratorTable.cpp | 850 if (IsLocal || CurrentIndex == &CurrentIndex->Section.NameIndices.back()) { in next() 862 : CurrentIndex(AccelTable.NameIndices.begin()), IsLocal(false), Key(Key) { in ValueIterator() 868 : CurrentIndex(&NI), IsLocal(true), Key(Key) { in ValueIterator()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/ |
D | RISCVISelLowering.h | 186 SDValue getAddr(NodeTy *N, SelectionDAG &DAG, bool IsLocal = true) const;
|
D | RISCVISelLowering.cpp | 443 bool IsLocal) const { in getAddr() 449 if (IsLocal) in getAddr() 491 bool IsLocal = getTargetMachine().shouldAssumeDSOLocal(*GV->getParent(), GV); in lowerGlobalAddress() local 492 SDValue Addr = getAddr(N, DAG, IsLocal); in lowerGlobalAddress()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
D | HWAddressSanitizer.cpp | 1450 bool IsLocal = P.first && (!isa<GlobalValue>(P.first) || in instrumentPersonalityFunctions() local 1453 IsLocal ? GlobalValue::InternalLinkage in instrumentPersonalityFunctions() 1456 if (!IsLocal) { in instrumentPersonalityFunctions()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFAcceleratorTable.h | 479 bool IsLocal; variable
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/ |
D | AsmParser.cpp | 628 bool parseDirectiveComm(bool IsLocal); // ".comm" and ".lcomm" 4872 bool AsmParser::parseDirectiveComm(bool IsLocal) { in parseDirectiveComm() argument 4902 if (IsLocal && LCOMM == LCOMM::NoAlignment) in parseDirectiveComm() 4906 if ((!IsLocal && Lexer.getMAI().getCOMMDirectiveAlignmentIsInBytes()) || in parseDirectiveComm() 4907 (IsLocal && LCOMM == LCOMM::ByteAlignment)) { in parseDirectiveComm() 4936 if (IsLocal) { in parseDirectiveComm()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/AsmParser/ |
D | HexagonAsmParser.cpp | 120 bool ParseDirectiveComm(bool IsLocal, SMLoc L); 728 bool HexagonAsmParser::ParseDirectiveComm(bool IsLocal, SMLoc Loc) { in ParseDirectiveComm() argument 797 if (IsLocal) { in ParseDirectiveComm()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | RegAllocGreedy.cpp | 879 bool IsLocal = LIS->intervalIsInOneMBB(VirtReg); in canEvictInterference() local 949 if (!MaxCost.isMax() && IsLocal && LIS->intervalIsInOneMBB(*Intf) && in canEvictInterference()
|