HomeSort by relevance Sort by last modified time
    Searched refs:Code (Results 726 - 750 of 1922) sorted by null

<<21222324252627282930>>

  /external/v8/src/
deoptimizer.cc 2 // Use of this source code is governed by a BSD-style license that can be
50 Code* Deoptimizer::FindDeoptimizingCode(Address addr) {
52 // Search all deoptimizing code in the native context of the function.
57 Code* code = Code::cast(element); local
58 CHECK(code->kind() == Code::OPTIMIZED_FUNCTION);
59 if (code->contains(addr)) return code;
215 Code* code = function->code(); local
247 Code* code = it.frame()->LookupCode(); local
284 Code* code = Code::cast(element); local
386 Code* code = Code::cast(element); local
613 Code* code = Code::cast(element); local
2767 Code* code = shared->code(); local
    [all...]
runtime-profiler.cc 2 // Use of this source code is governed by a BSD-style license that can be
10 #include "src/code-stubs.h"
42 // Maximum size in bytes of generate code for a function to allow OSR.
53 // Maximum size in bytes of generated code for a function to be optimized
61 // We aren't using the code size multiplier here because there is no
105 if (function->code()->kind() == Code::FUNCTION) {
106 Code* shared_code = function->shared()->code();
177 // If the code is not optimizable, don't try OSR
    [all...]
deoptimizer.h 2 // Use of this source code is governed by a BSD-style license that can be
396 static DeoptInfo GetDeoptInfo(Code* code, byte* from);
430 Handle<Code> compiled_code() const { return Handle<Code>(compiled_code_); }
451 // information of a code object to perform lazy deoptimization
455 static void EnsureRelocSpaceForLazyDeoptimization(Handle<Code> code);
457 // Deoptimize the function now. Its current optimized code will never be run
458 // again and any activations of the optimized code will get deoptimized whe
    [all...]
code-stubs.cc 2 // Use of this source code is governed by a BSD-style license that can be
5 #include "src/code-stubs.h"
12 #include "src/code-factory.h"
13 #include "src/code-stub-assembler.h"
76 bool CodeStub::FindCodeInCache(Code** code_out) {
80 *code_out = Code::cast(stubs->ValueAt(index));
87 void CodeStub::RecordCodeGeneration(Handle<Code> code) {
92 AbstractCode::cast(*code), os.str().c_str()));
94 counters->total_stubs_code_size()->Increment(code->instruction_size())
156 Code* code; local
274 Handle<Code> code; local
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 414 // This is the declared size of code values used for the current block, in
475 unsigned Code = ReadCode();
476 if (Code == bitc::END_BLOCK) {
483 if (Code == bitc::ENTER_SUBBLOCK)
486 if (Code == bitc::DEFINE_ABBREV &&
494 return BitstreamEntry::getRecord(Code);
521 /// Having read the ENTER_SUBBLOCK code, read the BlockID for the block.
530 // don't care what code widths are used inside of it.
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 181 OS << '\n'; // Indent code with newline.
279 OS << '\n'; // Indent code with newline.
508 const char *Code) const {
509 if (!strcmp(Code, "private")) {
512 } else if (!strcmp(Code, "comment")) {
514 } else if (!strcmp(Code, "uid")) {
528 Msg << "Unknown special formatter '" << Code
  /external/v8/src/ic/
ic.cc 2 // Use of this source code is governed by a BSD-style license that can be
151 static_cast<int>(pc() - function->code()->instruction_start());
184 // To improve the performance of the (much used) IC code, we unfold a few
185 // levels of the stack frame iteration code. This yields a ~35% speedup when
235 Code* target = this->target();
236 Code::Kind kind = target->kind();
237 if (kind == Code::BINARY_OP_IC) {
239 } else if (kind == Code::COMPARE_IC) {
241 } else if (kind == Code::TO_BOOLEAN_IC) {
256 bool IC::ShouldPushPopSlotAndVector(Code::Kind kind)
1099 Handle<Object> code; local
1272 Handle<Code> code = Handle<Code>::cast(handler); local
1486 Handle<Code> code = compiler.CompileLoadCallback( local
1506 Handle<Code> code = local
1520 Handle<Code> code = compiler.CompileLoadGlobal(cell, lookup->name(), local
1908 auto code = stub.GetCodeCopyFromTemplate(holder, cell); local
2056 Handle<Code> code = PropertyCellStoreHandler( local
2086 Handle<Code> code = compiler.CompileStoreCallback( local
2099 Handle<Code> code = compiler.CompileStoreCallback( local
2123 auto code = PropertyCellStoreHandler(isolate(), receiver, local
2897 Code* code = NULL; local
2986 Handle<Code> code = stub.GetCode(); local
    [all...]
  /external/v8/src/profiler/
profiler-listener.cc 2 // Use of this source code is governed by a BSD-style license that can be
35 AbstractCode* code, const char* name) {
38 rec->start = code->address();
42 CpuProfileNode::kNoColumnNumberInfo, NULL, code->instruction_start());
43 RecordInliningInfo(rec->entry, code);
44 rec->size = code->ExecutableSize();
49 AbstractCode* code, Name* name) {
52 rec->start = code->address();
56 CpuProfileNode::kNoColumnNumberInfo, NULL, code->instruction_start());
57 RecordInliningInfo(rec->entry, code);
    [all...]
  /tools/dexter/slicer/export/slicer/
dex_ir.h 68 struct Code;
226 struct Code : public Node {
250 Code* code; member in struct:ir::EncodedMethod
373 std::vector<own<Code>> code; member in struct:ir::DexFile
454 void Track(Code* p) { PushOwn(code, p); }
  /external/pdfium/xfa/fwl/
cfwl_listbox.cpp 2 // Use of this source code is governed by a BSD-style license that can be
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
836 CFWL_EventScroll::Code dwCode,
843 case CFWL_EventScroll::Code::Min: {
847 case CFWL_EventScroll::Code::Max: {
851 case CFWL_EventScroll::Code::StepBackward: {
857 case CFWL_EventScroll::Code::StepForward: {
863 case CFWL_EventScroll::Code::PageBackward: {
869 case CFWL_EventScroll::Code::PageForward: {
875 case CFWL_EventScroll::Code::Pos
    [all...]
  /external/v8/src/full-codegen/
full-codegen.h 2 // Use of this source code is governed by a BSD-style license that can be
13 #include "src/code-factory.h"
14 #include "src/code-stubs.h"
31 // Full code generator.
52 // Platform-specific code size multiplier.
111 // return and give it a chance to generate cleanup code. Return the
248 // variable. May emit code to traverse the context chain, loading the
316 // Generate debug code that verifies that our static tracking of the operand
320 // Generate code to create an iterator result object. The "value" property is
327 // has been matched and all code generated; false otherwise
    [all...]
  /external/llvm/lib/MC/MCParser/
COFFAsmParser.cpp 162 Code = 1 << 1,
204 if ((SecFlags & Code) == 0)
223 SecFlags |= Code;
244 if (SecFlags & Code)
707 bool Code = false;
713 if (CodeID != "code")
714 return Error(startLoc, "expected @code");
715 Code = true;
723 getStreamer().EmitWinCFIPushFrame(Code);
761 // violation so this validation code is disabled
    [all...]
  /external/v8/src/arm/
assembler-arm-inl.h 8 // - Redistributions of source code must retain the above copyright notice,
33 // The original source code covered by the above license above has been modified
60 // absolute code pointer inside code object moves with the code object.
81 // by the serializer and expects the address to reside within the code
200 Code* RelocInfo::code_age_stub() {
202 return Code::GetCodeFromTargetAddress(
208 void RelocInfo::set_code_age_stub(Code* stub,
230 Object* target_code = Code::GetCodeFromTargetAddress(target)
    [all...]
code-stubs-arm.h 2 // Use of this source code is governed by a BSD-style license that can be
52 minor_key_ = ObjectBits::encode(object.code()) |
53 ValueBits::encode(value.code()) |
54 AddressBits::encode(address.code()) |
80 static Mode GetMode(Code* stub) {
100 static void Patch(Code* stub, Mode mode) {
200 void Activate(Code* code) override {
201 code->GetHeap()->incremental_marking()->ActivateGeneratedStub(code); variable
    [all...]
  /external/v8/src/compiler/
wasm-compiler.h 2 // Use of this source code is governed by a BSD-style license that can be
57 Handle<Code> FinishCompilation();
59 static Handle<Code> CompileWasmFunction(wasm::ErrorThrower* thrower,
95 // Wraps a JS function, producing a code object that can be called from WASM.
96 Handle<Code> CompileWasmToJSWrapper(Isolate* isolate, Handle<JSReceiver> target,
102 // Wraps a given wasm code object, producing a code object.
103 Handle<Code> CompileJSToWasmWrapper(Isolate* isolate,
105 Handle<Code> wasm_code, uint32_t index);
109 Handle<Code> CompileWasmInterpreterEntry(Isolate* isolate, uint32_t func_index
    [all...]
  /external/v8/tools/
profile.js 6 // * Redistributions of source code must retain the above copyright
56 * code entries.
68 * Enum for code state regarding its dynamic optimization.
86 * @param {number} addr Address of the unknown code.
99 * @param {string} name Code entry name.
113 * Registers statically compiled code entry.
115 * @param {string} name Code entry name.
129 * Registers dynamic (JIT-compiled) code entry.
131 * @param {string} type Code entry type.
132 * @param {string} name Code entry name
    [all...]
  /external/llvm/lib/Target/Hexagon/
RDFGraph.cpp 26 // Printing functions. Have them here first, so that the rest of the code
55 case NodeAttrs::Code:
408 if (NA.Addr->getType() == NodeAttrs::Code)
429 // Get the first member of the code node.
431 if (Code.FirstM == 0)
433 return G.addr<NodeBase*>(Code.FirstM);
436 // Get the last member of the code node.
438 if (Code.LastM == 0)
440 return G.addr<NodeBase*>(Code.LastM);
443 // Add node NA at the end of the member list of the given code node
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCStreamer.h 1 //===- MCStreamer.h - High-level Streaming Machine Code Output --*- C++ -*-===//
40 /// MCStreamer - Streaming machine code generation interface. This interface
78 /// Indicator of whether the previous data-or-code indicator was for
79 /// code or not. Used to determine when we need to emit a new indicator.
82 Code,
161 /// emitting code to.
169 /// emitting code to.
204 /// SwitchSection - Set the current section where code is being emitted to
218 /// SwitchSectionNoChange - Set the current section where code is being
266 /// EmitCodeRegion - Emit a label that marks the beginning of a code
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/PowerPC/InstPrinter/
PPCInstPrinter.cpp 94 unsigned Code = MI->getOperand(OpNo).getImm();
96 switch ((PPC::Predicate)Code) {
113 if (Code == PPC::PRED_ALWAYS) return;
  /external/tensorflow/tensorflow/cc/saved_model/
loader.cc 59 return Status(error::Code::NOT_FOUND,
89 return Status(error::Code::NOT_FOUND,
239 return Status(error::Code::NOT_FOUND,
  /external/tensorflow/tensorflow/core/kernels/data/
prefetch_dataset_op.cc 284 CodeKey(index), static_cast<int64>(status.code())));
296 error::Code code = static_cast<error::Code>(code_int); local
298 if (code != error::Code::OK) {
302 *status = Status(code, error_message);
310 return full_name(strings::StrCat("status[", index, "].code"));
  /external/v8/src/arm64/
code-stubs-arm64.h 2 // Use of this source code is governed by a BSD-style license that can be
84 minor_key_ = ObjectBits::encode(object.code()) |
85 ValueBits::encode(value.code()) |
86 AddressBits::encode(address.code()) |
102 static Mode GetMode(Code* stub) {
109 DCHECK(instr2->IsPCRelAddressing() && (instr2->Rd() == xzr.code()));
113 DCHECK(instr1->IsPCRelAddressing() && (instr1->Rd() == xzr.code()));
131 static void Patch(Code* stub, Mode mode) {
291 void Activate(Code* code) override
292 code->GetHeap()->incremental_marking()->ActivateGeneratedStub(code); variable
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-codegen-ia32.h 2 // Use of this source code is governed by a BSD-style license that can be
73 // Try to generate code for the entire chunk, but it may fail if the
75 // code generation attempt succeeded.
78 // Finish the code by setting stack height, safepoint, and bailout
80 void FinishCode(Handle<Code> code);
82 // Deferred code support.
137 void AddDeferredCode(LDeferredCode* code) { deferred_.Add(code, zone()); }
142 // Code generation passes. Returns true if code generation shoul
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-codegen-ppc.h 2 // Use of this source code is governed by a BSD-style license that can be
85 // Try to generate code for the entire chunk, but it may fail if the
87 // code generation attempt succeeded.
90 // Finish the code by setting stack height, safepoint, and bailout
92 void FinishCode(Handle<Code> code);
94 // Deferred code support.
150 void AddDeferredCode(LDeferredCode* code) { deferred_.Add(code, zone()); }
155 // Code generation passes. Returns true if code generation shoul
    [all...]
  /external/v8/src/crankshaft/s390/
lithium-codegen-s390.h 2 // Use of this source code is governed by a BSD-style license that can be
84 // Try to generate code for the entire chunk, but it may fail if the
86 // code generation attempt succeeded.
89 // Finish the code by setting stack height, safepoint, and bailout
91 void FinishCode(Handle<Code> code);
93 // Deferred code support.
150 void AddDeferredCode(LDeferredCode* code) { deferred_.Add(code, zone()); }
155 // Code generation passes. Returns true if code generation shoul
    [all...]

Completed in 1301 milliseconds

<<21222324252627282930>>