Searched refs:code (Results 201 - 225 of 1698) sorted by relevance

1234567891011>>

/openjdk10/nashorn/test/script/basic/es6/
H A Dlet_different_types.js5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
33 function tryIt (code) {
35 eval(code)
H A Dlet_loops.js5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
34 function tryIt (code) {
36 eval(code)
/openjdk10/langtools/test/tools/javac/processing/rounds/
H A DOverwriteBetweenCompilations.java5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
89 String code = pass != 2 ? GENERATED_INIT : GENERATED_UPDATE;
90 code = code.replace("NAME", "GeneratedSource");
91 out.write(code);
96 String code = pass != 2 ? GENERATED_INIT : GENERATED_UPDATE;
97 code = code
[all...]
/openjdk10/nashorn/samples/
H A Dshell.js8 * - Redistributions of source code must retain the above copyright
37 * used, evaluates argument(s) as JavaScript code.
60 // special 'eval' command to evaluate JS code
62 var code = line.substring('eval'.length);
63 var res = eval(code);
/openjdk10/nashorn/test/script/trusted/
H A DNASHORN-653.js5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
25 * NASHORN-653 : Various problems with isTerminal and dead code generation from ASM
74 function runScriptEngine(opts, code) {
89 engine.eval(code);
99 var result = runScriptEngine([ "--print-code" ], script);
102 fail("ASM genenerates NOP*/ATHROW sequences - dead code is still in the script");
/openjdk10/nashorn/test/script/nosecurity/
H A DJDK-8060688.js5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
25 * JDK-8060688: Nashorn: Generated script class name fails --verify-code for names with special chars
37 var e = factory.getScriptEngine("--verify-code");
39 function evalAndCheck(code) {
41 e.eval(code);
/openjdk10/hotspot/test/compiler/jvmci/jdk.vm.ci.code.test/src/jdk/vm/ci/code/test/
H A DTestAssembler.java5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
24 package jdk.vm.ci.code.test;
26 import jdk.vm.ci.code.CallingConvention;
27 import jdk.vm.ci.code.CodeCacheProvider;
28 import jdk.vm.ci.code.DebugInfo;
29 import jdk.vm.ci.code.Register;
30 import jdk.vm.ci.code.StackSlot;
31 import jdk.vm.ci.code
192 protected final Buffer code; field in class:TestAssembler
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/classfile/
H A DClassfile.java5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
37 * Container for objects representing the {@code Code} attributes parsed from a class file.
54 * Creates a {@link Classfile} by parsing the class file bytes for {@code type} loadable from
55 * {@code context}.
91 for (ClassfileBytecode code : codeAttributes) {
92 ResolvedJavaMethod method = code.getMethod();
94 return code;
128 ClassfileBytecode code
[all...]
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/doclint/
H A DEntity.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
42 * If you write code that depends on this, you do so at your own
43 * risk. This code and its internal interfaces are subject to change
300 public final int code; field in class:Entity
302 private Entity(int code) { argument
303 this.code = code;
314 isValid(int code) argument
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.code/src/org/graalvm/compiler/code/
H A DHexCodeFileDisassemblerProvider.java5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
23 package org.graalvm.compiler.code;
29 import jdk.vm.ci.code.CodeCacheProvider;
30 import jdk.vm.ci.code.CodeUtil;
31 import jdk.vm.ci.code.CodeUtil.DefaultRefMapFormatter;
32 import jdk.vm.ci.code.CodeUtil.RefMapFormatter;
33 import jdk.vm.ci.code.InstalledCode;
34 import jdk.vm.ci.code
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/spi/
H A DCodeGenProviders.java5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
25 import jdk.vm.ci.code.CodeCacheProvider;
30 * A set of providers which are required for LIR and/or code generation. Some may not be present
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/asm/
H A DDataBuilder.java5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
25 import org.graalvm.compiler.code.DataSection.Data;
32 * When the method returns true, then Graal must produce detailed information that allows code
34 * code that describe the exact locations of operands within instructions.
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.runtime/src/org/graalvm/compiler/runtime/
H A DRuntimeProvider.java5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
25 import jdk.vm.ci.code.Architecture;
/openjdk10/corba/src/jdk.rmic/share/classes/sun/rmi/rmic/iiop/
H A DContextStack.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
98 * Return true if {@code env.nerrors > 0}.
128 public void setNewContextCode(int code) { argument
129 newCode = code;
133 * Get the current context code.
343 * Get a string for the given context code...
350 int code
387 set(int code, ContextElement element) argument
444 private int code = 0; field in class:TypeContext
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/
H A DCompilationRequestIdentifier.java5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
25 import jdk.vm.ci.code.CompilationRequest;
36 * {@link CompilationRequestIdentifier}. Returns {@code null} if the
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/framemap/
H A DReferenceMapBuilder.java5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
27 import jdk.vm.ci.code.ReferenceMap;
/openjdk10/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/
H A DForeignGotCallSiteRelocationSymbol.java5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
29 import jdk.vm.ci.code.site.Call;
64 byte[] code = masm.getPLTJumpCode(); // It includes alignment nops.
66 dataBuilder.getBinaryContainer().appendCodeBytes(code, 0, code.length);
/openjdk10/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.runtime/src/jdk/vm/ci/runtime/
H A DJVMCIRuntime.java5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
25 import jdk.vm.ci.code.Architecture;
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/
H A DConstantDoubleValue.java5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
25 package sun.jvm.hotspot.code;
H A DConstantIntValue.java5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
25 package sun.jvm.hotspot.code;
H A DConstantLongValue.java5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
25 package sun.jvm.hotspot.code;
/openjdk10/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.code/src/jdk/vm/ci/code/
H A DValueKindFactory.java5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
23 package jdk.vm.ci.code;
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/corba/
H A DTypeCodeFactory.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
29 void setTypeCode(String id, TypeCodeImpl code); argument
/openjdk10/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.code/src/jdk/vm/ci/code/stack/
H A DInspectedFrame.java5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
23 package jdk.vm.ci.code.stack;
33 * Returns the value of the object local at {@code index}. This value is a copy iff
39 * Returns whether the local at {@code index} is a virtual object, and therefore the object
69 * {@code method.equals(getMethod())}, but can be implemented more efficiently.
H A DStackIntrospection.java5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
23 package jdk.vm.ci.code.stack;
35 * @param initialMethods if this is non-{@code null}, then the stack trace will start at these
37 * @param matchingMethods if this is non-{@code null}, then only matching stack frames are

Completed in 231 milliseconds

1234567891011>>