Searched defs:Emitted (Results 1 - 4 of 4) sorted by relevance

/external/clang/lib/Basic/
H A DDiagnostic.cpp393 bool Emitted; local
401 Emitted = (DiagLevel != DiagnosticIDs::Ignored);
402 if (Emitted) {
409 Emitted = ProcessDiag();
420 return Emitted;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h242 First(F), Last(L), SValue(SV), HeaderBB(H), Emitted(E) {}
247 bool Emitted; member in struct:llvm::SelectionDAGBuilder::JumpTableHeader
268 First(F), Range(R), SValue(SV), Reg(Rg), RegVT(RgVT), Emitted(E),
275 bool Emitted; member in struct:llvm::SelectionDAGBuilder::BitTestBlock
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITEmitter.cpp1022 Emitted = EmittedFunctions.find(F); local
1023 if (Emitted != EmittedFunctions.end()) {
1024 MemMgr->deallocateFunctionBody(Emitted->second.FunctionBody);
1025 MemMgr->deallocateExceptionTable(Emitted->second.ExceptionTable);
1026 TheJIT->NotifyFreeingMachineCode(Emitted->second.Code);
1028 EmittedFunctions.erase(Emitted);
1068 DEBUG(dbgs() << "JIT: Emitted constant pool at [" << ConstantPoolBase
/external/llvm/lib/Target/X86/
H A DX86FastISel.cpp1718 bool Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(), local
1720 assert(Emitted && "Failed to emit a sext!"); (void)Emitted;
1727 bool Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(), local
1729 assert(Emitted && "Failed to emit a zext!"); (void)Emitted;
1736 bool Emitted = X86FastEmitExtend(ISD::ANY_EXTEND, VA.getLocVT(), local
1738 if (!Emitted)
1739 Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
1741 if (!Emitted)
[all...]

Completed in 209 milliseconds