Home
last modified time | relevance | path

Searched refs:isGlobal (Results 1 – 25 of 77) sorted by relevance

1234

/external/apache-xml/src/main/java/org/apache/xalan/templates/
DRedundentExprEliminator.java160 boolean isGlobal = (paths == m_absPaths); in eleminateSharedPartialPaths()
172 list = matchAndEliminatePartialPaths(next, list, isGlobal, i, psuedoVarRecipient); in eleminateSharedPartialPaths()
188 boolean isGlobal, in matchAndEliminatePartialPaths() argument
237 ElemTemplateElement root = isGlobal ? varScope : findCommonAncestor(matchedPaths); in matchAndEliminatePartialPaths()
240 ElemVariable var = createPseudoVarDecl(root, newIter, isGlobal); in matchAndEliminatePartialPaths()
242 System.err.println("Created var: "+var.getName()+(isGlobal ? "(Global)" : "")); in matchAndEliminatePartialPaths()
252 changePartToRef(var.getName(), iter, lengthToTest, isGlobal); in matchAndEliminatePartialPaths()
260 diagnoseMultistepList(matchCount, lengthToTest, isGlobal); in matchAndEliminatePartialPaths()
418 boolean isGlobal) in diagnoseMultistepList() argument
424 if (isGlobal) in diagnoseMultistepList()
[all …]
DXUnresolvedVariable.java80 boolean isGlobal) in XUnresolvedVariable() argument
93 m_isGlobal = isGlobal; in XUnresolvedVariable()
/external/valgrind/coregrind/
Dm_redir.c236 Bool isGlobal; /* must the symbol to replace be global? */ member
392 Bool ok, isWrap, isGlobal; in VG_() local
529 isGlobal = False; in VG_()
621 isGlobal = True; in VG_()
634 spec->isGlobal = isGlobal; in VG_()
807 Bool anyMark, isText, isIFunc, isGlobal; in generate_and_add_actives() local
826 (sp->isGlobal == True) && in generate_and_add_actives()
846 &isText, &isIFunc, &isGlobal ); in generate_and_add_actives()
861 && (sp->isGlobal == False || isGlobal == True)) { in generate_and_add_actives()
1277 spec->isGlobal = False; in add_hardwired_spec()
[all …]
Dpub_core_debuginfo.h216 /*OUT*/Bool* isGlobal );
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
DPPCMCInstLower.cpp35 if (!MO.isGlobal()) { in GetSymbolFromOperand()
59 if (MO.isGlobal()) { in GetSymbolFromOperand()
86 assert(MO.isGlobal() && "Extern symbol not handled yet"); in GetSymbolFromOperand()
/external/nist-sip/java/gov/nist/javax/sip/address/
DTelURLImpl.java96 public boolean isGlobal() { in isGlobal() method in TelURLImpl
97 return telephoneNumber.isGlobal(); in isGlobal()
DTelephoneNumber.java120 public boolean isGlobal() { in isGlobal() method in TelephoneNumber
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
DMachineOperand.h207 bool isGlobal() const { return OpKind == MO_GlobalAddress; } in isGlobal() function
387 assert(isGlobal() && "Wrong MachineOperand accessor"); in getGlobal()
404 assert((isGlobal() || isSymbol() || isCPI() || isBlockAddress()) && in getOffset()
430 assert((isGlobal() || isSymbol() || isCPI() || isBlockAddress()) && in setOffset()
/external/llvm/lib/Target/PowerPC/
DPPCAsmPrinter.cpp419 } else if (CalleeMO.isGlobal()) { in LowerPATCHPOINT()
576 assert(MO.isGlobal() || MO.isCPI() || MO.isJTI() || MO.isBlockAddress()); in EmitInstruction()
578 if (MO.isGlobal()) in EmitInstruction()
620 assert(MO.isGlobal() || MO.isCPI() || MO.isJTI() || MO.isBlockAddress()); in EmitInstruction()
622 if (MO.isGlobal()) in EmitInstruction()
651 assert((MO.isGlobal() || MO.isCPI() || MO.isJTI() || in EmitInstruction()
657 if (MO.isGlobal()) { in EmitInstruction()
690 assert((MO.isGlobal() || MO.isCPI() || MO.isJTI() || in EmitInstruction()
706 else if (MO.isGlobal()) { in EmitInstruction()
733 assert((MO.isGlobal() || MO.isCPI()) && "Invalid operand for ADDItocL"); in EmitInstruction()
[all …]
DPPCMCInstLower.cpp52 if (!MO.isGlobal()) { in GetSymbolFromOperand()
71 assert(MO.isGlobal() && "Extern symbol not handled yet"); in GetSymbolFromOperand()
/external/llvm/include/llvm/CodeGen/
DMachineOperand.h248 bool isGlobal() const { return OpKind == MO_GlobalAddress; } in isGlobal() function
437 assert(isGlobal() && "Wrong MachineOperand accessor"); in getGlobal()
459 assert((isGlobal() || isSymbol() || isMCSymbol() || isCPI() || in getOffset()
519 assert((isGlobal() || isSymbol() || isMCSymbol() || isCPI() || in setOffset()
/external/swiftshader/third_party/LLVM/lib/Target/X86/
DX86CodeEmitter.cpp417 if (RelocOp->isGlobal()) { in emitDisplacementField()
446 if (Op3.isGlobal()) { in emitMemModRMByte()
781 DEBUG(dbgs() << "isGlobal " << MO.isGlobal() << "\n"); in emitInstruction()
790 if (MO.isGlobal()) { in emitInstruction()
840 if (MO1.isGlobal()) { in emitInstruction()
923 if (MO1.isGlobal()) { in emitInstruction()
963 if (MO.isGlobal()) { in emitInstruction()
DX86MCInstLower.cpp46 assert((MO.isGlobal() || MO.isSymbol()) && "Isn't a symbol reference"); in GetSymbolFromOperand()
50 if (!MO.isGlobal()) { in GetSymbolFromOperand()
84 assert(MO.isGlobal() && "Extern symbol not handled yet"); in GetSymbolFromOperand()
98 assert(MO.isGlobal() && "Extern symbol not handled yet"); in GetSymbolFromOperand()
114 if (MO.isGlobal()) { in GetSymbolFromOperand()
DX86VZeroUpper.cpp71 if (!MO.isGlobal()) in isCallToModuleFn()
DX86AsmPrinter.cpp300 assert(DispSpec.isGlobal() || DispSpec.isCPI() || in printLeaMemReference()
388 if (MO.isGlobal() || MO.isCPI() || MO.isJTI() || MO.isSymbol()) { in PrintAsmOperand()
405 else if (MO.isGlobal() || MO.isCPI() || MO.isJTI() || MO.isSymbol()) in PrintAsmOperand()
/external/nist-sip/java/javax/sip/address/
DTelURL.java19 boolean isGlobal(); in isGlobal() method
/external/apache-xml/src/main/java/org/apache/xpath/operations/
DVariable.java86 public void setIsGlobal(boolean isGlobal) in setIsGlobal() argument
88 m_isGlobal = isGlobal; in setIsGlobal()
/external/llvm/test/CodeGen/X86/
Dlea-opt-memop-check-1.ll4 ; Assertion `(Disp->isImm() || Disp->isGlobal()) && (Other.Disp->isImm() || Other.Disp->isGlobal())…
/external/llvm/lib/CodeGen/
DRegUsageInfoPropagate.cpp117 if (Operand.isGlobal()) in runOnMachineFunction()
/external/llvm/lib/Target/X86/
DX86OptimizeLEAs.cpp191 MO.isGlobal() || MO.isBlockAddress() || MO.isMCSymbol() || MO.isMBB(); in isValidDispOp()
204 (MO1.isGlobal() && MO2.isGlobal() && in isSimilarDispOp()
DX86InstrBuilder.h106 if (Op.isGlobal()) { in getAddressFromInstr()
/external/llvm/lib/Target/Hexagon/
DHexagonCopyToCombine.cpp644 if (HiOperand.isGlobal()) { in emitCombineII()
651 if (LoOperand.isGlobal()) { in emitCombineII()
741 if (HiOperand.isGlobal()) { in emitCombineIR()
789 if (LoOperand.isGlobal()) { in emitCombineRI()
/external/swiftshader/third_party/LLVM/include/llvm/Object/
DObjectFile.h122 error_code isGlobal(bool &Result) const;
342 inline error_code SymbolRef::isGlobal(bool &Result) const { in isGlobal() function
/external/llvm/lib/Target/NVPTX/
DNVPTXReplaceImageHandles.cpp169 assert(TexHandleDef.getOperand(1).isGlobal() && "Load is not a global!"); in findIndexForHandle()
/external/valgrind/coregrind/m_debuginfo/
Dstorage.c105 sym->isGlobal ? 'G' : '-', in ML_()
1699 di->symtab[w].isGlobal = di->symtab[w].isGlobal || di->symtab[r].isGlobal; in canonicaliseSymtab()
1803 isg1 = di->symtab[i].isGlobal; in canonicaliseSymtab()
1813 isg2 = di->symtab[i+1].isGlobal; in canonicaliseSymtab()
1840 di->symtab[i].isGlobal = isg1; in canonicaliseSymtab()
1850 di->symtab[i+1].isGlobal = isg2; in canonicaliseSymtab()

1234