Searched refs:Code (Results 1 - 25 of 90) sorted by relevance

1234

/freebsd-10.0-release/contrib/llvm/lib/DebugInfo/
H A DDWARFAbbreviationDeclaration.h22 uint32_t Code; member in class:llvm::DWARFAbbreviationDeclaration
29 : Code(InvalidCode), Tag(0), HasChildren(0) {}
31 uint32_t getCode() const { return Code; }
45 bool isValid() const { return Code != 0 && Tag != 0; }
H A DDWARFAbbreviationDeclaration.cpp25 Code = code;
27 if (Code) {
/freebsd-10.0-release/contrib/llvm/include/llvm/Transforms/Utils/
H A DCmpInstAnalysis.h56 Value *getICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS,
/freebsd-10.0-release/contrib/llvm/include/llvm/CodeGen/
H A DISDOpcodes.h754 inline bool isSignedIntSetCC(CondCode Code) { argument
755 return Code == SETGT || Code == SETGE || Code == SETLT || Code == SETLE;
760 inline bool isUnsignedIntSetCC(CondCode Code) { argument
761 return Code == SETUGT || Code == SETUGE || Code == SETULT || Code
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTWriterStmt.cpp34 serialization::StmtCode Code; member in class:clang::ASTStmtWriter
65 Code = serialization::STMT_NULL;
76 Code = serialization::STMT_COMPOUND;
92 Code = serialization::STMT_CASE;
98 Code = serialization::STMT_DEFAULT;
106 Code = serialization::STMT_LABEL;
115 Code = serialization::STMT_ATTRIBUTED;
126 Code = serialization::STMT_IF;
139 Code = serialization::STMT_SWITCH;
148 Code
[all...]
H A DASTWriterDecl.cpp42 serialization::DeclCode Code; member in class:clang::ASTDeclWriter
204 Code = serialization::DECL_TYPEDEF;
209 Code = serialization::DECL_TYPEALIAS;
263 Code = serialization::DECL_ENUM;
287 Code = serialization::DECL_RECORD;
302 Code = serialization::DECL_ENUM_CONSTANT;
409 Code = serialization::DECL_FUNCTION;
458 Code = serialization::DECL_OBJC_METHOD;
512 Code = serialization::DECL_OBJC_INTERFACE;
532 Code
[all...]
/freebsd-10.0-release/contrib/llvm/lib/TableGen/
H A DStringMatcher.cpp55 StringRef Code = Matches[0]->second; local
57 std::pair<StringRef, StringRef> Split = Code.split('\n');
60 Code = Split.second;
61 while (!Code.empty()) {
62 Split = Code.split('\n');
64 Code = Split.second;
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugAbbrev.cpp44 m_idx_offset = abbrevDeclaration.Code();
47 if (prev_abbr_code + 1 != abbrevDeclaration.Code())
50 prev_abbr_code = abbrevDeclaration.Code();
78 if (pos->Code() == abbrCode)
H A DDWARFAbbreviationDeclaration.cpp98 m_code = abbr_decl.Code(); // Invalidate the code since that can't be copied safely.
199 out_buff.Append32_as_ULEB128(Code());
H A DDWARFAbbreviationDeclaration.h31 dw_uleb128_t Code() const { return m_code; } function in class:DWARFAbbreviationDeclaration
/freebsd-10.0-release/contrib/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp149 static void WriteStringRecord(unsigned Code, StringRef Str, argument
153 // Code: [strchar x N]
161 Stream.EmitRecord(Code, Vals, AbbrevToUse);
299 unsigned Code = 0; local
303 case Type::VoidTyID: Code = bitc::TYPE_CODE_VOID; break;
304 case Type::HalfTyID: Code = bitc::TYPE_CODE_HALF; break;
305 case Type::FloatTyID: Code = bitc::TYPE_CODE_FLOAT; break;
306 case Type::DoubleTyID: Code = bitc::TYPE_CODE_DOUBLE; break;
307 case Type::X86_FP80TyID: Code = bitc::TYPE_CODE_X86_FP80; break;
308 case Type::FP128TyID: Code
783 EmitAPInt(SmallVectorImpl<uint64_t> &Vals, unsigned &Code, unsigned &AbbrevToUse, const APInt &Val, bool EmitSizeForWideNumbers = false ) argument
887 unsigned Code = -1U; local
1121 unsigned Code = 0; local
1249 unsigned Code, Abbrev; // will unused. local
1507 unsigned Code; local
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Transforms/Utils/
H A DCmpInstAnalysis.cpp72 Value *llvm::getICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS, argument
74 switch (Code) {
/freebsd-10.0-release/contrib/llvm/lib/MC/
H A DMCPureStreamer.cpp202 SmallString<256> Code; local
203 raw_svector_ostream VecOS(Code);
207 IF->getContents() = Code;
215 SmallString<256> Code; local
216 raw_svector_ostream VecOS(Code);
225 DF->getContents().append(Code.begin(), Code.end());
H A DMCObjectStreamer.cpp236 SmallString<128> Code; local
237 raw_svector_ostream VecOS(Code);
240 IF->getContents().append(Code.begin(), Code.end());
H A DWinCOFFStreamer.cpp87 SmallString<256> Code; local
88 raw_svector_ostream VecOS(Code);
97 DF->getContents().append(Code.begin(), Code.end());
/freebsd-10.0-release/contrib/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileWrapper.cpp210 void const* Code,
216 return WriteNativeCodeFunc(Agent, Name, Addr, Code, Size);
222 void const* Code,
229 return WriteDebugLineInfoFunc(Agent, Code, NumEntries, Info);
208 op_write_native_code(const char* Name, uint64_t Addr, void const* Code, const unsigned int Size) argument
221 op_write_debug_line_info( void const* Code, size_t NumEntries, struct debug_line_info const* Info) argument
/freebsd-10.0-release/contrib/llvm/include/llvm/MC/
H A DMCWin64EH.h1 //===- MCWin64EH.h - Machine Code Win64 EH support --------------*- C++ -*-===//
51 MCWin64EHInstruction(OpType Op, MCSymbol *L, bool Code) argument
52 : Operation(Op), Label(L), Offset(Code ? 1 : 0) {
/freebsd-10.0-release/contrib/llvm/tools/llvm-bcanalyzer/
H A Dllvm-bcanalyzer.cpp418 unsigned Code = Stream.readRecord(Entry.ID, Record, &Blob); local
421 if (BlockStats.CodeFreq.size() <= Code)
422 BlockStats.CodeFreq.resize(Code+1);
423 BlockStats.CodeFreq[Code].NumInstances++;
424 BlockStats.CodeFreq[Code].TotalBits +=
427 BlockStats.CodeFreq[Code].NumAbbrev++;
434 GetCodeName(Code, BlockID, *Stream.getBitStreamReader()))
437 outs() << "UnknownCode" << Code;
439 GetCodeName(Code, BlockID, *Stream.getBitStreamReader()))
440 outs() << " codeid=" << Code;
523 unsigned Code = Stream.ReadCode(); local
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Bitcode/Reader/
H A DBitstreamReader.cpp139 unsigned Code = ReadVBR(6); local
140 (void)Code;
198 unsigned Code = ReadVBR(6); local
202 return Code;
267 unsigned Code = (unsigned)Vals[0]; local
269 return Code;
/freebsd-10.0-release/contrib/libarchive/libarchive/
H A Darchive_ppmd7_private.h77 UInt32 Code; member in struct:__anon1549
108 #define Ppmd7z_RangeDec_IsFinishedOK(p) ((p)->Code == 0)
/freebsd-10.0-release/sys/dev/acpica/Osd/
H A DOsdDebug.c79 fatal->Type, fatal->Code, fatal->Argument);
/freebsd-10.0-release/contrib/llvm/include/llvm/Bitcode/
H A DBitstreamReader.h286 unsigned Code = ReadCode(); local
287 if (Code == bitc::END_BLOCK) {
294 if (Code == bitc::ENTER_SUBBLOCK)
297 if (Code == bitc::DEFINE_ABBREV &&
305 return BitstreamEntry::getRecord(Code);
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Tooling/
H A DTooling.h100 /// \brief Runs (and deletes) the tool on 'Code' with the -fsyntax-only flag.
103 /// \param Code C++ code.
104 /// \param FileName The file name which 'Code' will be mapped as.
107 bool runToolOnCode(clang::FrontendAction *ToolAction, const Twine &Code,
110 /// \brief Runs (and deletes) the tool on 'Code' with the -fsyntax-only flag and
114 /// \param Code C++ code.
116 /// \param FileName The file name which 'Code' will be mapped as.
119 bool runToolOnCodeWithArgs(clang::FrontendAction *ToolAction, const Twine &Code,
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/
H A Derr.chillbadarg.ksh13 * When distributing Covered Code, include this CDDL HEADER in each
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Tooling/
H A DTooling.cpp99 bool runToolOnCode(clang::FrontendAction *ToolAction, const Twine &Code, argument
102 ToolAction, Code, std::vector<std::string>(), FileName);
105 bool runToolOnCodeWithArgs(clang::FrontendAction *ToolAction, const Twine &Code, argument
120 Code.toNullTerminatedStringRef(CodeStorage));

Completed in 138 milliseconds

1234