HomeSort by relevance Sort by last modified time
    Searched defs:Code (Results 26 - 50 of 50) sorted by null

12

  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 141 static void WriteStringRecord(unsigned Code, StringRef Str,
145 // Code: [strchar x N]
153 Stream.EmitRecord(Code, Vals, AbbrevToUse);
257 unsigned Code = 0;
261 case Type::VoidTyID: Code = bitc::TYPE_CODE_VOID; break;
262 case Type::FloatTyID: Code = bitc::TYPE_CODE_FLOAT; break;
263 case Type::DoubleTyID: Code = bitc::TYPE_CODE_DOUBLE; break;
264 case Type::X86_FP80TyID: Code = bitc::TYPE_CODE_X86_FP80; break;
265 case Type::FP128TyID: Code = bitc::TYPE_CODE_FP128; break;
266 case Type::PPC_FP128TyID: Code = bitc::TYPE_CODE_PPC_FP128; break
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 1 //===-- JITEmitter.cpp - Write machine code to executable memory ----------===//
11 // write machine code to memory and remember where relocatable values are.
58 STATISTIC(NumBytes, "Number of bytes of machine code compiled");
70 // JIT lazy compilation code.
341 /// Information about emitted code, which is passed to the
348 void *Code; // The address the function's code actually starts at.
350 EmittedCode() : FunctionBody(0), Code(0), ExceptionTable(0) {}
655 // If we have already code generated the function, just return the address.
699 // JITEmitter code
    [all...]
  /external/llvm/lib/MC/
MCAsmStreamer.cpp 237 virtual void EmitWin64EHPushFrame(bool Code);
633 assert(Directive && "Invalid size for machine code value!");
693 default: llvm_unreachable("Invalid size for machine code value!");
720 default: llvm_unreachable("Invalid size for machine code value!");
    [all...]
  /external/llvm/lib/TableGen/
TGParser.cpp 24 // Support Code for the Semantic Actions.
293 // Parser Code
602 /// Type ::= CODE // code type
612 case tgtok::Code: Lex.Lex(); return CodeRecTy::get();
730 UnOpInit::UnaryOp Code;
734 default: assert(0 && "Unhandled code!");
737 Code = UnOpInit::CAST;
749 Code = UnOpInit::HEAD;
753 Code = UnOpInit::TAIL
    [all...]
  /external/v8/src/
factory.cc 6 // * Redistributions of source code must retain the above copyright
608 Handle<Code> code,
613 // Setup the code pointer in both the shared function info and in
615 function->shared()->set_code(*code);
616 function->set_code(*code);
639 Handle<Code> code,
644 // Setup the code pointer in both the shared function info and in
646 function->shared()->set_code(*code);
996 Handle<Code> code = isolate()->builtins()->HandleApiCall(); local
    [all...]
objects.h 6 // * Redistributions of source code must retain the above copyright
89 // - Code
207 // constants can be embedded in generated code.
406 // code for the class including allocation and garbage collection routines,
719 V(Code) \
    [all...]
  /external/v8/tools/
grokdump.py 8 # * Redistributions of source code must retain the above copyright
47 heap. Code objects are disassembled and the addresses linked from the
134 ("code", ctypes.c_uint32),
364 # List of V8 instance types. Obtained by adding the code below to any .cc file.
466 code = AnnotateAddresses(heap, line[1])
467 return "%s%08x %08x: %s" % (marker, line_address, line[0], code)
631 self.code = heap.FindObject(code_entry - Code.ENTRY_OFFSET + 1)
643 p.Print("code:")
644 self.code.Print(p
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 113 static void WriteStringRecord(unsigned Code, StringRef Str,
117 // Code: [strchar x N]
125 Stream.EmitRecord(Code, Vals, AbbrevToUse);
312 unsigned Code = 0;
316 case Type::VoidTyID: Code = bitc::TYPE_CODE_VOID; break;
317 case Type::FloatTyID: Code = bitc::TYPE_CODE_FLOAT; break;
318 case Type::DoubleTyID: Code = bitc::TYPE_CODE_DOUBLE; break;
319 case Type::X86_FP80TyID: Code = bitc::TYPE_CODE_X86_FP80; break;
320 case Type::FP128TyID: Code = bitc::TYPE_CODE_FP128; break;
321 case Type::PPC_FP128TyID: Code = bitc::TYPE_CODE_PPC_FP128; break
    [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp     [all...]
ASTReaderStmt.cpp     [all...]
ASTReader.cpp 743 unsigned Code = Cursor.ReadCode();
744 unsigned RecCode = Cursor.ReadRecord(Code, Record, &Blob, &BlobLen);
761 unsigned Code = Cursor.ReadCode();
762 unsigned RecCode = Cursor.ReadRecord(Code, Record, &Blob, &BlobLen);
    [all...]
ASTWriter.cpp 77 /// \brief Type code that corresponds to the record generated.
78 TypeCode Code;
81 : Writer(Writer), Record(Record), Code(TYPE_EXT_QUAL) { }
99 Code = TYPE_COMPLEX;
104 Code = TYPE_POINTER;
109 Code = TYPE_BLOCK_POINTER;
115 Code = TYPE_LVALUE_REFERENCE;
120 Code = TYPE_RVALUE_REFERENCE;
126 Code = TYPE_MEMBER_POINTER;
138 Code = TYPE_CONSTANT_ARRAY
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 432 unsigned Code = Stream.ReadCode();
433 if (Code == bitc::END_BLOCK) {
439 if (Code == bitc::ENTER_SUBBLOCK) {
447 if (Code == bitc::DEFINE_ABBREV) {
454 switch (Stream.ReadRecord(Code, Record)) {
461 // FIXME : Remove this autoupgrade code in LLVM 3.0.
539 unsigned Code = Stream.ReadCode();
540 if (Code == bitc::END_BLOCK) {
548 if (Code == bitc::ENTER_SUBBLOCK) {
556 if (Code == bitc::DEFINE_ABBREV)
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 141 static Value *getICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS,
144 switch (Code) {
145 default: assert(0 && "Illegal ICmp code!");
163 static Value *getFCmpValue(bool isordered, unsigned code,
167 switch (code) {
168 default: assert(0 && "Illegal FCmp code!");
342 "Lo is not <= Hi in range emission code!");
729 unsigned Code = getICmpCode(LHS) & getICmpCode(RHS);
731 return getICmpValue(isSigned, Code, Op0, Op1, Builder);
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 407 unsigned Code = Stream.ReadCode();
408 if (Code == bitc::END_BLOCK) {
414 if (Code == bitc::ENTER_SUBBLOCK) {
422 if (Code == bitc::DEFINE_ABBREV) {
429 switch (Stream.ReadRecord(Code, Record)) {
436 // FIXME : Remove this autoupgrade code in LLVM 3.0.
514 unsigned Code = Stream.ReadCode();
515 if (Code == bitc::END_BLOCK) {
523 if (Code == bitc::ENTER_SUBBLOCK) {
531 if (Code == bitc::DEFINE_ABBREV)
    [all...]
  /external/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp 349 // If we are down to concrete types, this code does not currently
383 // not have been accepted by this code previously.
645 /// Return the name to use in the generated code to reference this, this is
651 /// getCodeToRunOnSDNode - Return the code for the function body that
665 assert(!getPredCode().empty() && "Don't have any predicate code!");
    [all...]
  /external/clang/lib/Sema/
SemaDecl.cpp 310 /// @code
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 82 // frontend. It easy to induce this behavior with .ll code such as:
628 /// operand list. This adds the code marker, matching input operand index
780 /// operand list. This adds the code marker and includes the number of
782 void RegsForValue::AddInlineAsmOperands(unsigned Code, bool HasMatching,
    [all...]
  /prebuilt/sdk/tools/lib/
dx.jar 
  /prebuilt/darwin-x86/swt/
swt.jar 
  /prebuilt/darwin-x86_64/swt/
swt.jar 
  /prebuilt/linux-x86/swt/
swt.jar 
  /prebuilt/linux-x86_64/swt/
swt.jar 
  /prebuilt/windows/swt/
swt.jar 
  /prebuilt/windows-x86_64/swt/
swt.jar 

Completed in 1485 milliseconds

12