Searched defs:IA (Results 1 - 8 of 8) sorted by relevance
/frameworks/compile/slang/BitWriter_2_9/ |
H A D | ValueEnumerator.cpp | 102 MDNode *Scope, *IA; local 103 I->getDebugLoc().getScopeAndInlinedAt(Scope, IA, I->getContext()); 105 if (IA) EnumerateMetadata(IA);
|
H A D | BitcodeWriter.cpp | 803 if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) { 804 Record.push_back(unsigned(IA->hasSideEffects()) | 805 unsigned(IA->isAlignStack()) << 1); 808 const std::string &AsmStr = IA->getAsmString(); 814 const std::string &ConstraintStr = IA->getConstraintString(); 1394 MDNode *Scope, *IA; local 1395 DL.getScopeAndInlinedAt(Scope, IA, I->getContext()); 1400 Vals.push_back(IA ? VE.getValueID(IA)+1 : 0);
|
/frameworks/compile/slang/BitWriter_2_9_func/ |
H A D | ValueEnumerator.cpp | 102 MDNode *Scope, *IA; local 103 I->getDebugLoc().getScopeAndInlinedAt(Scope, IA, I->getContext()); 105 if (IA) EnumerateMetadata(IA);
|
H A D | BitcodeWriter.cpp | 757 if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) { 758 Record.push_back(unsigned(IA->hasSideEffects()) | 759 unsigned(IA->isAlignStack()) << 1); 762 const std::string &AsmStr = IA->getAsmString(); 768 const std::string &ConstraintStr = IA->getConstraintString(); 1411 MDNode *Scope, *IA; local 1412 DL.getScopeAndInlinedAt(Scope, IA, I->getContext()); 1417 Vals.push_back(IA ? VE.getValueID(IA)+1 : 0);
|
/frameworks/compile/slang/BitWriter_3_2/ |
H A D | ValueEnumerator.cpp | 102 MDNode *Scope, *IA; local 103 I->getDebugLoc().getScopeAndInlinedAt(Scope, IA, I->getContext()); 105 if (IA) EnumerateMetadata(IA);
|
H A D | BitcodeWriter.cpp | 826 if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) { 827 Record.push_back(unsigned(IA->hasSideEffects()) | 828 unsigned(IA->isAlignStack()) << 1 | 829 unsigned(IA->getDialect()&1) << 2); 832 const std::string &AsmStr = IA->getAsmString(); 838 const std::string &ConstraintStr = IA->getConstraintString(); 1503 MDNode *Scope, *IA; local 1504 DL.getScopeAndInlinedAt(Scope, IA, I->getContext()); 1509 Vals.push_back(IA ? VE.getValueID(IA) [all...] |
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/ |
H A D | BitcodeReader.cpp | 2218 MDNode *Scope = 0, *IA = 0; local 2220 if (IAID) IA = cast<MDNode>(MDValueList.getValueFwdRef(IAID-1)); 2221 LastLoc = DebugLoc::get(Line, Col, Scope, IA);
|
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/ |
H A D | BitcodeReader.cpp | 2478 MDNode *Scope = 0, *IA = 0; local 2480 if (IAID) IA = cast<MDNode>(MDValueList.getValueFwdRef(IAID-1)); 2481 LastLoc = DebugLoc::get(Line, Col, Scope, IA);
|
Completed in 49 milliseconds