HomeSort by relevance Sort by last modified time
    Searched refs:Code (Results 176 - 200 of 422) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/llvm/lib/TableGen/
TGLexer.h 46 Bit, Bits, Class, Code, Dag, Def, Foreach, Defm, Field, In, Int, Let, List,
112 /// LexToken - Read the next token and return its code.
TGParser.cpp 24 // Support Code for the Semantic Actions.
373 // Parser Code
669 /// Type ::= CODE // code type
681 case tgtok::Code: Lex.Lex(); return StringRecTy::get();
809 UnOpInit::UnaryOp Code;
813 default: llvm_unreachable("Unhandled code!");
816 Code = UnOpInit::CAST;
828 Code = UnOpInit::HEAD;
832 Code = UnOpInit::TAIL
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
ClassDefinition.java 9 * 1. Redistributions of source code must retain the above copyright
35 import org.jf.dexlib.Code.Analysis.ValidationException;
36 import org.jf.dexlib.Code.Format.Instruction21c;
37 import org.jf.dexlib.Code.Format.Instruction41c;
38 import org.jf.dexlib.Code.Instruction;
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
InstructionWithReference.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code;
  /external/v8/src/ia32/
lithium-codegen-ia32.h 6 // * Redistributions of source code must retain the above copyright
92 // Try to generate code for the entire chunk, but it may fail if the
94 // code generation attempt succeeded.
97 // Finish the code by setting stack height, safepoint, and bailout
99 void FinishCode(Handle<Code> code);
101 // Deferred code support.
167 void AddDeferredCode(LDeferredCode* code) { deferred_.Add(code); }
169 // Code generation passes. Returns true if code generation shoul
    [all...]
code-stubs-ia32.h 6 // * Redistributions of source code must retain the above copyright
32 #include "code-stubs.h"
145 virtual int GetCodeKind() { return Code::UNARY_OP_IC; }
151 virtual void FinishCode(Handle<Code> code) {
152 code->set_unary_op_type(operand_type_);
232 virtual int GetCodeKind() { return Code::BINARY_OP_IC; }
238 virtual void FinishCode(Handle<Code> code) {
239 code->set_binary_op_type(operands_type_)
    [all...]
ic-ia32.cc 6 // * Redistributions of source code must retain the above copyright
61 // Generated code falls through if the receiver is a regular non-global
101 // in the dictionary, so code at miss_label must always call a backup
104 // case. The generated code assumes that the receiver has slow
158 // is in the dictionary, so code at miss_label must always call a
161 // that case. The generated code assumes that the receiver has slow
229 StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC);
245 StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC);
259 StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC);
819 // Add 1 to receiver->length, and go to common element store code for Objects
    [all...]
  /external/v8/src/
