├── .clang-format ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── ci.hocon ├── docs ├── ARCHITECTURE.md ├── CI.md ├── CONTRIBUTING.md ├── DEBUGGING.md ├── FAQ.md ├── INTEROP.md ├── PUBLICATIONS.md ├── TESTS.md └── index.md ├── include └── truffle.h ├── mx.sulong ├── copyrights │ ├── llvm.copyright.star.regex │ ├── no.copyright.hash.regex │ ├── oracle.copyright.regex.hash │ ├── oracle.copyright.regex.star │ └── overrides ├── eclipse-settings │ └── org.eclipse.jdt.core.prefs ├── mx_buildtools.py ├── mx_sulong.py ├── mx_sulong_benchmarks.py ├── mx_testsuites.py ├── native-image.properties └── suite.py ├── projects ├── com.oracle.truffle.llvm.asm.amd64 │ └── src │ │ └── com │ │ └── oracle │ │ └── truffle │ │ └── llvm │ │ └── asm │ │ └── amd64 │ │ ├── Argument.java │ │ ├── AsmArgumentOperand.java │ │ ├── AsmFactory.java │ │ ├── AsmImmediateOperand.java │ │ ├── AsmMemoryOperand.java │ │ ├── AsmOperand.java │ │ ├── AsmParseException.java │ │ ├── AsmRegisterOperand.java │ │ ├── InlineAssembly.g4 │ │ ├── InlineAssemblyLexer.java │ │ └── InlineAssemblyParser.java ├── com.oracle.truffle.llvm.launcher │ └── src │ │ └── com │ │ └── oracle │ │ └── truffle │ │ └── llvm │ │ └── launcher │ │ └── LLVMLauncher.java ├── com.oracle.truffle.llvm.libraries.bitcode │ ├── Makefile │ ├── include │ │ └── polyglot.h │ ├── libcxx │ │ ├── __config │ │ ├── __nullptr │ │ ├── cstddef │ │ ├── cstdint │ │ ├── cstdlib │ │ ├── cstring │ │ ├── exception │ │ ├── iosfwd │ │ ├── new │ │ ├── stdexcept │ │ ├── type_traits │ │ └── typeinfo │ ├── libcxxabi │ │ ├── __cxxabi_config.h │ │ ├── __threading_support │ │ ├── abort_message.cpp │ │ ├── abort_message.h │ │ ├── cxa_default_handlers.cpp │ │ ├── cxa_exception.cpp │ │ ├── cxa_exception.hpp │ │ ├── cxa_exception_storage.cpp │ │ ├── cxa_handlers.cpp │ │ ├── cxa_handlers.hpp │ │ ├── cxa_virtual.cpp │ │ ├── cxxabi.h │ │ ├── include │ │ │ └── refstring.h │ │ ├── private_typeinfo.cpp │ │ ├── private_typeinfo.h │ │ ├── stdlib_exception.cpp │ │ ├── stdlib_new_delete.cpp │ │ ├── stdlib_stdexcept.cpp │ │ └── stdlib_typeinfo.cpp │ └── src │ │ ├── abort.c │ │ ├── assert.c │ │ ├── builtin.c │ │ ├── clock.c │ │ ├── clone.c │ │ ├── complex.c │ │ ├── crt0.c │ │ ├── exec.c │ │ ├── exit.c │ │ ├── fork.c │ │ ├── memcpy.c │ │ ├── pthreads.c │ │ ├── qsort.c │ │ ├── setjmp.c │ │ ├── stat.c │ │ ├── string.c │ │ ├── sulong_dispose_context.c │ │ ├── syscall.h │ │ └── unsupported.h ├── com.oracle.truffle.llvm.libraries.native │ ├── Makefile │ └── src │ │ ├── fp80.c │ │ ├── misc.c │ │ └── posix.c ├── com.oracle.truffle.llvm.nodes │ └── src │ │ └── com │ │ └── oracle │ │ └── truffle │ │ └── llvm │ │ └── nodes │ │ ├── asm │ │ ├── LLVMAMD64AdcNode.java │ │ ├── LLVMAMD64AddNode.java │ │ ├── LLVMAMD64AndNode.java │ │ ├── LLVMAMD64BsfNode.java │ │ ├── LLVMAMD64BsrNode.java │ │ ├── LLVMAMD64BswapNode.java │ │ ├── LLVMAMD64CmpNode.java │ │ ├── LLVMAMD64CmpXchgNode.java │ │ ├── LLVMAMD64CpuidNode.java │ │ ├── LLVMAMD64DecNode.java │ │ ├── LLVMAMD64DivNode.java │ │ ├── LLVMAMD64IdivNode.java │ │ ├── LLVMAMD64ImmNode.java │ │ ├── LLVMAMD64ImulNode.java │ │ ├── LLVMAMD64IncNode.java │ │ ├── LLVMAMD64LoadFlags.java │ │ ├── LLVMAMD64ModNode.java │ │ ├── LLVMAMD64MulNode.java │ │ ├── LLVMAMD64NegNode.java │ │ ├── LLVMAMD64NotNode.java │ │ ├── LLVMAMD64OrNode.java │ │ ├── LLVMAMD64PopNode.java │ │ ├── LLVMAMD64PushNode.java │ │ ├── LLVMAMD64RdRandNode.java │ │ ├── LLVMAMD64RdSeedNode.java │ │ ├── LLVMAMD64RdtscNode.java │ │ ├── LLVMAMD64RepNode.java │ │ ├── LLVMAMD64RolNode.java │ │ ├── LLVMAMD64RorNode.java │ │ ├── LLVMAMD64SalNode.java │ │ ├── LLVMAMD64SarNode.java │ │ ├── LLVMAMD64SetFlagNode.java │ │ ├── LLVMAMD64SetNode.java │ │ ├── LLVMAMD64ShlNode.java │ │ ├── LLVMAMD64ShrNode.java │ │ ├── LLVMAMD64StoreFlags.java │ │ ├── LLVMAMD64StosNode.java │ │ ├── LLVMAMD64SubNode.java │ │ ├── LLVMAMD64Ud2Node.java │ │ ├── LLVMAMD64XaddNode.java │ │ ├── LLVMAMD64XchgNode.java │ │ ├── LLVMAMD64XorNode.java │ │ ├── base │ │ │ ├── LLVMInlineAssemblyBlockNode.java │ │ │ └── LLVMInlineAssemblyPrologueNode.java │ │ ├── support │ │ │ ├── LLVMAMD64AddressComputationNode.java │ │ │ ├── LLVMAMD64BarrelShifter.java │ │ │ ├── LLVMAMD64Flags.java │ │ │ ├── LLVMAMD64FrameSlotNode.java │ │ │ ├── LLVMAMD64GetTlsNode.java │ │ │ ├── LLVMAMD64ReadAddressNode.java │ │ │ ├── LLVMAMD64ReadRegisterNode.java │ │ │ ├── LLVMAMD64RegisterToLongNode.java │ │ │ ├── LLVMAMD64Target.java │ │ │ ├── LLVMAMD64ToI8Node.java │ │ │ ├── LLVMAMD64ToRegisterNode.java │ │ │ ├── LLVMAMD64UpdateFlagsNode.java │ │ │ ├── LLVMAMD64WriteAddressRegisterNode.java │ │ │ ├── LLVMAMD64WriteBooleanNode.java │ │ │ ├── LLVMAMD64WriteNode.java │ │ │ ├── LLVMAMD64WriteTupelNode.java │ │ │ ├── LLVMAMD64WriteValueNode.java │ │ │ ├── LLVMString.java │ │ │ ├── LongDivision.java │ │ │ └── LongMultiplication.java │ │ └── syscall │ │ │ ├── LLVMAMD64ArchPrctl.java │ │ │ ├── LLVMAMD64Error.java │ │ │ ├── LLVMAMD64Memory.java │ │ │ ├── LLVMAMD64Syscall.java │ │ │ ├── LLVMAMD64SyscallAcceptNode.java │ │ │ ├── LLVMAMD64SyscallAccessNode.java │ │ │ ├── LLVMAMD64SyscallArchPrctlNode.java │ │ │ ├── LLVMAMD64SyscallBindNode.java │ │ │ ├── LLVMAMD64SyscallBrkNode.java │ │ │ ├── LLVMAMD64SyscallChmodNode.java │ │ │ ├── LLVMAMD64SyscallChownNode.java │ │ │ ├── LLVMAMD64SyscallClockGetTimeNode.java │ │ │ ├── LLVMAMD64SyscallCloseNode.java │ │ │ ├── LLVMAMD64SyscallConnectNode.java │ │ │ ├── LLVMAMD64SyscallDup2Node.java │ │ │ ├── LLVMAMD64SyscallDupNode.java │ │ │ ├── LLVMAMD64SyscallExitNode.java │ │ │ ├── LLVMAMD64SyscallFaccessatNode.java │ │ │ ├── LLVMAMD64SyscallFcntlNode.java │ │ │ ├── LLVMAMD64SyscallFstatNode.java │ │ │ ├── LLVMAMD64SyscallFstatfsNode.java │ │ │ ├── LLVMAMD64SyscallFtruncateNode.java │ │ │ ├── LLVMAMD64SyscallFutexNode.java │ │ │ ├── LLVMAMD64SyscallGetPpidNode.java │ │ │ ├── LLVMAMD64SyscallGetcwdNode.java │ │ │ ├── LLVMAMD64SyscallGetdents64Node.java │ │ │ ├── LLVMAMD64SyscallGetegidNode.java │ │ │ ├── LLVMAMD64SyscallGeteuidNode.java │ │ │ ├── LLVMAMD64SyscallGetgidNode.java │ │ │ ├── LLVMAMD64SyscallGetgroupsNode.java │ │ │ ├── LLVMAMD64SyscallGetpgidNode.java │ │ │ ├── LLVMAMD64SyscallGetpidNode.java │ │ │ ├── LLVMAMD64SyscallGetsocknameNode.java │ │ │ ├── LLVMAMD64SyscallGetsockoptNode.java │ │ │ ├── LLVMAMD64SyscallGettidNode.java │ │ │ ├── LLVMAMD64SyscallGetuidNode.java │ │ │ ├── LLVMAMD64SyscallIoctlNode.java │ │ │ ├── LLVMAMD64SyscallListenNode.java │ │ │ ├── LLVMAMD64SyscallLseekNode.java │ │ │ ├── LLVMAMD64SyscallLstatNode.java │ │ │ ├── LLVMAMD64SyscallMmapNode.java │ │ │ ├── LLVMAMD64SyscallNode.java │ │ │ ├── LLVMAMD64SyscallOpenNode.java │ │ │ ├── LLVMAMD64SyscallPipe2Node.java │ │ │ ├── LLVMAMD64SyscallPipeNode.java │ │ │ ├── LLVMAMD64SyscallPollNode.java │ │ │ ├── LLVMAMD64SyscallReadNode.java │ │ │ ├── LLVMAMD64SyscallReadvNode.java │ │ │ ├── LLVMAMD64SyscallRecvfromNode.java │ │ │ ├── LLVMAMD64SyscallRecvmsgNode.java │ │ │ ├── LLVMAMD64SyscallRenameNode.java │ │ │ ├── LLVMAMD64SyscallRenameatNode.java │ │ │ ├── LLVMAMD64SyscallRtSigactionNode.java │ │ │ ├── LLVMAMD64SyscallRtSigprocmaskNode.java │ │ │ ├── LLVMAMD64SyscallSendfileNode.java │ │ │ ├── LLVMAMD64SyscallSendmsgNode.java │ │ │ ├── LLVMAMD64SyscallSendtoNode.java │ │ │ ├── LLVMAMD64SyscallSetTidAddressNode.java │ │ │ ├── LLVMAMD64SyscallSetgidNode.java │ │ │ ├── LLVMAMD64SyscallSetsockoptNode.java │ │ │ ├── LLVMAMD64SyscallSetuidNode.java │ │ │ ├── LLVMAMD64SyscallSocketNode.java │ │ │ ├── LLVMAMD64SyscallStatNode.java │ │ │ ├── LLVMAMD64SyscallStatfsNode.java │ │ │ ├── LLVMAMD64SyscallSyslogNode.java │ │ │ ├── LLVMAMD64SyscallUnameNode.java │ │ │ ├── LLVMAMD64SyscallUnlinkNode.java │ │ │ ├── LLVMAMD64SyscallUtimensatNode.java │ │ │ ├── LLVMAMD64SyscallWriteNode.java │ │ │ ├── LLVMAMD64SyscallWritevNode.java │ │ │ ├── LLVMAMD64Time.java │ │ │ ├── LLVMAMD64UnknownSyscallNode.java │ │ │ ├── LLVMInfo.java │ │ │ ├── LLVMPath.java │ │ │ ├── LLVMProcessStat.java │ │ │ └── posix │ │ │ └── LLVMAMD64PosixCallNode.java │ │ ├── base │ │ ├── LLVMBasicBlockNode.java │ │ ├── LLVMFrameNuller.java │ │ └── LLVMFrameNullerUtil.java │ │ ├── cast │ │ ├── LLVMTo80BitFloatingNode.java │ │ ├── LLVMToAddressNode.java │ │ ├── LLVMToDoubleNode.java │ │ ├── LLVMToFloatNode.java │ │ ├── LLVMToI16Node.java │ │ ├── LLVMToI1Node.java │ │ ├── LLVMToI32Node.java │ │ ├── LLVMToI64Node.java │ │ ├── LLVMToI8Node.java │ │ ├── LLVMToVarINode.java │ │ ├── LLVMToVectorNode.java │ │ └── LLVMToVectorZeroExtNode.java │ │ ├── control │ │ ├── LLVMBrUnconditionalNode.java │ │ ├── LLVMConditionalBranchNode.java │ │ ├── LLVMDispatchBasicBlockNode.java │ │ ├── LLVMIndirectBranchNode.java │ │ ├── LLVMRetNode.java │ │ ├── LLVMSwitchNode.java │ │ └── LLVMWritePhisNode.java │ │ ├── func │ │ ├── LLVMArgNode.java │ │ ├── LLVMCallNode.java │ │ ├── LLVMDispatchNode.java │ │ ├── LLVMFunctionStartNode.java │ │ ├── LLVMGlobalRootNode.java │ │ ├── LLVMInlineAssemblyRootNode.java │ │ ├── LLVMInvokeNode.java │ │ ├── LLVMLandingpadNode.java │ │ ├── LLVMLookupDispatchNode.java │ │ ├── LLVMNativeCallUtils.java │ │ ├── LLVMNativeDispatchNode.java │ │ ├── LLVMOptionalArgNode.java │ │ ├── LLVMRaiseExceptionNode.java │ │ ├── LLVMResumeNode.java │ │ └── LLVMTypeIdForExceptionNode.java │ │ ├── intrinsics │ │ ├── c │ │ │ ├── LLVMAbort.java │ │ │ ├── LLVMCMathsIntrinsics.java │ │ │ ├── LLVMCTypeIntrinsics.java │ │ │ ├── LLVMExit.java │ │ │ ├── LLVMMemIntrinsic.java │ │ │ ├── LLVMSignal.java │ │ │ ├── LLVMSyscall.java │ │ │ └── LLVMTruffleReadBytes.java │ │ ├── interop │ │ │ ├── LLVMLoadLibrary.java │ │ │ ├── LLVMPolyglotAsString.java │ │ │ ├── LLVMPolyglotBoxedPredicate.java │ │ │ ├── LLVMPolyglotEval.java │ │ │ ├── LLVMPolyglotExport.java │ │ │ ├── LLVMPolyglotFromString.java │ │ │ ├── LLVMPolyglotGetStringSize.java │ │ │ ├── LLVMPolyglotImport.java │ │ │ ├── LLVMPolyglotIsValue.java │ │ │ ├── LLVMPolyglotJavaType.java │ │ │ ├── LLVMPolyglotNewInstance.java │ │ │ ├── LLVMPolyglotPredicate.java │ │ │ ├── LLVMPolyglotRemove.java │ │ │ ├── LLVMReadCharsetNode.java │ │ │ ├── LLVMReadStringNode.java │ │ │ ├── LLVMSulongFunctionToNativePointer.java │ │ │ ├── LLVMTruffleAddressToFunction.java │ │ │ ├── LLVMTruffleBinary.java │ │ │ ├── LLVMTruffleDerefHandleToManaged.java │ │ │ ├── LLVMTruffleExecute.java │ │ │ ├── LLVMTruffleFreeCString.java │ │ │ ├── LLVMTruffleGetArg.java │ │ │ ├── LLVMTruffleGetArgCount.java │ │ │ ├── LLVMTruffleGetSize.java │ │ │ ├── LLVMTruffleHandleToManaged.java │ │ │ ├── LLVMTruffleInvoke.java │ │ │ ├── LLVMTruffleIsHandleToManaged.java │ │ │ ├── LLVMTruffleIsTruffleObject.java │ │ │ ├── LLVMTruffleManagedMalloc.java │ │ │ ├── LLVMTruffleManagedToHandle.java │ │ │ ├── LLVMTruffleRead.java │ │ │ ├── LLVMTruffleReadNBytes.java │ │ │ ├── LLVMTruffleReadNString.java │ │ │ ├── LLVMTruffleReadString.java │ │ │ ├── LLVMTruffleReleaseHandle.java │ │ │ ├── LLVMTruffleStringAsCString.java │ │ │ ├── LLVMTruffleUnbox.java │ │ │ ├── LLVMTruffleWrite.java │ │ │ ├── LLVMTruffleWriteManagedToGlobal.java │ │ │ ├── LLVMVirtualMalloc.java │ │ │ └── typed │ │ │ │ ├── LLVMArrayTypeIDNode.java │ │ │ │ ├── LLVMPolyglotAsTyped.java │ │ │ │ ├── LLVMPolyglotFromTyped.java │ │ │ │ └── LLVMTypeIDNode.java │ │ ├── llvm │ │ │ ├── LLVMAssume.java │ │ │ ├── LLVMBuiltin.java │ │ │ ├── LLVMByteSwap.java │ │ │ ├── LLVMDisabledExpect.java │ │ │ ├── LLVMExpect.java │ │ │ ├── LLVMFrameAddress.java │ │ │ ├── LLVMI64ObjectSize.java │ │ │ ├── LLVMIntrinsic.java │ │ │ ├── LLVMIntrinsicRootNode.java │ │ │ ├── LLVMInvariantEnd.java │ │ │ ├── LLVMInvariantStart.java │ │ │ ├── LLVMLifetimeEnd.java │ │ │ ├── LLVMLifetimeStart.java │ │ │ ├── LLVMMemCopy.java │ │ │ ├── LLVMMemMove.java │ │ │ ├── LLVMMemSet.java │ │ │ ├── LLVMMemoryIntrinsic.java │ │ │ ├── LLVMNoOp.java │ │ │ ├── LLVMPrefetch.java │ │ │ ├── LLVMReturnAddress.java │ │ │ ├── LLVMStackRestore.java │ │ │ ├── LLVMStackSave.java │ │ │ ├── LLVMTrap.java │ │ │ ├── arith │ │ │ │ ├── LLVMArithmetic.java │ │ │ │ ├── LLVMComplex80BitFloatDiv.java │ │ │ │ ├── LLVMComplex80BitFloatMul.java │ │ │ │ ├── LLVMComplexDoubleDiv.java │ │ │ │ ├── LLVMComplexDoubleMul.java │ │ │ │ ├── LLVMComplexFloatDiv.java │ │ │ │ └── LLVMComplexFloatMul.java │ │ │ ├── bit │ │ │ │ ├── CountLeadingZeroesNode.java │ │ │ │ ├── CountSetBitsNode.java │ │ │ │ └── CountTrailingZeroesNode.java │ │ │ ├── debug │ │ │ │ ├── LLVMAllocationValueProvider.java │ │ │ │ ├── LLVMConstantGlobalValueProvider.java │ │ │ │ ├── LLVMConstantValueProvider.java │ │ │ │ ├── LLVMConstantVectorValueProvider.java │ │ │ │ ├── LLVMDebugAggregateObjectBuilder.java │ │ │ │ ├── LLVMDebugBuilder.java │ │ │ │ ├── LLVMDebugInitNode.java │ │ │ │ ├── LLVMDebugSimpleObjectBuilder.java │ │ │ │ ├── LLVMDebugTrapNode.java │ │ │ │ ├── LLVMDebugWriteNode.java │ │ │ │ ├── LLVMFrameValueAccessImpl.java │ │ │ │ ├── LLVMToDebugDeclarationNode.java │ │ │ │ └── LLVMToDebugValueNode.java │ │ │ └── x86 │ │ │ │ ├── LLVMX86_64BitVACopy.java │ │ │ │ ├── LLVMX86_64BitVAEnd.java │ │ │ │ ├── LLVMX86_64VAStart.java │ │ │ │ ├── LLVMX86_ConversionNode.java │ │ │ │ ├── LLVMX86_VectorMathNode.java │ │ │ │ └── X86_64BitVarArgs.java │ │ ├── rust │ │ │ ├── LLVMPanic.java │ │ │ └── LLVMStart.java │ │ └── sulong │ │ │ ├── LLVMPrintStackTrace.java │ │ │ ├── LLVMRunDestructorFunctions.java │ │ │ └── LLVMShouldPrintStackTraceOnAbort.java │ │ ├── literals │ │ ├── LLVMSimpleLiteralNode.java │ │ └── LLVMVectorLiteralNode.java │ │ ├── memory │ │ ├── LLVMCompareExchangeNode.java │ │ ├── LLVMFence.java │ │ ├── LLVMGetElementPtrNode.java │ │ ├── LLVMGetStackSpaceInstruction.java │ │ ├── LLVMInsertValueNode.java │ │ ├── LLVMNativeVarargsAreaStackAllocationNode.java │ │ ├── LLVMStructByValueNode.java │ │ ├── LLVMVarArgCompoundAddressNode.java │ │ ├── NativeAllocateStringNode.java │ │ ├── NativeAllocateStructNode.java │ │ ├── NativeMemSetNode.java │ │ ├── NativeProfiledMemMove.java │ │ ├── literal │ │ │ ├── LLVM80BitFloatArrayLiteralNode.java │ │ │ ├── LLVMDoubleArrayLiteralNode.java │ │ │ ├── LLVMFloatArrayLiteralNode.java │ │ │ ├── LLVMI16ArrayLiteralNode.java │ │ │ ├── LLVMI1ArrayLiteralNode.java │ │ │ ├── LLVMI32ArrayLiteralNode.java │ │ │ ├── LLVMI64ArrayLiteralNode.java │ │ │ ├── LLVMI8ArrayLiteralNode.java │ │ │ ├── LLVMPointerArrayLiteralNode.java │ │ │ └── LLVMStructArrayLiteralNode.java │ │ ├── load │ │ │ ├── LLVMAbstractLoadNode.java │ │ │ ├── LLVMDerefHandleGetReceiverNode.java │ │ │ ├── LLVMDirectLoadNode.java │ │ │ ├── LLVMDoubleLoadNode.java │ │ │ ├── LLVMFloatLoadNode.java │ │ │ ├── LLVMForeignReadNode.java │ │ │ ├── LLVMI16LoadNode.java │ │ │ ├── LLVMI1LoadNode.java │ │ │ ├── LLVMI32LoadNode.java │ │ │ ├── LLVMI64LoadNode.java │ │ │ ├── LLVMI8LoadNode.java │ │ │ └── LLVMLoadVectorNode.java │ │ ├── rmw │ │ │ ├── LLVMI16RMWNode.java │ │ │ ├── LLVMI1RMWNode.java │ │ │ ├── LLVMI32RMWNode.java │ │ │ ├── LLVMI64RMWNode.java │ │ │ └── LLVMI8RMWNode.java │ │ └── store │ │ │ ├── LLVM80BitFloatStoreNode.java │ │ │ ├── LLVMDoubleStoreNode.java │ │ │ ├── LLVMFloatStoreNode.java │ │ │ ├── LLVMForeignWriteNode.java │ │ │ ├── LLVMI16StoreNode.java │ │ │ ├── LLVMI1StoreNode.java │ │ │ ├── LLVMI32StoreNode.java │ │ │ ├── LLVMI64StoreNode.java │ │ │ ├── LLVMI8StoreNode.java │ │ │ ├── LLVMIVarBitStoreNode.java │ │ │ ├── LLVMPointerStoreNode.java │ │ │ ├── LLVMStoreNodeCommon.java │ │ │ ├── LLVMStoreVectorNode.java │ │ │ └── LLVMStructStoreNode.java │ │ ├── op │ │ ├── LLVMAbstractCompareNode.java │ │ ├── LLVMAddressEqualsNode.java │ │ ├── LLVMArithmeticNode.java │ │ ├── LLVMCompareNode.java │ │ ├── LLVMPointerCompareNode.java │ │ ├── LLVMVectorArithmeticNode.java │ │ ├── LLVMVectorCompareNode.java │ │ ├── ToComparableValue.java │ │ └── arith │ │ │ └── floating │ │ │ └── LLVMArithmeticFactory.java │ │ ├── others │ │ ├── LLVMAccessGlobalVariableStorageNode.java │ │ ├── LLVMSelectNode.java │ │ ├── LLVMStaticInitsBlockNode.java │ │ ├── LLVMUnreachableNode.java │ │ ├── LLVMUnsupportedInlineAssemblerNode.java │ │ ├── LLVMValueProfilingNode.java │ │ └── LLVMVectorSelectNode.java │ │ ├── vars │ │ ├── LLVMReadNode.java │ │ ├── LLVMReadVectorNode.java │ │ ├── LLVMWriteNode.java │ │ └── StructLiteralNode.java │ │ └── vector │ │ ├── LLVMExtractElementNode.java │ │ ├── LLVMInsertElementNode.java │ │ └── LLVMShuffleVectorNode.java ├── com.oracle.truffle.llvm.parser.factories │ └── src │ │ └── com │ │ └── oracle │ │ └── truffle │ │ └── llvm │ │ └── parser │ │ └── factories │ │ ├── BasicIntrinsicsProvider.java │ │ ├── BasicNodeFactory.java │ │ ├── BasicSystemContextExtension.java │ │ └── LLVMCastsFactory.java ├── com.oracle.truffle.llvm.parser │ └── src │ │ └── com │ │ └── oracle │ │ └── truffle │ │ └── llvm │ │ └── parser │ │ ├── LLVMBitcodeFunctionVisitor.java │ │ ├── LLVMBitcodeInstructionVisitor.java │ │ ├── LLVMLivenessAnalysis.java │ │ ├── LLVMParser.java │ │ ├── LLVMParserResult.java │ │ ├── LLVMParserRuntime.java │ │ ├── LLVMPhiManager.java │ │ ├── LLVMRuntimeDebugInformation.java │ │ ├── LazyToTruffleConverterImpl.java │ │ ├── StackManager.java │ │ ├── ValueList.java │ │ ├── elf │ │ ├── ElfDynamicSection.java │ │ ├── ElfFile.java │ │ ├── ElfHeader.java │ │ ├── ElfReader.java │ │ └── ElfSectionHeaderTable.java │ │ ├── instructions │ │ ├── LLVMArithmeticInstructionType.java │ │ ├── LLVMConversionType.java │ │ └── LLVMLogicalInstructionKind.java │ │ ├── listeners │ │ ├── BCFileRoot.java │ │ ├── Constants.java │ │ ├── Function.java │ │ ├── Metadata.java │ │ ├── Module.java │ │ ├── ParameterAttributes.java │ │ ├── ParserListener.java │ │ ├── StringTable.java │ │ ├── Types.java │ │ └── ValueSymbolTable.java │ │ ├── metadata │ │ ├── DwarfOpcode.java │ │ ├── Flags.java │ │ ├── MDAggregateNode.java │ │ ├── MDAttachment.java │ │ ├── MDBaseNode.java │ │ ├── MDBasicType.java │ │ ├── MDCompileUnit.java │ │ ├── MDCompositeType.java │ │ ├── MDDerivedType.java │ │ ├── MDEnumerator.java │ │ ├── MDExpression.java │ │ ├── MDFile.java │ │ ├── MDGenericDebug.java │ │ ├── MDGlobalVariable.java │ │ ├── MDGlobalVariableExpression.java │ │ ├── MDImportedEntity.java │ │ ├── MDKind.java │ │ ├── MDLexicalBlock.java │ │ ├── MDLexicalBlockFile.java │ │ ├── MDLocalVariable.java │ │ ├── MDLocation.java │ │ ├── MDMacro.java │ │ ├── MDMacroFile.java │ │ ├── MDModule.java │ │ ├── MDName.java │ │ ├── MDNamedNode.java │ │ ├── MDNamespace.java │ │ ├── MDNode.java │ │ ├── MDObjCProperty.java │ │ ├── MDString.java │ │ ├── MDSubprogram.java │ │ ├── MDSubrange.java │ │ ├── MDSubroutine.java │ │ ├── MDTemplateType.java │ │ ├── MDTemplateTypeParameter.java │ │ ├── MDTemplateValue.java │ │ ├── MDType.java │ │ ├── MDValue.java │ │ ├── MDVariable.java │ │ ├── MDVoidNode.java │ │ ├── MetadataAttachmentHolder.java │ │ ├── MetadataSymbol.java │ │ ├── MetadataValueList.java │ │ ├── MetadataVisitor.java │ │ ├── ParseUtil.java │ │ └── debuginfo │ │ │ ├── DIScopeBuilder.java │ │ │ ├── DITypeExtractor.java │ │ │ ├── DebugInfoCache.java │ │ │ ├── DebugInfoFunctionProcessor.java │ │ │ ├── DebugInfoModuleProcessor.java │ │ │ ├── ImportsProcessor.java │ │ │ ├── MDNameExtractor.java │ │ │ ├── MDSymbolExtractor.java │ │ │ ├── MDUpgrade.java │ │ │ ├── SourceFunction.java │ │ │ ├── SourceVariable.java │ │ │ └── ValueFragment.java │ │ ├── model │ │ ├── IRScope.java │ │ ├── ModelModule.java │ │ ├── SymbolImpl.java │ │ ├── SymbolTable.java │ │ ├── ValueSymbol.java │ │ ├── attributes │ │ │ ├── Attribute.java │ │ │ ├── AttributesCodeEntry.java │ │ │ └── AttributesGroup.java │ │ ├── blocks │ │ │ └── InstructionBlock.java │ │ ├── enums │ │ │ ├── AsmDialect.java │ │ │ ├── AtomicOrdering.java │ │ │ ├── BinaryOperator.java │ │ │ ├── CastOperator.java │ │ │ ├── Flag.java │ │ │ ├── Linkage.java │ │ │ ├── ReadModifyWriteOperator.java │ │ │ ├── SynchronizationScope.java │ │ │ └── Visibility.java │ │ ├── functions │ │ │ ├── FunctionDeclaration.java │ │ │ ├── FunctionDefinition.java │ │ │ ├── FunctionParameter.java │ │ │ ├── FunctionSymbol.java │ │ │ └── LazyFunctionParser.java │ │ ├── symbols │ │ │ ├── constants │ │ │ │ ├── AbstractConstant.java │ │ │ │ ├── BinaryOperationConstant.java │ │ │ │ ├── BlockAddressConstant.java │ │ │ │ ├── CastConstant.java │ │ │ │ ├── CompareConstant.java │ │ │ │ ├── Constant.java │ │ │ │ ├── GetElementPointerConstant.java │ │ │ │ ├── InlineAsmConstant.java │ │ │ │ ├── NullConstant.java │ │ │ │ ├── StringConstant.java │ │ │ │ ├── UndefinedConstant.java │ │ │ │ ├── aggregate │ │ │ │ │ ├── AggregateConstant.java │ │ │ │ │ ├── ArrayConstant.java │ │ │ │ │ ├── StructureConstant.java │ │ │ │ │ └── VectorConstant.java │ │ │ │ ├── floatingpoint │ │ │ │ │ ├── DoubleConstant.java │ │ │ │ │ ├── FloatConstant.java │ │ │ │ │ ├── FloatingPointConstant.java │ │ │ │ │ └── X86FP80Constant.java │ │ │ │ └── integer │ │ │ │ │ ├── BigIntegerConstant.java │ │ │ │ │ └── IntegerConstant.java │ │ │ ├── globals │ │ │ │ ├── GlobalAlias.java │ │ │ │ ├── GlobalValueSymbol.java │ │ │ │ └── GlobalVariable.java │ │ │ └── instructions │ │ │ │ ├── AllocateInstruction.java │ │ │ │ ├── BinaryOperationInstruction.java │ │ │ │ ├── BranchInstruction.java │ │ │ │ ├── CallInstruction.java │ │ │ │ ├── CastInstruction.java │ │ │ │ ├── CompareExchangeInstruction.java │ │ │ │ ├── CompareInstruction.java │ │ │ │ ├── ConditionalBranchInstruction.java │ │ │ │ ├── DbgDeclareInstruction.java │ │ │ │ ├── DbgValueInstruction.java │ │ │ │ ├── DebugTrapInstruction.java │ │ │ │ ├── ExtractElementInstruction.java │ │ │ │ ├── ExtractValueInstruction.java │ │ │ │ ├── FenceInstruction.java │ │ │ │ ├── FunctionStart.java │ │ │ │ ├── GetElementPointerInstruction.java │ │ │ │ ├── IndirectBranchInstruction.java │ │ │ │ ├── InsertElementInstruction.java │ │ │ │ ├── InsertValueInstruction.java │ │ │ │ ├── Instruction.java │ │ │ │ ├── Invoke.java │ │ │ │ ├── InvokeInstruction.java │ │ │ │ ├── LandingpadInstruction.java │ │ │ │ ├── LoadInstruction.java │ │ │ │ ├── PhiInstruction.java │ │ │ │ ├── ReadModifyWriteInstruction.java │ │ │ │ ├── ResumeInstruction.java │ │ │ │ ├── ReturnInstruction.java │ │ │ │ ├── SelectInstruction.java │ │ │ │ ├── ShuffleVectorInstruction.java │ │ │ │ ├── StoreInstruction.java │ │ │ │ ├── SwitchInstruction.java │ │ │ │ ├── SwitchOldInstruction.java │ │ │ │ ├── TerminatingInstruction.java │ │ │ │ ├── UnreachableInstruction.java │ │ │ │ ├── ValueInstruction.java │ │ │ │ ├── VoidCallInstruction.java │ │ │ │ ├── VoidInstruction.java │ │ │ │ └── VoidInvokeInstruction.java │ │ ├── target │ │ │ ├── TargetDataLayout.java │ │ │ ├── TargetInformation.java │ │ │ └── TargetTriple.java │ │ └── visitors │ │ │ ├── FunctionVisitor.java │ │ │ ├── InstructionVisitorAdapter.java │ │ │ ├── ModelVisitor.java │ │ │ ├── SymbolVisitor.java │ │ │ └── ValueInstructionVisitor.java │ │ ├── nodes │ │ └── LLVMSymbolReadResolver.java │ │ ├── records │ │ ├── ConstantsRecord.java │ │ ├── DwTagRecord.java │ │ ├── FunctionRecord.java │ │ ├── MetadataRecord.java │ │ ├── ModuleRecord.java │ │ ├── Records.java │ │ ├── TypesRecord.java │ │ └── ValueSymbolTableRecord.java │ │ ├── scanner │ │ ├── AbbrevRecordId.java │ │ ├── AbbreviatedRecord.java │ │ ├── BitStream.java │ │ ├── Block.java │ │ ├── BuiltinIDs.java │ │ ├── LLVMScanner.java │ │ ├── Primitive.java │ │ ├── RecordBuffer.java │ │ └── ScannerState.java │ │ ├── text │ │ ├── LLInstructionMapper.java │ │ ├── LLScanner.java │ │ ├── LLSourceBuilder.java │ │ ├── LLSourceMap.java │ │ └── LLSourceSection.java │ │ └── util │ │ ├── LLVMBitcodeTypeHelper.java │ │ ├── Pair.java │ │ └── SymbolNameMangling.java ├── com.oracle.truffle.llvm.pipe.native │ ├── Makefile │ └── src │ │ └── capture.cpp ├── com.oracle.truffle.llvm.pipe │ └── src │ │ └── com │ │ └── oracle │ │ └── truffle │ │ └── llvm │ │ └── pipe │ │ ├── CaptureNativeOutput.java │ │ └── CaptureOutput.java ├── com.oracle.truffle.llvm.runtime │ ├── .checkstyle_checks.xml │ └── src │ │ └── com │ │ └── oracle │ │ └── truffle │ │ └── llvm │ │ └── runtime │ │ ├── ArithmeticOperation.java │ │ ├── CompareOperator.java │ │ ├── Configuration.java │ │ ├── ContextExtension.java │ │ ├── GetStackSpaceFactory.java │ │ ├── LLVMAlias.java │ │ ├── LLVMBitcodeLibraryFunctions.java │ │ ├── LLVMBoxedPrimitive.java │ │ ├── LLVMContext.java │ │ ├── LLVMExitException.java │ │ ├── LLVMFunctionDescriptor.java │ │ ├── LLVMGetStackNode.java │ │ ├── LLVMIVarBit.java │ │ ├── LLVMIntrinsicProvider.java │ │ ├── LLVMLanguage.java │ │ ├── LLVMNativeFunctions.java │ │ ├── LLVMRewriteException.java │ │ ├── LLVMScope.java │ │ ├── LLVMSymbol.java │ │ ├── LLVMThread.java │ │ ├── LLVMUnsupportedException.java │ │ ├── LLVMVarArgCompoundValue.java │ │ ├── LLVMVirtualAllocationAddress.java │ │ ├── NFIContextExtension.java │ │ ├── NodeFactory.java │ │ ├── SulongStackTrace.java │ │ ├── SystemContextExtension.java │ │ ├── datalayout │ │ ├── DataLayout.java │ │ ├── DataLayoutParser.java │ │ └── DataLayoutType.java │ │ ├── debug │ │ ├── LLVMDebuggerValue.java │ │ ├── LLVMDebuggerValueMessageResolution.java │ │ ├── LLVMSourceContext.java │ │ ├── scope │ │ │ ├── LLVMDebugGlobalVariable.java │ │ │ ├── LLVMDebuggerScopeEntries.java │ │ │ ├── LLVMDebuggerScopeFactory.java │ │ │ ├── LLVMSourceLocation.java │ │ │ └── LLVMSourceSymbol.java │ │ ├── type │ │ │ ├── IndexedTypeBounds.java │ │ │ ├── LLVMSourceArrayLikeType.java │ │ │ ├── LLVMSourceBasicType.java │ │ │ ├── LLVMSourceDecoratorType.java │ │ │ ├── LLVMSourceEnumLikeType.java │ │ │ ├── LLVMSourceForeignType.java │ │ │ ├── LLVMSourceFunctionType.java │ │ │ ├── LLVMSourceMemberType.java │ │ │ ├── LLVMSourcePointerType.java │ │ │ ├── LLVMSourceStaticMemberType.java │ │ │ ├── LLVMSourceStructLikeType.java │ │ │ └── LLVMSourceType.java │ │ └── value │ │ │ ├── LLVMDebugGenericValue.java │ │ │ ├── LLVMDebugObject.java │ │ │ ├── LLVMDebugObjectBuilder.java │ │ │ ├── LLVMDebugTypeConstants.java │ │ │ ├── LLVMDebugValue.java │ │ │ ├── LLVMDebugVector.java │ │ │ └── LLVMFrameValueAccess.java │ │ ├── except │ │ ├── LLVMException.java │ │ ├── LLVMLinkerException.java │ │ ├── LLVMParserException.java │ │ ├── LLVMPolyglotException.java │ │ └── LLVMUserException.java │ │ ├── floating │ │ ├── BinaryHelper.java │ │ ├── DoubleHelper.java │ │ ├── FloatHelper.java │ │ └── LLVM80BitFloat.java │ │ ├── global │ │ ├── LLVMGlobal.java │ │ └── LLVMGlobalContainer.java │ │ ├── interop │ │ ├── LLVMAsForeignNode.java │ │ ├── LLVMDataEscapeNode.java │ │ ├── LLVMForeignCallNode.java │ │ ├── LLVMFunctionMessageResolution.java │ │ ├── LLVMInternalTruffleObject.java │ │ ├── LLVMTypedForeignObject.java │ │ ├── LLVMTypedForeignObjectMessageResolution.java │ │ ├── access │ │ │ ├── LLVMInteropAccessNode.java │ │ │ ├── LLVMInteropReadNode.java │ │ │ ├── LLVMInteropType.java │ │ │ └── LLVMInteropWriteNode.java │ │ ├── convert │ │ │ ├── ForeignToLLVM.java │ │ │ ├── ToAnyLLVM.java │ │ │ ├── ToDouble.java │ │ │ ├── ToFloat.java │ │ │ ├── ToI1.java │ │ │ ├── ToI16.java │ │ │ ├── ToI32.java │ │ │ ├── ToI64.java │ │ │ ├── ToI8.java │ │ │ ├── ToLLVM.java │ │ │ ├── ToPointer.java │ │ │ └── ToVoidLLVM.java │ │ ├── export │ │ │ ├── InteropNodeFactory.java │ │ │ ├── LLVMForeignAccessNode.java │ │ │ ├── LLVMForeignGetElementPointerNode.java │ │ │ └── LLVMPointerMessageResolution.java │ │ └── nfi │ │ │ ├── LLVMNativeConvertNode.java │ │ │ └── LLVMNativeWrapper.java │ │ ├── memory │ │ ├── LLVMAllocateStringNode.java │ │ ├── LLVMAllocateStructNode.java │ │ ├── LLVMMemMoveNode.java │ │ ├── LLVMMemSetNode.java │ │ ├── LLVMMemory.java │ │ ├── LLVMNativeMemory.java │ │ ├── LLVMStack.java │ │ ├── LLVMSyscallOperationNode.java │ │ ├── LLVMThreadingStack.java │ │ ├── LLVMUniquesRegionAllocNode.java │ │ ├── UnsafeArrayAccess.java │ │ └── VarargsAreaStackAllocationNode.java │ │ ├── nodes │ │ ├── api │ │ │ ├── LLVMArithmetic.java │ │ │ ├── LLVMControlFlowNode.java │ │ │ ├── LLVMExpressionNode.java │ │ │ ├── LLVMLoadNode.java │ │ │ ├── LLVMNode.java │ │ │ ├── LLVMObjectAccess.java │ │ │ ├── LLVMObjectNativeFactory.java │ │ │ ├── LLVMObjectNativeLibrary.java │ │ │ ├── LLVMStatementNode.java │ │ │ ├── LLVMStoreNode.java │ │ │ ├── LLVMToNativeNode.java │ │ │ ├── LLVMToPointerNode.java │ │ │ ├── LLVMTypes.java │ │ │ └── LLVMVoidStatementNode.java │ │ └── factories │ │ │ └── LLVMObjectAccessFactory.java │ │ ├── options │ │ └── SulongEngineOption.java │ │ ├── pointer │ │ ├── LLVMManagedPointer.java │ │ ├── LLVMNativePointer.java │ │ ├── LLVMPointer.java │ │ └── LLVMPointerImpl.java │ │ ├── profiling │ │ ├── BooleanValueProfile.java │ │ └── ShortValueProfile.java │ │ ├── types │ │ ├── AggregateType.java │ │ ├── ArrayType.java │ │ ├── DwLangNameRecord.java │ │ ├── FunctionType.java │ │ ├── MetaType.java │ │ ├── OpaqueType.java │ │ ├── PointerType.java │ │ ├── PrimitiveType.java │ │ ├── StructureType.java │ │ ├── Type.java │ │ ├── VariableBitWidthType.java │ │ ├── VectorType.java │ │ ├── VoidType.java │ │ ├── symbols │ │ │ ├── LLVMIdentifier.java │ │ │ └── Symbol.java │ │ └── visitors │ │ │ └── TypeVisitor.java │ │ └── vector │ │ ├── LLVMDoubleVector.java │ │ ├── LLVMFloatVector.java │ │ ├── LLVMI16Vector.java │ │ ├── LLVMI1Vector.java │ │ ├── LLVMI32Vector.java │ │ ├── LLVMI64Vector.java │ │ ├── LLVMI8Vector.java │ │ ├── LLVMPointerVector.java │ │ └── LLVMVector.java ├── com.oracle.truffle.llvm.spi │ └── src │ │ └── com │ │ └── oracle │ │ └── truffle │ │ └── llvm │ │ └── spi │ │ └── GetDynamicType.java ├── com.oracle.truffle.llvm.test.native │ ├── Makefile │ └── src │ │ ├── callbackLibrary.c │ │ └── caller.c ├── com.oracle.truffle.llvm.test │ └── src │ │ ├── META-INF │ │ └── services │ │ │ └── com.oracle.truffle.llvm.runtime.options.LLVMOptionServiceProvider │ │ └── com │ │ └── oracle │ │ └── truffle │ │ └── llvm │ │ └── test │ │ ├── BaseSingleTestHarness.java │ │ ├── BaseSuiteHarness.java │ │ ├── BaseSulongOnlyHarness.java │ │ ├── BaseTestHarness.java │ │ ├── CallbackTest.java │ │ ├── CaptureOutputTest.java │ │ ├── GCCSuite.java │ │ ├── InlineAssemblyTest.java │ │ ├── LLVMSuite.java │ │ ├── MainArgsTest.java │ │ ├── NWCCSuite.java │ │ ├── ParserTortureSuite.java │ │ ├── ShootoutsSuite.java │ │ ├── SulongSuite.java │ │ ├── VAArgsTest.java │ │ ├── debug │ │ ├── ContinueStrategy.java │ │ ├── LLVMDebugTest.java │ │ ├── LLVMDebugTestBase.java │ │ ├── LLVMDebugValue.java │ │ ├── LLVMIRDebugTest.java │ │ ├── StopRequest.java │ │ ├── Trace.java │ │ └── TraceWriter.java │ │ ├── interop │ │ ├── DerefHandleTest.java │ │ ├── DynamicTypeCastInteropTest.java │ │ ├── FitsInTest.java │ │ ├── InteropTestBase.java │ │ ├── LLVMInteropTest.java │ │ ├── NameBasedInteropTest.java │ │ ├── PolyglotBuiltinTest.java │ │ ├── PolyglotScopeTest.java │ │ ├── PrimitiveArrayInteropTest.java │ │ ├── SlowPathCallTest.java │ │ ├── StringTest.java │ │ ├── TypeCheckTest.java │ │ ├── TypedExportTest.java │ │ ├── TypedInteropTest.java │ │ ├── nfi │ │ │ ├── BasicNFIAPITest.java │ │ │ └── NFIAPITest.java │ │ └── values │ │ │ ├── ArrayObject.java │ │ │ ├── BoxedTestValue.java │ │ │ ├── NullValue.java │ │ │ ├── StructObject.java │ │ │ ├── TestCallback.java │ │ │ └── TestConstructor.java │ │ ├── options │ │ └── TestOptions.java │ │ └── util │ │ ├── PathUtil.java │ │ └── ProcessUtil.java ├── com.oracle.truffle.llvm.types.test │ └── src │ │ └── com │ │ └── oracle │ │ └── truffle │ │ └── llvm │ │ └── types │ │ └── floating │ │ └── test │ │ ├── LLVM80BitCompareTest.java │ │ ├── LLVM80BitFromBytesTest.java │ │ ├── LLVM80BitFromDoubleTest.java │ │ ├── LLVM80BitFromIntTest.java │ │ ├── LLVM80BitFromLongTest.java │ │ ├── LLVM80BitFromStringTest.java │ │ ├── LLVM80BitFromUnsignedIntTest.java │ │ ├── LLVM80BitFromUnsignedLongTest.java │ │ ├── LLVM80BitGetByteTest.java │ │ ├── LLVM80BitGetDoubleTest.java │ │ ├── LLVM80BitGetFloatTest.java │ │ ├── LLVM80BitGetIntTest.java │ │ ├── LLVM80BitGetLongTest.java │ │ ├── LLVM80BitGetShortTest.java │ │ ├── LLVM80BitMixedTests.java │ │ ├── LLVM80BitTest.java │ │ └── LLVMIVarBitTest.java └── com.oracle.truffle.llvm │ └── src │ ├── META-INF │ └── services │ │ └── java.nio.file.spi.FileTypeDetector │ └── com │ └── oracle │ └── truffle │ └── llvm │ ├── BasicConfiguration.java │ ├── LLVMFileDetector.java │ ├── Runner.java │ └── Sulong.java └── tests ├── Makefile ├── argon2 └── pthread-stub │ ├── pthread.c │ └── pthread.h ├── benchmarksgame └── configs │ ├── run.include │ └── unrelated.exclude ├── com.oracle.truffle.llvm.tests.debug ├── debug │ ├── testClasses.cpp │ ├── testControlFlow.c │ ├── testDecorators.c │ ├── testFunctionPointer.c │ ├── testLongDouble.cpp │ ├── testObjectPointer.cpp │ ├── testPrimitives.c │ ├── testReenterArgsAndVals.c │ ├── testScopes.cpp │ ├── testStructures.c │ └── testUnions.c └── trace │ ├── testClasses.txt │ ├── testControlFlow.txt │ ├── testDecorators.txt │ ├── testFunctionPointer.txt │ ├── testLongDouble.txt │ ├── testObjectPointer.txt │ ├── testPrimitives.txt │ ├── testReenterArgsAndVals.txt │ ├── testScopes.txt │ ├── testStructures.txt │ └── testUnions.txt ├── com.oracle.truffle.llvm.tests.interop └── interop │ ├── construct001.c │ ├── construct002.c │ ├── derefHandleTest.c │ ├── fitsIn.c │ ├── handleFromNativeCallback.c │ ├── interop001.c │ ├── interop002.c │ ├── interop003.c │ ├── interop004.c │ ├── interop005.c │ ├── interop006.c │ ├── interop008.c │ ├── interop009.c │ ├── interop010.c │ ├── interop011.c │ ├── interop012.c │ ├── interop013.c │ ├── interop014.c │ ├── interop015.c │ ├── interop016.c │ ├── interop017.c │ ├── interop018.c │ ├── interop019.c │ ├── interop020.c │ ├── interop021.c │ ├── interop022.c │ ├── interop023.c │ ├── interop024.c │ ├── interop025.c │ ├── interop026.c │ ├── interop027.c │ ├── interop028.c │ ├── interop030.c │ ├── interop031.c │ ├── interop032.c │ ├── interop033.c │ ├── interop034.c │ ├── interop035.c │ ├── interop036.c │ ├── interop037.c │ ├── interop038.c │ ├── interop039.c │ ├── interop040.c │ ├── interop041.c │ ├── interop042.c │ ├── interop043.c │ ├── interop044.c │ ├── interop045.c │ ├── interop046.c │ ├── interop047.c │ ├── interop048.c │ ├── interop049.c │ ├── interop050.c │ ├── interop051.c │ ├── interop052.c │ ├── interop053.c │ ├── interop054.c │ ├── interop055.c │ ├── interop056.c │ ├── interop057.c │ ├── interop058.c │ ├── interop059.c │ ├── interop060.c │ ├── interop061.c │ ├── interop062.c │ ├── interop063.c │ ├── interop064.c │ ├── interop065.c │ ├── interop066.c │ ├── interop067.c │ ├── interop068.c │ ├── interop069.c │ ├── interop070.c │ ├── interop071.c │ ├── interop072.c │ ├── interop073.c │ ├── interop074.c │ ├── interop075.c │ ├── interop076.c │ ├── interop077.c │ ├── interopSlowpathCall.c │ ├── invoke.c │ ├── isHandle.c │ ├── managedMallocMemset.c │ ├── nameBasedInterop.c │ ├── pointerThroughNativeCallback.c │ ├── polyglotBuiltinTest.c │ ├── polyglotRegisterDynamicCast.c │ ├── polyglotScopeTest.c │ ├── primitiveArrayInterop.c │ ├── readExecute.c │ ├── registerHandle.c │ ├── releaseHandle.c │ ├── scaleVector.c │ ├── strcmp.c │ ├── stringTest.c │ ├── strlen.c │ ├── tck.c │ ├── typeCheck.c │ ├── typedExport.c │ ├── typedInterop.cpp │ ├── virtualMallocArray.cpp │ ├── virtualMallocArray2.cpp │ ├── virtualMallocArrayPointer.cpp │ ├── virtualMallocCompare1.cpp │ ├── virtualMallocGlobal.cpp │ ├── virtualMallocGlobalAssign.cpp │ ├── virtualMallocObject.cpp │ └── virtualMallocObjectCopy.cpp ├── com.oracle.truffle.llvm.tests.irdebug ├── README ├── irdebug │ ├── controlFlow.ll │ ├── globals.ll │ ├── primitives-mem2reg.ll │ ├── primitives.ll │ ├── vectorKinds-mem2reg.ll │ ├── vectors-mem2reg.ll │ └── vectors.ll ├── src │ ├── controlFlow.c │ ├── globals.c │ ├── primitives.c │ ├── vectorKinds.cpp │ └── vectors.c └── trace │ ├── controlFlow.txt │ ├── globals.txt │ ├── primitives-mem2reg.txt │ ├── primitives.txt │ ├── vectorKinds-mem2reg.txt │ ├── vectors-mem2reg.txt │ └── vectors.txt ├── com.oracle.truffle.llvm.tests.libc ├── .gitignore └── libc │ ├── assert │ └── assert.c │ ├── atoi │ └── atoi.c │ ├── atol │ ├── atol-big-numbers.c │ ├── atol-invalid.c │ ├── atol-mixed.c │ └── atol-small-numbers.c │ ├── atoll │ ├── atol-big-numbers.c │ ├── atol-invalid.c │ └── atol-small-numbers.c │ ├── calloc │ ├── calloc-int-ptr.c │ ├── calloc-uninit-ptr-access.c │ ├── primitive-five-elements │ │ ├── calloc.h │ │ ├── char.c │ │ ├── double.c │ │ ├── float.c │ │ ├── int.c │ │ ├── long.c │ │ └── short.c │ ├── primitives-one-element │ │ ├── calloc.h │ │ ├── char.c │ │ ├── double.c │ │ ├── float.c │ │ ├── int.c │ │ ├── long.c │ │ └── short.c │ └── two-callocs-loop.c │ ├── ctypes │ ├── cornercases.c │ ├── isalnum.c │ ├── isalpha.c │ ├── iscntrl.c │ ├── isdigit.c │ ├── isgraph.c │ ├── islower.c │ ├── isprint.c │ ├── ispunct.c │ ├── isspace.c │ ├── isupper.c │ └── isxdigit.c │ ├── errno │ └── errno.c │ ├── feof │ ├── feof-fseek.c │ └── feof.c │ ├── fflush.c │ ├── fgets │ ├── fgets-no-input.c │ └── fgets-only-newline.c │ ├── file-operations │ ├── fopen-append-newfile.c │ ├── fopen-append.c │ ├── fopen-null.c │ ├── fopen-read-non-existing.c │ ├── fopen-read-write-no-file.c │ ├── fopen-read-write-read.c │ ├── fopen-read-write-remove-fclose.c │ ├── fopen-read-write-remove.c │ ├── overwrite-file.c │ ├── remove-current-directory.c │ ├── remove-empty-filename.c │ └── remove-non-existing.c │ ├── fprintf │ ├── fprintf-null-string.c │ ├── fprintf-stderr.c │ └── fprintf-stdout.c │ ├── fputc │ ├── fputc-stderr-overflow.c │ ├── fputc-stderr.c │ ├── fputc-stdout-overflow.c │ └── fputc-stdout.c │ ├── fputs │ ├── fputs-stderr.c │ ├── fputs-stdout-arr.c │ └── fputs-stdout.c │ ├── fread │ └── fread.c │ ├── free │ ├── free-calloc-int.c │ ├── free-null.c │ └── malloc │ │ ├── free-addr-arr.c │ │ ├── free-function-arr.c │ │ ├── free-function-ptr.c │ │ ├── free-int-ptr.c │ │ ├── free-null-in-struct.c │ │ ├── free-struct-arr.c │ │ ├── free-struct.c │ │ ├── primitive-array-frees │ │ ├── char.c │ │ ├── double.c │ │ ├── float.c │ │ ├── int.c │ │ ├── long.c │ │ ├── short.c │ │ └── test.h │ │ └── primitives │ │ ├── char.c │ │ ├── double.c │ │ ├── float.c │ │ ├── int.c │ │ ├── long.c │ │ ├── short.c │ │ └── test.h │ ├── freopen │ └── freopen-redirect-stdin.c │ ├── fscanf │ └── fscanf.c │ ├── fseek │ ├── fseek-beginning.c │ ├── fseek-current.c │ └── fseek-end.c │ ├── ftell │ ├── ftell-empty-file.c │ └── ftell.c │ ├── fwrite │ └── fwrite.c │ ├── getchar │ └── getchar.c │ ├── getenv │ └── getenv.c │ ├── getpid │ └── getpid.c │ ├── log2 │ └── log2.c │ ├── malloc-strcpy-printf-realloc-free.c │ ├── malloc │ ├── address │ │ ├── address-to-int-arr-2.c │ │ ├── address-to-int-arr.c │ │ └── address-to-int.c │ ├── allocation-function │ │ ├── char.c │ │ ├── double.c │ │ ├── float.c │ │ ├── int.c │ │ ├── long.c │ │ ├── short.c │ │ └── test.h │ ├── malloc-int-array.c │ ├── null-comparison │ │ ├── malloc-null-comparison-1.c │ │ └── malloc-null-comparison-2.c │ ├── only-malloc-int.c │ ├── pointer-arrays │ │ ├── char.c │ │ ├── double.c │ │ ├── float.c │ │ ├── int.c │ │ ├── long.c │ │ ├── pointer-arrays.h │ │ └── short.c │ ├── primitive-arrays │ │ ├── char.c │ │ ├── double.c │ │ ├── float.c │ │ ├── int.c │ │ ├── long.c │ │ └── short.c │ └── primitives │ │ ├── char.c │ │ ├── double.c │ │ ├── float.c │ │ ├── int.c │ │ ├── long.c │ │ └── short.c │ ├── memcmp │ ├── memcmp-int.c │ └── memcmp-strcmp-example.c │ ├── memcpy │ ├── memcpy-struct-array.c │ ├── memcpy-struct-char-short.c │ ├── memcpy-struct-double-array.c │ ├── memcpy-struct-float-array.c │ ├── memcpy-struct-float-long.c │ ├── memcpy-struct-function-ptr.c │ ├── memcpy-struct-int-array.c │ ├── memcpy-struct-int-long.c │ ├── memcpy-struct-long-array.c │ ├── memcpy-struct-mixed.c │ ├── memcpy-struct-pointer-array.c │ ├── memcpy-struct-short-array.c │ ├── memcpy-struct-string.c │ ├── memcpy-zero-length.c │ ├── memcpy.c │ ├── struct-array-different-size-memcpy.c │ └── struct-array-different-size-memcpy2.c │ ├── memmove │ └── memmove.c │ ├── memset │ ├── memset-char-struct.c │ ├── memset-struct-with-ptr.c │ ├── memset-struct.c │ └── memset.c │ ├── posix │ └── strdup.c │ ├── printf │ ├── constant-format-width.c │ ├── only-string-printf.c │ ├── printf-char.c │ ├── printf-float.c │ ├── printf-function-addr-return-value.c.ignore │ ├── printf-int-args.c │ ├── printf-int.c │ ├── printf-long-i.c │ ├── printf-long-longlong.c │ ├── printf-mixed.c │ ├── printf-multiple-int.c │ ├── printf-multiple-values.c │ ├── printf-null-string.c │ ├── printf-signed-unsigned-int.c │ ├── printf-string.c │ └── variable-format-width.c │ ├── putc │ ├── putc-stderr-overflow.c │ ├── putc-stderr.c │ ├── putc-stdout-overflow.c │ └── putc-stdout.c │ ├── putchar │ ├── putchar-newline.c │ ├── putchar-no-newline.c │ ├── putchar-overflow1.c │ ├── putchar-overflow2.c │ └── putchar.c │ ├── puts │ ├── puts-pointer-to-middle-of-string.c │ ├── puts-string-array.c │ └── puts-string.c │ ├── rand │ ├── rand-range.c │ └── rand.c │ ├── realloc │ ├── realloc-char-array.c │ ├── realloc-malloc.c.ignore │ └── realloc-null-ptr.c.ignore │ ├── rewind │ ├── rewind-empty-file.c │ └── rewind.c │ ├── scanf │ ├── char.c.ignore │ ├── int.c.ignore │ ├── long.c.ignore │ ├── setup.h │ ├── string.c.ignore │ └── uint.c.ignore │ ├── sin-cos.c │ ├── snprintf │ ├── snprintf-int-too-small.c │ ├── snprintf-int.c │ └── snprintf-string.c │ ├── sprintf │ ├── sprintf-point-to-middle-of-string.c │ └── sprintf.c │ ├── strcat │ └── strcat.c │ ├── strchr │ └── strchr.c │ ├── strcmp │ └── strcmp.c │ ├── strcpy │ ├── strcpy-empty.c │ └── strcpy.c │ ├── strcspn │ └── strcspn.c │ ├── strerror │ ├── strerror-invalid.c │ └── strerror.c │ ├── strlen │ └── strlen-str.c │ ├── strncat │ └── strncat.c │ ├── strncmp │ ├── strncmp-no-overflow.c │ ├── strncmp-overflow-equal.c │ └── strncmp-overflow-non-equal.c │ ├── strncpy │ ├── strncpy-null-padding.c │ └── strncpy.c │ ├── strpbrk │ ├── strpbrk-cornercases.c │ └── strpbrk.c │ ├── strrchr │ └── strrchr-1.c │ ├── strspn │ └── strspn.c │ ├── strstr │ └── strstr.c │ ├── strtod │ ├── strtod-int.c │ ├── strtod-no-str-arg.c │ ├── strtod-sign.c │ └── strtod-str-arg.c │ ├── strtok │ ├── strtok.c │ ├── strtok2.c │ ├── strtok3.c │ └── strtok4.c │ ├── system │ └── system.c.ignore │ ├── systime │ └── gettimeofday.c │ ├── time │ ├── clock.c │ └── time.c │ ├── tmpfile │ └── tmpfile.c │ ├── tmpname │ └── tmpname.c │ ├── tolower │ └── tolower.c │ ├── toupper │ └── toupper.c │ ├── ungetc │ ├── ungetc-stdin.c │ └── ungetc.c │ ├── vfprintf │ └── vfprintf.c │ └── vprintf │ └── vprintf.c ├── com.oracle.truffle.llvm.tests.nfi └── nfi │ └── basicTest.c ├── com.oracle.truffle.llvm.tests.sulong └── c │ ├── 2.c │ ├── 3.c │ ├── 4.c │ ├── 5.c │ ├── 6.c │ ├── address-to-function-ptr-call.c │ ├── arrays │ ├── charArray.c │ ├── doubleArray.c │ ├── fourDimConstIndex.c │ ├── fourDimDynIndex.c │ ├── intArray.c │ ├── multiDim.c │ ├── threeDimConstIndex.c │ └── threeDimDynIndex.c │ ├── assert.h │ ├── attributes │ ├── const_dest │ │ └── ConstructorDestructorAttributes.c │ ├── visibility │ │ └── visibility1.c │ └── weak │ │ ├── weak-function-ref.c │ │ └── weak-global-var.c │ ├── builtin_gcc │ ├── __builtin__clear_cache.c │ ├── __builtin_abs.c │ ├── __builtin_alloca.c │ ├── __builtin_bswap16.c │ ├── __builtin_bswap32.c │ ├── __builtin_bswap64.c │ ├── __builtin_clz.c │ ├── __builtin_clzl.c │ ├── __builtin_clzll.c │ ├── __builtin_constant_p.c │ ├── __builtin_copysign.c │ ├── __builtin_ctz.c │ ├── __builtin_ctzl.c │ ├── __builtin_ctzll.c │ ├── __builtin_expect.c │ ├── __builtin_fabs.c │ ├── __builtin_fabsf.c │ ├── __builtin_fabsl.c │ ├── __builtin_ffs.c │ ├── __builtin_ffsl.c │ ├── __builtin_ffsll.c │ ├── __builtin_fpclassify.c │ ├── __builtin_isfinite.c │ ├── __builtin_isgreater.c │ ├── __builtin_isgreaterequal.c │ ├── __builtin_isinf.c │ ├── __builtin_isless.c │ ├── __builtin_islessequal.c │ ├── __builtin_islessgreater.c │ ├── __builtin_isnan.c │ ├── __builtin_isnormal.c │ ├── __builtin_isunordered.c │ ├── __builtin_memcmp.c │ ├── __builtin_memcpy.c │ ├── __builtin_memmove.c │ ├── __builtin_memset.c │ ├── __builtin_offsetof.c │ ├── __builtin_popcount.c │ ├── __builtin_popcountl.c │ ├── __builtin_popcountll.c │ ├── __builtin_prefetch.c │ ├── __builtin_signbit.c │ ├── __builtin_signbitf.c │ ├── __builtin_signbitl.c │ ├── __builtin_sqrtf.c │ ├── __builtin_strcpy.c │ ├── __builtin_strlen.c │ ├── __builtin_unreachable.c │ └── __builtin_va_list.c │ ├── compareExchange.c │ ├── compareExchangeVal.c │ ├── compareExchangeVal2.c │ ├── complex-switch-controlflow.c.ignore │ ├── cyclicPhi.c │ ├── cyclicPhi2.c │ ├── cyclicPhi3.c │ ├── factorial.c │ ├── fence.c │ ├── fibonacci.c │ ├── float-comparison │ ├── double │ │ ├── double.h │ │ ├── minus-plus-zero-double.c │ │ ├── ordered-comparison-nan-double.c │ │ ├── ordered-comparison-nan-inf-double.c │ │ └── ordered-comparison-nan-neginf-double.c │ ├── float │ │ ├── float.h │ │ ├── minus-plus-zero-float.c │ │ ├── ordered-comparison-nan-float.c │ │ ├── ordered-comparison-nan-inf-float.c │ │ └── ordered-comparison-nan-neginf-float.c │ ├── minus-plus-zero.h │ ├── ordered-comparison-nan-inf.h │ ├── ordered-comparison-nan-neginf.h │ └── ordered-comparison-nan.h │ ├── functioncall │ ├── doubleFunctionCall.c │ └── voidFunctionCall.c │ ├── globalVar.c │ ├── globalVar2.c │ ├── i1-to-float.c │ ├── i128 │ ├── left-shift.c │ ├── signed-right-shift.c │ ├── signed-right-shift2.c │ ├── unsigned-right-shift.c │ └── unsigned-right-shift2.c │ ├── intrinsics │ ├── byteswap.c │ ├── memmove.c │ └── movemask.c │ ├── labeladdress │ └── labeledgoto1.c │ ├── lfplayout.c │ ├── localStaticVariable.c │ ├── long-to-function-ptr-call.c │ ├── longdouble │ ├── add.c │ ├── longdouble-add.c │ ├── longdouble-div.c │ ├── longdouble-mul.c │ ├── longdouble-sub.c │ └── longdouble.h │ ├── main-i16.c │ ├── main-i64.c │ ├── main-i8.c │ ├── max-unsigned-int-to-double-cast.c │ ├── max-unsigned-short-to-float-cast.c │ ├── native-call-arg-conv-363.c │ ├── polymorphic-native-function-pointers1.c │ ├── polymorphic-native-function-pointers2.c │ ├── qsort.c │ ├── readModifyWrite.c │ ├── regressions │ ├── 2016-09-22-metadata_forward_reference.c │ ├── 2016-09-23-metadata_contradictory_types.c │ ├── 2016-09-26-metadata_empty_compositetype.c │ └── metadata_tail_call.c │ ├── stdlib │ ├── atexit001.c │ ├── atexit002.c │ ├── atexit003.c │ ├── atexit004.c │ ├── atexit005.c │ ├── complex-conjugate.c │ ├── math │ │ ├── fmodl.c │ │ └── sqrt.c │ ├── signal.c │ └── stat.c │ ├── struct │ ├── intDouble.c │ ├── mixed.c │ ├── packed │ │ ├── packed-nested-padding.c │ │ ├── packed-nested-struct.c │ │ ├── packed-offset-from-base.c │ │ ├── packed-union-array.c │ │ ├── packed1.c │ │ ├── packed2.1.c │ │ ├── packed2.2.c │ │ └── packed2.3.c │ └── singleInt.c │ ├── sum.c │ ├── swap.c │ ├── switch │ ├── switch1.c │ ├── switch2.c │ ├── switch3.c │ └── var-bit-width-switch.c │ ├── truffle-c │ ├── addressOfTest │ │ ├── addressOfTest0.c │ │ ├── addressOfTest1.c │ │ ├── addressOfTest2.c │ │ ├── addressOfTest3.c │ │ ├── addressOfTest4.c │ │ ├── addressOfTest5.c │ │ ├── addressOfTest6.c │ │ ├── addressOfTest7.c │ │ └── addressOfTest8.c │ ├── alignmentTestAligned │ │ ├── alignmentGlobalStruct.c │ │ ├── alignmentGlobalTest1.c │ │ ├── alignmentLocalArray1.c │ │ ├── alignmentLocalStatic1.c │ │ ├── alignmentLocalStruct1.c │ │ └── test.c │ ├── allDatatypeLiterals │ │ ├── charTest.c │ │ ├── doubleTest.c │ │ ├── floatTest.c │ │ ├── intTest.c │ │ ├── longIntTest.c │ │ ├── longLongTest.c │ │ ├── longTest.c │ │ ├── shortIntTest.c │ │ ├── shortTest.c │ │ ├── signedCharTest.c │ │ ├── signedIntTest.c │ │ ├── signedLongIntTest.c │ │ ├── signedLongLongIntTest.c │ │ ├── signedLongLongTest.c │ │ ├── signedLongTest.c │ │ ├── signedShortIntTest.c │ │ ├── signedShortTest.c │ │ └── unsignedCharTest.c │ ├── arrayAddressSyntaxSugarTest │ │ ├── test00.c │ │ ├── test01.c │ │ ├── test02.c │ │ ├── test03.c │ │ ├── test04.c │ │ ├── test05.c │ │ ├── test06.c │ │ ├── test07.c │ │ └── test08.c │ ├── arrayTest │ │ ├── aaaTest000.c │ │ ├── aaaTest001.c │ │ ├── aaaTest002.c │ │ ├── aaaTest003.c │ │ ├── aaaTest004.c │ │ ├── aaaTest005.c │ │ ├── arrayAlloc0.c │ │ ├── arrayAlloc1.c │ │ ├── arrayAlloc2.c │ │ ├── arrayTest0.c │ │ ├── arrayTest1.c │ │ ├── arrayTest10.c │ │ ├── arrayTest11.c │ │ ├── arrayTest12.c │ │ ├── arrayTest13.c │ │ ├── arrayTest14.c │ │ ├── arrayTest15.c │ │ ├── arrayTest17.c │ │ ├── arrayTest18.c │ │ ├── arrayTest19.c │ │ ├── arrayTest2.c │ │ ├── arrayTest20.c │ │ ├── arrayTest21.c │ │ ├── arrayTest22.c │ │ ├── arrayTest3.c │ │ ├── arrayTest4.c │ │ ├── arrayTest5.c │ │ ├── arrayTest6.c │ │ ├── arrayTest7.c │ │ ├── arrayTest8.c │ │ ├── arrayTest9.c │ │ ├── compoundLiteral1.c │ │ ├── constSizeVarArray.c │ │ ├── constSizeVarArray1.c │ │ ├── constSizeVarArray2.c │ │ ├── constSizeVarArray3.c │ │ ├── constSizeVarArray4.c │ │ ├── constSizeVarArray5.c │ │ ├── test000.c │ │ ├── testVariableSizeArrayDealloc.c │ │ ├── testVariableSizeArrayDealloc2.c │ │ ├── virtualArray0.c │ │ ├── virtualArray1.c │ │ ├── virtualArray2.c │ │ ├── virtualArray3.c │ │ ├── virtualArray4.c │ │ └── virtualArray5.c │ ├── assignTest │ │ ├── assignTest0.c │ │ ├── assignTest1.c │ │ ├── assignTest10.c │ │ ├── assignTest11.c │ │ ├── assignTest12.c │ │ ├── assignTest13.c │ │ ├── assignTest2.c │ │ ├── assignTest3.c │ │ ├── assignTest4.c │ │ ├── assignTest5.c │ │ ├── assignTest6.c │ │ ├── assignTest7.c │ │ ├── assignTest8.c │ │ └── assignTest9.c │ ├── binArithmTest │ │ ├── binArithmTest0.c │ │ ├── binArithmTest1.c │ │ ├── binArithmTest10.c │ │ ├── binArithmTest11.c │ │ ├── binArithmTest12.c │ │ ├── binArithmTest13.c │ │ ├── binArithmTest14.c │ │ ├── binArithmTest15.c │ │ ├── binArithmTest16.c │ │ ├── binArithmTest17.c │ │ ├── binArithmTest18.c │ │ ├── binArithmTest19.c │ │ ├── binArithmTest2.c │ │ ├── binArithmTest20.c │ │ ├── binArithmTest21.c │ │ ├── binArithmTest22.c │ │ ├── binArithmTest23.c │ │ ├── binArithmTest24.c │ │ ├── binArithmTest3.c │ │ ├── binArithmTest4.c │ │ ├── binArithmTest5.c │ │ ├── binArithmTest6.c │ │ ├── binArithmTest7.c │ │ ├── binArithmTest8.c │ │ └── binArithmTest9.c │ ├── bitFields │ │ ├── augmentedInt.c │ │ ├── bitField01.c │ │ ├── charIncDec.c │ │ ├── cornerCase1.c │ │ ├── cornerCase2.c.ignore │ │ ├── cornerCase3.c │ │ ├── incTest1.c │ │ ├── intIncDec.c │ │ ├── longIncDec.c │ │ ├── multipleFieldStructTest1.c │ │ ├── multipleFieldStructTest10.c │ │ ├── multipleFieldStructTest11.c │ │ ├── multipleFieldStructTest12.c │ │ ├── multipleFieldStructTest13.c │ │ ├── multipleFieldStructTest2.c │ │ ├── multipleFieldStructTest3.c │ │ ├── multipleFieldStructTest4.c │ │ ├── multipleFieldStructTest5.c │ │ ├── multipleFieldStructTest6.c │ │ ├── multipleFieldStructTest7.c │ │ ├── multipleFieldStructTest8.c │ │ ├── multipleFieldStructTest9.c │ │ ├── shortIncDec.c │ │ ├── simpleStructTest1.c │ │ ├── simpleStructTest2.c │ │ ├── simpleStructTest3.c │ │ ├── simpleStructTest4.c │ │ ├── simpleStructTest5.c │ │ ├── simpleStructTest6.c │ │ ├── simpleStructTest7.c │ │ ├── simpleStructTest8.c │ │ ├── simpleStructTest9.c │ │ ├── testOverflow1.c │ │ ├── testOverflow2.c │ │ ├── zeroSizeBitField1.c │ │ ├── zeroSizeBitField2.c │ │ ├── zeroSizeBitField3.c │ │ └── zeroSizeBitField4.c │ ├── charTest │ │ ├── addition.c │ │ ├── arrayAlloc.c │ │ ├── arrayTest.c │ │ ├── arrayTest1.c │ │ ├── charArray.c │ │ ├── charTest0.c │ │ ├── charToIntCast.c │ │ ├── cont.c │ │ ├── differentTypesCharArrayInit.c │ │ ├── implicitCharToIntCast.c │ │ ├── intAddition.c │ │ ├── localChar.c │ │ ├── meteorMicro.c │ │ ├── multiValuesCharArray.c │ │ ├── not.c │ │ ├── not2.c │ │ ├── returnTest.c │ │ ├── saveIntInCharArray.c │ │ └── saveIntInCharArray2.c │ ├── comparisonTest │ │ ├── lessEqualThan1.c │ │ └── signedUnsignedInt.c │ ├── conditionTest │ │ ├── conditionTest0.c │ │ ├── conditionTest1.c │ │ ├── conditionTest2.c │ │ ├── conditionTest3.c │ │ ├── conditionTest4.c │ │ ├── conditionTest5.c │ │ ├── conditionTest6.c │ │ ├── conditionTest7.c │ │ └── conditionTest8.c │ ├── controlTest │ │ ├── controlTest0.c │ │ ├── controlTest1.c │ │ ├── controlTest10.c │ │ ├── controlTest11.c │ │ ├── controlTest12.c │ │ ├── controlTest13.c │ │ ├── controlTest14.c │ │ ├── controlTest2.c │ │ ├── controlTest3.c │ │ ├── controlTest4.c │ │ ├── controlTest5.c │ │ ├── controlTest6.c │ │ ├── controlTest7.c │ │ ├── controlTest8.c │ │ ├── controlTest9.c │ │ ├── doWhileTest1.c │ │ ├── doWhileTest2.c │ │ ├── doWhileTest3.c │ │ ├── doWhileTest4.c │ │ ├── doWhileTest5.c │ │ ├── while1.c │ │ ├── while2.c │ │ ├── while3.c │ │ └── while4.c │ ├── dataTypesSize │ │ ├── _BoolTest.c │ │ ├── charTest.c │ │ ├── doubleTest.c │ │ ├── floatTest.c │ │ ├── intTest.c │ │ ├── longIntTest.c │ │ ├── longLongIntTest.c │ │ ├── longLongTest.c │ │ ├── longTest.c │ │ ├── shortIntTest.c │ │ ├── shortTest.c │ │ ├── signedCharTest.c │ │ ├── signedIntTest.c │ │ ├── signedLongIntTest.c │ │ ├── signedLongLongIntTest.c │ │ ├── signedLongLongTest.c │ │ ├── signedLongTest.c │ │ ├── signedShortIntTest.c │ │ ├── signedShortTest.c │ │ ├── test.c │ │ ├── unsignedCharTest.c │ │ ├── unsignedIntTest.c │ │ ├── unsignedLongIntTest.c │ │ ├── unsignedLongLongIntTest.c │ │ ├── unsignedLongLongTest.c │ │ ├── unsignedLongTest.c │ │ ├── unsignedShortIntTest.c │ │ ├── unsignedShortTest.c │ │ └── unsignedTest.c │ ├── doubleTest │ │ ├── addition.c │ │ ├── differentTypesDoubleArrayInit.c │ │ ├── doubleArray.c │ │ ├── implicitIntToDoubleCast.c │ │ ├── intAddition.c │ │ ├── intToDoubleCast.c │ │ ├── multiValuesDoubleArray.c │ │ └── saveIntInDoubleArray.c │ ├── enumTest │ │ ├── anonymTest1.c │ │ ├── enumAnonynmousInit.c │ │ ├── enumArraySizeof.c │ │ ├── enumTest0.c │ │ ├── enumTest1.c │ │ ├── enumTest2.c │ │ ├── enumTest3.c │ │ ├── enumTest4.c │ │ ├── enumTest5.c │ │ ├── enumTest6.c │ │ ├── enumTest7.c │ │ └── enumTest8.c │ ├── escapeTest │ │ ├── escapeTest0.c │ │ ├── escapeTest1.c │ │ ├── escapeTest2.c │ │ ├── escapeTest3.c │ │ └── escapeTest4.c │ ├── explicitCasts │ │ └── integerToInteger.c │ ├── frameArrayTest │ │ ├── test0.c │ │ └── test1.c │ ├── frameTest │ │ ├── frameTest0.c │ │ ├── frameTest1.c │ │ ├── frameTest2.c │ │ ├── frameTest3.c │ │ ├── frameTest4.c │ │ ├── frameTest5.c │ │ └── frameTest6.c │ ├── functionPointer │ │ ├── fp01.c │ │ ├── fp02.c │ │ ├── fp03.c │ │ ├── fp04.c │ │ ├── fp05.c │ │ ├── fp06.c │ │ ├── fp07.c │ │ ├── functionPointerArray.c │ │ ├── functionPointerArray1.c │ │ └── functionPointerArray2.c │ ├── functionTest │ │ ├── functionTest.c │ │ ├── functionTest0.c │ │ ├── functionTest1.c │ │ ├── functionTest10.c │ │ ├── functionTest11.c │ │ ├── functionTest12.c │ │ ├── functionTest13.c │ │ ├── functionTest14.c │ │ ├── functionTest15.c │ │ ├── functionTest2.c │ │ ├── functionTest3.c │ │ ├── functionTest4.c │ │ ├── functionTest5.c │ │ ├── functionTest6.c │ │ ├── functionTest7.c │ │ ├── functionTest8.c │ │ ├── functionTest9.c │ │ └── functionTestSpecialFormat1.c │ ├── gotoTests │ │ ├── goto00.c │ │ ├── goto01.c │ │ ├── goto02.c │ │ ├── goto03.c │ │ ├── goto04.c │ │ ├── goto05.c │ │ ├── goto06.c │ │ ├── goto07.c │ │ ├── goto08.c │ │ ├── goto09.c │ │ ├── goto10.c │ │ ├── goto11.c │ │ ├── goto12.c │ │ ├── goto13.c │ │ ├── goto14.c │ │ ├── goto15.c │ │ ├── goto16.c │ │ ├── goto17.c │ │ ├── goto18.c │ │ ├── goto19.c │ │ └── goto20.c │ ├── heapTest │ │ ├── heapTest0.c │ │ ├── heapTest1.c │ │ ├── heapTest2.c │ │ ├── heapTest3.c │ │ └── heapTest4.c │ ├── implicitCastTest │ │ ├── unsignedToSignedUpcast1.c │ │ ├── unsignedToSignedUpcast2.c │ │ ├── unsignedToSignedUpcast3.c │ │ ├── unsignedToSignedUpcast4.c │ │ └── unsignedToSignedUpcast5.c │ ├── inlineTest │ │ ├── inline0.c │ │ └── inline1.c │ ├── intTest │ │ ├── intTest0.c │ │ ├── intTest1.c │ │ ├── intTest2.c │ │ ├── intTest3.c │ │ └── intTest4.c │ ├── memoryAccessRewriteTest │ │ └── test0.c │ ├── miniTest │ │ ├── aTest.c │ │ ├── aaTest.c │ │ ├── charArithmeticTest1.c │ │ ├── commaTest.c │ │ ├── literalTest1.c │ │ ├── literalTest2.c │ │ ├── literalTest3.c │ │ ├── longAddressComp1.c │ │ ├── memcopy1.c │ │ ├── miniTest0.c │ │ ├── miniTest1.c │ │ ├── miniTest10.c │ │ ├── miniTest11.c │ │ ├── miniTest2.c │ │ ├── miniTest3.c │ │ ├── miniTest4.c │ │ ├── miniTest5.c │ │ ├── miniTest6.c │ │ ├── miniTest7.c │ │ ├── miniTest8.c │ │ ├── miniTest9.c │ │ ├── statementExpression1.c │ │ ├── stdio.c │ │ └── unsignedLongDiv.c │ ├── miniTest_undefined │ │ └── miniTest10.c │ ├── pointerTest │ │ ├── pointerTest0.c │ │ ├── pointerTest1.c │ │ ├── pointerTest10.c │ │ ├── pointerTest11.c │ │ ├── pointerTest12.c │ │ ├── pointerTest2.c │ │ ├── pointerTest3.c │ │ ├── pointerTest4.c │ │ ├── pointerTest5.c │ │ ├── pointerTest6.c │ │ ├── pointerTest7.c │ │ ├── pointerTest8.c │ │ └── pointerTest9.c │ ├── programTest │ │ ├── programTest0.c │ │ ├── programTest1.c │ │ ├── programTest10.c │ │ ├── programTest2.c │ │ ├── programTest4.c │ │ ├── programTest5.c │ │ ├── programTest6.c │ │ ├── programTest7.c │ │ ├── programTest8.c │ │ └── programTest9.c │ ├── shiftTest │ │ ├── negativeLeft1.c │ │ ├── negativeLeft2.c │ │ ├── negativeLeft3.c │ │ ├── negativeLeft4.c │ │ ├── negativeLeft5.c │ │ ├── negativeLeft6.c │ │ └── shiftTest1.c │ ├── stringLiterals │ │ ├── charArrInit.c │ │ ├── charArrayInit2.c │ │ ├── charArrayInit3.c │ │ ├── charArrayInit4.c │ │ ├── charArrayInit4a.c │ │ ├── charArrayInit4b.c │ │ ├── charPointerInit.c │ │ ├── memoryAddress1.c │ │ ├── memoryAddress2.c │ │ ├── memoryAddress3.c │ │ ├── memoryAddress4.c │ │ ├── memoryAddress5.c │ │ ├── memoryAddress6.c │ │ ├── memoryAddress7.c │ │ ├── memoryAddress8.c │ │ ├── memoryAddress9.c │ │ ├── simpleTest1.c │ │ ├── simpleTest10.c │ │ ├── simpleTest12.c │ │ ├── simpleTest13.c │ │ ├── simpleTest14.c │ │ ├── simpleTest15.c │ │ ├── simpleTest16.c │ │ ├── simpleTest17.c │ │ ├── simpleTest18.c │ │ ├── simpleTest2.c │ │ ├── simpleTest3.c │ │ ├── simpleTest4.c │ │ ├── simpleTest5.c │ │ ├── simpleTest6.c │ │ ├── simpleTest8.c │ │ ├── simpleTest9.c │ │ ├── structInitTest1.c │ │ └── structInitTest2.c │ ├── structTest │ │ ├── arrayStructInit1.c │ │ ├── arrayStructInit2.c │ │ ├── compoundLiteral.c │ │ ├── compoundLiteral2.c │ │ ├── compoundLiteral3.c │ │ ├── globalStruct1.c │ │ ├── nambedMemberInit1.c │ │ ├── namedMemberInit1.c │ │ ├── namedMemberInit2.c │ │ ├── namedMemberInit3.c │ │ ├── namedMemberInit4.c │ │ ├── namedMemberInit5.c │ │ ├── namedMemberInit6.c │ │ ├── passPerValue1.c │ │ ├── passPerValue2.c │ │ ├── passPerValue2a.c │ │ ├── passPerValue3.c │ │ ├── passPerValue4.c │ │ ├── passPerValue5.c │ │ ├── passPerValue7.c │ │ ├── passPerValue8.c │ │ ├── passPerValue9.c │ │ ├── returnPerValue1.c │ │ ├── returnPerValue2.c │ │ ├── returnPerValue3.c │ │ ├── returnPerValue4.c │ │ ├── returnPerValue5.c │ │ ├── returnPerValue6.c │ │ ├── statementExpression1.c │ │ ├── statementExpression2.c │ │ ├── staticStruct1.c │ │ ├── structAssign1.c │ │ ├── structConstraints1.c │ │ ├── structCopy1.c │ │ ├── structCopy2.c │ │ ├── structTest0.c │ │ ├── structTest1.c │ │ ├── structTest10.c │ │ ├── structTest11.c │ │ ├── structTest12.c │ │ ├── structTest13.c │ │ ├── structTest14.c │ │ ├── structTest15.c │ │ ├── structTest16.c │ │ ├── structTest17.c │ │ ├── structTest18.c │ │ ├── structTest19.c │ │ ├── structTest2.c │ │ ├── structTest20.c │ │ ├── structTest21.c │ │ ├── structTest22.c │ │ ├── structTest23.c │ │ ├── structTest24.c │ │ ├── structTest25.c │ │ ├── structTest26.c │ │ ├── structTest27.c │ │ ├── structTest28.c │ │ ├── structTest29.c │ │ ├── structTest3.c │ │ ├── structTest30.c │ │ ├── structTest31.c │ │ ├── structTest32.c │ │ ├── structTest33.c │ │ ├── structTest34.c │ │ ├── structTest35.c │ │ ├── structTest36.c │ │ ├── structTest4.c │ │ ├── structTest6.c │ │ ├── structTest7.c │ │ ├── structTest8.c │ │ ├── structTest9.c │ │ ├── structsInStruct1.c │ │ ├── structsInStruct2.c │ │ ├── test000.c │ │ ├── test000a.c │ │ ├── test001.c │ │ ├── test002.c │ │ ├── test003.c │ │ ├── test004.c │ │ ├── test005.c │ │ ├── test007.c │ │ ├── test007a.c │ │ ├── test007b.c │ │ ├── test008.c │ │ ├── test009.c │ │ └── varArrayInStruct.c │ ├── switchTest │ │ ├── switch1.c │ │ ├── switch10.c │ │ ├── switch11.c │ │ ├── switch2.c │ │ ├── switch3.c │ │ ├── switch4.c │ │ ├── switch5.c │ │ ├── switch6.c │ │ ├── switch7.c │ │ ├── switch8.c │ │ ├── switch9.c │ │ └── switchTest1.c │ ├── unaryTest │ │ ├── unaryTest1.c │ │ ├── unaryTest10.c │ │ ├── unaryTest11.c │ │ ├── unaryTest12.c │ │ ├── unaryTest13.c │ │ ├── unaryTest14.c │ │ ├── unaryTest2.c │ │ ├── unaryTest3.c │ │ ├── unaryTest4.c │ │ ├── unaryTest5.c │ │ ├── unaryTest6.c │ │ ├── unaryTest7.c │ │ └── unaryTest8.c │ ├── unaryTest_undefined │ │ ├── unaryTest0.c │ │ └── unaryTest9.c │ ├── uncategorizedTest │ │ ├── constTest0.c │ │ ├── constTest1.c │ │ ├── defineTest0.c │ │ ├── forwardDecl0.c │ │ ├── forwardDecl1.c │ │ ├── inlineFunction0.c │ │ ├── macroFunctionTest0.c │ │ ├── registerVariableTest0.c │ │ ├── staticFunction0.c │ │ ├── typeDef0.c │ │ ├── typeDef1.c │ │ └── varOver.c │ ├── unionTest │ │ ├── bitField1.c │ │ ├── memberInitialization1.c │ │ ├── memberInitialization2.c │ │ ├── memberInitialization2a.c │ │ ├── unionTest0.c │ │ ├── unionTest1.c │ │ ├── unionTest10.c │ │ ├── unionTest11.c │ │ ├── unionTest12.c │ │ ├── unionTest13.c │ │ ├── unionTest2.c │ │ ├── unionTest3.c │ │ ├── unionTest4.c │ │ ├── unionTest5.c │ │ ├── unionTest6.c │ │ ├── unionTest7.c │ │ ├── unionTest8.c │ │ └── unionTest9.c │ ├── unsignedLongTest │ │ ├── additionTest1.c │ │ ├── additionTest2.c │ │ ├── andTest1.c │ │ ├── arithmNotTest1.c │ │ ├── arithmNotTest2.c │ │ ├── divTest1.c │ │ ├── divTest2.c │ │ ├── divTest3.c │ │ ├── fromCharCast.c │ │ ├── fromIntCast.c │ │ ├── fromLongCast.c │ │ ├── greaterThanEqualTest1.c │ │ ├── greaterThanEqualTest2.c │ │ ├── greaterThanEqualTest3.c │ │ ├── greaterThanEqualTest4.c │ │ ├── greaterThanEqualTest5.c │ │ ├── greaterThanTest1.c │ │ ├── greaterThanTest2.c │ │ ├── greaterThanTest3.c │ │ ├── greaterThanTest4.c │ │ ├── greaterThanTest5.c │ │ ├── leftShift1.c │ │ ├── lessThan1.c │ │ ├── lessThan2.c │ │ ├── lessThan3.c │ │ ├── lessThan4.c │ │ ├── lessThan5.c │ │ ├── lessThanEqualTest1.c │ │ ├── lessThanEqualTest2.c │ │ ├── lessThanEqualTest3.c │ │ ├── lessThanEqualTest4.c │ │ ├── lessThanEqualTest5.c │ │ ├── logicalNotTest1.c │ │ ├── logicalNotTest2.c │ │ ├── modTest1.c │ │ ├── modTest2.c │ │ ├── multiplication1.c │ │ ├── notEqualTest1.c │ │ ├── notEqualTest2.c │ │ ├── orTest1.c │ │ ├── remTest1.c │ │ ├── remTest2.c │ │ └── shiftRight1.c │ ├── variableTest │ │ ├── arrayTest1.c │ │ ├── arrayTest2.c │ │ ├── arrayTest3.c │ │ ├── arrayTest4.c │ │ ├── arrayTest5.c │ │ ├── arrayTest6.c │ │ ├── mixed1.c │ │ ├── pointerTest1.c │ │ ├── pointerTest2.c │ │ ├── pointerTest3.c │ │ ├── pointerTest4.c │ │ ├── pointerTest5.c │ │ ├── pointerTest6.c │ │ ├── staticlocal1.c │ │ ├── staticlocal2.c │ │ ├── staticlocal3.c │ │ ├── valTest.c │ │ └── valTest1.c │ └── variousTest │ │ ├── controlTest15.c │ │ ├── controlTest16.c │ │ ├── controlTest17.c │ │ ├── controlTest18.c │ │ ├── controlTest19.c │ │ ├── controlTest20.c │ │ ├── controlTest21.c │ │ ├── controlTest22.c │ │ ├── enumTypeDefForwardDecl.c │ │ ├── programTest11.c │ │ ├── programTest12.c │ │ ├── programTest13.c │ │ └── structTypeDefForwardDecl.c │ ├── union │ └── simpleUnion.c │ ├── varargs │ ├── var80bit.c │ ├── varFloatVec.c │ ├── varFunctionPointer.c │ ├── varSmallStruct.c │ ├── varStructBeforePrimitive.c │ ├── varStructBeforePrimitiveAMD64Explicite.c │ ├── varStructDouble.c │ ├── varStructDoubleAMD64Explicite.c │ ├── varStructLong.c │ ├── varStructLongAMD64Explicite.c │ ├── varStructModify.c │ ├── varStructModifyPtr.c │ ├── varStructPtr.c │ ├── varStructStackOnly.c │ └── varStructStackOnlyAMD64Explicite.c │ └── vector │ ├── extractvalue.c │ ├── insertElement.c │ ├── vectorAddition.c │ ├── vectorAddition2.c │ ├── vectorDivision.c │ ├── vectorLiteral.c │ ├── vectorMultiplication.c │ └── vectorSubtraction.c ├── com.oracle.truffle.llvm.tests.sulongavx └── avx │ ├── avx2fallback.h │ ├── builtin_gcc │ └── __builtin_shufflevector.c │ └── intrinsics │ └── byteswap.c ├── com.oracle.truffle.llvm.tests.sulongcpp └── cpp │ ├── builtin │ ├── arithmetic │ │ ├── arithmetic_sadd_i16.c │ │ ├── arithmetic_sadd_i32.c │ │ ├── arithmetic_sadd_i64.c │ │ ├── arithmetic_sadd_i8.c │ │ ├── arithmetic_smul_i16.c │ │ ├── arithmetic_smul_i32.c │ │ ├── arithmetic_smul_i64.c │ │ ├── arithmetic_smul_i8.c │ │ ├── arithmetic_ssub_i16.c │ │ ├── arithmetic_ssub_i32.c │ │ ├── arithmetic_ssub_i64.c │ │ ├── arithmetic_ssub_i8.c │ │ ├── arithmetic_uadd_i16.c │ │ ├── arithmetic_uadd_i32.c │ │ ├── arithmetic_uadd_i64.c │ │ ├── arithmetic_uadd_i8.c │ │ ├── arithmetic_umul_i16.c │ │ ├── arithmetic_umul_i32.c │ │ ├── arithmetic_umul_i64.c │ │ ├── arithmetic_umul_i8.c │ │ ├── arithmetic_usub_i16.c │ │ ├── arithmetic_usub_i32.c │ │ ├── arithmetic_usub_i64.c │ │ └── arithmetic_usub_i8.c │ ├── assume.cpp.ignore │ └── clz.c │ ├── test003.cpp │ ├── test004.cpp │ ├── test005.cpp │ ├── test006.cpp │ ├── test007.cpp │ ├── test008.cpp │ ├── test009.cpp │ ├── test010.cpp │ ├── test011.cpp │ ├── test013.cpp │ ├── test014.cpp │ ├── test015.cpp │ ├── test016.cpp │ ├── test017.cpp │ ├── test018.cpp │ ├── test019.cpp │ ├── test020.cpp │ ├── test021.cpp │ ├── test022.cpp │ ├── test023.cpp │ ├── test024.cpp │ ├── test025.cpp │ ├── test026.cpp │ ├── test027.cpp │ ├── test028.cpp │ ├── test029.cpp │ ├── test030.cpp │ ├── test031.cpp │ ├── test032.cpp │ ├── test033.cpp │ ├── test034.cpp │ ├── test035.cpp │ ├── test036.cpp │ ├── test037.cpp │ ├── test038.cpp │ ├── test039.cpp │ ├── test040.cpp │ ├── test041.cpp │ ├── test042.cpp │ ├── test043.cpp │ ├── test044.cpp │ ├── test045.cpp │ ├── test046.cpp │ ├── test047.cpp │ ├── test048.cpp │ ├── test049.cpp │ ├── test050.cpp │ ├── test051.cpp │ ├── test052.cpp │ ├── test053.cpp │ └── testRuntimeError.cpp ├── gcc ├── compileConfigs │ └── working.include └── configs │ ├── c-c++-common │ ├── asan │ │ └── exclude.exclude │ ├── assembler.exclude │ ├── error.exclude │ ├── failsongate.exclude │ ├── sometimesfails.exclude │ ├── ubsan │ │ └── freeze.exclude │ └── unsorted.include │ ├── compile-errors.exclude │ ├── g++.dg │ ├── broken.exclude │ ├── conversion │ │ └── working.include │ ├── cpp0x │ │ └── notworking.exclude │ ├── opt │ │ └── working.include │ ├── other │ │ └── notworking.exclude │ ├── overload │ │ ├── notworking.exclude │ │ └── working.include │ ├── template │ │ ├── notworking.exclude │ │ └── working.include │ ├── torture │ │ └── working.include │ └── working.include │ ├── g++.old-deja │ └── working.include │ ├── gcc.c-torture │ ├── compile │ │ └── nonterminating.exclude │ └── execute │ │ ├── builtin-ret-addr.exclude │ │ ├── builtins.exclude │ │ ├── clang.exclude │ │ ├── escapingfunctionpointer.exclude │ │ ├── fail-on-gate.exclude │ │ ├── inlineassembler.exclude │ │ ├── llifail.exclude │ │ ├── segfault.exclude │ │ ├── setjmp.exclude │ │ ├── vectorcast.exclude │ │ └── working.include │ ├── gcc.dg │ ├── 80bitfloats.exclude │ ├── atomics.exclude │ ├── autopar │ │ ├── crash.exclude │ │ ├── error.exclude │ │ ├── invalid.exclude │ │ ├── timeout.exclude │ │ └── working.include │ ├── error.exclude │ ├── floating-point-environment.exclude │ ├── gomp │ │ └── segfault.exclude │ ├── graphite │ │ ├── assembler.exclude │ │ ├── error.exclude │ │ ├── segfault.exclude │ │ └── working.include │ ├── lto │ │ ├── assembler.exclude │ │ ├── crash.exclude │ │ ├── error.exclude │ │ └── working.include │ ├── only-compile.exclude │ ├── return-address.exclude │ ├── segfault-only-compile.exclude │ ├── segfault.exclude │ ├── setjmp.exclude │ ├── simulate-thread │ │ └── thread.exclude │ ├── timeout.exclude │ ├── tls │ │ └── segfault.exclude │ ├── torture │ │ ├── 80bitfloats.exclude │ │ ├── assembler.exclude │ │ ├── error.exclude │ │ ├── multithreading.exclude │ │ ├── segfault.exclude │ │ ├── sometimesfail.exclude │ │ ├── stackalign │ │ │ ├── setjmp.exclude │ │ │ ├── sometimesfail.exclude │ │ │ └── working.include │ │ ├── vectorcast.exclude │ │ └── working.include │ ├── tree-prof │ │ ├── assembler.exclude │ │ ├── error.exclude │ │ ├── longjmp.exclude │ │ ├── multithreading.exclude │ │ └── working.include │ ├── tree-ssa │ │ └── working.exclude │ ├── uninitialized.exclude │ ├── unsorted │ │ ├── assembler.exclude │ │ ├── error.exclude │ │ ├── multithreading.exclude │ │ ├── segfault.exclude │ │ ├── sometimesnotworking.exclude │ │ ├── timeout.exclude │ │ └── working.include │ ├── vect │ │ ├── assembler.exclude │ │ ├── error.exclude │ │ └── working.include │ ├── vmx │ │ ├── error.exclude │ │ └── working.include │ └── working.include │ ├── gcc.misc-tests │ ├── clangerror.exclude │ ├── longjmp.exclude │ └── working.include │ ├── gcc.target │ ├── unsupported-arch.exclude │ └── x86_64 │ │ ├── compile-errors.exclude │ │ └── working.include │ ├── gcc.test-framework │ └── working.include │ ├── gfortran.dg │ ├── gomp │ │ ├── error.exclude │ │ └── working.include │ └── vect │ │ ├── error.exclude │ │ ├── exit.exclude │ │ ├── timeout.exclude │ │ └── working.include │ └── gfortran.fortran-torture │ └── execute │ ├── exit.exclude │ ├── failsongate.exclude │ ├── timeout.exclude │ └── working.include ├── inlineassemblytests ├── adc001.c ├── add001.c ├── bsf001.c ├── bsf002.c ├── bsf003.c ├── bsr001.c ├── bsr002.c ├── bsr003.c ├── bswap001.c ├── bswap002.c ├── cmp001.c ├── cmpxchg001.c ├── cmpxchg002.c ├── cpuid.h ├── cpuid001.c ├── cpuid002.c ├── flags.h ├── inlineassembly001.c ├── inlineassembly002.c ├── inlineassembly003.c ├── inlineassembly004.c ├── inlineassembly005.c ├── inlineassembly006.c ├── inlineassembly007.c ├── inlineassembly008.c ├── inlineassembly009.c ├── inlineassembly010.c ├── inlineassembly011.c ├── inlineassembly012.c ├── inlineassembly013.c ├── inlineassembly014.c ├── inlineassembly015.c ├── inlineassembly016.c ├── inlineassembly017.c ├── inlineassembly018.c ├── inlineassembly019.c ├── inlineassembly020.c ├── inlineassembly021.c ├── inlineassembly022.c ├── inlineassembly023.c ├── inlineassembly024.c ├── inlineassembly025.c ├── inlineassembly026.c ├── inlineassembly027.c ├── inlineassembly028.c ├── inlineassembly029.c ├── inlineassembly030.c ├── inlineassembly031.c ├── inlineassembly032.c ├── inlineassembly033.c ├── inlineassembly034.c ├── inlineassembly035.c ├── inlineassembly036.c ├── inlineassembly037.c ├── inlineassembly038.c ├── inlineassembly039.c ├── inlineassembly040.c ├── inlineassembly041.c ├── inlineassembly042.c ├── inlineassembly043.c ├── inlineassembly044.c ├── inlineassembly045.c ├── inlineassembly046.c ├── inlineassembly047.c ├── inlineassembly048.c ├── inlineassembly049.c ├── inlineassembly050.c ├── inlineassembly051.c ├── inlineassembly052.c ├── inlineassembly053.c ├── inlineassembly054.c ├── inlineassembly055.c ├── inlineassembly056.c ├── inlineassembly057.c ├── inlineassembly058.c ├── inlineassembly059.c ├── lea001.c ├── nanolibc.h ├── push001.c ├── push002.c ├── rdrand001.c ├── rdrand002.c ├── rdrand003.c ├── rdseed001.c ├── rdseed002.c ├── rdseed003.c ├── setc001.c ├── setc002.c ├── setc003.c ├── setc004.c ├── setc005.c ├── setc006.c ├── setc007.c ├── seto001.c ├── seto002.c ├── seto003.c ├── seto004.c ├── seto005.c ├── seto006.c ├── seto007.c ├── seto008.c ├── seto009.c ├── seto010.c ├── stosb001.c ├── stosb002.c ├── syscall-getcwd001.c ├── syscall-getgid001.c ├── syscall-getuid001.c ├── syscall-lseek001.c ├── syscall-lseek002.c ├── syscall-lseek003.c ├── syscall-lseek004.c ├── syscall-lseek005.c ├── syscall-lseek006.c ├── syscall-lseek007.c ├── syscall-lseek008.c ├── syscall-open001.c ├── syscall-open002.c ├── syscall-open003.c ├── syscall-read001.c ├── syscall-read002.c ├── syscall-read003.c ├── syscall-readv001.c ├── syscall-readv002.c ├── syscall-uname001.c ├── syscall-write001.c ├── syscall-writev001.c ├── syscall-writev002.c ├── syscall001.c ├── syscall002.c ├── xadd001.c ├── xadd002.c ├── xadd003.c ├── xadd004.c ├── xchg001.c ├── xchg002.c ├── xchg003.c └── xchg004.c ├── llvm └── configs │ ├── SingleSource │ ├── Regression │ │ ├── infiniteloop.exclude │ │ └── working.include │ └── UnitTests │ │ ├── function-pointer-escapes.exclude │ │ ├── segfault.exclude │ │ ├── timeout.exclude │ │ ├── unsupported.exclude │ │ ├── vector-cast.exclude │ │ └── working.include │ └── compile-errors.exclude ├── nwcc └── configs │ ├── compileerror.exclude │ ├── floating.exclude │ ├── inlineassembler.exclude │ ├── missingfunctions.exclude │ ├── missingglobals.exclude │ ├── multithreading.exclude │ ├── nomain.exclude │ ├── notenoughfunctionargs.exclude │ ├── notworking.exclude │ ├── parsererror.exclude │ ├── segfault.exclude │ ├── timeout.exclude │ ├── undefined.exclude │ └── working.include └── other ├── callbackIntrinsic.c ├── callbackTest001.c ├── callbackTest002.c ├── callbackTest003.c ├── callbackTest004.c ├── callbackTest005.c ├── callbackTest006.c ├── callbackTest007.c ├── callbackTest008.c ├── flush.c ├── main-args.c ├── nativeCallbackInStruct.c ├── returnNativeCallback.c ├── vaargs00.c ├── vaargs01.c ├── vaargs02.c ├── vaargs03.c ├── vaargs04.c └── vaargs05.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/README.md -------------------------------------------------------------------------------- /ci.hocon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/ci.hocon -------------------------------------------------------------------------------- /docs/ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/docs/ARCHITECTURE.md -------------------------------------------------------------------------------- /docs/CI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/docs/CI.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/DEBUGGING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/docs/DEBUGGING.md -------------------------------------------------------------------------------- /docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/docs/FAQ.md -------------------------------------------------------------------------------- /docs/INTEROP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/docs/INTEROP.md -------------------------------------------------------------------------------- /docs/PUBLICATIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/docs/PUBLICATIONS.md -------------------------------------------------------------------------------- /docs/TESTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/docs/TESTS.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/docs/index.md -------------------------------------------------------------------------------- /include/truffle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/include/truffle.h -------------------------------------------------------------------------------- /mx.sulong/copyrights/llvm.copyright.star.regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/mx.sulong/copyrights/llvm.copyright.star.regex -------------------------------------------------------------------------------- /mx.sulong/copyrights/no.copyright.hash.regex: -------------------------------------------------------------------------------- 1 | .* 2 | -------------------------------------------------------------------------------- /mx.sulong/copyrights/oracle.copyright.regex.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/mx.sulong/copyrights/oracle.copyright.regex.hash -------------------------------------------------------------------------------- /mx.sulong/copyrights/oracle.copyright.regex.star: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/mx.sulong/copyrights/oracle.copyright.regex.star -------------------------------------------------------------------------------- /mx.sulong/copyrights/overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/mx.sulong/copyrights/overrides -------------------------------------------------------------------------------- /mx.sulong/eclipse-settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/mx.sulong/eclipse-settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /mx.sulong/mx_buildtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/mx.sulong/mx_buildtools.py -------------------------------------------------------------------------------- /mx.sulong/mx_sulong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/mx.sulong/mx_sulong.py -------------------------------------------------------------------------------- /mx.sulong/mx_sulong_benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/mx.sulong/mx_sulong_benchmarks.py -------------------------------------------------------------------------------- /mx.sulong/mx_testsuites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/mx.sulong/mx_testsuites.py -------------------------------------------------------------------------------- /mx.sulong/native-image.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/mx.sulong/native-image.properties -------------------------------------------------------------------------------- /mx.sulong/suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/mx.sulong/suite.py -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/Makefile -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/include/polyglot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/include/polyglot.h -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/libcxx/__config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/libcxx/__config -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/libcxx/__nullptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/libcxx/__nullptr -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/libcxx/cstddef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/libcxx/cstddef -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/libcxx/cstdint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/libcxx/cstdint -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/libcxx/cstdlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/libcxx/cstdlib -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/libcxx/cstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/libcxx/cstring -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/libcxx/exception: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/libcxx/exception -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/libcxx/iosfwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/libcxx/iosfwd -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/libcxx/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/libcxx/new -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/libcxx/stdexcept: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/libcxx/stdexcept -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/libcxx/type_traits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/libcxx/type_traits -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/libcxx/typeinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/libcxx/typeinfo -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/libcxxabi/cxxabi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/libcxxabi/cxxabi.h -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/src/abort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/src/abort.c -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/src/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/src/assert.c -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/src/builtin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/src/builtin.c -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/src/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/src/clock.c -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/src/clone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/src/clone.c -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/src/complex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/src/complex.c -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/src/crt0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/src/crt0.c -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/src/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/src/exec.c -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/src/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/src/exit.c -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/src/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/src/fork.c -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/src/memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/src/memcpy.c -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/src/pthreads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/src/pthreads.c -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/src/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/src/qsort.c -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/src/setjmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/src/setjmp.c -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/src/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/src/stat.c -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/src/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/src/string.c -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/src/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/src/syscall.h -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.bitcode/src/unsupported.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.bitcode/src/unsupported.h -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.native/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.native/Makefile -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.native/src/fp80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.native/src/fp80.c -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.native/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.native/src/misc.c -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.libraries.native/src/posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.libraries.native/src/posix.c -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.pipe.native/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.pipe.native/Makefile -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.pipe.native/src/capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.pipe.native/src/capture.cpp -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.runtime/.checkstyle_checks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.runtime/.checkstyle_checks.xml -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.test.native/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.test.native/Makefile -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.test.native/src/callbackLibrary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.test.native/src/callbackLibrary.c -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm.test.native/src/caller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm.test.native/src/caller.c -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm/src/META-INF/services/java.nio.file.spi.FileTypeDetector: -------------------------------------------------------------------------------- 1 | com.oracle.truffle.llvm.LLVMFileDetector -------------------------------------------------------------------------------- /projects/com.oracle.truffle.llvm/src/com/oracle/truffle/llvm/Runner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/projects/com.oracle.truffle.llvm/src/com/oracle/truffle/llvm/Runner.java -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/argon2/pthread-stub/pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/argon2/pthread-stub/pthread.c -------------------------------------------------------------------------------- /tests/argon2/pthread-stub/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/argon2/pthread-stub/pthread.h -------------------------------------------------------------------------------- /tests/benchmarksgame/configs/run.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/benchmarksgame/configs/run.include -------------------------------------------------------------------------------- /tests/benchmarksgame/configs/unrelated.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/benchmarksgame/configs/unrelated.exclude -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.debug/debug/testClasses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.debug/debug/testClasses.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.debug/debug/testControlFlow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.debug/debug/testControlFlow.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.debug/debug/testDecorators.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.debug/debug/testDecorators.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.debug/debug/testFunctionPointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.debug/debug/testFunctionPointer.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.debug/debug/testLongDouble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.debug/debug/testLongDouble.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.debug/debug/testObjectPointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.debug/debug/testObjectPointer.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.debug/debug/testPrimitives.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.debug/debug/testPrimitives.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.debug/debug/testScopes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.debug/debug/testScopes.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.debug/debug/testStructures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.debug/debug/testStructures.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.debug/debug/testUnions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.debug/debug/testUnions.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.debug/trace/testClasses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.debug/trace/testClasses.txt -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.debug/trace/testControlFlow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.debug/trace/testControlFlow.txt -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.debug/trace/testDecorators.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.debug/trace/testDecorators.txt -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.debug/trace/testFunctionPointer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.debug/trace/testFunctionPointer.txt -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.debug/trace/testLongDouble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.debug/trace/testLongDouble.txt -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.debug/trace/testObjectPointer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.debug/trace/testObjectPointer.txt -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.debug/trace/testPrimitives.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.debug/trace/testPrimitives.txt -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.debug/trace/testScopes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.debug/trace/testScopes.txt -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.debug/trace/testStructures.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.debug/trace/testStructures.txt -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.debug/trace/testUnions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.debug/trace/testUnions.txt -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/construct001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/construct001.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/construct002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/construct002.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/derefHandleTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/derefHandleTest.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/fitsIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/fitsIn.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop001.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop002.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop003.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop004.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop004.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop005.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop005.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop006.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop006.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop008.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop008.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop009.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop009.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop010.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop010.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop011.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop011.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop012.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop012.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop013.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop013.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop014.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop014.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop015.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop015.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop016.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop016.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop017.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop017.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop018.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop018.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop019.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop019.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop020.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop020.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop021.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop021.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop022.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop022.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop023.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop023.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop024.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop024.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop025.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop025.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop026.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop026.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop027.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop027.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop028.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop028.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop030.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop030.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop031.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop031.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop032.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop032.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop033.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop033.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop034.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop034.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop035.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop035.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop036.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop036.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop037.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop037.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop038.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop038.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop039.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop039.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop040.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop040.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop041.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop041.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop042.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop042.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop043.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop043.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop044.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop044.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop045.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop045.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop046.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop046.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop047.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop047.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop048.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop048.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop049.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop049.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop050.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop050.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop051.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop051.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop052.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop052.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop053.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop053.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop054.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop054.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop055.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop055.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop056.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop056.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop057.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop057.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop058.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop058.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop059.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop059.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop060.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop060.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop061.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop061.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop062.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop062.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop063.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop063.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop064.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop064.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop065.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop065.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop066.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop066.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop067.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop067.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop068.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop068.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop069.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop069.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop070.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop070.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop071.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop071.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop072.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop072.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop073.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop073.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop074.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop074.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop075.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop075.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop076.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop076.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/interop077.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/interop077.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/invoke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/invoke.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/isHandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/isHandle.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/nameBasedInterop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/nameBasedInterop.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/polyglotScopeTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/polyglotScopeTest.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/readExecute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/readExecute.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/registerHandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/registerHandle.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/releaseHandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/releaseHandle.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/scaleVector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/scaleVector.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/strcmp.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/stringTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/stringTest.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/strlen.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/tck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/tck.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/typeCheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/typeCheck.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/typedExport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/typedExport.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.interop/interop/typedInterop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.interop/interop/typedInterop.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.irdebug/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.irdebug/README -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.irdebug/irdebug/controlFlow.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.irdebug/irdebug/controlFlow.ll -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.irdebug/irdebug/globals.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.irdebug/irdebug/globals.ll -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.irdebug/irdebug/primitives.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.irdebug/irdebug/primitives.ll -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.irdebug/irdebug/vectors-mem2reg.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.irdebug/irdebug/vectors-mem2reg.ll -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.irdebug/irdebug/vectors.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.irdebug/irdebug/vectors.ll -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.irdebug/src/controlFlow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.irdebug/src/controlFlow.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.irdebug/src/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.irdebug/src/globals.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.irdebug/src/primitives.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.irdebug/src/primitives.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.irdebug/src/vectorKinds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.irdebug/src/vectorKinds.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.irdebug/src/vectors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.irdebug/src/vectors.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.irdebug/trace/controlFlow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.irdebug/trace/controlFlow.txt -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.irdebug/trace/globals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.irdebug/trace/globals.txt -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.irdebug/trace/primitives.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.irdebug/trace/primitives.txt -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.irdebug/trace/vectors-mem2reg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.irdebug/trace/vectors-mem2reg.txt -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.irdebug/trace/vectors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.irdebug/trace/vectors.txt -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/.gitignore: -------------------------------------------------------------------------------- 1 | *.bc 2 | *.out 3 | *.ll 4 | -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/assert/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/assert/assert.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/atoi/atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/atoi/atoi.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/atol/atol-big-numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/atol/atol-big-numbers.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/atol/atol-invalid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/atol/atol-invalid.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/atol/atol-mixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/atol/atol-mixed.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/atol/atol-small-numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/atol/atol-small-numbers.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/atoll/atol-big-numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/atoll/atol-big-numbers.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/atoll/atol-invalid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/atoll/atol-invalid.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/calloc/calloc-int-ptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/calloc/calloc-int-ptr.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/calloc/two-callocs-loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/calloc/two-callocs-loop.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/ctypes/cornercases.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/ctypes/cornercases.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/ctypes/isalnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/ctypes/isalnum.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/ctypes/isalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/ctypes/isalpha.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/ctypes/iscntrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/ctypes/iscntrl.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/ctypes/isdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/ctypes/isdigit.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/ctypes/isgraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/ctypes/isgraph.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/ctypes/islower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/ctypes/islower.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/ctypes/isprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/ctypes/isprint.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/ctypes/ispunct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/ctypes/ispunct.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/ctypes/isspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/ctypes/isspace.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/ctypes/isupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/ctypes/isupper.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/ctypes/isxdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/ctypes/isxdigit.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/errno/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/errno/errno.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/feof/feof-fseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/feof/feof-fseek.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/feof/feof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/feof/feof.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/fflush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/fflush.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/fgets/fgets-no-input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/fgets/fgets-no-input.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/fprintf/fprintf-stderr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/fprintf/fprintf-stderr.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/fprintf/fprintf-stdout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/fprintf/fprintf-stdout.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/fputc/fputc-stderr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/fputc/fputc-stderr.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/fputc/fputc-stdout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/fputc/fputc-stdout.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/fputs/fputs-stderr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/fputs/fputs-stderr.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/fputs/fputs-stdout-arr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/fputs/fputs-stdout-arr.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/fputs/fputs-stdout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/fputs/fputs-stdout.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/fread/fread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/fread/fread.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/free/free-calloc-int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/free/free-calloc-int.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/free/free-null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/free/free-null.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/free/malloc/free-struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/free/malloc/free-struct.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/fscanf/fscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/fscanf/fscanf.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/fseek/fseek-beginning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/fseek/fseek-beginning.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/fseek/fseek-current.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/fseek/fseek-current.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/fseek/fseek-end.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/fseek/fseek-end.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/ftell/ftell-empty-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/ftell/ftell-empty-file.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/ftell/ftell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/ftell/ftell.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/fwrite/fwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/fwrite/fwrite.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/getchar/getchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/getchar/getchar.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/getenv/getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/getenv/getenv.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/getpid/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/getpid/getpid.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/log2/log2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/log2/log2.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/malloc/malloc-int-array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/malloc/malloc-int-array.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/malloc/only-malloc-int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/malloc/only-malloc-int.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/malloc/primitives/char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/malloc/primitives/char.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/malloc/primitives/float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/malloc/primitives/float.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/malloc/primitives/int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/malloc/primitives/int.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/malloc/primitives/long.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/malloc/primitives/long.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/malloc/primitives/short.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/malloc/primitives/short.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/memcmp/memcmp-int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/memcmp/memcmp-int.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/memcpy/memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/memcpy/memcpy.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/memmove/memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/memmove/memmove.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/memset/memset-struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/memset/memset-struct.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/memset/memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/memset/memset.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/posix/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/posix/strdup.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/printf/printf-char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/printf/printf-char.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/printf/printf-float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/printf/printf-float.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/printf/printf-int-args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/printf/printf-int-args.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/printf/printf-int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/printf/printf-int.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/printf/printf-long-i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/printf/printf-long-i.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/printf/printf-mixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/printf/printf-mixed.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/printf/printf-string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/printf/printf-string.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/putc/putc-stderr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/putc/putc-stderr.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/putc/putc-stdout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/putc/putc-stdout.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/putchar/putchar-newline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/putchar/putchar-newline.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/putchar/putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/putchar/putchar.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/puts/puts-string-array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/puts/puts-string-array.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/puts/puts-string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/puts/puts-string.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/rand/rand-range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/rand/rand-range.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/rand/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/rand/rand.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/rewind/rewind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/rewind/rewind.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/scanf/char.c.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/scanf/char.c.ignore -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/scanf/int.c.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/scanf/int.c.ignore -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/scanf/long.c.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/scanf/long.c.ignore -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/scanf/setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/scanf/setup.h -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/scanf/string.c.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/scanf/string.c.ignore -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/scanf/uint.c.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/scanf/uint.c.ignore -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/sin-cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/sin-cos.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/snprintf/snprintf-int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/snprintf/snprintf-int.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/sprintf/sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/sprintf/sprintf.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/strcat/strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/strcat/strcat.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/strchr/strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/strchr/strchr.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/strcmp/strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/strcmp/strcmp.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/strcpy/strcpy-empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/strcpy/strcpy-empty.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/strcpy/strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/strcpy/strcpy.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/strcspn/strcspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/strcspn/strcspn.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/strerror/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/strerror/strerror.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/strlen/strlen-str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/strlen/strlen-str.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/strncat/strncat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/strncat/strncat.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/strncpy/strncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/strncpy/strncpy.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/strpbrk/strpbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/strpbrk/strpbrk.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/strrchr/strrchr-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/strrchr/strrchr-1.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/strspn/strspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/strspn/strspn.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/strstr/strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/strstr/strstr.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/strtod/strtod-int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/strtod/strtod-int.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/strtod/strtod-sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/strtod/strtod-sign.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/strtod/strtod-str-arg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/strtod/strtod-str-arg.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/strtok/strtok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/strtok/strtok.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/strtok/strtok2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/strtok/strtok2.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/strtok/strtok3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/strtok/strtok3.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/strtok/strtok4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/strtok/strtok4.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/system/system.c.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/system/system.c.ignore -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/systime/gettimeofday.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/systime/gettimeofday.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/time/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/time/clock.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/time/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/time/time.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/tmpfile/tmpfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/tmpfile/tmpfile.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/tmpname/tmpname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/tmpname/tmpname.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/tolower/tolower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/tolower/tolower.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/toupper/toupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/toupper/toupper.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/ungetc/ungetc-stdin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/ungetc/ungetc-stdin.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/ungetc/ungetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/ungetc/ungetc.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/vfprintf/vfprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/vfprintf/vfprintf.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.libc/libc/vprintf/vprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.libc/libc/vprintf/vprintf.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.nfi/nfi/basicTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.nfi/nfi/basicTest.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/2.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/3.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/4.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/5.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/6.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/arrays/charArray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/arrays/charArray.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/arrays/doubleArray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/arrays/doubleArray.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/arrays/fourDimConstIndex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/arrays/fourDimConstIndex.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/arrays/fourDimDynIndex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/arrays/fourDimDynIndex.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/arrays/intArray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/arrays/intArray.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/arrays/multiDim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/arrays/multiDim.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/arrays/threeDimDynIndex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/arrays/threeDimDynIndex.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/assert.h -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/compareExchange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/compareExchange.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/compareExchangeVal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/compareExchangeVal.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/compareExchangeVal2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/compareExchangeVal2.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/cyclicPhi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/cyclicPhi.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/cyclicPhi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/cyclicPhi2.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/cyclicPhi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/cyclicPhi3.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/factorial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/factorial.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/fence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/fence.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/fibonacci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/fibonacci.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/globalVar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/globalVar.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/globalVar2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/globalVar2.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/i1-to-float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/i1-to-float.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/i128/left-shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/i128/left-shift.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/i128/signed-right-shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/i128/signed-right-shift.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/i128/signed-right-shift2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/i128/signed-right-shift2.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/intrinsics/byteswap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/intrinsics/byteswap.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/intrinsics/memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/intrinsics/memmove.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/intrinsics/movemask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/intrinsics/movemask.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/lfplayout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/lfplayout.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/localStaticVariable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/localStaticVariable.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/longdouble/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/longdouble/add.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/longdouble/longdouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/longdouble/longdouble.h -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/main-i16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/main-i16.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/main-i64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/main-i64.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/main-i8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/main-i8.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/native-call-arg-conv-363.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/native-call-arg-conv-363.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/qsort.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/readModifyWrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/readModifyWrite.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/stdlib/atexit001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/stdlib/atexit001.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/stdlib/atexit002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/stdlib/atexit002.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/stdlib/atexit003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/stdlib/atexit003.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/stdlib/atexit004.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/stdlib/atexit004.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/stdlib/atexit005.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/stdlib/atexit005.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/stdlib/complex-conjugate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/stdlib/complex-conjugate.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/stdlib/math/fmodl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/stdlib/math/fmodl.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/stdlib/math/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/stdlib/math/sqrt.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/stdlib/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/stdlib/signal.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/stdlib/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/stdlib/stat.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/struct/intDouble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/struct/intDouble.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/struct/mixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/struct/mixed.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/struct/packed/packed1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/struct/packed/packed1.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/struct/packed/packed2.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/struct/packed/packed2.1.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/struct/packed/packed2.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/struct/packed/packed2.2.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/struct/packed/packed2.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/struct/packed/packed2.3.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/struct/singleInt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/struct/singleInt.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/sum.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/swap.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/switch/switch1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/switch/switch1.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/switch/switch2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/switch/switch2.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/switch/switch3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/switch/switch3.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/truffle-c/charTest/cont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/truffle-c/charTest/cont.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/truffle-c/charTest/not.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/truffle-c/charTest/not.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/truffle-c/charTest/not2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/truffle-c/charTest/not2.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/truffle-c/miniTest/aTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/truffle-c/miniTest/aTest.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/truffle-c/miniTest/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/truffle-c/miniTest/stdio.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/union/simpleUnion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/union/simpleUnion.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/varargs/var80bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/varargs/var80bit.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/varargs/varFloatVec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/varargs/varFloatVec.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/varargs/varSmallStruct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/varargs/varSmallStruct.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/varargs/varStructDouble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/varargs/varStructDouble.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/varargs/varStructLong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/varargs/varStructLong.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/varargs/varStructModify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/varargs/varStructModify.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/varargs/varStructPtr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/varargs/varStructPtr.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/vector/extractvalue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/vector/extractvalue.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/vector/insertElement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/vector/insertElement.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/vector/vectorAddition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/vector/vectorAddition.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/vector/vectorAddition2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/vector/vectorAddition2.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/vector/vectorDivision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/vector/vectorDivision.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/vector/vectorLiteral.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/vector/vectorLiteral.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulong/c/vector/vectorSubtraction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulong/c/vector/vectorSubtraction.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongavx/avx/avx2fallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongavx/avx/avx2fallback.h -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongavx/avx/intrinsics/byteswap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongavx/avx/intrinsics/byteswap.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/builtin/clz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/builtin/clz.c -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test003.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test003.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test004.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test004.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test005.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test005.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test006.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test006.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test007.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test007.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test008.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test008.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test009.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test009.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test010.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test010.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test011.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test011.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test013.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test013.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test014.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test014.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test015.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test015.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test016.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test016.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test017.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test017.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test018.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test018.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test019.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test019.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test020.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test020.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test021.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test021.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test022.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test022.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test023.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test023.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test024.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test024.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test025.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test025.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test026.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test026.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test027.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test027.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test028.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test028.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test029.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test029.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test030.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test030.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test031.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test031.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test032.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test032.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test033.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test033.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test034.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test034.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test035.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test035.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test036.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test036.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test037.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test037.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test038.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test038.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test039.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test039.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test040.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test040.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test041.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test041.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test042.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test042.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test043.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test043.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test044.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test044.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test045.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test045.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test046.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test046.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test047.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test047.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test048.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test048.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test049.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test049.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test050.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test050.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test051.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test051.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test052.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test052.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test053.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/test053.cpp -------------------------------------------------------------------------------- /tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/testRuntimeError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/com.oracle.truffle.llvm.tests.sulongcpp/cpp/testRuntimeError.cpp -------------------------------------------------------------------------------- /tests/gcc/compileConfigs/working.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/compileConfigs/working.include -------------------------------------------------------------------------------- /tests/gcc/configs/c-c++-common/asan/exclude.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/c-c++-common/asan/exclude.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/c-c++-common/assembler.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/c-c++-common/assembler.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/c-c++-common/error.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/c-c++-common/error.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/c-c++-common/failsongate.exclude: -------------------------------------------------------------------------------- 1 | gcc-5.2.0/gcc/testsuite/c-c++-common/pr59037.c -------------------------------------------------------------------------------- /tests/gcc/configs/c-c++-common/sometimesfails.exclude: -------------------------------------------------------------------------------- 1 | gcc-5.2.0/gcc/testsuite/c-c++-common/pr59037.c -------------------------------------------------------------------------------- /tests/gcc/configs/c-c++-common/ubsan/freeze.exclude: -------------------------------------------------------------------------------- 1 | gcc-5.2.0/gcc/testsuite/c-c++-common/ubsan/vla-1.c -------------------------------------------------------------------------------- /tests/gcc/configs/c-c++-common/unsorted.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/c-c++-common/unsorted.include -------------------------------------------------------------------------------- /tests/gcc/configs/compile-errors.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/compile-errors.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/g++.dg/broken.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/g++.dg/broken.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/g++.dg/conversion/working.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/g++.dg/conversion/working.include -------------------------------------------------------------------------------- /tests/gcc/configs/g++.dg/cpp0x/notworking.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/g++.dg/cpp0x/notworking.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/g++.dg/opt/working.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/g++.dg/opt/working.include -------------------------------------------------------------------------------- /tests/gcc/configs/g++.dg/other/notworking.exclude: -------------------------------------------------------------------------------- 1 | gcc-5.2.0/gcc/testsuite/g++.dg/other/warning1.C -------------------------------------------------------------------------------- /tests/gcc/configs/g++.dg/overload/notworking.exclude: -------------------------------------------------------------------------------- 1 | gcc-5.2.0/gcc/testsuite/g++.dg/overload/addr1.C 2 | -------------------------------------------------------------------------------- /tests/gcc/configs/g++.dg/overload/working.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/g++.dg/overload/working.include -------------------------------------------------------------------------------- /tests/gcc/configs/g++.dg/template/notworking.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/g++.dg/template/notworking.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/g++.dg/template/working.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/g++.dg/template/working.include -------------------------------------------------------------------------------- /tests/gcc/configs/g++.dg/torture/working.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/g++.dg/torture/working.include -------------------------------------------------------------------------------- /tests/gcc/configs/g++.dg/working.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/g++.dg/working.include -------------------------------------------------------------------------------- /tests/gcc/configs/g++.old-deja/working.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/g++.old-deja/working.include -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.c-torture/compile/nonterminating.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.c-torture/compile/nonterminating.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.c-torture/execute/builtin-ret-addr.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.c-torture/execute/builtin-ret-addr.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.c-torture/execute/builtins.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.c-torture/execute/builtins.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.c-torture/execute/clang.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.c-torture/execute/clang.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.c-torture/execute/escapingfunctionpointer.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.c-torture/execute/escapingfunctionpointer.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.c-torture/execute/fail-on-gate.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.c-torture/execute/fail-on-gate.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.c-torture/execute/inlineassembler.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.c-torture/execute/inlineassembler.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.c-torture/execute/llifail.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.c-torture/execute/llifail.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.c-torture/execute/segfault.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.c-torture/execute/segfault.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.c-torture/execute/setjmp.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.c-torture/execute/setjmp.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.c-torture/execute/vectorcast.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.c-torture/execute/vectorcast.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.c-torture/execute/working.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.c-torture/execute/working.include -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/80bitfloats.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/80bitfloats.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/atomics.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/atomics.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/autopar/crash.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/autopar/crash.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/autopar/error.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/autopar/error.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/autopar/invalid.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/autopar/invalid.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/autopar/timeout.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/autopar/timeout.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/autopar/working.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/autopar/working.include -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/error.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/error.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/floating-point-environment.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/floating-point-environment.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/gomp/segfault.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/gomp/segfault.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/graphite/assembler.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/graphite/assembler.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/graphite/error.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/graphite/error.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/graphite/segfault.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/graphite/segfault.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/graphite/working.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/graphite/working.include -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/lto/assembler.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/lto/assembler.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/lto/crash.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/lto/crash.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/lto/error.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/lto/error.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/lto/working.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/lto/working.include -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/only-compile.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/only-compile.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/return-address.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/return-address.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/segfault-only-compile.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/segfault-only-compile.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/segfault.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/segfault.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/setjmp.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/setjmp.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/simulate-thread/thread.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/simulate-thread/thread.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/timeout.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/timeout.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/tls/segfault.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/tls/segfault.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/torture/80bitfloats.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/torture/80bitfloats.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/torture/assembler.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/torture/assembler.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/torture/error.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/torture/error.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/torture/multithreading.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/torture/multithreading.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/torture/segfault.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/torture/segfault.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/torture/sometimesfail.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/torture/sometimesfail.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/torture/stackalign/setjmp.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/torture/stackalign/setjmp.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/torture/stackalign/sometimesfail.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/torture/stackalign/sometimesfail.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/torture/stackalign/working.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/torture/stackalign/working.include -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/torture/vectorcast.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/torture/vectorcast.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/torture/working.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/torture/working.include -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/tree-prof/assembler.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/tree-prof/assembler.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/tree-prof/error.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/tree-prof/error.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/tree-prof/longjmp.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/tree-prof/longjmp.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/tree-prof/multithreading.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/tree-prof/multithreading.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/tree-prof/working.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/tree-prof/working.include -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/tree-ssa/working.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/tree-ssa/working.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/uninitialized.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/uninitialized.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/unsorted/assembler.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/unsorted/assembler.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/unsorted/error.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/unsorted/error.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/unsorted/multithreading.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/unsorted/multithreading.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/unsorted/segfault.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/unsorted/segfault.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/unsorted/sometimesnotworking.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/unsorted/sometimesnotworking.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/unsorted/timeout.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/unsorted/timeout.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/unsorted/working.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/unsorted/working.include -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/vect/assembler.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/vect/assembler.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/vect/error.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/vect/error.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/vect/working.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/vect/working.include -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/vmx/error.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/vmx/error.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/vmx/working.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/vmx/working.include -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.dg/working.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.dg/working.include -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.misc-tests/clangerror.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.misc-tests/clangerror.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.misc-tests/longjmp.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.misc-tests/longjmp.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.misc-tests/working.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.misc-tests/working.include -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.target/unsupported-arch.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.target/unsupported-arch.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.target/x86_64/compile-errors.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.target/x86_64/compile-errors.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.target/x86_64/working.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.target/x86_64/working.include -------------------------------------------------------------------------------- /tests/gcc/configs/gcc.test-framework/working.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gcc.test-framework/working.include -------------------------------------------------------------------------------- /tests/gcc/configs/gfortran.dg/gomp/error.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gfortran.dg/gomp/error.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gfortran.dg/gomp/working.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gfortran.dg/gomp/working.include -------------------------------------------------------------------------------- /tests/gcc/configs/gfortran.dg/vect/error.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gfortran.dg/vect/error.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gfortran.dg/vect/exit.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gfortran.dg/vect/exit.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gfortran.dg/vect/timeout.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gfortran.dg/vect/timeout.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gfortran.dg/vect/working.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gfortran.dg/vect/working.include -------------------------------------------------------------------------------- /tests/gcc/configs/gfortran.fortran-torture/execute/exit.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gfortran.fortran-torture/execute/exit.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gfortran.fortran-torture/execute/failsongate.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gfortran.fortran-torture/execute/failsongate.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gfortran.fortran-torture/execute/timeout.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gfortran.fortran-torture/execute/timeout.exclude -------------------------------------------------------------------------------- /tests/gcc/configs/gfortran.fortran-torture/execute/working.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/gcc/configs/gfortran.fortran-torture/execute/working.include -------------------------------------------------------------------------------- /tests/inlineassemblytests/adc001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/adc001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/add001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/add001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/bsf001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/bsf001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/bsf002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/bsf002.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/bsf003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/bsf003.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/bsr001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/bsr001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/bsr002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/bsr002.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/bsr003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/bsr003.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/bswap001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/bswap001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/bswap002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/bswap002.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/cmp001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/cmp001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/cmpxchg001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/cmpxchg001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/cmpxchg002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/cmpxchg002.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/cpuid.h -------------------------------------------------------------------------------- /tests/inlineassemblytests/cpuid001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/cpuid001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/cpuid002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/cpuid002.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/flags.h -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly002.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly003.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly004.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly004.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly005.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly005.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly006.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly006.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly007.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly007.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly008.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly008.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly009.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly009.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly010.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly010.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly011.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly011.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly012.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly012.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly013.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly013.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly014.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly014.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly015.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly015.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly016.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly016.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly017.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly017.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly018.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly018.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly019.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly019.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly020.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly020.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly021.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly021.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly022.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly022.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly023.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly023.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly024.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly024.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly025.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly025.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly026.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly026.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly027.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly027.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly028.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly028.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly029.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly029.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly030.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly030.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly031.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly031.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly032.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly032.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly033.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly033.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly034.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly034.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly035.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly035.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly036.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly036.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly037.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly037.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly038.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly038.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly039.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly039.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly040.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly040.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly041.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly041.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly042.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly042.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly043.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly043.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly044.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly044.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly045.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly045.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly046.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly046.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly047.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly047.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly048.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly048.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly049.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly049.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly050.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly050.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly051.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly051.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly052.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly052.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly053.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly053.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly054.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly054.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly055.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly055.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly056.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly056.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly057.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly057.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly058.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly058.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/inlineassembly059.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/inlineassembly059.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/lea001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/lea001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/nanolibc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/nanolibc.h -------------------------------------------------------------------------------- /tests/inlineassemblytests/push001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/push001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/push002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/push002.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/rdrand001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/rdrand001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/rdrand002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/rdrand002.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/rdrand003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/rdrand003.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/rdseed001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/rdseed001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/rdseed002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/rdseed002.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/rdseed003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/rdseed003.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/setc001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/setc001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/setc002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/setc002.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/setc003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/setc003.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/setc004.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/setc004.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/setc005.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/setc005.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/setc006.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/setc006.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/setc007.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/setc007.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/seto001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/seto001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/seto002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/seto002.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/seto003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/seto003.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/seto004.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/seto004.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/seto005.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/seto005.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/seto006.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/seto006.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/seto007.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/seto007.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/seto008.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/seto008.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/seto009.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/seto009.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/seto010.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/seto010.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/stosb001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/stosb001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/stosb002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/stosb002.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/syscall-getcwd001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/syscall-getcwd001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/syscall-getgid001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/syscall-getgid001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/syscall-getuid001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/syscall-getuid001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/syscall-lseek001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/syscall-lseek001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/syscall-lseek002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/syscall-lseek002.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/syscall-lseek003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/syscall-lseek003.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/syscall-lseek004.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/syscall-lseek004.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/syscall-lseek005.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/syscall-lseek005.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/syscall-lseek006.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/syscall-lseek006.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/syscall-lseek007.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/syscall-lseek007.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/syscall-lseek008.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/syscall-lseek008.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/syscall-open001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/syscall-open001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/syscall-open002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/syscall-open002.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/syscall-open003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/syscall-open003.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/syscall-read001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/syscall-read001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/syscall-read002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/syscall-read002.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/syscall-read003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/syscall-read003.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/syscall-readv001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/syscall-readv001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/syscall-readv002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/syscall-readv002.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/syscall-uname001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/syscall-uname001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/syscall-write001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/syscall-write001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/syscall-writev001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/syscall-writev001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/syscall-writev002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/syscall-writev002.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/syscall001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/syscall001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/syscall002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/syscall002.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/xadd001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/xadd001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/xadd002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/xadd002.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/xadd003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/xadd003.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/xadd004.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/xadd004.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/xchg001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/xchg001.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/xchg002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/xchg002.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/xchg003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/xchg003.c -------------------------------------------------------------------------------- /tests/inlineassemblytests/xchg004.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/inlineassemblytests/xchg004.c -------------------------------------------------------------------------------- /tests/llvm/configs/SingleSource/Regression/infiniteloop.exclude: -------------------------------------------------------------------------------- 1 | test-suite-3.2.src/SingleSource/Regression/C/uint64_to_float.c 2 | -------------------------------------------------------------------------------- /tests/llvm/configs/SingleSource/Regression/working.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/llvm/configs/SingleSource/Regression/working.include -------------------------------------------------------------------------------- /tests/llvm/configs/SingleSource/UnitTests/function-pointer-escapes.exclude: -------------------------------------------------------------------------------- 1 | test-suite-3.2.src/SingleSource/UnitTests/2003-05-14-AtExit.c 2 | -------------------------------------------------------------------------------- /tests/llvm/configs/SingleSource/UnitTests/segfault.exclude: -------------------------------------------------------------------------------- 1 | test-suite-3.2.src/SingleSource/UnitTests/2008-07-13-InlineSetjmp.c 2 | -------------------------------------------------------------------------------- /tests/llvm/configs/SingleSource/UnitTests/timeout.exclude: -------------------------------------------------------------------------------- 1 | test-suite-3.2.src/SingleSource/UnitTests/Vector/build2.c 2 | -------------------------------------------------------------------------------- /tests/llvm/configs/SingleSource/UnitTests/unsupported.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/llvm/configs/SingleSource/UnitTests/unsupported.exclude -------------------------------------------------------------------------------- /tests/llvm/configs/SingleSource/UnitTests/vector-cast.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/llvm/configs/SingleSource/UnitTests/vector-cast.exclude -------------------------------------------------------------------------------- /tests/llvm/configs/SingleSource/UnitTests/working.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/llvm/configs/SingleSource/UnitTests/working.include -------------------------------------------------------------------------------- /tests/llvm/configs/compile-errors.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/llvm/configs/compile-errors.exclude -------------------------------------------------------------------------------- /tests/nwcc/configs/compileerror.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/nwcc/configs/compileerror.exclude -------------------------------------------------------------------------------- /tests/nwcc/configs/floating.exclude: -------------------------------------------------------------------------------- 1 | nwcc_0.8.3/tests/bug1.c 2 | -------------------------------------------------------------------------------- /tests/nwcc/configs/inlineassembler.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/nwcc/configs/inlineassembler.exclude -------------------------------------------------------------------------------- /tests/nwcc/configs/missingfunctions.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/nwcc/configs/missingfunctions.exclude -------------------------------------------------------------------------------- /tests/nwcc/configs/missingglobals.exclude: -------------------------------------------------------------------------------- 1 | nwcc_0.8.3/tests/tentative3.c 2 | -------------------------------------------------------------------------------- /tests/nwcc/configs/multithreading.exclude: -------------------------------------------------------------------------------- 1 | nwcc_0.8.3/test2/tls0-main.c 2 | -------------------------------------------------------------------------------- /tests/nwcc/configs/nomain.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/nwcc/configs/nomain.exclude -------------------------------------------------------------------------------- /tests/nwcc/configs/notenoughfunctionargs.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/nwcc/configs/notenoughfunctionargs.exclude -------------------------------------------------------------------------------- /tests/nwcc/configs/notworking.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/nwcc/configs/notworking.exclude -------------------------------------------------------------------------------- /tests/nwcc/configs/parsererror.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/nwcc/configs/parsererror.exclude -------------------------------------------------------------------------------- /tests/nwcc/configs/segfault.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/nwcc/configs/segfault.exclude -------------------------------------------------------------------------------- /tests/nwcc/configs/timeout.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/nwcc/configs/timeout.exclude -------------------------------------------------------------------------------- /tests/nwcc/configs/undefined.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/nwcc/configs/undefined.exclude -------------------------------------------------------------------------------- /tests/nwcc/configs/working.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/nwcc/configs/working.include -------------------------------------------------------------------------------- /tests/other/callbackIntrinsic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/other/callbackIntrinsic.c -------------------------------------------------------------------------------- /tests/other/callbackTest001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/other/callbackTest001.c -------------------------------------------------------------------------------- /tests/other/callbackTest002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/other/callbackTest002.c -------------------------------------------------------------------------------- /tests/other/callbackTest003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/other/callbackTest003.c -------------------------------------------------------------------------------- /tests/other/callbackTest004.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/other/callbackTest004.c -------------------------------------------------------------------------------- /tests/other/callbackTest005.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/other/callbackTest005.c -------------------------------------------------------------------------------- /tests/other/callbackTest006.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/other/callbackTest006.c -------------------------------------------------------------------------------- /tests/other/callbackTest007.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/other/callbackTest007.c -------------------------------------------------------------------------------- /tests/other/callbackTest008.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/other/callbackTest008.c -------------------------------------------------------------------------------- /tests/other/flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/other/flush.c -------------------------------------------------------------------------------- /tests/other/main-args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/other/main-args.c -------------------------------------------------------------------------------- /tests/other/nativeCallbackInStruct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/other/nativeCallbackInStruct.c -------------------------------------------------------------------------------- /tests/other/returnNativeCallback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/other/returnNativeCallback.c -------------------------------------------------------------------------------- /tests/other/vaargs00.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/other/vaargs00.c -------------------------------------------------------------------------------- /tests/other/vaargs01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/other/vaargs01.c -------------------------------------------------------------------------------- /tests/other/vaargs02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/other/vaargs02.c -------------------------------------------------------------------------------- /tests/other/vaargs03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/other/vaargs03.c -------------------------------------------------------------------------------- /tests/other/vaargs04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/other/vaargs04.c -------------------------------------------------------------------------------- /tests/other/vaargs05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graalvm/sulong/HEAD/tests/other/vaargs05.c --------------------------------------------------------------------------------