incremental-marking-inl.h 6 // * Redistributions of source code must retain the above copyright
66 Code* value) {
liveedit.h 6 // * Redistributions of source code must retain the above copyright
40 // A single change always has a form of a simple replacement (in pseudo-code):
45 // expectations (or number of parameters). If it didn't, function's code is
46 // patched with a newly compiled code. If it did change, enclosing function
48 // to them in a new script version. However, new version of code will
64 // in order to analyze whether function code maybe safely patched (with new
65 // code successfully reading existing data from function scopes). The Tracker
73 void RecordRootFunctionInfo(Handle<Code> code);
112 // In a code of a parent function replaces original function as embedde
    [all...]
frames-inl.h 6 // * Redistributions of source code must retain the above copyright
69 inline void StackHandler::Iterate(ObjectVisitor* v, Code* holder) const {
123 inline Code* StackFrame::LookupCode() const {
128 inline Code* StackFrame::GetContainingCode(Isolate* isolate, Address pc) {
129 return isolate->inner_pointer_to_code_cache()->GetCacheEntry(pc)->code;
builtins.cc 6 // * Redistributions of source code must retain the above copyright
151 // code below.
166 // changes this code has to be changed as well.
1666 Object* code = NULL; local
    [all...]
  /external/v8/src/x64/
lithium-codegen-x64.h 6 // * Redistributions of source code must retain the above copyright
86 // Try to generate code for the entire chunk, but it may fail if the
88 // code generation attempt succeeded.
91 // Finish the code by setting stack height, safepoint, and bailout
93 void FinishCode(Handle<Code> code);
95 // Deferred code support.
158 void AddDeferredCode(LDeferredCode* code) { deferred_.Add(code); }
160 // Code generation passes. Returns true if code generation shoul
    [all...]
deoptimizer-x64.cc 6 // * Redistributions of source code must retain the above copyright
55 // Get the optimized code.
56 Code* code = function->code();
59 // code patching below, and is not needed any more.
60 code->InvalidateRelocation();
65 // before the safepoint table (space was allocated there when the Code
68 Address instruction_start = function->code()->instruction_start();
73 DeoptimizationInputData::cast(code->deoptimization_data())
    [all...]
regexp-macro-assembler-x64.h 6 // * Redistributions of source code must retain the above copyright
34 #include "code.h"
109 static Result Match(Handle<Code> regexp,
116 static Result Execute(Code* code,
125 // If the code object is relocated, the return address is fixed before
128 Code* re_code,
190 // Initial size of code buffer.
216 // The registers containing a self pointer to this code's Code object
    [all...]
ic-x64.cc 6 // * Redistributions of source code must retain the above copyright
61 // Generated code falls through if the receiver is a regular non-global
106 // The generated code assumes that the receiver has slow properties,
161 // is in the dictionary, so code at miss_label must always call a
164 // that case. The generated code assumes that the receiver has slow
238 StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC);
253 StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC);
267 StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC);
810 // The generated code does not accept smi keys.
811 // The generated code falls through if both probes miss
    [all...]
code-stubs-x64.h 6 // * Redistributions of source code must retain the above copyright
82 // Flag that indicates how to generate code for the stub GenericBinaryOpStub.
85 NO_SMI_CODE_IN_STUB = 1 << 0 // Omit smi code in stub.
148 virtual int GetCodeKind() { return Code::UNARY_OP_IC; }
154 virtual void FinishCode(Handle<Code> code) {
155 code->set_unary_op_type(operand_type_);
234 virtual int GetCodeKind() { return Code::BINARY_OP_IC; }
240 virtual void FinishCode(Handle<Code> code) {
    [all...]
  /external/clang/unittests/Format/
FormatTest.cpp 23 std::string format(llvm::StringRef Code, unsigned Offset, unsigned Length,
27 FileID ID = Context.createInMemoryFile("input.cc", Code);
44 format(llvm::StringRef Code, const FormatStyle &Style = getLLVMStyle()) {
45 return format(Code, 0, Code.size(), Style);
48 std::string messUp(llvm::StringRef Code) {
49 std::string MessedUp(Code.str());
93 void verifyFormat(llvm::StringRef Code,
95 EXPECT_EQ(Code.str(), format(messUp(Code), Style))
    [all...]
  /external/elfutils/libelf/
gelf_xlate.c 20 additional right to link the code of Red Hat elfutils with code licensed
23 distribution of source code with any binary distribution and to
24 distribute linked combinations of the two. Non-GPL Code permitted under
25 this exception must only link to the code of Red Hat elfutils through
27 found in the source code files (the "Approved Interfaces"). The files
28 of Non-GPL Code may instantiate templates or use macros or inline
35 License in all respects for all of the Red Hat elfutils code and other
36 code used in conjunction with Red Hat elfutils except the Non-GPL Code
    [all...]
  /external/v8/src/arm/
deoptimizer-arm.cc 6 // * Redistributions of source code must retain the above copyright
53 // Get the optimized code.
54 Code* code = function->code();
55 Address code_start_address = code->instruction_start();
58 // code patching below, and is not needed any more.
59 code->InvalidateRelocation();
64 DeoptimizationInputData::cast(code->deoptimization_data());
81 ASSERT(call_address + patch_size() <= code->instruction_end())
    [all...]
ic-arm.cc 6 // * Redistributions of source code must retain the above copyright
33 #include "code-stubs.h"
65 // Generated code falls through if the receiver is a regular non-global
118 // The generated code assumes that the receiver has slow properties,
167 // The generated code assumes that the receiver has slow properties,
227 StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC);
244 StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC);
259 StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC);
383 // The generated code does not accept smi keys.
384 // The generated code falls through if both probes miss
    [all...]
  /external/v8/src/mips/
deoptimizer-mips.cc 6 // * Redistributions of source code must retain the above copyright
51 // Get the optimized code.
52 Code* code = function->code();
53 Address code_start_address = code->instruction_start();
56 // code patching below, and is not needed any more.
57 code->InvalidateRelocation();
62 DeoptimizationInputData::cast(code->deoptimization_data());
79 ASSERT(call_address + patch_size() <= code->instruction_end())
    [all...]
ic-mips.cc 6 // * Redistributions of source code must retain the above copyright
35 #include "code-stubs.h"
62 // Generated code falls through if the receiver is a regular non-global
114 // The generated code assumes that the receiver has slow properties,
167 // The generated code assumes that the receiver has slow properties,
229 StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC);
246 StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC);
261 StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC);
385 // The generated code does not accept smi keys.
386 // The generated code falls through if both probes miss
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 120 // state. e.g. .code 16, .code 32.
165 OS << '\n'; // Indent code with newline.
263 OS << '\n'; // Indent code with newline.
493 const char *Code) const {
494 if (!strcmp(Code, "private")) {
496 } else if (!strcmp(Code, "comment")) {
498 } else if (!strcmp(Code, "uid")) {
512 Msg << "Unknown special formatter '" << Code
  /external/llvm/lib/MC/
MCAsmStreamer.cpp 252 virtual void EmitWin64EHPushFrame(bool Code);
700 assert(Directive && "Invalid size for machine code value!");
766 default: llvm_unreachable("Invalid size for machine code value!");
793 default: llvm_unreachable("Invalid size for machine code value!");
    [all...]
  /external/v8/tools/
profile.js 6 // * Redistributions of source code must retain the above copyright
55 * code entries.
67 * Enum for code state regarding its dynamic optimization.
85 * @param {number} addr Address of the unknown code.
98 * @param {string} name Code entry name.
112 * Registers statically compiled code entry.
114 * @param {string} name Code entry name.
128 * Registers dynamic (JIT-compiled) code entry.
130 * @param {string} type Code entry type.
131 * @param {string} name Code entry name
    [all...]

Completed in 880 milliseconds

1 2 3 4 5 6 78 91011>>